\r\nformat is [location_guid -> clueCount]\r\n]]\r\nLOCATIONS_DATA_JSON = [[\r\n{\r\n \"San Francisco\": {\"type\": \"fixed\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"\tArkham\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"Buenos Aires\": {\"type\": \"fixed\", \"value\": 2, \"clueSide\": \"back\"},\r\n \"\tLondon\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"front\"},\r\n \"Rome\": {\"type\": \"perPlayer\", \"value\": 3, \"clueSide\": \"front\"},\r\n \"Istanbul\": {\"type\": \"perPlayer\", \"value\": 4, \"clueSide\": \"front\"},\r\n \"Tokyo_123abc\": {\"type\": \"perPlayer\", \"value\": 0, \"clueSide\": \"back\"},\r\n \"Tokyo_456efg\": {\"type\": \"perPlayer\", \"value\": 4, \"clueSide\": \"back\"},\r\n \"Tokyo\": {\"type\": \"fixed\", \"value\": 2, \"clueSide\": \"back\"},\r\n \"Shanghai_123\": {\"type\": \"fixed\", \"value\": 12, \"clueSide\": \"front\"},\r\n \"Sydney\": {\"type\": \"fixed\", \"value\": 0, \"clueSide\": \"front\"}\r\n}\r\n]]\r\n\r\n\r\nPLAYER_CARD_DATA_JSON = [[\r\n{\r\n \"Tool Belt (0)\": {\r\n \"tokenType\": \"resource\",\r\n \"tokenCount\": 2\r\n },\r\n \"Tool Belt (3)\": {\r\n \"tokenType\": \"resource\",\r\n \"tokenCount\": 4\r\n },\r\n \"Yithian Rifle\": {\r\n \"tokenType\": \"resource\",\r\n \"tokenCount\": 3\r\n },\r\n \"xxx\": {\r\n \"tokenType\": \"resource\",\r\n \"tokenCount\": 3\r\n }\r\n}\r\n]]\r\n\r\nHIDDEN_CARD_DATA = {\r\n \"Unpleasant Card (Doom)\",\r\n \"Unpleasant Card (Gloom)\",\r\n \"The Case of the Scarlet DOOOOOM!\"\r\n}\r\n\r\nLOCATIONS_DATA = JSON.decode(LOCATIONS_DATA_JSON)\r\nPLAYER_CARD_DATA = JSON.decode(PLAYER_CARD_DATA_JSON)\r\n\r\nfunction onload(save_state)\r\n local playArea = getObjectFromGUID('721ba2')\r\n playArea.call(\"updateLocations\", {self.getGUID()})\r\n local playerMatWhite = getObjectFromGUID('8b081b')\r\n playerMatWhite.call(\"updatePlayerCards\", {self.getGUID()})\r\n local playerMatOrange = getObjectFromGUID('bd0ff4')\r\n playerMatOrange.call(\"updatePlayerCards\", {self.getGUID()})\r\n local playerMatGreen = getObjectFromGUID('383d8b')\r\n playerMatGreen.call(\"updatePlayerCards\", {self.getGUID()})\r\n local playerMatRed = getObjectFromGUID('0840d5')\r\n playerMatRed.call(\"updatePlayerCards\", {self.getGUID()})\r\n local dataHelper = getObjectFromGUID('708279')\r\n dataHelper.call(\"updateHiddenCards\", {self.getGUID()})\r\nend",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "0a5a29",
"Name": "Custom_Tile",
"Transform": {
"posX": -9.761482,
"posY": 1.58983934,
"posZ": -17.787674,
"rotX": 0.07990517,
"rotY": 90.02261,
"rotZ": 359.9832,
"scaleX": 0.748509049,
"scaleY": 1.0,
"scaleZ": 0.748509049
},
"Nickname": "Whimsical's Token Remover",
"Description": "See Notebook for details.",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": true,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1767069252728651946/04A700179A71859B828E30D2877D802749B8223C/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1767069252728653004/7BD6E4B8763FE70DB6ADB22B62504361D3778309/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 0,
"Thickness": 0.2,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "---\r\n--- Generated by EmmyLua(https://github.com/EmmyLua)\r\n--- Created by Whimsical.\r\n--- DateTime: 2021-02-02 9:41 a.m.\r\n---\r\n\r\nlocal zone = nil\r\n\r\n-- Forward Declaration\r\n---@param is_enabled boolean\r\nlocal setMenu = function(is_enabled) end\r\n\r\nlocal function enable()\r\n if self.held_by_color~=nil then return end\r\n local position = self:getPosition()\r\n local rotation = self:getRotation()\r\n local scale = self:getScale()\r\n\r\n zone = spawnObject {\r\n type = \"ScriptingTrigger\",\r\n position = Vector(position.x, position.y+25+(bit32.rshift(scale.y, 1))+0.41, position.z),\r\n rotation = rotation,\r\n scale = Vector(scale.x*2, 50, scale.z*2),\r\n sound = true,\r\n snap_to_grid = true\r\n }\r\n\r\n setMenu(false)\r\nend\r\n\r\nlocal function disable()\r\n if zone~=nil then zone:destruct() end\r\n setMenu(true)\r\nend\r\n\r\n---@param is_enabled boolean\r\nsetMenu = function(is_enabled)\r\n self:clearContextMenu()\r\n if is_enabled then\r\n self:addContextMenuItem(\"Enable\", enable, false)\r\n else\r\n self:addContextMenuItem(\"Disable\", disable, false)\r\n end\r\nend\r\n\r\nfunction onLoad(save_state)\r\n if save_state==\"\" then return end\r\n local data = JSON.decode(save_state)\r\n zone = getObjectFromGUID(data.zone)\r\n setMenu(zone==nil)\r\nend\r\n\r\nfunction onSave()\r\n return JSON.encode {\r\n zone = zone and zone:getGUID() or nil\r\n }\r\nend\r\n\r\n---@param entering TTSObject\r\n---@param object TTSObject\r\nfunction onObjectEnterScriptingZone(entering , object)\r\n if zone~=entering then return end\r\n if object==self then return end\r\n if object.type==\"Deck\" or object.type==\"Card\" then return end\r\n\r\n object:destruct()\r\nend\r\n\r\n---@param color string\r\nfunction onPickUp(color)\r\n disable()\r\nend",
"LuaScriptState": "[]",
"XmlUI": ""
},
{
"GUID": "5933fb",
"Name": "Custom_Token",
"Transform": {
"posX": -45.9972458,
"posY": 1.69557035,
"posZ": -0.0853346139,
"rotX": 359.920074,
"rotY": 270.000183,
"rotZ": 0.0168399829,
"scaleX": 0.6836529,
"scaleY": 1.0,
"scaleZ": 0.6836529
},
"Nickname": "Bless/Curse Token Manager",
"Description": "See Notebook for Instructions",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": true,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1557640258613050317/0CB60FE3464788DAE2A650900DD84734934E5020/",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": true
}
},
"LuaScript": "BLESS_COLOR = { r=0.3, g=0.25, b=0.09 }\r\nCURSE_COLOR = { r=0.2, g=0.08, b=0.24 }\r\nMIN_VALUE = 1\r\nMAX_VALUE = 10\r\nIMAGE_URL = {\r\n Bless = \"http://cloud-3.steamusercontent.com/ugc/1655601092778627699/339FB716CB25CA6025C338F13AFDFD9AC6FA8356/\",\r\n Curse = \"http://cloud-3.steamusercontent.com/ugc/1655601092778636039/2A25BD38E8C44701D80DD96BF0121DA21843672E/\"\r\n}\r\n\r\nfunction onload()\r\n self.createButton({\r\n label=\"Add\",\r\n click_function=\"addBlessToken\",\r\n function_owner=self,\r\n position={-2.3,0.1,-0.5},\r\n height=150,\r\n width=300,\r\n scale={x=1.75, y=1.75, z=1.75},\r\n font_size=100,\r\n font_color={ r=1, g=1, b=1 },\r\n color=BLESS_COLOR\r\n })\r\n\r\n self.createButton({\r\n label=\"Remove\",\r\n click_function=\"removeBlessToken\",\r\n function_owner=self,\r\n position={-0.9,0.1,-0.5},\r\n height=150,\r\n width=450,\r\n scale={x=1.75, y=1.75, z=1.75},\r\n font_size=100,\r\n font_color={ r=1, g=1, b=1 },\r\n color=BLESS_COLOR\r\n })\r\n\r\n self.createButton({\r\n label=\"Take\",\r\n click_function=\"takeBlessToken\",\r\n function_owner=self,\r\n position={0.7,0.1,-0.5},\r\n height=150,\r\n width=350,\r\n scale={x=1.75, y=1.75, z=1.75},\r\n font_size=100,\r\n font_color={ r=1, g=1, b=1 },\r\n color=BLESS_COLOR\r\n })\r\n\r\n self.createButton({\r\n label=\"Return\",\r\n click_function=\"returnBlessToken\",\r\n function_owner=self,\r\n position={2.1,0.1,-0.5},\r\n height=150,\r\n width=400,\r\n scale={x=1.75, y=1.75, z=1.75},\r\n font_size=100,\r\n font_color={ r=1, g=1, b=1 },\r\n color=BLESS_COLOR\r\n })\r\n\r\n self.createButton({\r\n label=\"Add\",\r\n click_function=\"addCurseToken\",\r\n function_owner=self,\r\n position={-2.3,0.1,0.5},\r\n height=150,\r\n width=300,\r\n scale={x=1.75, y=1.75, z=1.75},\r\n font_size=100,\r\n font_color={ r=1, g=1, b=1 },\r\n color=CURSE_COLOR\r\n })\r\n\r\n self.createButton({\r\n label=\"Remove\",\r\n click_function=\"removeCurseToken\",\r\n function_owner=self,\r\n position={-0.9,0.1,0.5},\r\n height=150,\r\n width=450,\r\n scale={x=1.75, y=1.75, z=1.75},\r\n font_size=100,\r\n font_color={ r=1, g=1, b=1 },\r\n color=CURSE_COLOR\r\n })\r\n\r\n self.createButton({\r\n label=\"Take\",\r\n click_function=\"takeCurseToken\",\r\n function_owner=self,\r\n position={0.7,0.1,0.5},\r\n height=150,\r\n width=350,\r\n scale={x=1.75, y=1.75, z=1.75},\r\n font_size=100,\r\n font_color={ r=1, g=1, b=1 },\r\n color=CURSE_COLOR\r\n })\r\n\r\n self.createButton({\r\n label=\"Return\",\r\n click_function=\"returnCurseToken\",\r\n function_owner=self,\r\n position={2.1,0.1,0.5},\r\n height=150,\r\n width=400,\r\n scale={x=1.75, y=1.75, z=1.75},\r\n font_size=100,\r\n font_color={ r=1, g=1, b=1 },\r\n color=CURSE_COLOR\r\n })\r\n\r\n self.createButton({\r\n label=\"Reset\", click_function=\"doReset\", function_owner=self,\r\n position={0,0.3,1.8}, rotation={0,0,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n\r\n numInPlay = { Bless=0, Curse=0 }\r\n tokensTaken = { Bless={}, Curse={} }\r\n Wait.time(initializeState, 1)\r\n\r\n addHotkey(\"Bless Curse Status\", printStatus, false)\r\nend\r\n\r\nfunction initializeState()\r\n playerColor = \"White\"\r\n -- count tokens in the bag\r\n local chaosbag = getChaosBag()\r\n if chaosbag == nil then return end\r\n local tokens = {}\r\n for i,v in ipairs(chaosbag.getObjects()) do\r\n if v.name == \"Bless\" then\r\n numInPlay.Bless = numInPlay.Bless + 1\r\n elseif v.name == \"Curse\" then\r\n numInPlay.Curse = numInPlay.Curse + 1\r\n end\r\n end\r\n\r\n -- find tokens in the play area\r\n local objs = Physics.cast({\r\n origin = { x=-33, y=0, z=0.5 },\r\n direction = { x=0, y=1, z=0 },\r\n type = 3,\r\n size = { x=77, y=5, z=77 },\r\n orientation = { x=0, y=90, z=0 }\r\n })\r\n\r\n for i,v in ipairs(objs) do\r\n local obj = v.hit_object\r\n if obj.getName() == \"Bless\" then\r\n table.insert(tokensTaken.Bless, obj.getGUID())\r\n numInPlay.Bless = numInPlay.Bless + 1\r\n elseif obj.getName() == \"Curse\" then\r\n table.insert(tokensTaken.Curse, obj.getGUID())\r\n numInPlay.Curse = numInPlay.Curse + 1\r\n end\r\n end\r\n\r\n mode = \"Bless\"\r\n print(\"Bless Tokens \" .. getTokenCount())\r\n mode = \"Curse\"\r\n print(\"Curse Tokens \" .. getTokenCount())\r\nend\r\n\r\nfunction printStatus(player_color, hovered_object, world_position, key_down_up)\r\n mode = \"Curse\"\r\n broadcastToColor(\"Curse Tokens \" .. getTokenCount(), player_color)\r\n mode = \"Bless\"\r\n broadcastToColor(\"Bless Tokens \" .. getTokenCount(), player_color)\r\nend\r\n\r\nfunction doReset(_obj, _color, alt_click)\r\n playerColor = _color\r\n numInPlay = { Bless=0, Curse=0 }\r\n tokensTaken = { Bless={}, Curse={} }\r\n initializeState()\r\nend\r\n\r\nfunction addBlessToken(_obj, _color, alt_click)\r\n addToken(\"Bless\", _color)\r\nend\r\n\r\nfunction addCurseToken(_obj, _color, alt_click)\r\n addToken(\"Curse\", _color)\r\nend\r\n\r\nfunction addToken(type, _color)\r\n if numInPlay[type] == MAX_VALUE then\r\n printToColor(MAX_VALUE .. \" tokens already in play, not adding any\", _color)\r\n else\r\n mode = type\r\n spawnToken()\r\n end\r\nend\r\n\r\nfunction spawnToken()\r\n local pos = getChaosBagPosition()\r\n if pos == nil then return end\r\n local url = IMAGE_URL[mode]\r\n local obj = spawnObject({\r\n type = 'Custom_Tile',\r\n position = {pos.x, pos.y + 3, pos.z},\r\n rotation = {x = 0, y = 260, z = 0},\r\n callback_function = spawn_callback\r\n })\r\n obj.setCustomObject({\r\n type = 2,\r\n image = url,\r\n thickness = 0.10,\r\n })\r\n obj.scale {0.81, 1, 0.81}\r\n return obj\r\nend\r\n\r\nfunction spawn_callback(obj)\r\n obj.setName(mode)\r\n local guid = obj.getGUID()\r\n numInPlay[mode] = numInPlay[mode] + 1\r\n printToAll(\"Adding \" .. mode .. \" token \" .. getTokenCount())\r\nend\r\n\r\nfunction removeBlessToken(_obj, _color, alt_click)\r\n takeToken(\"Bless\", _color, true)\r\nend\r\n\r\nfunction removeCurseToken(_obj, _color, alt_click)\r\n takeToken(\"Curse\", _color, true)\r\nend\r\n\r\nfunction takeBlessToken(_obj, _color, alt_click)\r\n takeToken(\"Bless\", _color, false)\r\nend\r\n\r\nfunction takeCurseToken(_obj, _color, alt_click)\r\n takeToken(\"Curse\", _color, false)\r\nend\r\n\r\nfunction takeToken(type, _color, remove)\r\n playerColor = _color\r\n local chaosbag = getChaosBag()\r\n if chaosbag == nil then return end\r\n local tokens = {}\r\n for i,v in ipairs(chaosbag.getObjects()) do\r\n if v.name == type then\r\n table.insert(tokens, v.guid)\r\n end\r\n end\r\n if #tokens == 0 then\r\n printToColor(\"No \" .. type .. \" tokens in the chaos bag\", _color)\r\n return\r\n end\r\n local pos = self.getPosition()\r\n local callback = take_callback\r\n if remove then\r\n callback = remove_callback\r\n num = removeNum\r\n end\r\n local guid = table.remove(tokens)\r\n mode = type\r\n chaosbag.takeObject({\r\n guid = guid,\r\n position = {pos.x-2, pos.y, pos.z},\r\n smooth = false,\r\n callback_function = callback\r\n })\r\nend\r\n\r\nfunction remove_callback(obj)\r\n take_callback(obj, true)\r\nend\r\n\r\nfunction take_callback(obj, remove)\r\n local guid = obj.getGUID()\r\n if remove then\r\n numInPlay[mode] = numInPlay[mode] - 1\r\n printToAll(\"Removing \" .. mode .. \" token \" .. getTokenCount())\r\n obj.destruct()\r\n else\r\n table.insert(tokensTaken[mode], guid)\r\n printToAll(\"Taking \" .. mode .. \" token \" .. getTokenCount())\r\n end\r\nend\r\n\r\nfunction returnBlessToken(_obj, _color, alt_click)\r\n returnToken(\"Bless\", _color)\r\nend\r\n\r\nfunction returnCurseToken(_obj, _color, alt_click)\r\n returnToken(\"Curse\", _color)\r\nend\r\n\r\nfunction returnToken(type, _color)\r\n mode = type\r\n local guid = table.remove(tokensTaken[type])\r\n if guid == nil then\r\n printToColor(\"No \" .. mode .. \" tokens to return\", _color)\r\n return\r\n end\r\n local token = getObjectFromGUID(guid)\r\n if token == nil then\r\n printToColor(\"Couldn't find token \" .. guid .. \", not returning to bag\", _color)\r\n return\r\n end\r\n playerColor = _color\r\n local chaosbag = getChaosBag()\r\n if chaosbag == nil then return end\r\n chaosbag.putObject(token)\r\n printToAll(\"Returning \" .. type .. \" token \" .. getTokenCount())\r\nend\r\n\r\nfunction getChaosBag()\r\n local items = getObjectFromGUID(\"83ef06\").getObjects()\r\n local chaosbag = nil\r\n for i,v in ipairs(items) do\r\n if v.getDescription() == \"Chaos Bag\" then\r\n chaosbag = getObjectFromGUID(v.getGUID())\r\n break\r\n end\r\n end\r\n if chaosbag == nil then printToColor(\"No chaos bag found\", playerColor) end\r\n return chaosbag\r\nend\r\n\r\nfunction getChaosBagPosition()\r\n local chaosbag = getChaosBag()\r\n if chaosbag == nil then return nil end\r\n return chaosbag.getPosition()\r\nend\r\n\r\nfunction getTokenCount()\r\n return \"(\" .. (numInPlay[mode] - #tokensTaken[mode]) .. \"/\" ..\r\n #tokensTaken[mode] .. \")\"\r\nend",
"LuaScriptState": "{\"Bless\":8,\"Curse\":0}",
"XmlUI": ""
},
{
"GUID": "36b4ee",
"Name": "Checker_white",
"Transform": {
"posX": 76.80876,
"posY": 1.297567,
"posZ": 3.46989179,
"rotX": 0.0154479239,
"rotY": 359.993774,
"rotZ": 179.989914,
"scaleX": 0.250000417,
"scaleY": 0.250000417,
"scaleZ": 0.250000417
},
"Nickname": "Token Spawner",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": true,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": false,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"LuaScript": "---\r\n--- Generated by EmmyLua(https://github.com/EmmyLua)\r\n--- Created by Whimsical.\r\n--- DateTime: 2021-01-14 1:10 a.m.\r\n---\r\nlocal TILE_TYPE_CIRCLE = 2\r\n\r\nlocal HEIGHT_ADJUSTMENT = 1.0\r\n\r\nlocal VALID_INDEX = {false, false, false, true, true, true, true, true, true}\r\n\r\nlocal INDEX_DAMAGE = 4\r\nlocal INDEX_PATH = 5\r\nlocal INDEX_HORROR = 6\r\nlocal INDEX_CLUE = 8\r\nlocal INDEX_DOOM = 7\r\nlocal INDEX_RESOURCE = 9\r\n\r\nlocal TOKEN_CLUE = \"http://cloud-3.steamusercontent.com/ugc/1758068501357164917/1D06F1DC4D6888B6F57124BD2AFE20D0B0DA15A8/\"\r\nlocal TOKEN_DOOM = \"https://i.imgur.com/EoL7yaZ.png\"\r\nlocal TOKEN_RESOURCE = \"http://cloud-3.steamusercontent.com/ugc/1758068501357192910/11DDDC7EF621320962FDCF3AE3211D5EDC3D1573/\"\r\n\r\nlocal CLOOM_SCALE = Vector(0.25, 1, 0.25)\r\nlocal RESOURCE_SCALE = Vector(0.17, 0.17, 0.17)\r\nlocal PATH_SCALE = Vector(1,1,1)\r\n\r\nlocal DAMAGE_JSON = \"{\\\"GUID\\\":\\\"142b55\\\",\\\"Name\\\":\\\"Custom_Token\\\",\\\"Transform\\\":{\\\"posX\\\":-38.6177826,\\\"posY\\\":1.688475,\\\"posZ\\\":10.7887154,\\\"rotX\\\":359.9204,\\\"rotY\\\":270.009583,\\\"rotZ\\\":0.0172974449,\\\"scaleX\\\":0.25,\\\"scaleY\\\":1,\\\"scaleZ\\\":0.25},\\\"Nickname\\\":\\\"Damage\\\",\\\"Description\\\":\\\"\\\",\\\"GMNotes\\\":\\\"\\\",\\\"ColorDiffuse\\\":{\\\"r\\\":1,\\\"g\\\":1,\\\"b\\\":1},\\\"LayoutGroupSortIndex\\\":0,\\\"Locked\\\":false,\\\"Grid\\\":false,\\\"Snap\\\":false,\\\"IgnoreFoW\\\":false,\\\"MeasureMovement\\\":false,\\\"DragSelectable\\\":true,\\\"Autoraise\\\":true,\\\"Sticky\\\":true,\\\"Tooltip\\\":true,\\\"GridProjection\\\":false,\\\"HideWhenFaceDown\\\":false,\\\"Hands\\\":false,\\\"CustomImage\\\":{\\\"ImageURL\\\":\\\"http://cloud-3.steamusercontent.com/ugc/1758068501357115146/903D11AAE7BD5C254C8DC136E9202EE516289DEA/\\\",\\\"ImageSecondaryURL\\\":\\\"\\\",\\\"ImageScalar\\\":1,\\\"WidthScale\\\":0,\\\"CustomToken\\\":{\\\"Thickness\\\":0.1,\\\"MergeDistancePixels\\\":5,\\\"StandUp\\\":false,\\\"Stackable\\\":false}},\\\"LuaScript\\\":\\\"\\\",\\\"LuaScriptState\\\":\\\"\\\",\\\"XmlUI\\\":\\\"\\\",\\\"States\\\":{\\\"2\\\":{\\\"GUID\\\":\\\"c6ddbe\\\",\\\"Name\\\":\\\"Custom_Token\\\",\\\"Transform\\\":{\\\"posX\\\":-28.3444748,\\\"posY\\\":1.112169,\\\"posZ\\\":19.0119534,\\\"rotX\\\":0.000318417122,\\\"rotY\\\":270.007721,\\\"rotZ\\\":359.99176,\\\"scaleX\\\":0.25,\\\"scaleY\\\":1,\\\"scaleZ\\\":0.25},\\\"Nickname\\\":\\\"Damage\\\",\\\"Description\\\":\\\"\\\",\\\"GMNotes\\\":\\\"\\\",\\\"ColorDiffuse\\\":{\\\"r\\\":1,\\\"g\\\":1,\\\"b\\\":1},\\\"LayoutGroupSortIndex\\\":0,\\\"Locked\\\":false,\\\"Grid\\\":false,\\\"Snap\\\":false,\\\"IgnoreFoW\\\":false,\\\"MeasureMovement\\\":false,\\\"DragSelectable\\\":true,\\\"Autoraise\\\":true,\\\"Sticky\\\":true,\\\"Tooltip\\\":true,\\\"GridProjection\\\":false,\\\"HideWhenFaceDown\\\":false,\\\"Hands\\\":false,\\\"CustomImage\\\":{\\\"ImageURL\\\":\\\"http://cloud-3.steamusercontent.com/ugc/1758068501357113699/2929CC7461A8A6C464203FF768A7A5A22650E337/\\\",\\\"ImageSecondaryURL\\\":\\\"\\\",\\\"ImageScalar\\\":1,\\\"WidthScale\\\":0,\\\"CustomToken\\\":{\\\"Thickness\\\":0.1,\\\"MergeDistancePixels\\\":5,\\\"StandUp\\\":false,\\\"Stackable\\\":false}},\\\"LuaScript\\\":\\\"\\\",\\\"LuaScriptState\\\":\\\"\\\",\\\"XmlUI\\\":\\\"\\\"},\\\"3\\\":{\\\"GUID\\\":\\\"a0f2a0\\\",\\\"Name\\\":\\\"Custom_Token\\\",\\\"Transform\\\":{\\\"posX\\\":-28.3444748,\\\"posY\\\":1.11216891,\\\"posZ\\\":19.0119534,\\\"rotX\\\":0.0003119017,\\\"rotY\\\":270.007874,\\\"rotZ\\\":359.99173,\\\"scaleX\\\":0.25,\\\"scaleY\\\":1,\\\"scaleZ\\\":0.25},\\\"Nickname\\\":\\\"Damage\\\",\\\"Description\\\":\\\"\\\",\\\"GMNotes\\\":\\\"\\\",\\\"ColorDiffuse\\\":{\\\"r\\\":1,\\\"g\\\":1,\\\"b\\\":1},\\\"LayoutGroupSortIndex\\\":0,\\\"Locked\\\":false,\\\"Grid\\\":false,\\\"Snap\\\":false,\\\"IgnoreFoW\\\":false,\\\"MeasureMovement\\\":false,\\\"DragSelectable\\\":true,\\\"Autoraise\\\":true,\\\"Sticky\\\":true,\\\"Tooltip\\\":true,\\\"GridProjection\\\":false,\\\"HideWhenFaceDown\\\":false,\\\"Hands\\\":false,\\\"CustomImage\\\":{\\\"ImageURL\\\":\\\"http://cloud-3.steamusercontent.com/ugc/1758068501357113055/8A45F27B2838FED09DEFE492C9C40DD82781613A/\\\",\\\"ImageSecondaryURL\\\":\\\"\\\",\\\"ImageScalar\\\":1,\\\"WidthScale\\\":0,\\\"CustomToken\\\":{\\\"Thickness\\\":0.1,\\\"MergeDistancePixels\\\":5,\\\"StandUp\\\":false,\\\"Stackable\\\":false}},\\\"LuaScript\\\":\\\"\\\",\\\"LuaScriptState\\\":\\\"\\\",\\\"XmlUI\\\":\\\"\\\"},\\\"4\\\":{\\\"GUID\\\":\\\"24c940\\\",\\\"Name\\\":\\\"Custom_Token\\\",\\\"Transform\\\":{\\\"posX\\\":-28.3444748,\\\"posY\\\":1.11216891,\\\"posZ\\\":19.0119534,\\\"rotX\\\":0.0003254045,\\\"rotY\\\":270.008026,\\\"rotZ\\\":359.99173,\\\"scaleX\\\":0.25,\\\"scaleY\\\":1,\\\"scaleZ\\\":0.25},\\\"Nickname\\\":\\\"Damage\\\",\\\"Description\\\":\\\"\\\",\\\"GMNotes\\\":\\\"\\\",\\\"ColorDiffuse\\\":{\\\"r\\\":1,\\\"g\\\":1,\\\"b\\\":1},\\\"LayoutGroupSortIndex\\\":0,\\\"Locked\\\":false,\\\"Grid\\\":false,\\\"Snap\\\":false,\\\"IgnoreFoW\\\":false,\\\"MeasureMovement\\\":false,\\\"DragSelectable\\\":true,\\\"Autoraise\\\":true,\\\"Sticky\\\":true,\\\"Tooltip\\\":true,\\\"GridProjection\\\":false,\\\"HideWhenFaceDown\\\":false,\\\"Hands\\\":false,\\\"CustomImage\\\":{\\\"ImageURL\\\":\\\"http://cloud-3.steamusercontent.com/ugc/1758068501357112812/BCCAAB919EBE76E2B770417B0B06A699E9F4C8D0/\\\",\\\"ImageSecondaryURL\\\":\\\"\\\",\\\"ImageScalar\\\":1,\\\"WidthScale\\\":0,\\\"CustomToken\\\":{\\\"Thickness\\\":0.1,\\\"MergeDistancePixels\\\":5,\\\"StandUp\\\":false,\\\"Stackable\\\":false}},\\\"LuaScript\\\":\\\"\\\",\\\"LuaScriptState\\\":\\\"\\\",\\\"XmlUI\\\":\\\"\\\"},\\\"5\\\":{\\\"GUID\\\":\\\"ec79a1\\\",\\\"Name\\\":\\\"Custom_Token\\\",\\\"Transform\\\":{\\\"posX\\\":-28.3444748,\\\"posY\\\":1.11216879,\\\"posZ\\\":19.0119534,\\\"rotX\\\":0.000309352879,\\\"rotY\\\":270.008,\\\"rotZ\\\":359.99173,\\\"scaleX\\\":0.25,\\\"scaleY\\\":1,\\\"scaleZ\\\":0.25},\\\"Nickname\\\":\\\"Damage\\\",\\\"Description\\\":\\\"\\\",\\\"GMNotes\\\":\\\"\\\",\\\"ColorDiffuse\\\":{\\\"r\\\":1,\\\"g\\\":1,\\\"b\\\":1},\\\"LayoutGroupSortIndex\\\":0,\\\"Locked\\\":false,\\\"Grid\\\":false,\\\"Snap\\\":false,\\\"IgnoreFoW\\\":false,\\\"MeasureMovement\\\":false,\\\"DragSelectable\\\":true,\\\"Autoraise\\\":true,\\\"Sticky\\\":true,\\\"Tooltip\\\":true,\\\"GridProjection\\\":false,\\\"HideWhenFaceDown\\\":false,\\\"Hands\\\":false,\\\"CustomImage\\\":{\\\"ImageURL\\\":\\\"http://cloud-3.steamusercontent.com/ugc/1758068501357112513/3D68F6F7D7A1B81C2E89AFBC948FD9C4395908F1/\\\",\\\"ImageSecondaryURL\\\":\\\"\\\",\\\"ImageScalar\\\":1,\\\"WidthScale\\\":0,\\\"CustomToken\\\":{\\\"Thickness\\\":0.1,\\\"MergeDistancePixels\\\":5,\\\"StandUp\\\":false,\\\"Stackable\\\":false}},\\\"LuaScript\\\":\\\"\\\",\\\"LuaScriptState\\\":\\\"\\\",\\\"XmlUI\\\":\\\"\\\"},\\\"6\\\":{\\\"GUID\\\":\\\"afe500\\\",\\\"Name\\\":\\\"Custom_Token\\\",\\\"Transform\\\":{\\\"posX\\\":-28.3444729,\\\"posY\\\":1.11216879,\\\"posZ\\\":19.0119514,\\\"rotX\\\":0.00031043886,\\\"rotY\\\":270.008423,\\\"rotZ\\\":359.99176,\\\"scaleX\\\":0.25,\\\"scaleY\\\":1,\\\"scaleZ\\\":0.25},\\\"Nickname\\\":\\\"Damage\\\",\\\"Description\\\":\\\"\\\",\\\"GMNotes\\\":\\\"\\\",\\\"ColorDiffuse\\\":{\\\"r\\\":1,\\\"g\\\":1,\\\"b\\\":1},\\\"LayoutGroupSortIndex\\\":0,\\\"Locked\\\":false,\\\"Grid\\\":false,\\\"Snap\\\":false,\\\"IgnoreFoW\\\":false,\\\"MeasureMovement\\\":false,\\\"DragSelectable\\\":true,\\\"Autoraise\\\":true,\\\"Sticky\\\":true,\\\"Tooltip\\\":true,\\\"GridProjection\\\":false,\\\"HideWhenFaceDown\\\":false,\\\"Hands\\\":false,\\\"CustomImage\\\":{\\\"ImageURL\\\":\\\"http://cloud-3.steamusercontent.com/ugc/1758068501357112217/E941CBCED5D8D42431FD29A53CE74ECF0FBB4BFB/\\\",\\\"ImageSecondaryURL\\\":\\\"\\\",\\\"ImageScalar\\\":1,\\\"WidthScale\\\":0,\\\"CustomToken\\\":{\\\"Thickness\\\":0.1,\\\"MergeDistancePixels\\\":5,\\\"StandUp\\\":false,\\\"Stackable\\\":false}},\\\"LuaScript\\\":\\\"\\\",\\\"LuaScriptState\\\":\\\"\\\",\\\"XmlUI\\\":\\\"\\\"},\\\"7\\\":{\\\"GUID\\\":\\\"c7cbd1\\\",\\\"Name\\\":\\\"Custom_Token\\\",\\\"Transform\\\":{\\\"posX\\\":-28.3444729,\\\"posY\\\":1.11216891,\\\"posZ\\\":19.0119514,\\\"rotX\\\":0.000295429461,\\\"rotY\\\":270.00824,\\\"rotZ\\\":359.99176,\\\"scaleX\\\":0.25,\\\"scaleY\\\":1,\\\"scaleZ\\\":0.25},\\\"Nickname\\\":\\\"Damage\\\",\\\"Description\\\":\\\"\\\",\\\"GMNotes\\\":\\\"\\\",\\\"ColorDiffuse\\\":{\\\"r\\\":1,\\\"g\\\":1,\\\"b\\\":1},\\\"LayoutGroupSortIndex\\\":0,\\\"Locked\\\":false,\\\"Grid\\\":false,\\\"Snap\\\":false,\\\"IgnoreFoW\\\":false,\\\"MeasureMovement\\\":false,\\\"DragSelectable\\\":true,\\\"Autoraise\\\":true,\\\"Sticky\\\":true,\\\"Tooltip\\\":true,\\\"GridProjection\\\":false,\\\"HideWhenFaceDown\\\":false,\\\"Hands\\\":false,\\\"CustomImage\\\":{\\\"ImageURL\\\":\\\"http://cloud-3.steamusercontent.com/ugc/1758068501357110928/44F5CF8F9BC4D54D47D450A807560D8A1F2A1769/\\\",\\\"ImageSecondaryURL\\\":\\\"\\\",\\\"ImageScalar\\\":1,\\\"WidthScale\\\":0,\\\"CustomToken\\\":{\\\"Thickness\\\":0.1,\\\"MergeDistancePixels\\\":5,\\\"StandUp\\\":false,\\\"Stackable\\\":false}},\\\"LuaScript\\\":\\\"\\\",\\\"LuaScriptState\\\":\\\"\\\",\\\"XmlUI\\\":\\\"\\\"},\\\"8\\\":{\\\"GUID\\\":\\\"67b357\\\",\\\"Name\\\":\\\"Custom_Token\\\",\\\"Transform\\\":{\\\"posX\\\":-28.3444729,\\\"posY\\\":1.11216891,\\\"posZ\\\":19.01195,\\\"rotX\\\":0.000306701084,\\\"rotY\\\":270.0082,\\\"rotZ\\\":359.99173,\\\"scaleX\\\":0.25,\\\"scaleY\\\":1,\\\"scaleZ\\\":0.25},\\\"Nickname\\\":\\\"Damage\\\",\\\"Description\\\":\\\"\\\",\\\"GMNotes\\\":\\\"\\\",\\\"ColorDiffuse\\\":{\\\"r\\\":1,\\\"g\\\":1,\\\"b\\\":1},\\\"LayoutGroupSortIndex\\\":0,\\\"Locked\\\":false,\\\"Grid\\\":false,\\\"Snap\\\":false,\\\"IgnoreFoW\\\":false,\\\"MeasureMovement\\\":false,\\\"DragSelectable\\\":true,\\\"Autoraise\\\":true,\\\"Sticky\\\":true,\\\"Tooltip\\\":true,\\\"GridProjection\\\":false,\\\"HideWhenFaceDown\\\":false,\\\"Hands\\\":false,\\\"CustomImage\\\":{\\\"ImageURL\\\":\\\"http://cloud-3.steamusercontent.com/ugc/1758068501357110576/7222C0B6E628D08F828F1FA686EB65E0B83B3B54/\\\",\\\"ImageSecondaryURL\\\":\\\"\\\",\\\"ImageScalar\\\":1,\\\"WidthScale\\\":0,\\\"CustomToken\\\":{\\\"Thickness\\\":0.1,\\\"MergeDistancePixels\\\":5,\\\"StandUp\\\":false,\\\"Stackable\\\":false}},\\\"LuaScript\\\":\\\"\\\",\\\"LuaScriptState\\\":\\\"\\\",\\\"XmlUI\\\":\\\"\\\"},\\\"9\\\":{\\\"GUID\\\":\\\"582a00\\\",\\\"Name\\\":\\\"Custom_Token\\\",\\\"Transform\\\":{\\\"posX\\\":-28.2681675,\\\"posY\\\":1.21000624,\\\"posZ\\\":14.044548,\\\"rotX\\\":-0.0000358944635,\\\"rotY\\\":270.006958,\\\"rotZ\\\":-0.00000148946117,\\\"scaleX\\\":0.25,\\\"scaleY\\\":1,\\\"scaleZ\\\":0.25},\\\"Nickname\\\":\\\"Damage\\\",\\\"Description\\\":\\\"\\\",\\\"GMNotes\\\":\\\"\\\",\\\"ColorDiffuse\\\":{\\\"r\\\":1,\\\"g\\\":1,\\\"b\\\":1},\\\"LayoutGroupSortIndex\\\":0,\\\"Locked\\\":false,\\\"Grid\\\":false,\\\"Snap\\\":false,\\\"IgnoreFoW\\\":false,\\\"MeasureMovement\\\":false,\\\"DragSelectable\\\":true,\\\"Autoraise\\\":true,\\\"Sticky\\\":true,\\\"Tooltip\\\":true,\\\"GridProjection\\\":false,\\\"HideWhenFaceDown\\\":false,\\\"Hands\\\":false,\\\"CustomImage\\\":{\\\"ImageURL\\\":\\\"http://cloud-3.steamusercontent.com/ugc/1758068501357114084/33093C666B9F4530D64B0117605494D5D17B38CC/\\\",\\\"ImageSecondaryURL\\\":\\\"\\\",\\\"ImageScalar\\\":1,\\\"WidthScale\\\":0,\\\"CustomToken\\\":{\\\"Thickness\\\":0.1,\\\"MergeDistancePixels\\\":5,\\\"StandUp\\\":false,\\\"Stackable\\\":false}},\\\"LuaScript\\\":\\\"\\\",\\\"LuaScriptState\\\":\\\"\\\",\\\"XmlUI\\\":\\\"\\\"}}}\"\r\nlocal HORROR_JSON = \"{\\\"GUID\\\":\\\"36be72\\\",\\\"Name\\\":\\\"Custom_Token\\\",\\\"Transform\\\":{\\\"posX\\\":-44.08369,\\\"posY\\\":1.69583237,\\\"posZ\\\":9.886347,\\\"rotX\\\":359.9201,\\\"rotY\\\":270.008972,\\\"rotZ\\\":0.0168560985,\\\"scaleX\\\":0.25,\\\"scaleY\\\":1,\\\"scaleZ\\\":0.25},\\\"Nickname\\\":\\\"Horror\\\",\\\"Description\\\":\\\"\\\",\\\"GMNotes\\\":\\\"\\\",\\\"ColorDiffuse\\\":{\\\"r\\\":1,\\\"g\\\":1,\\\"b\\\":1},\\\"LayoutGroupSortIndex\\\":0,\\\"Locked\\\":false,\\\"Grid\\\":false,\\\"Snap\\\":false,\\\"IgnoreFoW\\\":false,\\\"MeasureMovement\\\":false,\\\"DragSelectable\\\":true,\\\"Autoraise\\\":true,\\\"Sticky\\\":true,\\\"Tooltip\\\":true,\\\"GridProjection\\\":false,\\\"HideWhenFaceDown\\\":false,\\\"Hands\\\":false,\\\"CustomImage\\\":{\\\"ImageURL\\\":\\\"http://cloud-3.steamusercontent.com/ugc/1758068501357163535/6D9E0756503664D65BDB384656AC6D4BD713F5FC/\\\",\\\"ImageSecondaryURL\\\":\\\"\\\",\\\"ImageScalar\\\":1,\\\"WidthScale\\\":0,\\\"CustomToken\\\":{\\\"Thickness\\\":0.1,\\\"MergeDistancePixels\\\":5,\\\"StandUp\\\":false,\\\"Stackable\\\":false}},\\\"LuaScript\\\":\\\"\\\",\\\"LuaScriptState\\\":\\\"\\\",\\\"XmlUI\\\":\\\"\\\",\\\"States\\\":{\\\"2\\\":{\\\"GUID\\\":\\\"5c2361\\\",\\\"Name\\\":\\\"Custom_Token\\\",\\\"Transform\\\":{\\\"posX\\\":-27.7533741,\\\"posY\\\":1.210006,\\\"posZ\\\":15.9442654,\\\"rotX\\\":-0.0000202706469,\\\"rotY\\\":270.015259,\\\"rotZ\\\":0.0000220759175,\\\"scaleX\\\":0.25,\\\"scaleY\\\":1,\\\"scaleZ\\\":0.25},\\\"Nickname\\\":\\\"Horror\\\",\\\"Description\\\":\\\"\\\",\\\"GMNotes\\\":\\\"\\\",\\\"ColorDiffuse\\\":{\\\"r\\\":1,\\\"g\\\":1,\\\"b\\\":1},\\\"LayoutGroupSortIndex\\\":0,\\\"Locked\\\":false,\\\"Grid\\\":false,\\\"Snap\\\":false,\\\"IgnoreFoW\\\":false,\\\"MeasureMovement\\\":false,\\\"DragSelectable\\\":true,\\\"Autoraise\\\":true,\\\"Sticky\\\":true,\\\"Tooltip\\\":true,\\\"GridProjection\\\":false,\\\"HideWhenFaceDown\\\":false,\\\"Hands\\\":false,\\\"CustomImage\\\":{\\\"ImageURL\\\":\\\"http://cloud-3.steamusercontent.com/ugc/1758068501357163230/ED46F8BBAEDB4D3C96C654D48C56110D35F3F54F/\\\",\\\"ImageSecondaryURL\\\":\\\"\\\",\\\"ImageScalar\\\":1,\\\"WidthScale\\\":0,\\\"CustomToken\\\":{\\\"Thickness\\\":0.1,\\\"MergeDistancePixels\\\":5,\\\"StandUp\\\":false,\\\"Stackable\\\":false}},\\\"LuaScript\\\":\\\"\\\",\\\"LuaScriptState\\\":\\\"\\\",\\\"XmlUI\\\":\\\"\\\"},\\\"3\\\":{\\\"GUID\\\":\\\"3a3415\\\",\\\"Name\\\":\\\"Custom_Token\\\",\\\"Transform\\\":{\\\"posX\\\":-27.7533741,\\\"posY\\\":1.210006,\\\"posZ\\\":15.9442368,\\\"rotX\\\":-0.0000104253941,\\\"rotY\\\":270.015137,\\\"rotZ\\\":0.0000102804506,\\\"scaleX\\\":0.25,\\\"scaleY\\\":1,\\\"scaleZ\\\":0.25},\\\"Nickname\\\":\\\"Horror\\\",\\\"Description\\\":\\\"\\\",\\\"GMNotes\\\":\\\"\\\",\\\"ColorDiffuse\\\":{\\\"r\\\":1,\\\"g\\\":1,\\\"b\\\":1},\\\"LayoutGroupSortIndex\\\":0,\\\"Locked\\\":false,\\\"Grid\\\":false,\\\"Snap\\\":false,\\\"IgnoreFoW\\\":false,\\\"MeasureMovement\\\":false,\\\"DragSelectable\\\":true,\\\"Autoraise\\\":true,\\\"Sticky\\\":true,\\\"Tooltip\\\":true,\\\"GridProjection\\\":false,\\\"HideWhenFaceDown\\\":false,\\\"Hands\\\":false,\\\"CustomImage\\\":{\\\"ImageURL\\\":\\\"http://cloud-3.steamusercontent.com/ugc/1758068501357162977/E5D453CC14394519E004B4F8703FC425A7AE3D6C/\\\",\\\"ImageSecondaryURL\\\":\\\"\\\",\\\"ImageScalar\\\":1,\\\"WidthScale\\\":0,\\\"CustomToken\\\":{\\\"Thickness\\\":0.1,\\\"MergeDistancePixels\\\":5,\\\"StandUp\\\":false,\\\"Stackable\\\":false}},\\\"LuaScript\\\":\\\"\\\",\\\"LuaScriptState\\\":\\\"\\\",\\\"XmlUI\\\":\\\"\\\"},\\\"4\\\":{\\\"GUID\\\":\\\"4a91a8\\\",\\\"Name\\\":\\\"Custom_Token\\\",\\\"Transform\\\":{\\\"posX\\\":-27.7533741,\\\"posY\\\":1.21000612,\\\"posZ\\\":15.9442348,\\\"rotX\\\":0.00000189065361,\\\"rotY\\\":270.01532,\\\"rotZ\\\":0.0000159575811,\\\"scaleX\\\":0.25,\\\"scaleY\\\":1,\\\"scaleZ\\\":0.25},\\\"Nickname\\\":\\\"Horror\\\",\\\"Description\\\":\\\"\\\",\\\"GMNotes\\\":\\\"\\\",\\\"ColorDiffuse\\\":{\\\"r\\\":1,\\\"g\\\":1,\\\"b\\\":1},\\\"LayoutGroupSortIndex\\\":0,\\\"Locked\\\":false,\\\"Grid\\\":false,\\\"Snap\\\":false,\\\"IgnoreFoW\\\":false,\\\"MeasureMovement\\\":false,\\\"DragSelectable\\\":true,\\\"Autoraise\\\":true,\\\"Sticky\\\":true,\\\"Tooltip\\\":true,\\\"GridProjection\\\":false,\\\"HideWhenFaceDown\\\":false,\\\"Hands\\\":false,\\\"CustomImage\\\":{\\\"ImageURL\\\":\\\"http://cloud-3.steamusercontent.com/ugc/1758068501357164483/5E22FEAE253AE65BDE3FA09E4EE7133569F7E194/\\\",\\\"ImageSecondaryURL\\\":\\\"\\\",\\\"ImageScalar\\\":1,\\\"WidthScale\\\":0,\\\"CustomToken\\\":{\\\"Thickness\\\":0.1,\\\"MergeDistancePixels\\\":5,\\\"StandUp\\\":false,\\\"Stackable\\\":false}},\\\"LuaScript\\\":\\\"\\\",\\\"LuaScriptState\\\":\\\"\\\",\\\"XmlUI\\\":\\\"\\\"},\\\"5\\\":{\\\"GUID\\\":\\\"887aae\\\",\\\"Name\\\":\\\"Custom_Token\\\",\\\"Transform\\\":{\\\"posX\\\":-27.7533741,\\\"posY\\\":1.21000612,\\\"posZ\\\":15.9442024,\\\"rotX\\\":-0.00003432232,\\\"rotY\\\":270.016,\\\"rotZ\\\":-0.00000373151761,\\\"scaleX\\\":0.25,\\\"scaleY\\\":1,\\\"scaleZ\\\":0.25},\\\"Nickname\\\":\\\"Horror\\\",\\\"Description\\\":\\\"\\\",\\\"GMNotes\\\":\\\"\\\",\\\"ColorDiffuse\\\":{\\\"r\\\":1,\\\"g\\\":1,\\\"b\\\":1},\\\"LayoutGroupSortIndex\\\":0,\\\"Locked\\\":false,\\\"Grid\\\":false,\\\"Snap\\\":false,\\\"IgnoreFoW\\\":false,\\\"MeasureMovement\\\":false,\\\"DragSelectable\\\":true,\\\"Autoraise\\\":true,\\\"Sticky\\\":true,\\\"Tooltip\\\":true,\\\"GridProjection\\\":false,\\\"HideWhenFaceDown\\\":false,\\\"Hands\\\":false,\\\"CustomImage\\\":{\\\"ImageURL\\\":\\\"http://cloud-3.steamusercontent.com/ugc/1758068501357164251/34DC7172A2B433047DA853796DB52AECE019F99F/\\\",\\\"ImageSecondaryURL\\\":\\\"\\\",\\\"ImageScalar\\\":1,\\\"WidthScale\\\":0,\\\"CustomToken\\\":{\\\"Thickness\\\":0.1,\\\"MergeDistancePixels\\\":5,\\\"StandUp\\\":false,\\\"Stackable\\\":false}},\\\"LuaScript\\\":\\\"\\\",\\\"LuaScriptState\\\":\\\"\\\",\\\"XmlUI\\\":\\\"\\\"},\\\"6\\\":{\\\"GUID\\\":\\\"baa831\\\",\\\"Name\\\":\\\"Custom_Token\\\",\\\"Transform\\\":{\\\"posX\\\":-27.7533741,\\\"posY\\\":1.21000624,\\\"posZ\\\":15.94415,\\\"rotX\\\":-0.0000249414188,\\\"rotY\\\":270.0157,\\\"rotZ\\\":0.00000292043842,\\\"scaleX\\\":0.25,\\\"scaleY\\\":1,\\\"scaleZ\\\":0.25},\\\"Nickname\\\":\\\"Horror\\\",\\\"Description\\\":\\\"\\\",\\\"GMNotes\\\":\\\"\\\",\\\"ColorDiffuse\\\":{\\\"r\\\":1,\\\"g\\\":1,\\\"b\\\":1},\\\"LayoutGroupSortIndex\\\":0,\\\"Locked\\\":false,\\\"Grid\\\":false,\\\"Snap\\\":false,\\\"IgnoreFoW\\\":false,\\\"MeasureMovement\\\":false,\\\"DragSelectable\\\":true,\\\"Autoraise\\\":true,\\\"Sticky\\\":true,\\\"Tooltip\\\":true,\\\"GridProjection\\\":false,\\\"HideWhenFaceDown\\\":false,\\\"Hands\\\":false,\\\"CustomImage\\\":{\\\"ImageURL\\\":\\\"http://cloud-3.steamusercontent.com/ugc/1758068501357164030/0A12FD352F28A560EA7E7952D8CA618A5245F1E0/\\\",\\\"ImageSecondaryURL\\\":\\\"\\\",\\\"ImageScalar\\\":1,\\\"WidthScale\\\":0,\\\"CustomToken\\\":{\\\"Thickness\\\":0.1,\\\"MergeDistancePixels\\\":5,\\\"StandUp\\\":false,\\\"Stackable\\\":false}},\\\"LuaScript\\\":\\\"\\\",\\\"LuaScriptState\\\":\\\"\\\",\\\"XmlUI\\\":\\\"\\\"},\\\"7\\\":{\\\"GUID\\\":\\\"da94da\\\",\\\"Name\\\":\\\"Custom_Token\\\",\\\"Transform\\\":{\\\"posX\\\":-27.7533741,\\\"posY\\\":1.21000612,\\\"posZ\\\":15.944108,\\\"rotX\\\":-0.0000233948358,\\\"rotY\\\":270.015656,\\\"rotZ\\\":0.00000218774017,\\\"scaleX\\\":0.25,\\\"scaleY\\\":1,\\\"scaleZ\\\":0.25},\\\"Nickname\\\":\\\"Horror\\\",\\\"Description\\\":\\\"\\\",\\\"GMNotes\\\":\\\"\\\",\\\"ColorDiffuse\\\":{\\\"r\\\":1,\\\"g\\\":1,\\\"b\\\":1},\\\"LayoutGroupSortIndex\\\":0,\\\"Locked\\\":false,\\\"Grid\\\":false,\\\"Snap\\\":false,\\\"IgnoreFoW\\\":false,\\\"MeasureMovement\\\":false,\\\"DragSelectable\\\":true,\\\"Autoraise\\\":true,\\\"Sticky\\\":true,\\\"Tooltip\\\":true,\\\"GridProjection\\\":false,\\\"HideWhenFaceDown\\\":false,\\\"Hands\\\":false,\\\"CustomImage\\\":{\\\"ImageURL\\\":\\\"http://cloud-3.steamusercontent.com/ugc/1758068501357114485/8B2B8A9F61CC2D8C1F10977ABDB4BA2423AD143F/\\\",\\\"ImageSecondaryURL\\\":\\\"\\\",\\\"ImageScalar\\\":1,\\\"WidthScale\\\":0,\\\"CustomToken\\\":{\\\"Thickness\\\":0.1,\\\"MergeDistancePixels\\\":5,\\\"StandUp\\\":false,\\\"Stackable\\\":false}},\\\"LuaScript\\\":\\\"\\\",\\\"LuaScriptState\\\":\\\"\\\",\\\"XmlUI\\\":\\\"\\\"},\\\"8\\\":{\\\"GUID\\\":\\\"2e1687\\\",\\\"Name\\\":\\\"Custom_Token\\\",\\\"Transform\\\":{\\\"posX\\\":-27.753376,\\\"posY\\\":1.210006,\\\"posZ\\\":15.9440966,\\\"rotX\\\":-1.57902083e-8,\\\"rotY\\\":270.016541,\\\"rotZ\\\":-0.0000219759459,\\\"scaleX\\\":0.25,\\\"scaleY\\\":1,\\\"scaleZ\\\":0.25},\\\"Nickname\\\":\\\"Horror\\\",\\\"Description\\\":\\\"\\\",\\\"GMNotes\\\":\\\"\\\",\\\"ColorDiffuse\\\":{\\\"r\\\":1,\\\"g\\\":1,\\\"b\\\":1},\\\"LayoutGroupSortIndex\\\":0,\\\"Locked\\\":false,\\\"Grid\\\":false,\\\"Snap\\\":false,\\\"IgnoreFoW\\\":false,\\\"MeasureMovement\\\":false,\\\"DragSelectable\\\":true,\\\"Autoraise\\\":true,\\\"Sticky\\\":true,\\\"Tooltip\\\":true,\\\"GridProjection\\\":false,\\\"HideWhenFaceDown\\\":false,\\\"Hands\\\":false,\\\"CustomImage\\\":{\\\"ImageURL\\\":\\\"http://cloud-3.steamusercontent.com/ugc/1758068501357163806/F397C22A8DDB8F22E08E42E6449C3B5D8CFDB313/\\\",\\\"ImageSecondaryURL\\\":\\\"\\\",\\\"ImageScalar\\\":1,\\\"WidthScale\\\":0,\\\"CustomToken\\\":{\\\"Thickness\\\":0.1,\\\"MergeDistancePixels\\\":5,\\\"StandUp\\\":false,\\\"Stackable\\\":false}},\\\"LuaScript\\\":\\\"\\\",\\\"LuaScriptState\\\":\\\"\\\",\\\"XmlUI\\\":\\\"\\\"},\\\"9\\\":{\\\"GUID\\\":\\\"a6f1e0\\\",\\\"Name\\\":\\\"Custom_Token\\\",\\\"Transform\\\":{\\\"posX\\\":-27.753376,\\\"posY\\\":1.21000612,\\\"posZ\\\":15.9440622,\\\"rotX\\\":-0.0000209277514,\\\"rotY\\\":270.016724,\\\"rotZ\\\":0.00004970206,\\\"scaleX\\\":0.25,\\\"scaleY\\\":1,\\\"scaleZ\\\":0.25},\\\"Nickname\\\":\\\"Horror\\\",\\\"Description\\\":\\\"\\\",\\\"GMNotes\\\":\\\"\\\",\\\"ColorDiffuse\\\":{\\\"r\\\":1,\\\"g\\\":1,\\\"b\\\":1},\\\"LayoutGroupSortIndex\\\":0,\\\"Locked\\\":false,\\\"Grid\\\":false,\\\"Snap\\\":false,\\\"IgnoreFoW\\\":false,\\\"MeasureMovement\\\":false,\\\"DragSelectable\\\":true,\\\"Autoraise\\\":true,\\\"Sticky\\\":true,\\\"Tooltip\\\":true,\\\"GridProjection\\\":false,\\\"HideWhenFaceDown\\\":false,\\\"Hands\\\":false,\\\"CustomImage\\\":{\\\"ImageURL\\\":\\\"http://cloud-3.steamusercontent.com/ugc/1758068501357110165/AD791E6817304851C0ABD7AE97AA60326AC14538/\\\",\\\"ImageSecondaryURL\\\":\\\"\\\",\\\"ImageScalar\\\":1,\\\"WidthScale\\\":0,\\\"CustomToken\\\":{\\\"Thickness\\\":0.1,\\\"MergeDistancePixels\\\":5,\\\"StandUp\\\":false,\\\"Stackable\\\":false}},\\\"LuaScript\\\":\\\"\\\",\\\"LuaScriptState\\\":\\\"\\\",\\\"XmlUI\\\":\\\"\\\"}}}\"\r\nlocal PATH_JSON = \"{\\\"GUID\\\": \\\"7234af\\\",\\\"Name\\\": \\\"Custom_Tile\\\",\\\"Transform\\\": {\\\"posX\\\": -50.92423,\\\"posY\\\": 1.63760316,\\\"posZ\\\": 11.0779743,\\\"rotX\\\": 359.9201,\\\"rotY\\\": 270.00946,\\\"rotZ\\\": 0.0168931335,\\\"scaleX\\\": 1.0,\\\"scaleY\\\": 1.0,\\\"scaleZ\\\": 1.0},\\\"Nickname\\\": \\\"\\\",\\\"Description\\\": \\\"\\\",\\\"GMNotes\\\": \\\"\\\",\\\"ColorDiffuse\\\": {\\\"r\\\": 0.6045295,\\\"g\\\": 0.6045295,\\\"b\\\": 0.6045295},\\\"LayoutGroupSortIndex\\\": 0,\\\"Locked\\\": false,\\\"Grid\\\": true,\\\"Snap\\\": true,\\\"IgnoreFoW\\\": false,\\\"MeasureMovement\\\": false,\\\"DragSelectable\\\": true,\\\"Autoraise\\\": true,\\\"Sticky\\\": true,\\\"Tooltip\\\": true,\\\"GridProjection\\\": false,\\\"HideWhenFaceDown\\\": false,\\\"Hands\\\": false,\\\"CustomImage\\\": {\\\"ImageURL\\\": \\\"https://i.imgur.com/vppt2my.png\\\",\\\"ImageSecondaryURL\\\": \\\"https://i.imgur.com/vppt2my.png\\\",\\\"ImageScalar\\\": 1.0,\\\"WidthScale\\\": 0.0,\\\"CustomTile\\\": {\\\"Type\\\": 3,\\\"Thickness\\\": 0.1,\\\"Stackable\\\": false,\\\"Stretch\\\": true}},\\\"LuaScript\\\": \\\"\\\",\\\"LuaScriptState\\\": \\\"\\\",\\\"XmlUI\\\": \\\"\\\",\\\"States\\\": {\\\"2\\\": {\\\"GUID\\\": \\\"44b0c5\\\",\\\"Name\\\": \\\"Custom_Tile\\\",\\\"Transform\\\": {\\\"posX\\\": -39.7933121,\\\"posY\\\": 1.63758957,\\\"posZ\\\": 2.038383,\\\"rotX\\\": 359.9201,\\\"rotY\\\": 269.9961,\\\"rotZ\\\": 0.0168742146,\\\"scaleX\\\": 1.0,\\\"scaleY\\\": 1.0,\\\"scaleZ\\\": 1.0},\\\"Nickname\\\": \\\"\\\",\\\"Description\\\": \\\"\\\",\\\"GMNotes\\\": \\\"\\\",\\\"ColorDiffuse\\\": {\\\"r\\\": 0.6045295,\\\"g\\\": 0.6045295,\\\"b\\\": 0.6045295},\\\"LayoutGroupSortIndex\\\": 0,\\\"Locked\\\": false,\\\"Grid\\\": true,\\\"Snap\\\": true,\\\"IgnoreFoW\\\": false,\\\"MeasureMovement\\\": false,\\\"DragSelectable\\\": true,\\\"Autoraise\\\": true,\\\"Sticky\\\": true,\\\"Tooltip\\\": true,\\\"GridProjection\\\": false,\\\"HideWhenFaceDown\\\": false,\\\"Hands\\\": false,\\\"CustomImage\\\": {\\\"ImageURL\\\": \\\"https://i.imgur.com/HyfE8m8.png\\\",\\\"ImageSecondaryURL\\\": \\\"https://i.imgur.com/HyfE8m8.png\\\",\\\"ImageScalar\\\": 1.0,\\\"WidthScale\\\": 0.0,\\\"CustomTile\\\": {\\\"Type\\\": 3,\\\"Thickness\\\": 0.1,\\\"Stackable\\\": false,\\\"Stretch\\\": true}},\\\"LuaScript\\\": \\\"\\\",\\\"LuaScriptState\\\": \\\"\\\",\\\"XmlUI\\\": \\\"\\\"},\\\"3\\\": {\\\"GUID\\\": \\\"5b38c6\\\",\\\"Name\\\": \\\"Custom_Tile\\\",\\\"Transform\\\": {\\\"posX\\\": -38.8217163,\\\"posY\\\": 1.99356019,\\\"posZ\\\": 0.4159239,\\\"rotX\\\": 359.9201,\\\"rotY\\\": 272.9828,\\\"rotZ\\\": 0.01687373,\\\"scaleX\\\": 0.8,\\\"scaleY\\\": 1.0,\\\"scaleZ\\\": 0.8},\\\"Nickname\\\": \\\"\\\",\\\"Description\\\": \\\"\\\",\\\"GMNotes\\\": \\\"\\\",\\\"ColorDiffuse\\\": {\\\"r\\\": 0.6045295,\\\"g\\\": 0.6045295,\\\"b\\\": 0.6045295},\\\"LayoutGroupSortIndex\\\": 0,\\\"Locked\\\": false,\\\"Grid\\\": true,\\\"Snap\\\": true,\\\"IgnoreFoW\\\": false,\\\"MeasureMovement\\\": false,\\\"DragSelectable\\\": true,\\\"Autoraise\\\": true,\\\"Sticky\\\": true,\\\"Tooltip\\\": true,\\\"GridProjection\\\": false,\\\"HideWhenFaceDown\\\": false,\\\"Hands\\\": false,\\\"CustomImage\\\": {\\\"ImageURL\\\": \\\"https://i.imgur.com/dHKBLoD.png\\\",\\\"ImageSecondaryURL\\\": \\\"https://i.imgur.com/HyfE8m8.png\\\",\\\"ImageScalar\\\": 1.0,\\\"WidthScale\\\": 0.0,\\\"CustomTile\\\": {\\\"Type\\\": 3,\\\"Thickness\\\": 0.1,\\\"Stackable\\\": false,\\\"Stretch\\\": true}},\\\"LuaScript\\\": \\\"\\\",\\\"LuaScriptState\\\": \\\"\\\",\\\"XmlUI\\\": \\\"\\\"}}}\"\r\n\r\nlocal OBJECT_JSON = {}\r\nOBJECT_JSON[INDEX_DAMAGE] = DAMAGE_JSON\r\nOBJECT_JSON[INDEX_HORROR] = HORROR_JSON\r\nOBJECT_JSON[INDEX_PATH] = PATH_JSON\r\n\r\n\r\n---@param index number\r\n---@param player_color string\r\nfunction onScriptingButtonDown(index, player_color)\r\n if not VALID_INDEX[index] then return end\r\n local isResource = index==INDEX_RESOURCE\r\n ---@type Player\r\n local player = Player[player_color]\r\n local rotation = player:getPointerRotation()\r\n local position = player:getPointerPosition()\r\n position.y = position.y + HEIGHT_ADJUSTMENT\r\n\r\n ---@type SpawnObjectParams\r\n local parameters = {\r\n snap_to_grid = false,\r\n position = position,\r\n rotation = Vector(0, rotation, index==INDEX_DOOM and 180 or 0),\r\n scale = isResource and RESOURCE_SCALE or (index==INDEX_PATH and PATH_SCALE or CLOOM_SCALE),\r\n type = isResource and \"Custom_Token\" or \"Custom_Tile\",\r\n sound = false,\r\n ---@param thing TTSObject\r\n callback_function = function (thing)\r\n thing.use_snap_points = false\r\n end\r\n }\r\n\r\n if index<=INDEX_HORROR then\r\n ---@type SpawnObjectParamsJSON\r\n parameters = parameters\r\n parameters.json = OBJECT_JSON[index]\r\n spawnObjectJSON(parameters)\r\n else\r\n local object = spawnObject(parameters)\r\n if index==INDEX_RESOURCE then makeResource(object) else makeCloom(object) end\r\n end\r\nend\r\n\r\n---@param object TTSObject\r\nfunction makeCloom(object)\r\n object:setCustomObject {\r\n type = TILE_TYPE_CIRCLE,\r\n image = TOKEN_CLUE,\r\n image_bottom = TOKEN_DOOM,\r\n stackable = true,\r\n thickness = 0.1\r\n }\r\nend\r\n\r\n---@param object TTSObject\r\nfunction makeResource(object)\r\n object:setCustomObject {\r\n image = TOKEN_RESOURCE,\r\n thickness = 0.3,\r\n merge_distance = 5,\r\n stackable = true\r\n }\r\nend",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "66e97c",
"Name": "Custom_Model_Bag",
"Transform": {
"posX": 35.2928467,
"posY": 1.81730735,
"posZ": -0.000773954671,
"rotX": 359.9201,
"rotY": 269.999725,
"rotZ": 0.01687321,
"scaleX": 1.76,
"scaleY": 0.11,
"scaleZ": 1.49
},
"Nickname": "Fan-Made Scenarios/Campaigns/Miscellany",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.9999998,
"g": 0.992168248,
"b": 0.9999998
},
"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": false,
"Hands": false,
"MaterialIndex": -1,
"MeshIndex": -1,
"CustomMesh": {
"MeshURL": "http://pastebin.com/raw.php?i=uWAmuNZ2",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/1758068588410888435/EDEEC5792F4161A1F125EF7F65AB1C1DC8FDBC27/",
"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": "",
"LuaScriptState": "{\"ml\":[]}",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "b2077d",
"Name": "Bag",
"Transform": {
"posX": 14.547801,
"posY": 2.27493525,
"posZ": -36.3138657,
"rotX": -0.00353874336,
"rotY": 0.000210461585,
"rotZ": 359.983246,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Secret Objectives & Ultimatums",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.0,
"g": 0.0,
"b": 0.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,
"Bag": {
"Order": 0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "5f3cba",
"Name": "Deck",
"Transform": {
"posX": 16.4992332,
"posY": 3.61228347,
"posZ": -39.1442642,
"rotX": 357.062347,
"rotY": 269.8005,
"rotZ": 184.5534,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": false,
"SidewaysCard": false,
"DeckIDs": [
33000,
33001,
33002,
33003,
33004,
33005,
33006,
33007,
33008,
33009,
33010,
33011,
33012,
33013,
33014,
33015,
33016,
33017,
33018,
33019,
33020,
33021,
33022,
33023,
33024,
33025,
33026,
33027,
33028,
33029,
33030,
33031,
33032,
33034,
33033
],
"CustomDeck": {
"330": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/976605526721823383/9C6FEA16C9541D3D98EB4CF0B636B9CF030F249E/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/976605526724071043/C8D7BE5AC836B4FBE1E6F4D4C52F8B85FE53CAC8/",
"NumWidth": 8,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "0e05f2",
"Name": "Card",
"Transform": {
"posX": -4.685193,
"posY": 1.40403569,
"posZ": 3.6671567,
"rotX": -0.000363378,
"rotY": 180.0,
"rotZ": 180.003937,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 33000,
"SidewaysCard": false,
"CustomDeck": {
"330": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/976605526721823383/9C6FEA16C9541D3D98EB4CF0B636B9CF030F249E/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/976605526724071043/C8D7BE5AC836B4FBE1E6F4D4C52F8B85FE53CAC8/",
"NumWidth": 8,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "63bde8",
"Name": "Card",
"Transform": {
"posX": -5.62518072,
"posY": 1.17050874,
"posZ": 0.3185133,
"rotX": 359.9881,
"rotY": 180.000977,
"rotZ": 0.000145474231,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 33001,
"SidewaysCard": false,
"CustomDeck": {
"330": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/976605526721823383/9C6FEA16C9541D3D98EB4CF0B636B9CF030F249E/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/976605526724071043/C8D7BE5AC836B4FBE1E6F4D4C52F8B85FE53CAC8/",
"NumWidth": 8,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "0e05f2",
"Name": "Card",
"Transform": {
"posX": 8.36917E-09,
"posY": 1.16970241,
"posZ": 5.946697E-08,
"rotX": -1.07883977E-06,
"rotY": 0.00376580725,
"rotZ": 180.0,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 33002,
"SidewaysCard": false,
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": []
},
{
"GUID": "0e05f2",
"Name": "Card",
"Transform": {
"posX": 8.36917E-09,
"posY": 1.16970241,
"posZ": 5.946697E-08,
"rotX": -1.07883977E-06,
"rotY": 0.00376580725,
"rotZ": 180.0,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 33003,
"SidewaysCard": false,
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": []
},
{
"GUID": "0e05f2",
"Name": "Card",
"Transform": {
"posX": 8.36917E-09,
"posY": 1.16970241,
"posZ": 5.946697E-08,
"rotX": -1.07883977E-06,
"rotY": 0.00376580725,
"rotZ": 180.0,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 33004,
"SidewaysCard": false,
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": []
},
{
"GUID": "0e05f2",
"Name": "Card",
"Transform": {
"posX": 8.36917E-09,
"posY": 1.16970241,
"posZ": 5.946697E-08,
"rotX": -1.07883977E-06,
"rotY": 0.00376580725,
"rotZ": 180.0,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 33005,
"SidewaysCard": false,
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": []
},
{
"GUID": "0e05f2",
"Name": "Card",
"Transform": {
"posX": 8.36917E-09,
"posY": 1.16970241,
"posZ": 5.946697E-08,
"rotX": -1.07883977E-06,
"rotY": 0.00376580725,
"rotZ": 180.0,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 33006,
"SidewaysCard": false,
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": []
},
{
"GUID": "0e05f2",
"Name": "Card",
"Transform": {
"posX": 8.36917E-09,
"posY": 1.16970241,
"posZ": 5.946697E-08,
"rotX": -1.07883977E-06,
"rotY": 0.00376580725,
"rotZ": 180.0,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 33007,
"SidewaysCard": false,
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": []
},
{
"GUID": "0e05f2",
"Name": "Card",
"Transform": {
"posX": 8.36917E-09,
"posY": 1.16970241,
"posZ": 5.946697E-08,
"rotX": -1.07883977E-06,
"rotY": 0.00376580725,
"rotZ": 180.0,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 33008,
"SidewaysCard": false,
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": []
},
{
"GUID": "0e05f2",
"Name": "Card",
"Transform": {
"posX": 8.36917E-09,
"posY": 1.16970241,
"posZ": 5.946697E-08,
"rotX": -1.07883977E-06,
"rotY": 0.00376580725,
"rotZ": 180.0,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 33009,
"SidewaysCard": false,
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": []
},
{
"GUID": "0e05f2",
"Name": "Card",
"Transform": {
"posX": 8.36917E-09,
"posY": 1.16970241,
"posZ": 5.946697E-08,
"rotX": -1.07883977E-06,
"rotY": 0.00376580725,
"rotZ": 180.0,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 33010,
"SidewaysCard": false,
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": []
},
{
"GUID": "0e05f2",
"Name": "Card",
"Transform": {
"posX": 8.36917E-09,
"posY": 1.16970241,
"posZ": 5.946697E-08,
"rotX": -1.07883977E-06,
"rotY": 0.00376580725,
"rotZ": 180.0,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 33011,
"SidewaysCard": false,
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": []
},
{
"GUID": "0e05f2",
"Name": "Card",
"Transform": {
"posX": 8.36917E-09,
"posY": 1.16970241,
"posZ": 5.946697E-08,
"rotX": -1.07883977E-06,
"rotY": 0.00376580725,
"rotZ": 180.0,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 33012,
"SidewaysCard": false,
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": []
},
{
"GUID": "0e05f2",
"Name": "Card",
"Transform": {
"posX": 8.36917E-09,
"posY": 1.16970241,
"posZ": 5.946697E-08,
"rotX": -1.07883977E-06,
"rotY": 0.00376580725,
"rotZ": 180.0,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 33013,
"SidewaysCard": false,
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": []
},
{
"GUID": "0e05f2",
"Name": "Card",
"Transform": {
"posX": 8.36917E-09,
"posY": 1.16970241,
"posZ": 5.946697E-08,
"rotX": -1.07883977E-06,
"rotY": 0.00376580725,
"rotZ": 180.0,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 33014,
"SidewaysCard": false,
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": []
},
{
"GUID": "0e05f2",
"Name": "Card",
"Transform": {
"posX": 8.36917E-09,
"posY": 1.16970241,
"posZ": 5.946697E-08,
"rotX": -1.07883977E-06,
"rotY": 0.00376580725,
"rotZ": 180.0,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 33015,
"SidewaysCard": false,
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": []
},
{
"GUID": "0e05f2",
"Name": "Card",
"Transform": {
"posX": 8.36917E-09,
"posY": 1.16970241,
"posZ": 5.946697E-08,
"rotX": -1.07883977E-06,
"rotY": 0.00376580725,
"rotZ": 180.0,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 33016,
"SidewaysCard": false,
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": []
},
{
"GUID": "0e05f2",
"Name": "Card",
"Transform": {
"posX": 8.36917E-09,
"posY": 1.16970241,
"posZ": 5.946697E-08,
"rotX": -1.07883977E-06,
"rotY": 0.00376580725,
"rotZ": 180.0,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 33017,
"SidewaysCard": false,
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": []
},
{
"GUID": "0e05f2",
"Name": "Card",
"Transform": {
"posX": 8.36917E-09,
"posY": 1.16970241,
"posZ": 5.946697E-08,
"rotX": -1.07883977E-06,
"rotY": 0.00376580725,
"rotZ": 180.0,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 33018,
"SidewaysCard": false,
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": []
},
{
"GUID": "0e05f2",
"Name": "Card",
"Transform": {
"posX": 8.36917E-09,
"posY": 1.16970241,
"posZ": 5.946697E-08,
"rotX": -1.07883977E-06,
"rotY": 0.00376580725,
"rotZ": 180.0,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 33019,
"SidewaysCard": false,
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": []
},
{
"GUID": "0e05f2",
"Name": "Card",
"Transform": {
"posX": 8.36917E-09,
"posY": 1.16970241,
"posZ": 5.946697E-08,
"rotX": -1.07883977E-06,
"rotY": 0.00376580725,
"rotZ": 180.0,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 33020,
"SidewaysCard": false,
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": []
},
{
"GUID": "0e05f2",
"Name": "Card",
"Transform": {
"posX": 8.36917E-09,
"posY": 1.16970241,
"posZ": 5.946697E-08,
"rotX": -1.07883977E-06,
"rotY": 0.00376580725,
"rotZ": 180.0,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 33021,
"SidewaysCard": false,
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": []
},
{
"GUID": "0e05f2",
"Name": "Card",
"Transform": {
"posX": 8.36917E-09,
"posY": 1.16970241,
"posZ": 5.946697E-08,
"rotX": -1.07883977E-06,
"rotY": 0.00376580725,
"rotZ": 180.0,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 33022,
"SidewaysCard": false,
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": []
},
{
"GUID": "0e05f2",
"Name": "Card",
"Transform": {
"posX": 8.36917E-09,
"posY": 1.16970241,
"posZ": 5.946697E-08,
"rotX": -1.07883977E-06,
"rotY": 0.00376580725,
"rotZ": 180.0,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 33023,
"SidewaysCard": false,
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": []
},
{
"GUID": "0e05f2",
"Name": "Card",
"Transform": {
"posX": 8.36917E-09,
"posY": 1.16970241,
"posZ": 5.946697E-08,
"rotX": -1.07883977E-06,
"rotY": 0.00376580725,
"rotZ": 180.0,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 33024,
"SidewaysCard": false,
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": []
},
{
"GUID": "0e05f2",
"Name": "Card",
"Transform": {
"posX": 8.36917E-09,
"posY": 1.16970241,
"posZ": 5.946697E-08,
"rotX": -1.07883977E-06,
"rotY": 0.00376580725,
"rotZ": 180.0,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 33025,
"SidewaysCard": false,
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": []
},
{
"GUID": "0e05f2",
"Name": "Card",
"Transform": {
"posX": 8.36917E-09,
"posY": 1.16970241,
"posZ": 5.946697E-08,
"rotX": -1.07883977E-06,
"rotY": 0.00376580725,
"rotZ": 180.0,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 33026,
"SidewaysCard": false,
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": []
},
{
"GUID": "0e05f2",
"Name": "Card",
"Transform": {
"posX": 8.36917E-09,
"posY": 1.16970241,
"posZ": 5.946697E-08,
"rotX": -1.07883977E-06,
"rotY": 0.00376580725,
"rotZ": 180.0,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 33027,
"SidewaysCard": false,
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": []
},
{
"GUID": "0e05f2",
"Name": "Card",
"Transform": {
"posX": 8.36917E-09,
"posY": 1.16970241,
"posZ": 5.946697E-08,
"rotX": -1.07883977E-06,
"rotY": 0.00376580725,
"rotZ": 180.0,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 33028,
"SidewaysCard": false,
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": []
},
{
"GUID": "0e05f2",
"Name": "Card",
"Transform": {
"posX": 8.36917E-09,
"posY": 1.16970241,
"posZ": 5.946697E-08,
"rotX": -1.07883977E-06,
"rotY": 0.00376580725,
"rotZ": 180.0,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 33029,
"SidewaysCard": false,
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": []
},
{
"GUID": "0e05f2",
"Name": "Card",
"Transform": {
"posX": 8.36917E-09,
"posY": 1.16970241,
"posZ": 5.946697E-08,
"rotX": -1.07883977E-06,
"rotY": 0.00376580725,
"rotZ": 180.0,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 33030,
"SidewaysCard": false,
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": []
},
{
"GUID": "0e05f2",
"Name": "Card",
"Transform": {
"posX": 8.36917E-09,
"posY": 1.16970241,
"posZ": 5.946697E-08,
"rotX": -1.07883977E-06,
"rotY": 0.00376580725,
"rotZ": 180.0,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 33031,
"SidewaysCard": false,
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": []
},
{
"GUID": "0e05f2",
"Name": "Card",
"Transform": {
"posX": 8.36917E-09,
"posY": 1.16970241,
"posZ": 5.946697E-08,
"rotX": -1.07883977E-06,
"rotY": 0.00376580725,
"rotZ": 180.0,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 33032,
"SidewaysCard": false,
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": []
},
{
"GUID": "0e05f2",
"Name": "Card",
"Transform": {
"posX": -0.3260079,
"posY": 1.03162014,
"posZ": -3.647439,
"rotX": -0.00445017731,
"rotY": -0.00133068953,
"rotZ": 0.0004605112,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 33034,
"SidewaysCard": false,
"CustomDeck": {
"330": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/976605526721823383/9C6FEA16C9541D3D98EB4CF0B636B9CF030F249E/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/976605526724071043/C8D7BE5AC836B4FBE1E6F4D4C52F8B85FE53CAC8/",
"NumWidth": 8,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "9537b5",
"Name": "Card",
"Transform": {
"posX": -0.48127073,
"posY": 1.17643881,
"posZ": -3.5733602,
"rotX": 0.00133565883,
"rotY": -0.0006434482,
"rotZ": 0.00116366043,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 33033,
"SidewaysCard": false,
"CustomDeck": {
"330": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/976605526721823383/9C6FEA16C9541D3D98EB4CF0B636B9CF030F249E/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/976605526724071043/C8D7BE5AC836B4FBE1E6F4D4C52F8B85FE53CAC8/",
"NumWidth": 8,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "f3dfc9",
"Name": "Notecard",
"Transform": {
"posX": 17.1748123,
"posY": 3.593701,
"posZ": -38.81848,
"rotX": 0.44045648,
"rotY": 89.9851456,
"rotZ": 359.8945,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "HOW TO USE SECRET OBJ.",
"Description": "\n\nAt the start of each scenario, each investigator is dealt 2 secret objectives, they choose one. If they complete their secret objective at any time during the scenario, they add the card to their PERSONAL victory display.\n\n",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "1e8a13",
"Name": "Deck",
"Transform": {
"posX": 14.3677483,
"posY": 3.614094,
"posZ": -31.0209312,
"rotX": 359.57608,
"rotY": 269.999329,
"rotZ": 180.216385,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": false,
"SidewaysCard": false,
"DeckIDs": [
33100,
33101,
33102,
33103,
33104,
33105,
33106,
33107,
33108,
33109,
33110,
33111
],
"CustomDeck": {
"331": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/976605526724050690/73976114CA4EE3BB8BB03159476CAFAB63F551D3/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/976605526724051130/604A4D98487815A81408F37D5FD4BD5201DDF087/",
"NumWidth": 6,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "5249d8",
"Name": "Card",
"Transform": {
"posX": -5.28552,
"posY": 1.18186891,
"posZ": -0.071601294,
"rotX": -0.000602881541,
"rotY": 179.999969,
"rotZ": 179.996765,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 33100,
"SidewaysCard": false,
"CustomDeck": {
"331": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/976605526724050690/73976114CA4EE3BB8BB03159476CAFAB63F551D3/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/976605526724051130/604A4D98487815A81408F37D5FD4BD5201DDF087/",
"NumWidth": 6,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "9e01c2",
"Name": "Card",
"Transform": {
"posX": 7.35361,
"posY": 1.15243661,
"posZ": 2.88382149,
"rotX": 0.00242724619,
"rotY": 180.002121,
"rotZ": 0.5426368,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 33101,
"SidewaysCard": false,
"CustomDeck": {
"331": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/976605526724050690/73976114CA4EE3BB8BB03159476CAFAB63F551D3/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/976605526724051130/604A4D98487815A81408F37D5FD4BD5201DDF087/",
"NumWidth": 6,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "5249d8",
"Name": "Card",
"Transform": {
"posX": 7.282809,
"posY": 1.168238,
"posZ": 2.709967,
"rotX": 0.00194272655,
"rotY": 180.003586,
"rotZ": 0.7061489,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 33102,
"SidewaysCard": false,
"CustomDeck": {
"331": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/976605526724050690/73976114CA4EE3BB8BB03159476CAFAB63F551D3/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/976605526724051130/604A4D98487815A81408F37D5FD4BD5201DDF087/",
"NumWidth": 6,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "5249d8",
"Name": "Card",
"Transform": {
"posX": 6.59459734,
"posY": 1.18017638,
"posZ": 2.55350113,
"rotX": 0.0379076153,
"rotY": 179.953415,
"rotZ": 359.9774,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 33103,
"SidewaysCard": false,
"CustomDeck": {
"331": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/976605526724050690/73976114CA4EE3BB8BB03159476CAFAB63F551D3/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/976605526724051130/604A4D98487815A81408F37D5FD4BD5201DDF087/",
"NumWidth": 6,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "5249d8",
"Name": "Card",
"Transform": {
"posX": 7.368428,
"posY": 1.22450531,
"posZ": 3.031967,
"rotX": 0.005974165,
"rotY": 180.00856,
"rotZ": 358.929565,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 33104,
"SidewaysCard": false,
"CustomDeck": {
"331": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/976605526724050690/73976114CA4EE3BB8BB03159476CAFAB63F551D3/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/976605526724051130/604A4D98487815A81408F37D5FD4BD5201DDF087/",
"NumWidth": 6,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "5249d8",
"Name": "Card",
"Transform": {
"posX": 7.052122,
"posY": 1.18113351,
"posZ": 3.016002,
"rotX": -0.0005948959,
"rotY": 180.0325,
"rotZ": -0.00372294453,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 33105,
"SidewaysCard": false,
"CustomDeck": {
"331": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/976605526724050690/73976114CA4EE3BB8BB03159476CAFAB63F551D3/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/976605526724051130/604A4D98487815A81408F37D5FD4BD5201DDF087/",
"NumWidth": 6,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "5249d8",
"Name": "Card",
"Transform": {
"posX": 7.28407431,
"posY": 1.16965234,
"posZ": 3.20454383,
"rotX": -0.000677955744,
"rotY": 180.001938,
"rotZ": 359.507629,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 33106,
"SidewaysCard": false,
"CustomDeck": {
"331": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/976605526724050690/73976114CA4EE3BB8BB03159476CAFAB63F551D3/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/976605526724051130/604A4D98487815A81408F37D5FD4BD5201DDF087/",
"NumWidth": 6,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "5249d8",
"Name": "Card",
"Transform": {
"posX": 7.09101868,
"posY": 1.18575871,
"posZ": 2.90155268,
"rotX": 0.0005172629,
"rotY": 180.004822,
"rotZ": 0.120746911,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 33107,
"SidewaysCard": false,
"CustomDeck": {
"331": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/976605526724050690/73976114CA4EE3BB8BB03159476CAFAB63F551D3/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/976605526724051130/604A4D98487815A81408F37D5FD4BD5201DDF087/",
"NumWidth": 6,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "5249d8",
"Name": "Card",
"Transform": {
"posX": 7.35365534,
"posY": 1.125502,
"posZ": 2.61661339,
"rotX": 0.00187181146,
"rotY": 180.005173,
"rotZ": 0.5429629,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 33108,
"SidewaysCard": false,
"CustomDeck": {
"331": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/976605526724050690/73976114CA4EE3BB8BB03159476CAFAB63F551D3/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/976605526724051130/604A4D98487815A81408F37D5FD4BD5201DDF087/",
"NumWidth": 6,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "5249d8",
"Name": "Card",
"Transform": {
"posX": 7.277207,
"posY": 1.13920844,
"posZ": 2.88317,
"rotX": -0.002832947,
"rotY": 180.002136,
"rotZ": 359.447083,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 33109,
"SidewaysCard": false,
"CustomDeck": {
"331": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/976605526724050690/73976114CA4EE3BB8BB03159476CAFAB63F551D3/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/976605526724051130/604A4D98487815A81408F37D5FD4BD5201DDF087/",
"NumWidth": 6,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "5249d8",
"Name": "Card",
"Transform": {
"posX": 7.352886,
"posY": 1.16246665,
"posZ": 2.79709458,
"rotX": 0.00112222019,
"rotY": 179.999588,
"rotZ": 0.06620721,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 33110,
"SidewaysCard": false,
"CustomDeck": {
"331": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/976605526724050690/73976114CA4EE3BB8BB03159476CAFAB63F551D3/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/976605526724051130/604A4D98487815A81408F37D5FD4BD5201DDF087/",
"NumWidth": 6,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "5249d8",
"Name": "Card",
"Transform": {
"posX": 7.1579175,
"posY": 1.23136532,
"posZ": 2.80799484,
"rotX": 0.00369784585,
"rotY": 180.004562,
"rotZ": 358.573364,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 33111,
"SidewaysCard": false,
"CustomDeck": {
"331": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/976605526724050690/73976114CA4EE3BB8BB03159476CAFAB63F551D3/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/976605526724051130/604A4D98487815A81408F37D5FD4BD5201DDF087/",
"NumWidth": 6,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "ed4645",
"Name": "Notecard",
"Transform": {
"posX": 13.5002995,
"posY": 3.56974077,
"posZ": -31.2983685,
"rotX": 336.4251,
"rotY": 87.15789,
"rotZ": 6.78468227,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "HOW TO USE ULTIMATUMS",
"Description": "\nAt the start of each scenario, investigators may collectively choose to draw a random ultimatum. These ultimatums significantly ramp up the difficulty of the game, but reward them should they overcome the challenges.",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "2e32b1",
"Name": "Tablet",
"Transform": {
"posX": 30.76069,
"posY": 3.96719074,
"posZ": -16.55145,
"rotX": 3.845821,
"rotY": 270.0964,
"rotZ": 1.85297632,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Fan Content Index",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"Tablet": {
"PageURL": "https://docs.google.com/spreadsheets/d/10YpTk4X3mh2enAdrguH-zl82gohxxuoNRggEUxB4FJ0/edit#gid=0"
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "5db60c",
"Name": "Custom_Model_Bag",
"Transform": {
"posX": 37.7325745,
"posY": 2.214048,
"posZ": 2.08137941,
"rotX": 359.885864,
"rotY": 269.999939,
"rotZ": 0.0150087886,
"scaleX": 0.5,
"scaleY": 0.07,
"scaleZ": 0.5
},
"Nickname": "Fan-Made Standalone Scenarios",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"MaterialIndex": -1,
"MeshIndex": -1,
"CustomMesh": {
"MeshURL": "https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/core_h_MSH.obj",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/1758068588410864087/97EBA1F7BA51181A664CE5A733AB092BA843E32D/",
"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": "",
"LuaScriptState": "{\"ml\":[]}",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "c90c49",
"Name": "Custom_Model",
"Transform": {
"posX": -11.0126047,
"posY": 1.62435615,
"posZ": 67.68356,
"rotX": 0.0465340726,
"rotY": 270.0,
"rotZ": -0.00375141227,
"scaleX": 2.21,
"scaleY": 0.46,
"scaleZ": 2.42
},
"Nickname": "The Thing in the Woods",
"Description": "",
"GMNotes": "fancreations/scenario_the_thing_in_the_woods.json",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0,
"a": 0.274509817
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomMesh": {
"MeshURL": "https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/798737729142949442/404A26E158B9EBC1069A5FBA9BA2331CBFD7851B/",
"NormalURL": "",
"ColliderURL": "",
"Convex": true,
"MaterialIndex": 3,
"TypeIndex": 0,
"CustomShader": {
"SpecularColor": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"SpecularIntensity": 0.0,
"SpecularSharpness": 2.0,
"FresnelStrength": 0.0
},
"CastShadows": true
},
"LuaScript": "\r\nfunction onload(saved_data)\r\n createDownloadButton()\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make Download button\r\nfunction createDownloadButton()\r\n self.createButton({\r\n label=\"Download\", click_function=\"buttonClick_download\", function_owner=self,\r\n position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800,\r\n font_size=150, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by download button,\r\nfunction buttonClick_download()\r\n local params = { url = self.getGMNotes(), replace = self.guid }\r\n Global.call('placeholder_download', params)\r\nend\r\n",
"LuaScriptState": "{\"ml\":{\"0f3e93\":{\"lock\":false,\"pos\":{\"x\":-26.9859,\"y\":1.6191,\"z\":-0.0135},\"rot\":{\"x\":359.9201,\"y\":269.994,\"z\":0.0169}},\"2261a5\":{\"lock\":false,\"pos\":{\"x\":-4.7182,\"y\":1.5837,\"z\":-14.7432},\"rot\":{\"x\":359.9197,\"y\":270.0041,\"z\":0.0168}},\"2ec534\":{\"lock\":false,\"pos\":{\"x\":-12.3654,\"y\":1.6721,\"z\":11.366},\"rot\":{\"x\":0.0799,\"y\":90,\"z\":359.9831}},\"383672\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6851,\"z\":-3.83},\"rot\":{\"x\":359.9201,\"y\":269.9998,\"z\":0.0169}},\"46b65b\":{\"lock\":false,\"pos\":{\"x\":-10.4494,\"y\":1.5959,\"z\":-0.6855},\"rot\":{\"x\":359.9201,\"y\":270,\"z\":0.0169}},\"491279\":{\"lock\":false,\"pos\":{\"x\":-3.9277,\"y\":1.7131,\"z\":5.7571},\"rot\":{\"x\":359.9197,\"y\":269.9995,\"z\":180.0168}},\"51527f\":{\"lock\":false,\"pos\":{\"x\":-30.2243,\"y\":1.6954,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9985,\"z\":0.0169}},\"57318a\":{\"lock\":false,\"pos\":{\"x\":-2.6886,\"y\":1.6543,\"z\":-5.0515},\"rot\":{\"x\":0.0169,\"y\":179.9818,\"z\":0.0803}},\"5942b3\":{\"lock\":false,\"pos\":{\"x\":-23.6766,\"y\":1.6874,\"z\":3.86},\"rot\":{\"x\":359.9201,\"y\":269.9991,\"z\":0.0169}},\"641bdb\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6771,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":270,\"z\":0.0169}},\"7234af\":{\"lock\":false,\"pos\":{\"x\":-20.6314,\"y\":1.6102,\"z\":-0.1048},\"rot\":{\"x\":359.9201,\"y\":269.994,\"z\":0.0169}},\"8480f8\":{\"lock\":false,\"pos\":{\"x\":-3.956,\"y\":1.6585,\"z\":-10.4412},\"rot\":{\"x\":359.9197,\"y\":270,\"z\":180.0168}},\"98d4a2\":{\"lock\":false,\"pos\":{\"x\":-50.9244,\"y\":1.7294,\"z\":8.1784},\"rot\":{\"x\":359.9201,\"y\":270,\"z\":180.0169}},\"a45247\":{\"lock\":false,\"pos\":{\"x\":1.6952,\"y\":1.5583,\"z\":14.2788},\"rot\":{\"x\":359.9551,\"y\":224.998,\"z\":0.0687}},\"c6305b\":{\"lock\":false,\"pos\":{\"x\":-2.7247,\"y\":1.6551,\"z\":0.3733},\"rot\":{\"x\":0.0168,\"y\":179.9938,\"z\":0.0803}}}}",
"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
}
}
]
},
{
"GUID": "b7c6be",
"Name": "Custom_Model",
"Transform": {
"posX": -10.1436481,
"posY": 1.66923618,
"posZ": 67.99076,
"rotX": 359.980835,
"rotY": 269.999725,
"rotZ": 357.0548,
"scaleX": 2.21,
"scaleY": 0.46,
"scaleZ": 2.42
},
"Nickname": "The Symphony of Erich Zann",
"Description": "",
"GMNotes": "fancreations/scenario_symphony_of_erich_zann.json",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0,
"a": 0.274509817
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomMesh": {
"MeshURL": "https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/1254763972105175718/5A09C7E8EBCC79DD9E405FF6F83E49C2C27D5F29/",
"NormalURL": "",
"ColliderURL": "",
"Convex": true,
"MaterialIndex": 3,
"TypeIndex": 0,
"CustomShader": {
"SpecularColor": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"SpecularIntensity": 0.0,
"SpecularSharpness": 2.0,
"FresnelStrength": 0.0
},
"CastShadows": true
},
"LuaScript": "\r\nfunction onload(saved_data)\r\n createDownloadButton()\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make Download button\r\nfunction createDownloadButton()\r\n self.createButton({\r\n label=\"Download\", click_function=\"buttonClick_download\", function_owner=self,\r\n position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800,\r\n font_size=150, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by download button,\r\nfunction buttonClick_download()\r\n local params = { url = self.getGMNotes(), replace = self.guid }\r\n Global.call('placeholder_download', params)\r\nend\r\n",
"LuaScriptState": "{\"ml\":{\"025ede\":{\"lock\":false,\"pos\":{\"x\":-2.7253,\"y\":1.6208,\"z\":0.3733},\"rot\":{\"x\":0.0168,\"y\":180.0004,\"z\":0.0803}},\"0b6540\":{\"lock\":false,\"pos\":{\"x\":-3.9276,\"y\":1.7299,\"z\":5.7571},\"rot\":{\"x\":359.9197,\"y\":270,\"z\":180.0168}},\"1d53b9\":{\"lock\":false,\"pos\":{\"x\":-27.1699,\"y\":1.6203,\"z\":3.4176},\"rot\":{\"x\":359.9316,\"y\":315.0006,\"z\":359.9554}},\"267216\":{\"lock\":false,\"pos\":{\"x\":-9.3367,\"y\":1.5512,\"z\":22.848},\"rot\":{\"x\":359.9201,\"y\":270.025,\"z\":359.3601}},\"28cca1\":{\"lock\":false,\"pos\":{\"x\":-2.6882,\"y\":1.6191,\"z\":-5.0485},\"rot\":{\"x\":0.0168,\"y\":179.9995,\"z\":0.0803}},\"4dc9bc\":{\"lock\":false,\"pos\":{\"x\":-23.6766,\"y\":1.6303,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":270.0023,\"z\":180.0168}},\"5abb04\":{\"lock\":false,\"pos\":{\"x\":-23.6766,\"y\":1.6156,\"z\":3.86},\"rot\":{\"x\":359.9832,\"y\":-0.0044,\"z\":359.92}},\"5bd64c\":{\"lock\":false,\"pos\":{\"x\":-30.2243,\"y\":1.6394,\"z\":7.5702},\"rot\":{\"x\":359.9201,\"y\":270.0232,\"z\":180.0168}},\"67cf63\":{\"lock\":false,\"pos\":{\"x\":-12.1989,\"y\":1.522,\"z\":33.707},\"rot\":{\"x\":359.9201,\"y\":269.9902,\"z\":0.0169}},\"7234af\":{\"lock\":false,\"pos\":{\"x\":-20.2811,\"y\":1.6098,\"z\":0.1027},\"rot\":{\"x\":359.9201,\"y\":269.9872,\"z\":0.0169}},\"90ad8b\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6281,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9854,\"z\":180.0168}},\"95dc3d\":{\"lock\":false,\"pos\":{\"x\":-12.1893,\"y\":1.5207,\"z\":29.2011},\"rot\":{\"x\":359.9201,\"y\":269.9885,\"z\":0.0169}},\"b6da68\":{\"lock\":false,\"pos\":{\"x\":1.6955,\"y\":1.5583,\"z\":14.2792},\"rot\":{\"x\":359.9552,\"y\":224.9335,\"z\":0.0687}},\"c0b834\":{\"lock\":false,\"pos\":{\"x\":-0.2044,\"y\":1.6111,\"z\":-10.4137},\"rot\":{\"x\":359.9197,\"y\":270.0196,\"z\":0.0168}},\"c582af\":{\"lock\":false,\"pos\":{\"x\":-26.9427,\"y\":1.6213,\"z\":7.6022},\"rot\":{\"x\":359.9201,\"y\":270.0272,\"z\":0.0168}},\"c9d140\":{\"lock\":false,\"pos\":{\"x\":-12.2295,\"y\":1.5215,\"z\":31.5404},\"rot\":{\"x\":359.9201,\"y\":269.9884,\"z\":0.0169}},\"de583f\":{\"lock\":false,\"pos\":{\"x\":-3.956,\"y\":1.5975,\"z\":-10.4413},\"rot\":{\"x\":359.9197,\"y\":270.002,\"z\":0.0168}},\"edd0d4\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6189,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":270.0099,\"z\":180.0168}},\"f4c93e\":{\"lock\":false,\"pos\":{\"x\":-3.9584,\"y\":1.5827,\"z\":-14.7436},\"rot\":{\"x\":359.9197,\"y\":270.0297,\"z\":0.0168}},\"f5f35d\":{\"lock\":false,\"pos\":{\"x\":-9.207,\"y\":1.5169,\"z\":30.3654},\"rot\":{\"x\":0.0169,\"y\":180,\"z\":0.0799}}}}",
"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
}
}
]
},
{
"GUID": "7bc42b",
"Name": "Custom_Model",
"Transform": {
"posX": -10.2426786,
"posY": 1.62527514,
"posZ": 67.28986,
"rotX": 0.03003358,
"rotY": 269.999878,
"rotZ": 0.00556192454,
"scaleX": 2.21,
"scaleY": 0.46,
"scaleZ": 2.42
},
"Nickname": "The Svalbard Event",
"Description": "",
"GMNotes": "fancreations/scenario_the_svalbard_event.json",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0,
"a": 0.274509817
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomMesh": {
"MeshURL": "https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/798737729142948942/FA97D7EF94B715ADD1EEE40831114451FBED200B/",
"NormalURL": "",
"ColliderURL": "",
"Convex": true,
"MaterialIndex": 3,
"TypeIndex": 0,
"CustomShader": {
"SpecularColor": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"SpecularIntensity": 0.0,
"SpecularSharpness": 2.0,
"FresnelStrength": 0.0
},
"CastShadows": true
},
"LuaScript": "\r\nfunction onload(saved_data)\r\n createDownloadButton()\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make Download button\r\nfunction createDownloadButton()\r\n self.createButton({\r\n label=\"Download\", click_function=\"buttonClick_download\", function_owner=self,\r\n position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800,\r\n font_size=150, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by download button,\r\nfunction buttonClick_download()\r\n local params = { url = self.getGMNotes(), replace = self.guid }\r\n Global.call('placeholder_download', params)\r\nend\r\n",
"LuaScriptState": "{\"ml\":{\"0967ea\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6885,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":269.9941,\"z\":0.0169}},\"1a4e64\":{\"lock\":false,\"pos\":{\"x\":-23.6766,\"y\":1.6862,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9746,\"z\":0.0169}},\"37ec51\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6771,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9792,\"z\":0.0169}},\"44b0c5\":{\"lock\":false,\"pos\":{\"x\":-33.6265,\"y\":1.6284,\"z\":0.0656},\"rot\":{\"x\":359.9201,\"y\":269.9935,\"z\":0.0169}},\"4c2b84\":{\"lock\":false,\"pos\":{\"x\":-30.2242,\"y\":1.6248,\"z\":3.86},\"rot\":{\"x\":359.9831,\"y\":0,\"z\":359.92}},\"5f0185\":{\"lock\":false,\"pos\":{\"x\":-36.7732,\"y\":1.7045,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9952,\"z\":0.0169}},\"6a72fc\":{\"lock\":false,\"pos\":{\"x\":-30.2243,\"y\":1.6976,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":269.9945,\"z\":0.0169}},\"713671\":{\"lock\":false,\"pos\":{\"x\":-3.956,\"y\":1.6556,\"z\":-10.4412},\"rot\":{\"x\":359.9197,\"y\":269.9929,\"z\":0.0169}},\"7234af\":{\"lock\":false,\"pos\":{\"x\":-20.8364,\"y\":1.6106,\"z\":0.0223},\"rot\":{\"x\":359.9201,\"y\":269.9936,\"z\":0.0169}},\"7dcc93\":{\"lock\":false,\"pos\":{\"x\":1.6965,\"y\":1.6545,\"z\":14.2788},\"rot\":{\"x\":359.9552,\"y\":224.998,\"z\":0.0687}},\"88005c\":{\"lock\":false,\"pos\":{\"x\":-27.1056,\"y\":1.6193,\"z\":0.044},\"rot\":{\"x\":359.9201,\"y\":269.9936,\"z\":0.0169}},\"963cfe\":{\"lock\":false,\"pos\":{\"x\":-10.715,\"y\":1.6678,\"z\":0.2579},\"rot\":{\"x\":359.9201,\"y\":269.9997,\"z\":0.0169}},\"9fac8b\":{\"lock\":false,\"pos\":{\"x\":-3.9277,\"y\":1.7557,\"z\":5.7571},\"rot\":{\"x\":359.9197,\"y\":269.9771,\"z\":180.0169}},\"a751fe\":{\"lock\":false,\"pos\":{\"x\":-4.1944,\"y\":1.583,\"z\":-14.6164},\"rot\":{\"x\":359.9197,\"y\":270.0002,\"z\":0.0168}},\"a8a4b1\":{\"lock\":false,\"pos\":{\"x\":-30.2243,\"y\":1.6931,\"z\":-7.7},\"rot\":{\"x\":359.9201,\"y\":269.9951,\"z\":0.0169}},\"b11646\":{\"lock\":false,\"pos\":{\"x\":-50.9244,\"y\":1.7266,\"z\":8.1784},\"rot\":{\"x\":359.9201,\"y\":269.9929,\"z\":0.0169}},\"b149b1\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6157,\"z\":3.86},\"rot\":{\"x\":359.9831,\"y\":0.0001,\"z\":359.92}},\"bbe4b0\":{\"lock\":false,\"pos\":{\"x\":-30.2242,\"y\":1.6954,\"z\":-0.0301},\"rot\":{\"x\":359.9201,\"y\":269.9937,\"z\":0.0169}},\"bc7323\":{\"lock\":false,\"pos\":{\"x\":-30.2242,\"y\":1.6225,\"z\":-3.83},\"rot\":{\"x\":359.9831,\"y\":0,\"z\":359.9201}},\"c99e9d\":{\"lock\":false,\"pos\":{\"x\":-2.6886,\"y\":1.6623,\"z\":-5.0485},\"rot\":{\"x\":359.9197,\"y\":269.9824,\"z\":0.0169}},\"ca0e9b\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.684,\"z\":-7.7},\"rot\":{\"x\":359.9201,\"y\":269.9952,\"z\":0.0169}},\"e10b7c\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6134,\"z\":-3.83},\"rot\":{\"x\":359.9831,\"y\":0,\"z\":359.9201}},\"f9ae22\":{\"lock\":false,\"pos\":{\"x\":-2.7251,\"y\":1.6566,\"z\":0.3733},\"rot\":{\"x\":359.9198,\"y\":269.9414,\"z\":0.0169}}}}",
"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
}
}
]
},
{
"GUID": "408301",
"Name": "Custom_Model",
"Transform": {
"posX": -11.2245789,
"posY": 1.62387931,
"posZ": 66.4975357,
"rotX": 0.0566820726,
"rotY": 270.0,
"rotZ": -0.0007684934,
"scaleX": 2.21,
"scaleY": 0.46,
"scaleZ": 2.42
},
"Nickname": "Stranger Things",
"Description": "",
"GMNotes": "fancreations/scenario_stranger_things.json",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0,
"a": 0.274509817
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomMesh": {
"MeshURL": "https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/798737729142948271/A763104B91306431654FBA9E3D88FE0E23CE6E6E/",
"NormalURL": "",
"ColliderURL": "",
"Convex": true,
"MaterialIndex": 3,
"TypeIndex": 0,
"CustomShader": {
"SpecularColor": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"SpecularIntensity": 0.0,
"SpecularSharpness": 2.0,
"FresnelStrength": 0.0
},
"CastShadows": true
},
"LuaScript": "\r\nfunction onload(saved_data)\r\n createDownloadButton()\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make Download button\r\nfunction createDownloadButton()\r\n self.createButton({\r\n label=\"Download\", click_function=\"buttonClick_download\", function_owner=self,\r\n position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800,\r\n font_size=150, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by download button,\r\nfunction buttonClick_download()\r\n local params = { url = self.getGMNotes(), replace = self.guid }\r\n Global.call('placeholder_download', params)\r\nend\r\n",
"LuaScriptState": "{\"ml\":{\"1078c7\":{\"lock\":false,\"pos\":{\"x\":1.6964,\"y\":1.6699,\"z\":14.2788},\"rot\":{\"x\":359.9552,\"y\":224.998,\"z\":180.0686}},\"22e3f2\":{\"lock\":false,\"pos\":{\"x\":-2.6904,\"y\":1.655,\"z\":-5.0485},\"rot\":{\"x\":359.9197,\"y\":270.0118,\"z\":0.0168}},\"239c56\":{\"lock\":false,\"pos\":{\"x\":-36.7733,\"y\":1.7022,\"z\":-7.7},\"rot\":{\"x\":359.9201,\"y\":269.9961,\"z\":0.0169}},\"3210d6\":{\"lock\":false,\"pos\":{\"x\":-27.0934,\"y\":1.6172,\"z\":-7.2278},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":0.0169}},\"3ba2fb\":{\"lock\":false,\"pos\":{\"x\":-30.2244,\"y\":1.6909,\"z\":-15.28},\"rot\":{\"x\":359.9201,\"y\":269.9962,\"z\":0.0169}},\"43d027\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6862,\"z\":-0.0301},\"rot\":{\"x\":359.9201,\"y\":269.9807,\"z\":0.0169}},\"4595ad\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.684,\"z\":-7.7},\"rot\":{\"x\":359.9201,\"y\":269.9967,\"z\":0.0169}},\"4667f1\":{\"lock\":false,\"pos\":{\"x\":-27.2752,\"y\":1.6209,\"z\":4.5605},\"rot\":{\"x\":359.9316,\"y\":315,\"z\":359.9554}},\"4f0a6b\":{\"lock\":false,\"pos\":{\"x\":-19.6594,\"y\":1.61,\"z\":3.6336},\"rot\":{\"x\":0.0446,\"y\":45,\"z\":359.9316}},\"616612\":{\"lock\":false,\"pos\":{\"x\":-33.8841,\"y\":1.6275,\"z\":-4.2381},\"rot\":{\"x\":0.0446,\"y\":45,\"z\":359.9316}},\"62b3ab\":{\"lock\":false,\"pos\":{\"x\":-2.7247,\"y\":1.6566,\"z\":0.3733},\"rot\":{\"x\":359.9197,\"y\":269.9855,\"z\":0.0169}},\"6950d2\":{\"lock\":false,\"pos\":{\"x\":-33.7138,\"y\":1.6263,\"z\":-7.6781},\"rot\":{\"x\":0.0799,\"y\":89.9999,\"z\":359.9831}},\"69c26d\":{\"lock\":false,\"pos\":{\"x\":-4.3001,\"y\":1.4068,\"z\":14.6571},\"rot\":{\"x\":359.9832,\"y\":0.0007,\"z\":359.9197}},\"6bbd29\":{\"lock\":false,\"pos\":{\"x\":-9.9085,\"y\":1.6664,\"z\":1.7308},\"rot\":{\"x\":359.9201,\"y\":269.9864,\"z\":0.0169}},\"709830\":{\"lock\":false,\"pos\":{\"x\":-30.2243,\"y\":1.6225,\"z\":-3.83},\"rot\":{\"x\":359.9831,\"y\":-0.0046,\"z\":359.9201}},\"7234af\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6134,\"z\":-3.83},\"rot\":{\"x\":359.9831,\"y\":0.0072,\"z\":359.92}},\"893557\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6885,\"z\":7.5699},\"rot\":{\"x\":359.9201,\"y\":269.9939,\"z\":0.0169}},\"9f9e79\":{\"lock\":false,\"pos\":{\"x\":-3.9275,\"y\":1.7504,\"z\":5.7571},\"rot\":{\"x\":359.9197,\"y\":269.9856,\"z\":180.0168}},\"b2b842\":{\"lock\":false,\"pos\":{\"x\":-50.9244,\"y\":1.7266,\"z\":8.1784},\"rot\":{\"x\":359.9201,\"y\":269.9855,\"z\":0.0169}},\"b6d48a\":{\"lock\":false,\"pos\":{\"x\":-26.9756,\"y\":1.6157,\"z\":-11.6402},\"rot\":{\"x\":0.0446,\"y\":45,\"z\":359.9316}},\"bb506e\":{\"lock\":false,\"pos\":{\"x\":-3.956,\"y\":1.6556,\"z\":-10.4412},\"rot\":{\"x\":359.9197,\"y\":269.9855,\"z\":0.0169}},\"bc825a\":{\"lock\":false,\"pos\":{\"x\":-4.1331,\"y\":1.5829,\"z\":-14.6606},\"rot\":{\"x\":359.9197,\"y\":270.0001,\"z\":0.0168}},\"be6abb\":{\"lock\":false,\"pos\":{\"x\":-30.2243,\"y\":1.6203,\"z\":-11.51},\"rot\":{\"x\":359.9831,\"y\":0.0072,\"z\":359.92}},\"c210e3\":{\"lock\":false,\"pos\":{\"x\":-30.2243,\"y\":1.6954,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9935,\"z\":0.0169}},\"d90311\":{\"lock\":false,\"pos\":{\"x\":-30.2242,\"y\":1.6931,\"z\":-7.7001},\"rot\":{\"x\":359.9201,\"y\":269.9952,\"z\":0.0169}},\"daef01\":{\"lock\":false,\"pos\":{\"x\":-30.2243,\"y\":1.6248,\"z\":3.86},\"rot\":{\"x\":359.9831,\"y\":0.007,\"z\":359.92}},\"e22a64\":{\"lock\":false,\"pos\":{\"x\":-27.6267,\"y\":1.6188,\"z\":-4.0757},\"rot\":{\"x\":359.9316,\"y\":314.9999,\"z\":359.9554}},\"f0e2dc\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6765,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9836,\"z\":180.0169}},\"f6d6d8\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6793,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":269.978,\"z\":0.0169}},\"f7c15e\":{\"lock\":false,\"pos\":{\"x\":-30.2242,\"y\":1.6976,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":269.9958,\"z\":0.0169}},\"fbf157\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6157,\"z\":3.86},\"rot\":{\"x\":359.9831,\"y\":0.0072,\"z\":359.92}}}}",
"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
}
}
]
},
{
"GUID": "bfefd4",
"Name": "Custom_Model",
"Transform": {
"posX": -9.00785,
"posY": 1.61456144,
"posZ": 66.3981552,
"rotX": 0.0010289232,
"rotY": 269.98172,
"rotZ": 359.985,
"scaleX": 2.21,
"scaleY": 0.46,
"scaleZ": 2.42
},
"Nickname": "The Stolen Baillius",
"Description": "",
"GMNotes": "fancreations/scenario_stolen_bacillus.json",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0,
"a": 0.274509817
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomMesh": {
"MeshURL": "https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/798737729142943616/2B7B73A110A3EC225C854F85AB009F04859E3806/",
"NormalURL": "",
"ColliderURL": "",
"Convex": true,
"MaterialIndex": 3,
"TypeIndex": 0,
"CustomShader": {
"SpecularColor": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"SpecularIntensity": 0.0,
"SpecularSharpness": 2.0,
"FresnelStrength": 0.0
},
"CastShadows": true
},
"LuaScript": "\r\nfunction onload(saved_data)\r\n createDownloadButton()\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make Download button\r\nfunction createDownloadButton()\r\n self.createButton({\r\n label=\"Download\", click_function=\"buttonClick_download\", function_owner=self,\r\n position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800,\r\n font_size=150, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by download button,\r\nfunction buttonClick_download()\r\n local params = { url = self.getGMNotes(), replace = self.guid }\r\n Global.call('placeholder_download', params)\r\nend\r\n",
"LuaScriptState": "{\"ml\":{\"00dc67\":{\"lock\":false,\"pos\":{\"x\":-3.956,\"y\":1.6556,\"z\":-10.4412},\"rot\":{\"x\":359.9197,\"y\":269.9995,\"z\":0.0168}},\"0e6c8c\":{\"lock\":false,\"pos\":{\"x\":-3.9277,\"y\":1.6971,\"z\":5.7571},\"rot\":{\"x\":359.9197,\"y\":270.0001,\"z\":180.0168}},\"102272\":{\"lock\":false,\"pos\":{\"x\":-10.2894,\"y\":1.6717,\"z\":2.0208},\"rot\":{\"x\":359.9201,\"y\":270.0023,\"z\":0.0169}},\"33116d\":{\"lock\":false,\"pos\":{\"x\":-27.119,\"y\":1.6184,\"z\":-3.2752},\"rot\":{\"x\":0.0446,\"y\":44.9999,\"z\":359.9316}},\"40f354\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6771,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":270.0001,\"z\":0.0169}},\"631549\":{\"lock\":false,\"pos\":{\"x\":-23.6766,\"y\":1.6157,\"z\":3.86},\"rot\":{\"x\":359.9832,\"y\":0.0089,\"z\":359.92}},\"6a9431\":{\"lock\":false,\"pos\":{\"x\":-2.7247,\"y\":1.664,\"z\":0.3733},\"rot\":{\"x\":0.0168,\"y\":180.0034,\"z\":0.0803}},\"7234af\":{\"lock\":false,\"pos\":{\"x\":-20.4879,\"y\":1.61,\"z\":-0.2199},\"rot\":{\"x\":359.9201,\"y\":269.9942,\"z\":0.0169}},\"79090a\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6134,\"z\":-3.83},\"rot\":{\"x\":0.0169,\"y\":180,\"z\":0.0799}},\"82e02f\":{\"lock\":false,\"pos\":{\"x\":-26.575,\"y\":1.6185,\"z\":-0.1012},\"rot\":{\"x\":359.9201,\"y\":269.9947,\"z\":0.0169}},\"a45247\":{\"lock\":false,\"pos\":{\"x\":1.6952,\"y\":1.5583,\"z\":14.2788},\"rot\":{\"x\":359.9551,\"y\":224.998,\"z\":0.0687}},\"af4e73\":{\"lock\":false,\"pos\":{\"x\":-50.9244,\"y\":1.7266,\"z\":8.1784},\"rot\":{\"x\":359.9201,\"y\":269.9997,\"z\":0.0169}},\"bf5d39\":{\"lock\":false,\"pos\":{\"x\":-5.9411,\"y\":1.5569,\"z\":-25.3389},\"rot\":{\"x\":359.9201,\"y\":270.0001,\"z\":180.0169}},\"cb2e63\":{\"lock\":false,\"pos\":{\"x\":-23.6775,\"y\":1.689,\"z\":-0.0357},\"rot\":{\"x\":359.92,\"y\":270.3729,\"z\":180.0163}},\"ec7a73\":{\"lock\":false,\"pos\":{\"x\":-4.9066,\"y\":1.684,\"z\":-14.5418},\"rot\":{\"x\":359.9195,\"y\":270.04,\"z\":0.0161}},\"edcae4\":{\"lock\":false,\"pos\":{\"x\":-30.2242,\"y\":1.6934,\"z\":-0.0301},\"rot\":{\"x\":359.9201,\"y\":270.0021,\"z\":0.0169}},\"f305a2\":{\"lock\":false,\"pos\":{\"x\":-2.6885,\"y\":1.6535,\"z\":-5.0485},\"rot\":{\"x\":0.0168,\"y\":179.9978,\"z\":0.0803}}}}",
"XmlUI": "",
"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
}
}
]
},
{
"GUID": "fa4327",
"Name": "Custom_Model",
"Transform": {
"posX": -11.0880671,
"posY": 1.62430811,
"posZ": 66.55316,
"rotX": 0.04507862,
"rotY": 270.0,
"rotZ": 0.00317606726,
"scaleX": 2.21,
"scaleY": 0.46,
"scaleZ": 2.42
},
"Nickname": "The Red Room",
"Description": "",
"GMNotes": "fancreations/scenario_the_red_room.json",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0,
"a": 0.274509817
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomMesh": {
"MeshURL": "https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/798737729142946225/F5A6228957B37E945B425681115D09E7B8543BC6/",
"NormalURL": "",
"ColliderURL": "",
"Convex": true,
"MaterialIndex": 3,
"TypeIndex": 0,
"CustomShader": {
"SpecularColor": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"SpecularIntensity": 0.0,
"SpecularSharpness": 2.0,
"FresnelStrength": 0.0
},
"CastShadows": true
},
"LuaScript": "\r\nfunction onload(saved_data)\r\n createDownloadButton()\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make Download button\r\nfunction createDownloadButton()\r\n self.createButton({\r\n label=\"Download\", click_function=\"buttonClick_download\", function_owner=self,\r\n position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800,\r\n font_size=150, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by download button,\r\nfunction buttonClick_download()\r\n local params = { url = self.getGMNotes(), replace = self.guid }\r\n Global.call('placeholder_download', params)\r\nend\r\n",
"LuaScriptState": "{\"ml\":{\"023e21\":{\"lock\":false,\"pos\":{\"x\":-3.9277,\"y\":1.6752,\"z\":5.7572},\"rot\":{\"x\":359.9197,\"y\":269.9987,\"z\":180.0168}},\"0a7a51\":{\"lock\":false,\"pos\":{\"x\":-17.1199,\"y\":1.6799,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":270,\"z\":180.0169}},\"1d2e12\":{\"lock\":false,\"pos\":{\"x\":-3.956,\"y\":1.6585,\"z\":-10.4412},\"rot\":{\"x\":359.9197,\"y\":270.0003,\"z\":180.0168}},\"26b589\":{\"lock\":false,\"pos\":{\"x\":-2.7247,\"y\":1.658,\"z\":0.3733},\"rot\":{\"x\":359.9198,\"y\":269.9589,\"z\":0.0169}},\"469d58\":{\"lock\":false,\"pos\":{\"x\":-11.9576,\"y\":1.6717,\"z\":3.1538},\"rot\":{\"x\":359.9201,\"y\":269.9781,\"z\":0.0169}},\"64f279\":{\"lock\":false,\"pos\":{\"x\":-17.1197,\"y\":1.889,\"z\":-11.5094},\"rot\":{\"x\":359.9201,\"y\":269.9996,\"z\":0.0169}},\"a45247\":{\"lock\":false,\"pos\":{\"x\":1.6949,\"y\":1.5583,\"z\":14.2794},\"rot\":{\"x\":359.9551,\"y\":224.998,\"z\":0.0687}},\"cde2d1\":{\"lock\":false,\"pos\":{\"x\":-2.6885,\"y\":1.6459,\"z\":-5.0485},\"rot\":{\"x\":359.9197,\"y\":270.0159,\"z\":0.0168}},\"ce2091\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6778,\"z\":3.86},\"rot\":{\"x\":359.9201,\"y\":269.9993,\"z\":0.0169}},\"d63331\":{\"lock\":false,\"pos\":{\"x\":-50.9244,\"y\":1.7294,\"z\":8.1784},\"rot\":{\"x\":359.9201,\"y\":270.0003,\"z\":180.0169}}}}",
"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
}
}
]
},
{
"GUID": "504f38",
"Name": "Custom_Model",
"Transform": {
"posX": -9.370037,
"posY": 1.625202,
"posZ": 65.4153061,
"rotX": 0.014876971,
"rotY": 269.998779,
"rotZ": 0.0192519873,
"scaleX": 2.21,
"scaleY": 0.2,
"scaleZ": 2.46
},
"Nickname": "The Pensher Wyrm",
"Description": "",
"GMNotes": "fancreations/scenario_the_pensher_wyrm.json",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0,
"a": 0.274509817
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomMesh": {
"MeshURL": "https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/798737729142945578/6BA34FBD61F7AD38DE8B2B9E5D5F067406B7CC77/",
"NormalURL": "",
"ColliderURL": "",
"Convex": true,
"MaterialIndex": 3,
"TypeIndex": 0,
"CustomShader": {
"SpecularColor": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"SpecularIntensity": 0.0,
"SpecularSharpness": 2.0,
"FresnelStrength": 0.0
},
"CastShadows": true
},
"LuaScript": "\r\nfunction onload(saved_data)\r\n createDownloadButton()\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make Download button\r\nfunction createDownloadButton()\r\n self.createButton({\r\n label=\"Download\", click_function=\"buttonClick_download\", function_owner=self,\r\n position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800,\r\n font_size=150, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by download button,\r\nfunction buttonClick_download()\r\n local params = { url = self.getGMNotes(), replace = self.guid }\r\n Global.call('placeholder_download', params)\r\nend\r\n",
"LuaScriptState": "{\"ml\":{\"0251e6\":{\"lock\":false,\"pos\":{\"x\":-58.7691,\"y\":1.7417,\"z\":22.2313},\"rot\":{\"x\":359.9201,\"y\":269.9973,\"z\":0.0169}},\"04fdb8\":{\"lock\":false,\"pos\":{\"x\":-2.7247,\"y\":1.6551,\"z\":0.3733},\"rot\":{\"x\":359.9197,\"y\":270.0046,\"z\":0.0168}},\"07bfca\":{\"lock\":false,\"pos\":{\"x\":-11.1535,\"y\":1.6509,\"z\":1.3602},\"rot\":{\"x\":359.9201,\"y\":269.9977,\"z\":0.0169}},\"1ae75c\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.684,\"z\":-7.7},\"rot\":{\"x\":359.9201,\"y\":269.9961,\"z\":0.0169}},\"22cf16\":{\"lock\":false,\"pos\":{\"x\":-3.956,\"y\":1.6556,\"z\":-10.4412},\"rot\":{\"x\":359.9197,\"y\":269.9969,\"z\":0.0168}},\"336335\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6828,\"z\":-11.51},\"rot\":{\"x\":359.9201,\"y\":269.9848,\"z\":0.0169}},\"3cf9b8\":{\"lock\":false,\"pos\":{\"x\":-50.9244,\"y\":1.7266,\"z\":8.1784},\"rot\":{\"x\":359.9201,\"y\":269.9969,\"z\":0.0169}},\"7234af\":{\"lock\":false,\"pos\":{\"x\":-20.5194,\"y\":1.6101,\"z\":-0.0446},\"rot\":{\"x\":359.9201,\"y\":270.0053,\"z\":0.0169}},\"909b6f\":{\"lock\":false,\"pos\":{\"x\":-2.6885,\"y\":1.6535,\"z\":-5.0485},\"rot\":{\"x\":359.9197,\"y\":270.0029,\"z\":0.0168}},\"a45247\":{\"lock\":false,\"pos\":{\"x\":1.6951,\"y\":1.5583,\"z\":14.2794},\"rot\":{\"x\":359.9551,\"y\":224.998,\"z\":0.0687}},\"afc427\":{\"lock\":false,\"pos\":{\"x\":-23.6764,\"y\":1.6874,\"z\":3.86},\"rot\":{\"x\":359.9201,\"y\":269.9971,\"z\":0.0169}},\"b93ec9\":{\"lock\":false,\"pos\":{\"x\":-17.1199,\"y\":1.6771,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9976,\"z\":0.0169}},\"c606a1\":{\"lock\":false,\"pos\":{\"x\":-4.0681,\"y\":1.5827,\"z\":-15.3226},\"rot\":{\"x\":359.9197,\"y\":270.0012,\"z\":0.0168}},\"d37670\":{\"lock\":false,\"pos\":{\"x\":-3.9277,\"y\":1.6705,\"z\":5.7572},\"rot\":{\"x\":359.9197,\"y\":270.0103,\"z\":180.0168}},\"e28e5b\":{\"lock\":false,\"pos\":{\"x\":-17.1199,\"y\":1.6782,\"z\":3.86},\"rot\":{\"x\":359.9201,\"y\":269.9969,\"z\":0.0169}},\"eb6cf0\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6862,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9966,\"z\":0.0169}},\"f0dbb0\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6134,\"z\":-3.83},\"rot\":{\"x\":359.9832,\"y\":0.0155,\"z\":359.92}}}}",
"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
}
}
]
},
{
"GUID": "3ddd12",
"Name": "Custom_Model",
"Transform": {
"posX": -9.290822,
"posY": 1.62537158,
"posZ": 65.3290939,
"rotX": 0.0137570966,
"rotY": 270.000031,
"rotZ": 0.0195577946,
"scaleX": 2.21,
"scaleY": 0.2,
"scaleZ": 2.46
},
"Nickname": "The Nephew Calls",
"Description": "",
"GMNotes": "fancreations/scenario_the_nephew_calls.json",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0,
"a": 0.274509817
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomMesh": {
"MeshURL": "https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/798737729142940439/EE68DD668C18F8F8C61B0F2BABA6D548B17A6EA7/",
"NormalURL": "",
"ColliderURL": "",
"Convex": true,
"MaterialIndex": 3,
"TypeIndex": 0,
"CustomShader": {
"SpecularColor": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"SpecularIntensity": 0.0,
"SpecularSharpness": 2.0,
"FresnelStrength": 0.0
},
"CastShadows": true
},
"LuaScript": "\r\nfunction onload(saved_data)\r\n createDownloadButton()\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make Download button\r\nfunction createDownloadButton()\r\n self.createButton({\r\n label=\"Download\", click_function=\"buttonClick_download\", function_owner=self,\r\n position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800,\r\n font_size=150, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by download button,\r\nfunction buttonClick_download()\r\n local params = { url = self.getGMNotes(), replace = self.guid }\r\n Global.call('placeholder_download', params)\r\nend\r\n",
"LuaScriptState": "{\"ml\":{\"2e8f0a\":{\"lock\":false,\"pos\":{\"x\":-2.7247,\"y\":1.6566,\"z\":0.3733},\"rot\":{\"x\":359.9197,\"y\":269.9843,\"z\":0.0169}},\"3c18ed\":{\"lock\":false,\"pos\":{\"x\":-2.6885,\"y\":1.655,\"z\":-5.0482},\"rot\":{\"x\":359.9197,\"y\":269.9865,\"z\":0.0169}},\"4369ca\":{\"lock\":false,\"pos\":{\"x\":-20.9201,\"y\":1.6118,\"z\":3.8653},\"rot\":{\"x\":359.9747,\"y\":210,\"z\":0.0776}},\"4ed173\":{\"lock\":false,\"pos\":{\"x\":-3.9276,\"y\":1.7237,\"z\":5.7571},\"rot\":{\"x\":359.9197,\"y\":269.9888,\"z\":180.0168}},\"4fa9f9\":{\"lock\":false,\"pos\":{\"x\":-50.9244,\"y\":1.7266,\"z\":8.1784},\"rot\":{\"x\":359.9201,\"y\":269.9998,\"z\":0.0169}},\"54707a\":{\"lock\":false,\"pos\":{\"x\":-4.0348,\"y\":1.5826,\"z\":-15.3238},\"rot\":{\"x\":359.9197,\"y\":270.0002,\"z\":0.0168}},\"5ca1a9\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6065,\"z\":3.86},\"rot\":{\"x\":359.9831,\"y\":359.9848,\"z\":359.9201}},\"7234af\":{\"lock\":false,\"pos\":{\"x\":-20.5116,\"y\":1.6101,\"z\":-0.1741},\"rot\":{\"x\":359.9201,\"y\":269.9943,\"z\":0.0169}},\"7b5228\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6821,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":270,\"z\":180.0169}},\"9e9bdd\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6799,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9998,\"z\":180.0169}},\"a41e13\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.689,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9998,\"z\":180.0169}},\"a8f47c\":{\"lock\":false,\"pos\":{\"x\":1.6965,\"y\":1.6368,\"z\":14.2789},\"rot\":{\"x\":359.9552,\"y\":224.9986,\"z\":0.0687}},\"a9c518\":{\"lock\":false,\"pos\":{\"x\":-11.5089,\"y\":1.6766,\"z\":1.4197},\"rot\":{\"x\":359.9201,\"y\":269.999,\"z\":0.0169}},\"b874a8\":{\"lock\":false,\"pos\":{\"x\":-17.1199,\"y\":1.6042,\"z\":-3.83},\"rot\":{\"x\":0.0169,\"y\":179.9998,\"z\":0.0799}},\"db443b\":{\"lock\":false,\"pos\":{\"x\":-3.956,\"y\":1.6556,\"z\":-10.4412},\"rot\":{\"x\":359.9197,\"y\":269.9998,\"z\":0.0168}},\"e67855\":{\"lock\":false,\"pos\":{\"x\":-17.1201,\"y\":1.6776,\"z\":-7.7},\"rot\":{\"x\":359.9201,\"y\":269.9982,\"z\":180.0169}}}}",
"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
}
}
]
},
{
"GUID": "9d3083",
"Name": "Custom_Model",
"Transform": {
"posX": -10.5257158,
"posY": 1.62493873,
"posZ": 65.90642,
"rotX": 0.03503905,
"rotY": 270.000183,
"rotZ": 0.0155965267,
"scaleX": 2.21,
"scaleY": 0.45,
"scaleZ": 2.42
},
"Nickname": "The Nameless City",
"Description": "",
"GMNotes": "fancreations/scenario_the_nameless_city.json",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0,
"a": 0.274509817
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomMesh": {
"MeshURL": "https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/1797477398306699180/7C5363FFCCDCD4A1AF2A0C71B2A7E5F96D5ACCA4/",
"NormalURL": "",
"ColliderURL": "",
"Convex": true,
"MaterialIndex": 3,
"TypeIndex": 0,
"CustomShader": {
"SpecularColor": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"SpecularIntensity": 0.0,
"SpecularSharpness": 2.0,
"FresnelStrength": 0.0
},
"CastShadows": true
},
"LuaScript": "\r\nfunction onload(saved_data)\r\n createDownloadButton()\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make Download button\r\nfunction createDownloadButton()\r\n self.createButton({\r\n label=\"Download\", click_function=\"buttonClick_download\", function_owner=self,\r\n position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800,\r\n font_size=150, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by download button,\r\nfunction buttonClick_download()\r\n local params = { url = self.getGMNotes(), replace = self.guid }\r\n Global.call('placeholder_download', params)\r\nend\r\n",
"LuaScriptState": "{\"ml\":{\"164a39\":{\"lock\":false,\"pos\":{\"x\":-3.95620059967041,\"y\":1.59753966331482,\"z\":-10.4415016174316},\"rot\":{\"x\":359.919738769531,\"y\":269.998657226563,\"z\":0.0168390870094299}},\"1a1506\":{\"lock\":false,\"pos\":{\"x\":-12.104998588562,\"y\":1.59499669075012,\"z\":-11.3583011627197},\"rot\":{\"x\":359.920104980469,\"y\":269.973022460938,\"z\":0.0168796647340059}},\"6e906f\":{\"lock\":false,\"pos\":{\"x\":-3.9279,\"y\":1.7203,\"z\":5.7572},\"rot\":{\"x\":359.9197,\"y\":270,\"z\":180.0168}},\"7d6103\":{\"lock\":false,\"pos\":{\"x\":-12.0929002761841,\"y\":1.59430456161499,\"z\":-13.6558017730713},\"rot\":{\"x\":359.920104980469,\"y\":269.989196777344,\"z\":0.0168482903391123}},\"7e3c60\":{\"lock\":false,\"pos\":{\"x\":-16.4165992736816,\"y\":1.67012298107147,\"z\":9.44509983062744},\"rot\":{\"x\":0.0799057334661484,\"y\":90.030403137207,\"z\":359.983215332031}},\"8067ce\":{\"lock\":false,\"pos\":{\"x\":-2.7245,\"y\":1.6208,\"z\":0.3732},\"rot\":{\"x\":359.9197,\"y\":269.9814,\"z\":0.0169}},\"8beeb8\":{\"lock\":false,\"pos\":{\"x\":-30.2243003845215,\"y\":1.63719701766968,\"z\":-0.0299998410046101},\"rot\":{\"x\":359.920104980469,\"y\":270.000061035156,\"z\":180.016830444336}},\"8fb06e\":{\"lock\":false,\"pos\":{\"x\":-11.5186023712158,\"y\":1.48982048034668,\"z\":-26.3105010986328},\"rot\":{\"x\":359.920227050781,\"y\":269.659973144531,\"z\":0.0173455532640219}},\"96f7e5\":{\"lock\":false,\"pos\":{\"x\":-3.9277,\"y\":1.7203,\"z\":5.7571},\"rot\":{\"x\":359.9197,\"y\":270.0125,\"z\":180.0168}},\"a0b3c1\":{\"lock\":false,\"pos\":{\"x\":-12.7744,\"y\":1.6368,\"z\":7.2866},\"rot\":{\"x\":359.9201,\"y\":269.9998,\"z\":0.0168}},\"a66270\":{\"lock\":false,\"pos\":{\"x\":-12.6184,\"y\":1.6367,\"z\":7.5768},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":0.0168}},\"b07c45\":{\"lock\":false,\"pos\":{\"x\":-2.7248,\"y\":1.6208,\"z\":0.3733},\"rot\":{\"x\":359.9197,\"y\":270.0002,\"z\":0.0168}},\"b3b462\":{\"lock\":false,\"pos\":{\"x\":-2.68862700462341,\"y\":1.62393081188202,\"z\":-5.04849576950073},\"rot\":{\"x\":359.919738769531,\"y\":270.000061035156,\"z\":0.0168373957276344}},\"b6da68\":{\"lock\":false,\"pos\":{\"x\":1.7024005651474,\"y\":1.55830836296082,\"z\":14.2777013778687},\"rot\":{\"x\":359.955139160156,\"y\":224.997863769531,\"z\":0.068672813475132}},\"c0dc73\":{\"lock\":true,\"pos\":{\"x\":0.0874999985098839,\"y\":1.61240005493164,\"z\":-9.4350004196167},\"rot\":{\"x\":359.919799804688,\"y\":269.9873046875,\"z\":0.0169000010937452}},\"cc8bbb\":{\"lock\":false,\"pos\":{\"x\":-12.033501625061,\"y\":1.59552979469299,\"z\":-9.2046012878418},\"rot\":{\"x\":359.920104980469,\"y\":270.011779785156,\"z\":0.0168169923126698}},\"cdea43\":{\"lock\":false,\"pos\":{\"x\":-12.6030263900757,\"y\":1.64734363555908,\"z\":11.2748069763184},\"rot\":{\"x\":359.920104980469,\"y\":270.000061035156,\"z\":180.016830444336}},\"d3d96a\":{\"lock\":false,\"pos\":{\"x\":-11.9824981689453,\"y\":1.59610056877136,\"z\":-7.02070093154907},\"rot\":{\"x\":359.920104980469,\"y\":270.021118164063,\"z\":0.0168036427348852}}}}",
"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
}
}
]
},
{
"GUID": "6defb8",
"Name": "Custom_Model",
"Transform": {
"posX": -9.062503,
"posY": 1.62576163,
"posZ": 67.73645,
"rotX": 0.006345631,
"rotY": 269.999084,
"rotZ": 0.00427961862,
"scaleX": 2.21,
"scaleY": 0.46,
"scaleZ": 2.42
},
"Nickname": "Miskatonic Mouse",
"Description": "",
"GMNotes": "fancreations/scenario_miskatonic_mouse.json",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0,
"a": 0.274509817
},
"LayoutGroupSortIndex": 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,
"CustomMesh": {
"MeshURL": "https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/1620690956766119953/F8003A1B5AC39F2D2DABFF6D0AA2168CEC8BFA2C/",
"NormalURL": "",
"ColliderURL": "",
"Convex": true,
"MaterialIndex": 3,
"TypeIndex": 0,
"CustomShader": {
"SpecularColor": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"SpecularIntensity": 0.0,
"SpecularSharpness": 2.0,
"FresnelStrength": 0.0
},
"CastShadows": true
},
"LuaScript": "\r\nfunction onload(saved_data)\r\n createDownloadButton()\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make Download button\r\nfunction createDownloadButton()\r\n self.createButton({\r\n label=\"Download\", click_function=\"buttonClick_download\", function_owner=self,\r\n position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800,\r\n font_size=150, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by download button,\r\nfunction buttonClick_download()\r\n local params = { url = self.getGMNotes(), replace = self.guid }\r\n Global.call('placeholder_download', params)\r\nend\r\n",
"LuaScriptState": "{\"ml\":{\"070048\":{\"lock\":false,\"pos\":{\"x\":-30.2242088317871,\"y\":2.87992572784424,\"z\":-3.82993316650391},\"rot\":{\"x\":-0.00231676921248436,\"y\":179.997619628906,\"z\":1.26457941532135}},\"09ad8b\":{\"lock\":false,\"pos\":{\"x\":-36.7732582092285,\"y\":3.03648447990417,\"z\":7.57027101516724},\"rot\":{\"x\":358.734741210938,\"y\":269.989898681641,\"z\":180}},\"1d8274\":{\"lock\":false,\"pos\":{\"x\":-3.9277,\"y\":1.7348,\"z\":5.7572},\"rot\":{\"x\":359.9197,\"y\":270.0125,\"z\":180.0168}},\"1f45da\":{\"lock\":false,\"pos\":{\"x\":-3.95600080490112,\"y\":1.59753942489624,\"z\":-10.4412031173706},\"rot\":{\"x\":359.919738769531,\"y\":269.981781005859,\"z\":0.016862727701664}},\"20323b\":{\"lock\":false,\"pos\":{\"x\":-33.9119415283203,\"y\":2.95937633514404,\"z\":11.2227916717529},\"rot\":{\"x\":359.103210449219,\"y\":224.98796081543,\"z\":0.879777431488037}},\"270525\":{\"lock\":false,\"pos\":{\"x\":-30.224401473999,\"y\":2.87921810150146,\"z\":11.4601135253906},\"rot\":{\"x\":-0.000603744527325034,\"y\":179.956634521484,\"z\":1.26238405704498}},\"2875cc\":{\"lock\":false,\"pos\":{\"x\":-27.2158050537109,\"y\":2.8130829334259,\"z\":3.97495055198669},\"rot\":{\"x\":359.108581542969,\"y\":315.053588867188,\"z\":359.092346191406}},\"2899d0\":{\"lock\":false,\"pos\":{\"x\":-36.7731895446777,\"y\":3.03730201721191,\"z\":-0.0297468043863773},\"rot\":{\"x\":358.734313964844,\"y\":269.989624023438,\"z\":179.998733520508}},\"319c65\":{\"lock\":false,\"pos\":{\"x\":-1.8848,\"y\":1.4773,\"z\":-23.1586},\"rot\":{\"x\":359.9201,\"y\":269.9951,\"z\":0.0169}},\"3b6978\":{\"lock\":false,\"pos\":{\"x\":-33.4780006408691,\"y\":2.95103621482849,\"z\":-0.0187404733151197},\"rot\":{\"x\":358.734558105469,\"y\":270.01611328125,\"z\":359.979949951172}},\"3bc61d\":{\"lock\":false,\"pos\":{\"x\":-27.0083675384521,\"y\":2.80853319168091,\"z\":0.0778232514858246},\"rot\":{\"x\":358.734497070313,\"y\":270.012481689453,\"z\":359.987976074219}},\"3fe960\":{\"lock\":false,\"pos\":{\"x\":-30.2240238189697,\"y\":2.89177227020264,\"z\":15.1899032592773},\"rot\":{\"x\":358.736755371094,\"y\":269.997924804688,\"z\":179.966354370117}},\"4a973f\":{\"lock\":false,\"pos\":{\"x\":-23.6766967773438,\"y\":2.74857759475708,\"z\":7.56988096237183},\"rot\":{\"x\":358.734588623047,\"y\":269.9853515625,\"z\":179.99919128418}},\"53a4a1\":{\"lock\":false,\"pos\":{\"x\":-17.1201019287109,\"y\":2.60411930084229,\"z\":-0.030163012444973},\"rot\":{\"x\":358.734161376953,\"y\":269.990753173828,\"z\":179.997467041016}},\"60aa1e\":{\"lock\":false,\"pos\":{\"x\":-3.7979,\"y\":1.4061,\"z\":14.9015},\"rot\":{\"x\":359.9196,\"y\":270.0016,\"z\":0.0169}},\"7234af\":{\"lock\":false,\"pos\":{\"x\":-40.0450210571289,\"y\":3.09593415260315,\"z\":0.0257965438067913},\"rot\":{\"x\":358.735046386719,\"y\":270.003601074219,\"z\":359.979919433594}},\"776283\":{\"lock\":false,\"pos\":{\"x\":-34.0347137451172,\"y\":2.9631130695343,\"z\":3.60240793228149},\"rot\":{\"x\":0.893873751163483,\"y\":135.028381347656,\"z\":0.8848837018013}},\"83b3af\":{\"lock\":false,\"pos\":{\"x\":-30.22438621521,\"y\":2.89256238937378,\"z\":7.57004451751709},\"rot\":{\"x\":358.734497070313,\"y\":269.990844726563,\"z\":180.001251220703}},\"970ac8\":{\"lock\":false,\"pos\":{\"x\":-23.6762428283691,\"y\":2.73520588874817,\"z\":3.86003112792969},\"rot\":{\"x\":-0.0016176791395992,\"y\":179.987777709961,\"z\":1.2663322687149}},\"971f55\":{\"lock\":false,\"pos\":{\"x\":-8.70327758789063,\"y\":1.67401933670044,\"z\":5.7885594367981},\"rot\":{\"x\":359.92138671875,\"y\":269.996215820313,\"z\":180.015869140625}},\"9b26d0\":{\"lock\":false,\"pos\":{\"x\":-20.3389415740967,\"y\":2.66163778305054,\"z\":-0.0744780227541924},\"rot\":{\"x\":358.734130859375,\"y\":270.012390136719,\"z\":-0.0017197597771883}},\"9cd123\":{\"lock\":false,\"pos\":{\"x\":-23.6764869689941,\"y\":2.74811339378357,\"z\":15.1897840499878},\"rot\":{\"x\":358.7353515625,\"y\":269.998504638672,\"z\":179.980484008789}},\"aa3d8a\":{\"lock\":false,\"pos\":{\"x\":-9.35670757293701,\"y\":1.64423155784607,\"z\":-0.657828032970428},\"rot\":{\"x\":359.920074462891,\"y\":270.017547607422,\"z\":0.0168047305196524}},\"afed94\":{\"lock\":false,\"pos\":{\"x\":-26.1752319335938,\"y\":2.79065299034119,\"z\":-4.41181564331055},\"rot\":{\"x\":359.103485107422,\"y\":224.993515014648,\"z\":0.894548416137695}},\"b1d640\":{\"lock\":false,\"pos\":{\"x\":-30.2243633270264,\"y\":2.87951040267944,\"z\":3.86010098457336},\"rot\":{\"x\":-0.00255285133607686,\"y\":180.008117675781,\"z\":1.25979053974152}},\"ba391c\":{\"lock\":false,\"pos\":{\"x\":-23.6766033172607,\"y\":2.74889135360718,\"z\":-0.0301193725317717},\"rot\":{\"x\":358.734313964844,\"y\":269.985260009766,\"z\":179.998458862305}},\"bc1bcc\":{\"lock\":false,\"pos\":{\"x\":-2.7247,\"y\":1.6256,\"z\":0.3733},\"rot\":{\"x\":359.9197,\"y\":269.9813,\"z\":0.0169}},\"bfb766\":{\"lock\":false,\"pos\":{\"x\":-2.6886,\"y\":1.6239,\"z\":-5.0485},\"rot\":{\"x\":359.9197,\"y\":269.9754,\"z\":0.0169}},\"c62fb5\":{\"lock\":false,\"pos\":{\"x\":-23.6766815185547,\"y\":2.73485970497131,\"z\":11.4600524902344},\"rot\":{\"x\":-0.00159484439063817,\"y\":180.005676269531,\"z\":1.26562547683716}},\"c907e9\":{\"lock\":false,\"pos\":{\"x\":-33.5385971069336,\"y\":2.95191144943237,\"z\":7.56055545806885},\"rot\":{\"x\":358.735137939453,\"y\":270.013885498047,\"z\":359.978973388672}},\"cabbb3\":{\"lock\":false,\"pos\":{\"x\":-30.2242,\"y\":1.6372,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":270.0274,\"z\":180.0168}},\"d37681\":{\"lock\":false,\"pos\":{\"x\":-27.0100135803223,\"y\":2.80800485610962,\"z\":7.49491882324219},\"rot\":{\"x\":358.735107421875,\"y\":270.012268066406,\"z\":359.984222412109}},\"d513b8\":{\"lock\":false,\"pos\":{\"x\":-30.2243518829346,\"y\":2.89364981651306,\"z\":-7.69995307922363},\"rot\":{\"x\":358.733795166016,\"y\":269.985015869141,\"z\":179.997680664063}},\"daa421\":{\"lock\":false,\"pos\":{\"x\":1.69660079479218,\"y\":1.5583176612854,\"z\":14.2781038284302},\"rot\":{\"x\":359.955139160156,\"y\":224.990631103516,\"z\":0.068679116666317}},\"dbdb0f\":{\"lock\":false,\"pos\":{\"x\":-43.3701095581055,\"y\":3.18295812606812,\"z\":-0.0298523493111134},\"rot\":{\"x\":358.734741210938,\"y\":270.000701904297,\"z\":179.99853515625}},\"e600d4\":{\"lock\":false,\"pos\":{\"x\":-27.0161094665527,\"y\":1.72376358509064,\"z\":15.7743606567383},\"rot\":{\"x\":359.920043945313,\"y\":270.214721679688,\"z\":180.016540527344}}}}",
"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
}
}
]
},
{
"GUID": "94a1f8",
"Name": "Custom_Model",
"Transform": {
"posX": -10.842741,
"posY": 1.62175918,
"posZ": 67.30628,
"rotX": 0.06129839,
"rotY": 269.999939,
"rotZ": 359.9941,
"scaleX": 2.21,
"scaleY": 0.2,
"scaleZ": 2.46
},
"Nickname": "Masks of Nyarlathotep – New York",
"Description": "",
"GMNotes": "fancreations/scenario_masks_of_nyarlathotep.json",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0,
"a": 0.274509817
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomMesh": {
"MeshURL": "https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/798737729142939810/7A53406FA1EFA9D556EF559B24A679E566114745/",
"NormalURL": "",
"ColliderURL": "",
"Convex": true,
"MaterialIndex": 3,
"TypeIndex": 0,
"CustomShader": {
"SpecularColor": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"SpecularIntensity": 0.0,
"SpecularSharpness": 2.0,
"FresnelStrength": 0.0
},
"CastShadows": true
},
"LuaScript": "\r\nfunction onload(saved_data)\r\n createDownloadButton()\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make Download button\r\nfunction createDownloadButton()\r\n self.createButton({\r\n label=\"Download\", click_function=\"buttonClick_download\", function_owner=self,\r\n position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800,\r\n font_size=150, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by download button,\r\nfunction buttonClick_download()\r\n local params = { url = self.getGMNotes(), replace = self.guid }\r\n Global.call('placeholder_download', params)\r\nend\r\n",
"LuaScriptState": "{\"ml\":{\"0f2ffc\":{\"lock\":false,\"pos\":{\"x\":-2.6886,\"y\":1.6555,\"z\":-5.0485},\"rot\":{\"x\":0.0169,\"y\":179.9837,\"z\":0.0803}},\"256aa6\":{\"lock\":false,\"pos\":{\"x\":-3.956,\"y\":1.6556,\"z\":-10.4412},\"rot\":{\"x\":359.9197,\"y\":270.0001,\"z\":0.0168}},\"4e3390\":{\"lock\":false,\"pos\":{\"x\":-13.0308,\"y\":1.6899,\"z\":7.2677},\"rot\":{\"x\":359.9201,\"y\":269.9855,\"z\":0.0169}},\"515e9e\":{\"lock\":false,\"pos\":{\"x\":1.6965,\"y\":1.6368,\"z\":14.2789},\"rot\":{\"x\":359.9552,\"y\":224.9984,\"z\":0.0687}},\"8f0718\":{\"lock\":false,\"pos\":{\"x\":-3.9275,\"y\":1.7504,\"z\":5.757},\"rot\":{\"x\":359.9197,\"y\":269.9868,\"z\":180.0168}},\"aae2b1\":{\"lock\":false,\"pos\":{\"x\":-3.566,\"y\":1.582,\"z\":-15.0714},\"rot\":{\"x\":359.9197,\"y\":270.0002,\"z\":0.0168}},\"fed65c\":{\"lock\":false,\"pos\":{\"x\":-2.7247,\"y\":1.6571,\"z\":0.3733},\"rot\":{\"x\":0.0169,\"y\":179.9893,\"z\":0.0803}}}}",
"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
}
}
]
},
{
"GUID": "b46db2",
"Name": "Custom_Model",
"Transform": {
"posX": -9.00414848,
"posY": 1.62545991,
"posZ": 65.83784,
"rotX": 0.015372673,
"rotY": 270.003174,
"rotZ": 0.02022208,
"scaleX": 2.21,
"scaleY": 0.46,
"scaleZ": 2.42
},
"Nickname": "The Legend of Sleepy Hollow",
"Description": "",
"GMNotes": "fancreations/scenario_sleepy_hollow.json",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0,
"a": 0.274509817
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomMesh": {
"MeshURL": "https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/1617311203420460064/3D20A71D13F484BEEBCF572E827CD38FF3DF57E4/",
"NormalURL": "",
"ColliderURL": "",
"Convex": true,
"MaterialIndex": 3,
"TypeIndex": 0,
"CustomShader": {
"SpecularColor": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"SpecularIntensity": 0.0,
"SpecularSharpness": 2.0,
"FresnelStrength": 0.0
},
"CastShadows": true
},
"LuaScript": "\r\nfunction onload(saved_data)\r\n createDownloadButton()\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make Download button\r\nfunction createDownloadButton()\r\n self.createButton({\r\n label=\"Download\", click_function=\"buttonClick_download\", function_owner=self,\r\n position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800,\r\n font_size=150, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by download button,\r\nfunction buttonClick_download()\r\n local params = { url = self.getGMNotes(), replace = self.guid }\r\n Global.call('placeholder_download', params)\r\nend\r\n",
"LuaScriptState": "{\"ml\":{\"033daa\":{\"lock\":false,\"pos\":{\"x\":-8.1757,\"y\":1.6066,\"z\":0.3485},\"rot\":{\"x\":359.9216,\"y\":269.9993,\"z\":0.0168}},\"0d0ca8\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6292,\"z\":3.86},\"rot\":{\"x\":359.9201,\"y\":269.9998,\"z\":180.0168}},\"15b639\":{\"lock\":false,\"pos\":{\"x\":-2.6885,\"y\":1.6191,\"z\":-5.0485},\"rot\":{\"x\":0.0168,\"y\":180.0166,\"z\":0.0803}},\"21f7a4\":{\"lock\":false,\"pos\":{\"x\":-26.8493,\"y\":1.6194,\"z\":1.7171},\"rot\":{\"x\":359.9392,\"y\":239.9975,\"z\":0.0545}},\"4027ed\":{\"lock\":false,\"pos\":{\"x\":-30.2244,\"y\":1.6247,\"z\":3.8601},\"rot\":{\"x\":0.0169,\"y\":179.985,\"z\":0.0799}},\"4b8bb9\":{\"lock\":false,\"pos\":{\"x\":6.5889,\"y\":1.517,\"z\":-17.8819},\"rot\":{\"x\":359.9201,\"y\":270.0021,\"z\":0.0169}},\"4f9d72\":{\"lock\":false,\"pos\":{\"x\":-2.7247,\"y\":1.599,\"z\":0.3733},\"rot\":{\"x\":0.0168,\"y\":180,\"z\":0.0803}},\"7112e4\":{\"lock\":false,\"pos\":{\"x\":-36.7732,\"y\":1.6463,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9997,\"z\":180.0168}},\"7234af\":{\"lock\":false,\"pos\":{\"x\":-33.2491,\"y\":1.6278,\"z\":-0.0616},\"rot\":{\"x\":359.9201,\"y\":270.0093,\"z\":0.0169}},\"75a1d7\":{\"lock\":false,\"pos\":{\"x\":-3.9282,\"y\":1.7684,\"z\":5.756},\"rot\":{\"x\":359.9197,\"y\":270.0071,\"z\":180.0168}},\"7a167a\":{\"lock\":false,\"pos\":{\"x\":1.7024,\"y\":1.5583,\"z\":14.2869},\"rot\":{\"x\":359.9554,\"y\":224.7314,\"z\":0.0689}},\"7d002e\":{\"lock\":false,\"pos\":{\"x\":-8.9412,\"y\":1.593,\"z\":-3.1373},\"rot\":{\"x\":359.9211,\"y\":270.0159,\"z\":0.0178}},\"7fb809\":{\"lock\":false,\"pos\":{\"x\":-8.8494,\"y\":1.6036,\"z\":-13.0782},\"rot\":{\"x\":359.9212,\"y\":270.0023,\"z\":0.0178}},\"8385c4\":{\"lock\":false,\"pos\":{\"x\":-8.8435,\"y\":1.6056,\"z\":-6.2428},\"rot\":{\"x\":359.9214,\"y\":270.0007,\"z\":180.0158}},\"92ed37\":{\"lock\":false,\"pos\":{\"x\":-26.8628,\"y\":1.6183,\"z\":-1.9646},\"rot\":{\"x\":359.9224,\"y\":300.0059,\"z\":359.9747}},\"93a112\":{\"lock\":false,\"pos\":{\"x\":-30.2243,\"y\":1.6394,\"z\":7.5708},\"rot\":{\"x\":359.9201,\"y\":269.9991,\"z\":180.0168}},\"98cfeb\":{\"lock\":false,\"pos\":{\"x\":-3.956,\"y\":1.5975,\"z\":-10.4416},\"rot\":{\"x\":359.9197,\"y\":269.9995,\"z\":0.0168}},\"9e9ff6\":{\"lock\":false,\"pos\":{\"x\":-36.7733,\"y\":1.6441,\"z\":-7.7},\"rot\":{\"x\":359.9201,\"y\":269.9993,\"z\":180.0168}},\"a7f7c7\":{\"lock\":false,\"pos\":{\"x\":-36.7732,\"y\":1.6316,\"z\":-3.83},\"rot\":{\"x\":0.0168,\"y\":180.041,\"z\":0.08}},\"abb407\":{\"lock\":false,\"pos\":{\"x\":-8.8479,\"y\":1.6029,\"z\":-15.3075},\"rot\":{\"x\":359.9212,\"y\":270.011,\"z\":0.0178}},\"afa1f3\":{\"lock\":false,\"pos\":{\"x\":-8.8373,\"y\":1.6049,\"z\":-8.5317},\"rot\":{\"x\":359.9213,\"y\":270.0001,\"z\":0.0179}},\"b5a46b\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6269,\"z\":-3.8299},\"rot\":{\"x\":359.9201,\"y\":270,\"z\":180.0168}},\"bbb70a\":{\"lock\":false,\"pos\":{\"x\":-3.9121,\"y\":1.5826,\"z\":-14.8057},\"rot\":{\"x\":359.9197,\"y\":270.0306,\"z\":0.0168}},\"bfa2a2\":{\"lock\":false,\"pos\":{\"x\":-8.8434,\"y\":1.6042,\"z\":-10.8084},\"rot\":{\"x\":359.9212,\"y\":270.0005,\"z\":0.0178}},\"e9cc5a\":{\"lock\":false,\"pos\":{\"x\":-30.2243,\"y\":1.6372,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9995,\"z\":180.0168}},\"eda22b\":{\"lock\":false,\"pos\":{\"x\":-1.4656,\"y\":1.5756,\"z\":-26.9308},\"rot\":{\"x\":359.9201,\"y\":270.0153,\"z\":0.0169}},\"fbe9fd\":{\"lock\":false,\"pos\":{\"x\":-24.8778,\"y\":1.6161,\"z\":-0.1574},\"rot\":{\"x\":0.0166,\"y\":180.1361,\"z\":0.08}}}}",
"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
}
}
]
},
{
"GUID": "c6a1ca",
"Name": "Custom_Model",
"Transform": {
"posX": -9.755589,
"posY": 1.62501276,
"posZ": 64.38771,
"rotX": 0.03405041,
"rotY": 269.999939,
"rotZ": 0.0220067352,
"scaleX": 2.21,
"scaleY": 0.2,
"scaleZ": 2.46
},
"Nickname": "Last Call at Roxie's",
"Description": "An Android Universe crossover adventure",
"GMNotes": "fancreations/scenario_last_call_at_roxies.json",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0,
"a": 0.274509817
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomMesh": {
"MeshURL": "https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/798737729142938527/354E6204BB01AED91EAEB19D99E4D95620F99C56/",
"NormalURL": "",
"ColliderURL": "",
"Convex": true,
"MaterialIndex": 3,
"TypeIndex": 0,
"CustomShader": {
"SpecularColor": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"SpecularIntensity": 0.0,
"SpecularSharpness": 2.0,
"FresnelStrength": 0.0
},
"CastShadows": true
},
"LuaScript": "\r\nfunction onload(saved_data)\r\n createDownloadButton()\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make Download button\r\nfunction createDownloadButton()\r\n self.createButton({\r\n label=\"Download\", click_function=\"buttonClick_download\", function_owner=self,\r\n position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800,\r\n font_size=150, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by download button,\r\nfunction buttonClick_download()\r\n local params = { url = self.getGMNotes(), replace = self.guid }\r\n Global.call('placeholder_download', params)\r\nend\r\n",
"LuaScriptState": "{\"ml\":{\"05dd0a\":{\"lock\":false,\"pos\":{\"x\":-3.956,\"y\":1.6556,\"z\":-10.4412},\"rot\":{\"x\":359.9197,\"y\":269.9998,\"z\":0.0168}},\"0df520\":{\"lock\":false,\"pos\":{\"x\":-11.4769,\"y\":1.6694,\"z\":7.3277},\"rot\":{\"x\":359.9201,\"y\":269.9876,\"z\":0.0169}},\"11a797\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6793,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":0.0169}},\"29a427\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6157,\"z\":3.86},\"rot\":{\"x\":359.9831,\"y\":-0.0032,\"z\":359.9201}},\"30c8b6\":{\"lock\":false,\"pos\":{\"x\":-20.4245,\"y\":1.6099,\"z\":-0.3109},\"rot\":{\"x\":359.9201,\"y\":270.0001,\"z\":0.0169}},\"3b6690\":{\"lock\":false,\"pos\":{\"x\":-20.3057,\"y\":1.6086,\"z\":-3.9972},\"rot\":{\"x\":359.9554,\"y\":224.9999,\"z\":0.0684}},\"43390e\":{\"lock\":false,\"pos\":{\"x\":-25.129,\"y\":1.809,\"z\":-1.3516},\"rot\":{\"x\":359.9271,\"y\":270.0207,\"z\":6.3789}},\"49232a\":{\"lock\":false,\"pos\":{\"x\":-26.9264,\"y\":1.619,\"z\":-0.0365},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":0.0169}},\"567db0\":{\"lock\":false,\"pos\":{\"x\":-3.974,\"y\":1.5826,\"z\":-15.0374},\"rot\":{\"x\":359.9197,\"y\":270.0023,\"z\":0.0168}},\"5ee55d\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6771,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9988,\"z\":0.0169}},\"6f1e9e\":{\"lock\":false,\"pos\":{\"x\":-2.6885,\"y\":1.6535,\"z\":-5.0485},\"rot\":{\"x\":0.0169,\"y\":179.9695,\"z\":0.0802}},\"7234af\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6134,\"z\":-3.83},\"rot\":{\"x\":359.9828,\"y\":-0.0032,\"z\":359.9266}},\"7a4949\":{\"lock\":false,\"pos\":{\"x\":-11.176,\"y\":1.6668,\"z\":-0.012},\"rot\":{\"x\":359.9201,\"y\":270.0181,\"z\":0.0169}},\"7a4b8e\":{\"lock\":false,\"pos\":{\"x\":-20.0769,\"y\":1.6117,\"z\":7.4094},\"rot\":{\"x\":359.9201,\"y\":270.0001,\"z\":0.0169}},\"9c6ccd\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.684,\"z\":-7.7},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":0.0169}},\"a08fa0\":{\"lock\":false,\"pos\":{\"x\":-3.9277,\"y\":1.7237,\"z\":5.7571},\"rot\":{\"x\":359.9197,\"y\":269.9998,\"z\":180.0168}},\"a137d8\":{\"lock\":false,\"pos\":{\"x\":-23.6764,\"y\":1.6863,\"z\":-0.0301},\"rot\":{\"x\":359.921,\"y\":269.9989,\"z\":0.019}},\"a45247\":{\"lock\":false,\"pos\":{\"x\":1.6966,\"y\":1.5583,\"z\":14.2781},\"rot\":{\"x\":359.9551,\"y\":225.017,\"z\":0.0687}},\"b1d40e\":{\"lock\":false,\"pos\":{\"x\":-2.7247,\"y\":1.664,\"z\":0.3733},\"rot\":{\"x\":0.0168,\"y\":180.0068,\"z\":0.0803}},\"b8ca38\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6885,\"z\":7.5699},\"rot\":{\"x\":359.9201,\"y\":269.9985,\"z\":0.0169}},\"d60ed8\":{\"lock\":false,\"pos\":{\"x\":-30.2242,\"y\":1.6954,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9992,\"z\":0.0169}},\"e3aa6a\":{\"lock\":false,\"pos\":{\"x\":-17.1199,\"y\":1.6065,\"z\":3.86},\"rot\":{\"x\":359.9831,\"y\":-0.0033,\"z\":359.92}},\"e78e52\":{\"lock\":false,\"pos\":{\"x\":-20.229,\"y\":1.6108,\"z\":3.6702},\"rot\":{\"x\":359.9316,\"y\":315.0001,\"z\":359.9554}},\"eb5dd9\":{\"lock\":false,\"pos\":{\"x\":-50.9244,\"y\":1.7266,\"z\":8.1784},\"rot\":{\"x\":359.9201,\"y\":269.9998,\"z\":0.0169}},\"ffeff3\":{\"lock\":false,\"pos\":{\"x\":-27.1788,\"y\":1.6183,\"z\":-3.7526},\"rot\":{\"x\":359.9315,\"y\":314.8558,\"z\":359.9556}}}}",
"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
}
}
]
},
{
"GUID": "df62e8",
"Name": "Custom_Model",
"Transform": {
"posX": -8.953968,
"posY": 1.62522864,
"posZ": 65.45032,
"rotX": 0.008035854,
"rotY": 269.999939,
"rotZ": 0.02081988,
"scaleX": 2.21,
"scaleY": 0.2,
"scaleZ": 2.46
},
"Nickname": "Knightfall",
"Description": "",
"GMNotes": "fancreations/scenario_knightfall.json",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0,
"a": 0.274509817
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomMesh": {
"MeshURL": "https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/798737729142937041/3253F31B9483C3B5D0A98BA7E479E006FBF8D270/",
"NormalURL": "",
"ColliderURL": "",
"Convex": true,
"MaterialIndex": 3,
"TypeIndex": 0,
"CustomShader": {
"SpecularColor": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"SpecularIntensity": 0.0,
"SpecularSharpness": 2.0,
"FresnelStrength": 0.0
},
"CastShadows": true
},
"LuaScript": "\r\nfunction onload(saved_data)\r\n createDownloadButton()\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make Download button\r\nfunction createDownloadButton()\r\n self.createButton({\r\n label=\"Download\", click_function=\"buttonClick_download\", function_owner=self,\r\n position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800,\r\n font_size=150, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by download button,\r\nfunction buttonClick_download()\r\n local params = { url = self.getGMNotes(), replace = self.guid }\r\n Global.call('placeholder_download', params)\r\nend\r\n",
"LuaScriptState": "{\"ml\":{\"0679c6\":{\"lock\":false,\"pos\":{\"x\":-11.8399,\"y\":1.6678,\"z\":0.2602},\"rot\":{\"x\":359.9201,\"y\":269.988,\"z\":0.0169}},\"141409\":{\"lock\":false,\"pos\":{\"x\":-30.2241,\"y\":1.6982,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9963,\"z\":180.0169}},\"245b8d\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.689,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9964,\"z\":180.0169}},\"271ce2\":{\"lock\":false,\"pos\":{\"x\":-4.3628,\"y\":1.5831,\"z\":-15.1267},\"rot\":{\"x\":359.9197,\"y\":270.0001,\"z\":0.0168}},\"2d17c9\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6913,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":269.9958,\"z\":180.0169}},\"3106e6\":{\"lock\":false,\"pos\":{\"x\":1.6965,\"y\":1.6368,\"z\":14.2788},\"rot\":{\"x\":359.9552,\"y\":224.998,\"z\":0.0687}},\"917494\":{\"lock\":false,\"pos\":{\"x\":-2.7246,\"y\":1.664,\"z\":0.3733},\"rot\":{\"x\":359.9197,\"y\":269.9855,\"z\":0.0169}},\"9d4e42\":{\"lock\":false,\"pos\":{\"x\":-3.9274,\"y\":1.7397,\"z\":5.7571},\"rot\":{\"x\":359.9197,\"y\":269.9857,\"z\":180.0169}},\"a4e5e9\":{\"lock\":false,\"pos\":{\"x\":-2.6884,\"y\":1.655,\"z\":-5.0486},\"rot\":{\"x\":359.9197,\"y\":269.9855,\"z\":0.0169}},\"a68851\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6868,\"z\":-7.7},\"rot\":{\"x\":359.9201,\"y\":269.9972,\"z\":180.0169}},\"b21de6\":{\"lock\":false,\"pos\":{\"x\":-13.3172,\"y\":1.6804,\"z\":7.5859},\"rot\":{\"x\":359.9201,\"y\":269.9856,\"z\":180.0169}},\"b8480f\":{\"lock\":false,\"pos\":{\"x\":-3.9559,\"y\":1.6556,\"z\":-10.4412},\"rot\":{\"x\":359.9197,\"y\":269.9855,\"z\":0.0169}},\"bab1d6\":{\"lock\":false,\"pos\":{\"x\":-17.1199,\"y\":1.6799,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.997,\"z\":180.0169}},\"c9e9ad\":{\"lock\":false,\"pos\":{\"x\":-5.3818,\"y\":1.4082,\"z\":14.423},\"rot\":{\"x\":359.9832,\"y\":-0.0034,\"z\":359.9196}},\"d306b8\":{\"lock\":false,\"pos\":{\"x\":-12.4062,\"y\":1.679,\"z\":12.7949},\"rot\":{\"x\":359.9201,\"y\":269.9857,\"z\":180.0169}},\"da3aed\":{\"lock\":false,\"pos\":{\"x\":-50.9244,\"y\":1.7266,\"z\":8.1784},\"rot\":{\"x\":359.9201,\"y\":269.9855,\"z\":0.0169}}}}",
"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
}
}
]
},
{
"GUID": "a61b48",
"Name": "Custom_Model",
"Transform": {
"posX": -7.72131634,
"posY": 1.62504816,
"posZ": 66.96197,
"rotX": 359.963562,
"rotY": 270.000519,
"rotZ": 0.01512399,
"scaleX": 2.21,
"scaleY": 0.46,
"scaleZ": 2.42
},
"Nickname": "Jenny's Choice",
"Description": "",
"GMNotes": "fancreations/scenario_jennys_choice.json",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0,
"a": 0.274509817
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomMesh": {
"MeshURL": "https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/790858329422808079/1407B0AB89A9DBCFEE07A84A0979829556D84A78/",
"NormalURL": "",
"ColliderURL": "",
"Convex": true,
"MaterialIndex": 3,
"TypeIndex": 0,
"CustomShader": {
"SpecularColor": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"SpecularIntensity": 0.0,
"SpecularSharpness": 2.0,
"FresnelStrength": 0.0
},
"CastShadows": true
},
"LuaScript": "\r\nfunction onload(saved_data)\r\n createDownloadButton()\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make Download button\r\nfunction createDownloadButton()\r\n self.createButton({\r\n label=\"Download\", click_function=\"buttonClick_download\", function_owner=self,\r\n position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800,\r\n font_size=150, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by download button,\r\nfunction buttonClick_download()\r\n local params = { url = self.getGMNotes(), replace = self.guid }\r\n Global.call('placeholder_download', params)\r\nend\r\n",
"LuaScriptState": "{\"ml\":{\"057b7e\":{\"lock\":false,\"pos\":{\"x\":-23.6764,\"y\":1.6111,\"z\":-11.51},\"rot\":{\"x\":359.9831,\"y\":-0.0008,\"z\":359.9201}},\"06d29e\":{\"lock\":false,\"pos\":{\"x\":-2.7248,\"y\":1.6551,\"z\":0.3733},\"rot\":{\"x\":0.0168,\"y\":179.9995,\"z\":0.0803}},\"149816\":{\"lock\":false,\"pos\":{\"x\":-30.2241,\"y\":1.6225,\"z\":-3.83},\"rot\":{\"x\":359.9831,\"y\":-0.0009,\"z\":359.9201}},\"1af6e8\":{\"lock\":false,\"pos\":{\"x\":-30.2241,\"y\":1.6976,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":0.0169}},\"1e7961\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6771,\"z\":-0.03},\"rot\":{\"x\":359.9203,\"y\":270,\"z\":0.016}},\"29d7e2\":{\"lock\":false,\"pos\":{\"x\":-15.5985,\"y\":1.8209,\"z\":0.017},\"rot\":{\"x\":359.8887,\"y\":269.9785,\"z\":0.0184}},\"3ba881\":{\"lock\":false,\"pos\":{\"x\":-23.6766,\"y\":1.6885,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":269.9997,\"z\":0.0169}},\"3c4300\":{\"lock\":false,\"pos\":{\"x\":-23.6766,\"y\":1.6862,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9987,\"z\":0.0169}},\"3d9a8b\":{\"lock\":false,\"pos\":{\"x\":-22.2198,\"y\":1.7339,\"z\":-7.7092},\"rot\":{\"x\":0.0792,\"y\":269.9715,\"z\":359.9832}},\"44b0c5\":{\"lock\":false,\"pos\":{\"x\":-26.7848,\"y\":1.6188,\"z\":-0.0522},\"rot\":{\"x\":0.0799,\"y\":90.0026,\"z\":359.9831}},\"46ead9\":{\"lock\":false,\"pos\":{\"x\":-31.7026,\"y\":1.743,\"z\":-7.7614},\"rot\":{\"x\":0.081,\"y\":270.0021,\"z\":359.9834}},\"61a21b\":{\"lock\":false,\"pos\":{\"x\":-20.5245,\"y\":1.6101,\"z\":-0.2141},\"rot\":{\"x\":359.9201,\"y\":269.8899,\"z\":0.0171}},\"6aa57e\":{\"lock\":false,\"pos\":{\"x\":-30.2244,\"y\":1.6954,\"z\":-0.0298},\"rot\":{\"x\":359.9207,\"y\":269.989,\"z\":0.0183}},\"6cb6e7\":{\"lock\":false,\"pos\":{\"x\":-23.6764,\"y\":1.6134,\"z\":-3.83},\"rot\":{\"x\":359.9831,\"y\":-0.0006,\"z\":359.9201}},\"7234af\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6157,\"z\":3.86},\"rot\":{\"x\":359.9831,\"y\":-0.0008,\"z\":359.9201}},\"845074\":{\"lock\":false,\"pos\":{\"x\":-3.956,\"y\":1.6556,\"z\":-10.4412},\"rot\":{\"x\":359.9197,\"y\":270,\"z\":0.0168}},\"8bae65\":{\"lock\":false,\"pos\":{\"x\":-3.9277,\"y\":1.7344,\"z\":5.7572},\"rot\":{\"x\":359.9197,\"y\":269.9998,\"z\":180.0168}},\"a45247\":{\"lock\":false,\"pos\":{\"x\":1.6961,\"y\":1.5583,\"z\":14.2788},\"rot\":{\"x\":359.9551,\"y\":224.998,\"z\":0.0687}},\"b2bd25\":{\"lock\":false,\"pos\":{\"x\":-1.177,\"y\":1.5467,\"z\":-27.5609},\"rot\":{\"x\":359.9201,\"y\":269.9994,\"z\":0.0169}},\"b5ceb0\":{\"lock\":false,\"pos\":{\"x\":-26.8548,\"y\":1.6211,\"z\":7.3881},\"rot\":{\"x\":359.9201,\"y\":270.0042,\"z\":0.0169}},\"b81937\":{\"lock\":false,\"pos\":{\"x\":-26.6804,\"y\":1.6176,\"z\":-3.8413},\"rot\":{\"x\":0.0684,\"y\":135.0054,\"z\":0.0446}},\"bbb70a\":{\"lock\":false,\"pos\":{\"x\":-3.819,\"y\":1.5823,\"z\":-15.2311},\"rot\":{\"x\":359.9197,\"y\":270.0322,\"z\":0.0168}},\"c6a2ab\":{\"lock\":false,\"pos\":{\"x\":-27.6254,\"y\":1.6167,\"z\":-11.1322},\"rot\":{\"x\":359.9316,\"y\":314.9959,\"z\":359.9554}},\"cca4ce\":{\"lock\":false,\"pos\":{\"x\":-23.6764,\"y\":1.684,\"z\":-7.6884},\"rot\":{\"x\":359.9201,\"y\":270.0044,\"z\":0.0167}},\"d778ee\":{\"lock\":false,\"pos\":{\"x\":-26.967,\"y\":1.6168,\"z\":-7.7901},\"rot\":{\"x\":359.9201,\"y\":270.0042,\"z\":0.0169}},\"df8dff\":{\"lock\":false,\"pos\":{\"x\":-31.957,\"y\":1.8293,\"z\":-0.0662},\"rot\":{\"x\":4.7643,\"y\":270.0184,\"z\":0.017}},\"e02060\":{\"lock\":false,\"pos\":{\"x\":-2.6886,\"y\":1.655,\"z\":-5.0485},\"rot\":{\"x\":0.0168,\"y\":180.0001,\"z\":0.0803}},\"ea8211\":{\"lock\":false,\"pos\":{\"x\":-30.2241,\"y\":1.6931,\"z\":-7.6998},\"rot\":{\"x\":359.9202,\"y\":269.9836,\"z\":0.0165}},\"ef067f\":{\"lock\":false,\"pos\":{\"x\":-27.2278,\"y\":1.6207,\"z\":4.0347},\"rot\":{\"x\":0.0684,\"y\":135.0052,\"z\":0.0446}}}}",
"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
}
}
]
},
{
"GUID": "68380c",
"Name": "Custom_Model",
"Transform": {
"posX": -10.3324347,
"posY": 1.62508428,
"posZ": 65.71659,
"rotX": 0.03179546,
"rotY": 270.0,
"rotZ": 0.0162530243,
"scaleX": 2.21,
"scaleY": 0.46,
"scaleZ": 2.42
},
"Nickname": "In Blackest Pits",
"Description": "",
"GMNotes": "fancreations/scenario_in_blackest_pits.json",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0,
"a": 0.274509817
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomMesh": {
"MeshURL": "https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/1016065907889320438/3DC5DD89D5DB56BE6EFDAC4A96E8063765576EA1/",
"NormalURL": "",
"ColliderURL": "",
"Convex": true,
"MaterialIndex": 3,
"TypeIndex": 0,
"CustomShader": {
"SpecularColor": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"SpecularIntensity": 0.0,
"SpecularSharpness": 2.0,
"FresnelStrength": 0.0
},
"CastShadows": true
},
"LuaScript": "\r\nfunction onload(saved_data)\r\n createDownloadButton()\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make Download button\r\nfunction createDownloadButton()\r\n self.createButton({\r\n label=\"Download\", click_function=\"buttonClick_download\", function_owner=self,\r\n position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800,\r\n font_size=150, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by download button,\r\nfunction buttonClick_download()\r\n local params = { url = self.getGMNotes(), replace = self.guid }\r\n Global.call('placeholder_download', params)\r\nend\r\n",
"LuaScriptState": "{\"ml\":{\"1ae977\":{\"lock\":false,\"pos\":{\"x\":-33.4282,\"y\":1.6258,\"z\":-7.7062},\"rot\":{\"x\":0.0799,\"y\":90.0006,\"z\":359.9831}},\"268bd8\":{\"lock\":false,\"pos\":{\"x\":-30.2243,\"y\":1.6937,\"z\":-15.28},\"rot\":{\"x\":359.9201,\"y\":269.996,\"z\":180.0169}},\"35c492\":{\"lock\":false,\"pos\":{\"x\":-17.1199,\"y\":1.6042,\"z\":-3.83},\"rot\":{\"x\":0.0169,\"y\":179.9977,\"z\":0.0799}},\"4011a5\":{\"lock\":false,\"pos\":{\"x\":-17.1199,\"y\":1.6799,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9961,\"z\":180.0169}},\"505e6c\":{\"lock\":false,\"pos\":{\"x\":1.6965,\"y\":1.5583,\"z\":14.2788},\"rot\":{\"x\":359.9551,\"y\":224.998,\"z\":0.0687}},\"5bb7d0\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6868,\"z\":-7.7},\"rot\":{\"x\":359.9201,\"y\":269.9953,\"z\":180.0169}},\"5d070a\":{\"lock\":false,\"pos\":{\"x\":-30.2242,\"y\":1.6203,\"z\":-11.51},\"rot\":{\"x\":359.9832,\"y\":0.0096,\"z\":359.9201}},\"6645cd\":{\"lock\":false,\"pos\":{\"x\":-23.6764,\"y\":1.6134,\"z\":-3.83},\"rot\":{\"x\":0.0169,\"y\":179.9981,\"z\":0.0799}},\"668f68\":{\"lock\":false,\"pos\":{\"x\":-26.9665,\"y\":1.6168,\"z\":-7.7199},\"rot\":{\"x\":0.0799,\"y\":90.0006,\"z\":359.9831}},\"6f1efa\":{\"lock\":false,\"pos\":{\"x\":-36.7733,\"y\":1.705,\"z\":-7.7},\"rot\":{\"x\":359.9201,\"y\":269.996,\"z\":180.0169}},\"7234af\":{\"lock\":false,\"pos\":{\"x\":-17.1199,\"y\":1.6065,\"z\":3.8598},\"rot\":{\"x\":0.0169,\"y\":179.9981,\"z\":0.0799}},\"759ab6\":{\"lock\":false,\"pos\":{\"x\":-20.2426,\"y\":1.6075,\"z\":-7.7066},\"rot\":{\"x\":0.0799,\"y\":90.0007,\"z\":359.9831}},\"7b91a3\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.689,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.996,\"z\":180.0169}},\"8944d1\":{\"lock\":false,\"pos\":{\"x\":-3.9275,\"y\":1.7237,\"z\":5.7573},\"rot\":{\"x\":359.9197,\"y\":270.0005,\"z\":180.0168}},\"98b72e\":{\"lock\":false,\"pos\":{\"x\":-3.9559,\"y\":1.6585,\"z\":-10.4431},\"rot\":{\"x\":359.9197,\"y\":269.9995,\"z\":180.0168}},\"a4612b\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6821,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":269.9962,\"z\":180.0169}},\"b04a1a\":{\"lock\":false,\"pos\":{\"x\":-20.2608,\"y\":1.6098,\"z\":0.0434},\"rot\":{\"x\":0.0799,\"y\":90.0006,\"z\":359.9831}},\"bbb70a\":{\"lock\":false,\"pos\":{\"x\":-3.8027,\"y\":1.5824,\"z\":-14.9354},\"rot\":{\"x\":359.9197,\"y\":270.031,\"z\":0.0168}},\"cce0e0\":{\"lock\":false,\"pos\":{\"x\":-12.0115,\"y\":1.671,\"z\":7.4502},\"rot\":{\"x\":359.9201,\"y\":270.0065,\"z\":0.0169}},\"d26316\":{\"lock\":false,\"pos\":{\"x\":-26.8215,\"y\":1.6154,\"z\":-11.8145},\"rot\":{\"x\":0.045,\"y\":45.3509,\"z\":359.9319}},\"dbbfa0\":{\"lock\":false,\"pos\":{\"x\":-30.2243,\"y\":1.6959,\"z\":-7.7},\"rot\":{\"x\":359.9201,\"y\":269.9789,\"z\":180.0169}},\"def2f5\":{\"lock\":false,\"pos\":{\"x\":-2.7248,\"y\":1.664,\"z\":0.3734},\"rot\":{\"x\":359.9197,\"y\":270.001,\"z\":180.0168}},\"e9d947\":{\"lock\":false,\"pos\":{\"x\":-2.6895,\"y\":1.3987,\"z\":-5.0483},\"rot\":{\"x\":359.9832,\"y\":0.0002,\"z\":359.9197}},\"ff4d6f\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6776,\"z\":-7.7},\"rot\":{\"x\":359.9201,\"y\":269.996,\"z\":180.0169}}}}",
"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
}
}
]
},
{
"GUID": "e7d9f8",
"Name": "Custom_Model",
"Transform": {
"posX": -9.660942,
"posY": 1.62577617,
"posZ": 67.68432,
"rotX": 0.0173920672,
"rotY": 270.000031,
"rotZ": 0.0020675906,
"scaleX": 2.21,
"scaleY": 0.46,
"scaleZ": 2.42
},
"Nickname": "Happy's Funhouse",
"Description": "",
"GMNotes": "fancreations/scenario_happys_funhouse.json",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0,
"a": 0.274509817
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomMesh": {
"MeshURL": "https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/798737729142976303/C24C7169FD11E5D151DD2F754D5B9A5563D5DABB/",
"NormalURL": "",
"ColliderURL": "",
"Convex": true,
"MaterialIndex": 3,
"TypeIndex": 0,
"CustomShader": {
"SpecularColor": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"SpecularIntensity": 0.0,
"SpecularSharpness": 2.0,
"FresnelStrength": 0.0
},
"CastShadows": true
},
"LuaScript": "\r\nfunction onload(saved_data)\r\n createDownloadButton()\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make Download button\r\nfunction createDownloadButton()\r\n self.createButton({\r\n label=\"Download\", click_function=\"buttonClick_download\", function_owner=self,\r\n position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800,\r\n font_size=150, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by download button,\r\nfunction buttonClick_download()\r\n local params = { url = self.getGMNotes(), replace = self.guid }\r\n Global.call('placeholder_download', params)\r\nend\r\n",
"LuaScriptState": "{\"ml\":{\"13c965\":{\"lock\":false,\"pos\":{\"x\":-3.9276,\"y\":1.7504,\"z\":5.7571},\"rot\":{\"x\":359.9197,\"y\":269.9855,\"z\":180.0168}},\"1aa87a\":{\"lock\":false,\"pos\":{\"x\":-30.2245,\"y\":1.704,\"z\":7.5705},\"rot\":{\"x\":359.9201,\"y\":269.9915,\"z\":180.0169}},\"1c6049\":{\"lock\":false,\"pos\":{\"x\":-2.7315,\"y\":1.6551,\"z\":0.3733},\"rot\":{\"x\":359.9197,\"y\":269.9742,\"z\":0.0169}},\"1e99b2\":{\"lock\":false,\"pos\":{\"x\":-3.956,\"y\":1.6556,\"z\":-10.4412},\"rot\":{\"x\":359.9197,\"y\":269.9852,\"z\":0.0169}},\"3296c9\":{\"lock\":false,\"pos\":{\"x\":-2.689,\"y\":1.6535,\"z\":-5.0428},\"rot\":{\"x\":359.9197,\"y\":270.0282,\"z\":0.0168}},\"4e82c5\":{\"lock\":false,\"pos\":{\"x\":-36.7735,\"y\":1.7131,\"z\":7.5705},\"rot\":{\"x\":359.9201,\"y\":269.993,\"z\":180.0169}},\"9b0cf5\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6799,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9857,\"z\":180.0169}},\"a45247\":{\"lock\":false,\"pos\":{\"x\":1.6967,\"y\":1.5583,\"z\":14.2787},\"rot\":{\"x\":359.9551,\"y\":224.998,\"z\":0.0687}},\"ab12bb\":{\"lock\":false,\"pos\":{\"x\":-50.9244,\"y\":1.7266,\"z\":8.1784},\"rot\":{\"x\":359.9201,\"y\":269.9852,\"z\":0.0169}},\"bdd422\":{\"lock\":false,\"pos\":{\"x\":-9.2986,\"y\":1.667,\"z\":0.0118},\"rot\":{\"x\":359.9202,\"y\":269.9846,\"z\":0.017}},\"c5008a\":{\"lock\":false,\"pos\":{\"x\":-3.5702,\"y\":1.5821,\"z\":-14.9068},\"rot\":{\"x\":359.9197,\"y\":270.0005,\"z\":0.0168}},\"fadb67\":{\"lock\":false,\"pos\":{\"x\":-23.6763,\"y\":1.6948,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":270.0001,\"z\":180.0169}}}}",
"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
}
}
]
},
{
"GUID": "5ccf55",
"Name": "Custom_Model",
"Transform": {
"posX": -7.45817566,
"posY": 1.62351477,
"posZ": 64.61242,
"rotX": 359.96405,
"rotY": 269.999969,
"rotZ": 0.04804339,
"scaleX": 2.21,
"scaleY": 0.2,
"scaleZ": 2.46
},
"Nickname": "The Grand Oak Hotel",
"Description": "",
"GMNotes": "fancreations/scenario_grand_oak_hotel.json",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0,
"a": 0.274509817
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomMesh": {
"MeshURL": "https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/798737729142935568/34A42BC3AEF7764F8D7BB242DB08FD36B8EC6DCB/",
"NormalURL": "",
"ColliderURL": "",
"Convex": true,
"MaterialIndex": 3,
"TypeIndex": 0,
"CustomShader": {
"SpecularColor": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"SpecularIntensity": 0.0,
"SpecularSharpness": 2.0,
"FresnelStrength": 0.0
},
"CastShadows": true
},
"LuaScript": "\r\nfunction onload(saved_data)\r\n createDownloadButton()\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make Download button\r\nfunction createDownloadButton()\r\n self.createButton({\r\n label=\"Download\", click_function=\"buttonClick_download\", function_owner=self,\r\n position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800,\r\n font_size=150, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by download button,\r\nfunction buttonClick_download()\r\n local params = { url = self.getGMNotes(), replace = self.guid }\r\n Global.call('placeholder_download', params)\r\nend\r\n",
"LuaScriptState": "{\"ml\":{\"076680\":{\"lock\":false,\"pos\":{\"x\":-1.4656,\"y\":1.4756,\"z\":-26.9304},\"rot\":{\"x\":359.9201,\"y\":270.0086,\"z\":0.0169}},\"1832f9\":{\"lock\":false,\"pos\":{\"x\":-30.2241,\"y\":1.6372,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":270,\"z\":0.0168}},\"31b5a1\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6189,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":270.0001,\"z\":0.0168}},\"51a259\":{\"lock\":false,\"pos\":{\"x\":-2.7247,\"y\":1.6256,\"z\":0.3733},\"rot\":{\"x\":0.0168,\"y\":180.0003,\"z\":0.0803}},\"580dd8\":{\"lock\":false,\"pos\":{\"x\":-30.2242,\"y\":1.6394,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":270.0001,\"z\":0.0168}},\"5895c2\":{\"lock\":false,\"pos\":{\"x\":-3.9277,\"y\":1.7299,\"z\":5.7534},\"rot\":{\"x\":359.9197,\"y\":269.999,\"z\":180.0168}},\"6fc753\":{\"lock\":false,\"pos\":{\"x\":-36.7732,\"y\":1.6508,\"z\":15.1901},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":0.0168}},\"794c01\":{\"lock\":false,\"pos\":{\"x\":-36.7732,\"y\":1.6463,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":270.0025,\"z\":0.0168}},\"7f738c\":{\"lock\":false,\"pos\":{\"x\":-17.1198,\"y\":1.6167,\"z\":-7.7001},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":180.0168}},\"801388\":{\"lock\":false,\"pos\":{\"x\":-3.956,\"y\":1.5975,\"z\":-10.4412},\"rot\":{\"x\":359.9197,\"y\":269.9995,\"z\":0.0168}},\"93cb42\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6234,\"z\":15.19},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":0.0168}},\"9cd1ad\":{\"lock\":false,\"pos\":{\"x\":-4.0559,\"y\":1.5827,\"z\":-15.1513},\"rot\":{\"x\":359.9197,\"y\":270,\"z\":0.0168}},\"ad2380\":{\"lock\":false,\"pos\":{\"x\":-2.6885,\"y\":1.6239,\"z\":-5.0485},\"rot\":{\"x\":0.0169,\"y\":179.9811,\"z\":0.0803}},\"b3a042\":{\"lock\":false,\"pos\":{\"x\":-0.217,\"y\":1.6291,\"z\":-10.403},\"rot\":{\"x\":359.9582,\"y\":269.9997,\"z\":-0.0057}},\"daa47d\":{\"lock\":false,\"pos\":{\"x\":-36.7732,\"y\":1.6486,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":269.9998,\"z\":0.0168}},\"e3a8d4\":{\"lock\":false,\"pos\":{\"x\":-17.1188,\"y\":1.6212,\"z\":7.5574},\"rot\":{\"x\":359.9201,\"y\":269.9977,\"z\":0.0168}},\"fc4638\":{\"lock\":false,\"pos\":{\"x\":1.6963,\"y\":1.5583,\"z\":14.2748},\"rot\":{\"x\":359.9552,\"y\":224.9405,\"z\":0.0687}}}}",
"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
}
}
]
},
{
"GUID": "7fa06f",
"Name": "Custom_Model",
"Transform": {
"posX": -9.335816,
"posY": 1.6251297,
"posZ": 65.41281,
"rotX": 0.0135590993,
"rotY": 269.996643,
"rotZ": 0.0196244,
"scaleX": 2.21,
"scaleY": 0.46,
"scaleZ": 2.42
},
"Nickname": "Fortune or Folly - Parallel Rex Murphy Set",
"Description": "By Davi",
"GMNotes": "fancreations/scenario_fortune_or_folly.json",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0,
"a": 0.274509817
},
"LayoutGroupSortIndex": 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,
"CustomMesh": {
"MeshURL": "https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/1746802526940892011/A775E42F9014CD75B091D7D060012681E58B906E/",
"NormalURL": "",
"ColliderURL": "",
"Convex": true,
"MaterialIndex": 3,
"TypeIndex": 0,
"CustomShader": {
"SpecularColor": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"SpecularIntensity": 0.0,
"SpecularSharpness": 2.0,
"FresnelStrength": 0.0
},
"CastShadows": true
},
"LuaScript": "\r\nfunction onload(saved_data)\r\n createDownloadButton()\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make Download button\r\nfunction createDownloadButton()\r\n self.createButton({\r\n label=\"Download\", click_function=\"buttonClick_download\", function_owner=self,\r\n position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800,\r\n font_size=150, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by download button,\r\nfunction buttonClick_download()\r\n local params = { url = self.getGMNotes(), replace = self.guid }\r\n Global.call('placeholder_download', params)\r\nend\r\n",
"LuaScriptState": "{\"ml\":{\"0f3a96\":{\"lock\":false,\"pos\":{\"x\":-34.2316,\"y\":1.6326,\"z\":11.6933},\"rot\":{\"x\":359.9554,\"y\":224.9998,\"z\":0.0684}},\"22a929\":{\"lock\":false,\"pos\":{\"x\":-3.956,\"y\":1.5975,\"z\":-10.4412},\"rot\":{\"x\":359.9197,\"y\":270,\"z\":0.0168}},\"24e42d\":{\"lock\":false,\"pos\":{\"x\":-36.7734,\"y\":1.6418,\"z\":-15.28},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":0.0168}},\"2c6d3b\":{\"lock\":false,\"pos\":{\"x\":-30.2242,\"y\":1.6417,\"z\":15.19},\"rot\":{\"x\":359.9201,\"y\":269.9998,\"z\":0.0168}},\"2dfd79\":{\"lock\":false,\"pos\":{\"x\":-36.7731,\"y\":1.6361,\"z\":11.46},\"rot\":{\"x\":0.0168,\"y\":180,\"z\":0.0799}},\"3359db\":{\"lock\":false,\"pos\":{\"x\":-32.8963,\"y\":1.624,\"z\":-11.1805},\"rot\":{\"x\":359.9316,\"y\":314.9998,\"z\":359.9554}},\"360107\":{\"lock\":false,\"pos\":{\"x\":-4.244,\"y\":1.6416,\"z\":15.0067},\"rot\":{\"x\":359.9197,\"y\":270.0001,\"z\":180.0168}},\"392d3e\":{\"lock\":false,\"pos\":{\"x\":-36.7731,\"y\":1.6486,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":269.9977,\"z\":0.0168}},\"3943d5\":{\"lock\":false,\"pos\":{\"x\":-4.0346,\"y\":1.4838,\"z\":-23.4806},\"rot\":{\"x\":359.9316,\"y\":315.0011,\"z\":359.9554}},\"3a4050\":{\"lock\":false,\"pos\":{\"x\":-27.2281,\"y\":1.6228,\"z\":11.3825},\"rot\":{\"x\":359.9316,\"y\":315.0001,\"z\":359.9554}},\"3b60c1\":{\"lock\":false,\"pos\":{\"x\":-30.2243,\"y\":1.6258,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":270.0091,\"z\":0.0169}},\"41625c\":{\"lock\":false,\"pos\":{\"x\":-12.2031,\"y\":1.6162,\"z\":14.0413},\"rot\":{\"x\":359.9201,\"y\":270.0175,\"z\":0.0168}},\"4fe831\":{\"lock\":false,\"pos\":{\"x\":-33.3589,\"y\":1.6235,\"z\":-15.1968},\"rot\":{\"x\":359.9201,\"y\":270.0001,\"z\":0.0169}},\"551d28\":{\"lock\":false,\"pos\":{\"x\":2.454,\"y\":1.4721,\"z\":-32.3421},\"rot\":{\"x\":359.9316,\"y\":315.0011,\"z\":359.9554}},\"5c0e2e\":{\"lock\":false,\"pos\":{\"x\":0.2701,\"y\":1.4896,\"z\":28.7803},\"rot\":{\"x\":359.9201,\"y\":269.9994,\"z\":0.0169}},\"62791a\":{\"lock\":false,\"pos\":{\"x\":-27.001,\"y\":1.6202,\"z\":3.6619},\"rot\":{\"x\":359.9554,\"y\":225,\"z\":0.0684}},\"7234af\":{\"lock\":false,\"pos\":{\"x\":-33.4277,\"y\":1.6269,\"z\":-3.8532},\"rot\":{\"x\":359.9554,\"y\":224.9966,\"z\":0.0684}},\"83d7bb\":{\"lock\":false,\"pos\":{\"x\":-4.2243,\"y\":1.4816,\"z\":-31.8957},\"rot\":{\"x\":359.9316,\"y\":315.0004,\"z\":359.9554}},\"8984ad\":{\"lock\":false,\"pos\":{\"x\":-23.6768,\"y\":1.6258,\"z\":-7.7},\"rot\":{\"x\":359.9201,\"y\":270.0192,\"z\":0.0168}},\"899c2c\":{\"lock\":false,\"pos\":{\"x\":-36.7733,\"y\":1.6508,\"z\":15.19},\"rot\":{\"x\":359.9201,\"y\":270,\"z\":0.0168}},\"93422e\":{\"lock\":false,\"pos\":{\"x\":-12.0801,\"y\":1.6416,\"z\":10.7578},\"rot\":{\"x\":0.0168,\"y\":180,\"z\":0.0799}},\"9c140b\":{\"lock\":false,\"pos\":{\"x\":-26.7676,\"y\":1.6177,\"z\":-3.8214},\"rot\":{\"x\":359.9316,\"y\":314.9779,\"z\":359.9554}},\"9c6651\":{\"lock\":false,\"pos\":{\"x\":-30.2218,\"y\":1.6213,\"z\":-7.699},\"rot\":{\"x\":359.9203,\"y\":269.5397,\"z\":0.0175}},\"a45247\":{\"lock\":false,\"pos\":{\"x\":1.6961,\"y\":1.5583,\"z\":14.2788},\"rot\":{\"x\":359.9551,\"y\":224.998,\"z\":0.0687}},\"b6b9b7\":{\"lock\":false,\"pos\":{\"x\":-36.7732,\"y\":1.6441,\"z\":-7.7},\"rot\":{\"x\":359.9201,\"y\":269.9998,\"z\":0.0168}},\"c150be\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6303,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":269.9998,\"z\":0.0168}},\"c27718\":{\"lock\":false,\"pos\":{\"x\":-36.7732,\"y\":1.6294,\"z\":-11.51},\"rot\":{\"x\":0.0168,\"y\":180,\"z\":0.08}},\"c7e9e3\":{\"lock\":false,\"pos\":{\"x\":-12.1603,\"y\":1.631,\"z\":7.0481},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":0.0168}},\"cc135d\":{\"lock\":false,\"pos\":{\"x\":-33.7965,\"y\":1.6331,\"z\":15.3121},\"rot\":{\"x\":359.9201,\"y\":270.0001,\"z\":0.0169}},\"d1bf92\":{\"lock\":false,\"pos\":{\"x\":-3.9276,\"y\":1.7444,\"z\":5.7577},\"rot\":{\"x\":359.9197,\"y\":269.9985,\"z\":180.0168}},\"d28cd1\":{\"lock\":false,\"pos\":{\"x\":-30.2242,\"y\":1.6372,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9998,\"z\":0.0168}},\"d32960\":{\"lock\":false,\"pos\":{\"x\":-2.6886,\"y\":1.6143,\"z\":-5.0485},\"rot\":{\"x\":0.0168,\"y\":180,\"z\":0.0803}},\"d51f74\":{\"lock\":false,\"pos\":{\"x\":-12.3273,\"y\":1.642,\"z\":10.8057},\"rot\":{\"x\":0.0169,\"y\":179.9845,\"z\":0.0799}},\"d5f792\":{\"lock\":false,\"pos\":{\"x\":-33.2551,\"y\":1.6289,\"z\":3.6656},\"rot\":{\"x\":359.9316,\"y\":315.0002,\"z\":359.9554}},\"d9882d\":{\"lock\":false,\"pos\":{\"x\":-27.011,\"y\":1.6157,\"z\":-11.771},\"rot\":{\"x\":359.9554,\"y\":225.0001,\"z\":0.0684}},\"e1e1c3\":{\"lock\":false,\"pos\":{\"x\":-2.7247,\"y\":1.599,\"z\":0.3733},\"rot\":{\"x\":0.0168,\"y\":180,\"z\":0.0803}},\"e8fcf0\":{\"lock\":false,\"pos\":{\"x\":-30.2243,\"y\":1.6327,\"z\":-15.28},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":0.0168}},\"ec4a81\":{\"lock\":false,\"pos\":{\"x\":2.8296,\"y\":1.4739,\"z\":-24.3652},\"rot\":{\"x\":359.9316,\"y\":315.0031,\"z\":359.9554}}}}",
"XmlUI": ""
},
{
"GUID": "29d22a",
"Name": "Custom_Model",
"Transform": {
"posX": -9.308681,
"posY": 1.62485421,
"posZ": 64.66435,
"rotX": 0.0154023487,
"rotY": 270.0,
"rotZ": 0.0219061375,
"scaleX": 2.21,
"scaleY": 0.2,
"scaleZ": 2.46
},
"Nickname": "The Festival",
"Description": "",
"GMNotes": "fancreations/scenario_the_festival.json",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0,
"a": 0.274509817
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomMesh": {
"MeshURL": "https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/798737729142936385/DCE942F9A1172E9C55A36E4593F5CDC71D9BC3AD/",
"NormalURL": "",
"ColliderURL": "",
"Convex": true,
"MaterialIndex": 3,
"TypeIndex": 0,
"CustomShader": {
"SpecularColor": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"SpecularIntensity": 0.0,
"SpecularSharpness": 2.0,
"FresnelStrength": 0.0
},
"CastShadows": true
},
"LuaScript": "\r\nfunction onload(saved_data)\r\n createDownloadButton()\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make Download button\r\nfunction createDownloadButton()\r\n self.createButton({\r\n label=\"Download\", click_function=\"buttonClick_download\", function_owner=self,\r\n position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800,\r\n font_size=150, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by download button,\r\nfunction buttonClick_download()\r\n local params = { url = self.getGMNotes(), replace = self.guid }\r\n Global.call('placeholder_download', params)\r\nend\r\n",
"LuaScriptState": "{\"ml\":{\"1e3988\":{\"lock\":false,\"pos\":{\"x\":-30.2243,\"y\":1.6959,\"z\":-7.7},\"rot\":{\"x\":359.9201,\"y\":270.0014,\"z\":180.0169}},\"259b7b\":{\"lock\":false,\"pos\":{\"x\":-20.746,\"y\":1.685,\"z\":-0.0446},\"rot\":{\"x\":359.9201,\"y\":270.0016,\"z\":180.0169}},\"27bf6a\":{\"lock\":false,\"pos\":{\"x\":-10.5675,\"y\":1.6537,\"z\":13.5759},\"rot\":{\"x\":359.9201,\"y\":270.0211,\"z\":0.0168}},\"28272f\":{\"lock\":false,\"pos\":{\"x\":-27.0195,\"y\":1.6235,\"z\":14.5832},\"rot\":{\"x\":359.9201,\"y\":270.0063,\"z\":0.0169}},\"299ea1\":{\"lock\":false,\"pos\":{\"x\":-30.223,\"y\":1.6982,\"z\":-0.0301},\"rot\":{\"x\":359.9201,\"y\":270.024,\"z\":180.0168}},\"2c792a\":{\"lock\":false,\"pos\":{\"x\":-34.0171,\"y\":1.6278,\"z\":-3.8093},\"rot\":{\"x\":0.0684,\"y\":134.9883,\"z\":0.0445}},\"3d2a1a\":{\"lock\":false,\"pos\":{\"x\":-3.9275,\"y\":1.7504,\"z\":5.7571},\"rot\":{\"x\":359.9197,\"y\":270.0001,\"z\":180.0168}},\"3eef2e\":{\"lock\":false,\"pos\":{\"x\":-9.6732,\"y\":1.6648,\"z\":0.0646},\"rot\":{\"x\":359.9201,\"y\":269.9858,\"z\":0.0169}},\"447fd2\":{\"lock\":false,\"pos\":{\"x\":-34.1668,\"y\":1.6303,\"z\":3.8209},\"rot\":{\"x\":0.0253,\"y\":29.9808,\"z\":359.9224}},\"4591d4\":{\"lock\":false,\"pos\":{\"x\":-20.7985,\"y\":1.615,\"z\":15.1153},\"rot\":{\"x\":359.9201,\"y\":270.0109,\"z\":0.0169}},\"4b81f6\":{\"lock\":false,\"pos\":{\"x\":-3.8815,\"y\":1.5826,\"z\":-14.612},\"rot\":{\"x\":359.9197,\"y\":270.0021,\"z\":0.0168}},\"50ffd3\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6902,\"z\":3.8601},\"rot\":{\"x\":359.9201,\"y\":270.0026,\"z\":180.0169}},\"68ba2e\":{\"lock\":false,\"pos\":{\"x\":-26.8859,\"y\":1.6172,\"z\":-6.0034},\"rot\":{\"x\":359.9554,\"y\":224.9895,\"z\":0.0684}},\"6bc393\":{\"lock\":false,\"pos\":{\"x\":-30.2243,\"y\":1.7027,\"z\":15.19},\"rot\":{\"x\":359.9201,\"y\":270.0014,\"z\":180.0169}},\"7234af\":{\"lock\":false,\"pos\":{\"x\":-33.4411,\"y\":1.6281,\"z\":-0.1151},\"rot\":{\"x\":359.9201,\"y\":270.0092,\"z\":0.0169}},\"7b9e37\":{\"lock\":false,\"pos\":{\"x\":-30.2243,\"y\":1.6225,\"z\":-3.83},\"rot\":{\"x\":0.0169,\"y\":179.9999,\"z\":0.0799}},\"7bdc6b\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6879,\"z\":-3.83},\"rot\":{\"x\":359.9201,\"y\":270.0012,\"z\":180.0169}},\"7d6343\":{\"lock\":false,\"pos\":{\"x\":-50.9244,\"y\":1.7266,\"z\":8.1784},\"rot\":{\"x\":359.9201,\"y\":269.9982,\"z\":0.0169}},\"8ce4d8\":{\"lock\":false,\"pos\":{\"x\":-2.6885,\"y\":1.6535,\"z\":-5.0485},\"rot\":{\"x\":0.0168,\"y\":179.9982,\"z\":0.0803}},\"9e71b4\":{\"lock\":false,\"pos\":{\"x\":-3.956,\"y\":1.6556,\"z\":-10.4402},\"rot\":{\"x\":359.9197,\"y\":269.9982,\"z\":0.0168}},\"a19bdb\":{\"lock\":false,\"pos\":{\"x\":-30.2243,\"y\":1.627,\"z\":11.46},\"rot\":{\"x\":0.0169,\"y\":180.0077,\"z\":0.0799}},\"a45247\":{\"lock\":false,\"pos\":{\"x\":1.697,\"y\":1.5583,\"z\":14.2784},\"rot\":{\"x\":359.9551,\"y\":224.998,\"z\":0.0687}},\"b5096d\":{\"lock\":false,\"pos\":{\"x\":-13.5542,\"y\":1.6749,\"z\":-0.1164},\"rot\":{\"x\":359.9201,\"y\":270.0067,\"z\":180.0168}},\"be3ac9\":{\"lock\":false,\"pos\":{\"x\":-36.7732,\"y\":1.7073,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9733,\"z\":180.0169}},\"c2da92\":{\"lock\":false,\"pos\":{\"x\":-20.9563,\"y\":1.61,\"z\":-2.6211},\"rot\":{\"x\":0.0253,\"y\":29.9999,\"z\":359.9224}},\"c41b7b\":{\"lock\":false,\"pos\":{\"x\":-30.2243,\"y\":1.6248,\"z\":3.86},\"rot\":{\"x\":359.9831,\"y\":359.9757,\"z\":359.9201}},\"ce35ae\":{\"lock\":false,\"pos\":{\"x\":-2.7247,\"y\":1.6551,\"z\":0.3733},\"rot\":{\"x\":0.0168,\"y\":180.0006,\"z\":0.0803}},\"d0c475\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6844,\"z\":15.19},\"rot\":{\"x\":359.9201,\"y\":270.0072,\"z\":180.0168}},\"d7fc4c\":{\"lock\":false,\"pos\":{\"x\":-30.2198,\"y\":1.7004,\"z\":7.5731},\"rot\":{\"x\":359.9201,\"y\":270.0274,\"z\":180.0168}},\"da1f25\":{\"lock\":false,\"pos\":{\"x\":-17.1199,\"y\":1.6054,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":270.0272,\"z\":0.0169}},\"daa95d\":{\"lock\":false,\"pos\":{\"x\":-27.1008,\"y\":1.6199,\"z\":2.1469},\"rot\":{\"x\":359.9554,\"y\":224.9999,\"z\":0.0684}},\"db49f3\":{\"lock\":false,\"pos\":{\"x\":-21.1809,\"y\":1.6117,\"z\":2.132},\"rot\":{\"x\":0.0684,\"y\":134.9832,\"z\":0.0445}},\"f0d16a\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6935,\"z\":15.19},\"rot\":{\"x\":359.9201,\"y\":270.011,\"z\":180.0168}},\"f108e3\":{\"lock\":false,\"pos\":{\"x\":-27.3214,\"y\":1.6189,\"z\":-2.4573},\"rot\":{\"x\":359.9316,\"y\":315.0002,\"z\":359.9554}},\"f591c7\":{\"lock\":false,\"pos\":{\"x\":-26.9568,\"y\":1.6207,\"z\":5.6374},\"rot\":{\"x\":0.0684,\"y\":134.9882,\"z\":0.0445}}}}",
"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
}
}
]
},
{
"GUID": "ffc7ef",
"Name": "Custom_Model",
"Transform": {
"posX": -10.8435268,
"posY": 1.624335,
"posZ": 65.40884,
"rotX": 0.0450645275,
"rotY": 270.000153,
"rotZ": 0.022485394,
"scaleX": 2.21,
"scaleY": 0.46,
"scaleZ": 2.42
},
"Nickname": "Don't Starve",
"Description": "",
"GMNotes": "fancreations/scenario_dont_starve.json",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0,
"a": 0.274509817
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomMesh": {
"MeshURL": "https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/1646593716898209387/B827263B809A6C8E1042BDF1C8D33E58458C2EF4/",
"NormalURL": "",
"ColliderURL": "",
"Convex": true,
"MaterialIndex": 3,
"TypeIndex": 0,
"CustomShader": {
"SpecularColor": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"SpecularIntensity": 0.0,
"SpecularSharpness": 2.0,
"FresnelStrength": 0.0
},
"CastShadows": true
},
"LuaScript": "\r\nfunction onload(saved_data)\r\n createDownloadButton()\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make Download button\r\nfunction createDownloadButton()\r\n self.createButton({\r\n label=\"Download\", click_function=\"buttonClick_download\", function_owner=self,\r\n position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800,\r\n font_size=150, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by download button,\r\nfunction buttonClick_download()\r\n local params = { url = self.getGMNotes(), replace = self.guid }\r\n Global.call('placeholder_download', params)\r\nend\r\n",
"LuaScriptState": "{\"ml\":{\"089cf0\":{\"lock\":false,\"pos\":{\"x\":0.8855,\"y\":1.397,\"z\":6.0097},\"rot\":{\"x\":359.9832,\"y\":-0.001,\"z\":359.9197}},\"1ed3c4\":{\"lock\":false,\"pos\":{\"x\":-3.956,\"y\":1.5975,\"z\":-10.4413},\"rot\":{\"x\":359.9197,\"y\":269.9984,\"z\":0.0168}},\"2068d9\":{\"lock\":false,\"pos\":{\"x\":-8.8884,\"y\":1.668,\"z\":-10.3141},\"rot\":{\"x\":359.9231,\"y\":269.9953,\"z\":0.0163}},\"2e69d0\":{\"lock\":false,\"pos\":{\"x\":-34.2734,\"y\":1.3001,\"z\":-45.4144},\"rot\":{\"x\":0.0208,\"y\":270.0182,\"z\":0.0168}},\"4b8bb9\":{\"lock\":false,\"pos\":{\"x\":-0.4572,\"y\":1.6273,\"z\":-16.2047},\"rot\":{\"x\":359.9197,\"y\":270.0001,\"z\":0.0168}},\"4fc2a8\":{\"lock\":false,\"pos\":{\"x\":-2.7249,\"y\":1.6208,\"z\":0.3733},\"rot\":{\"x\":0.0168,\"y\":180.0004,\"z\":0.0803}},\"5e7ca6\":{\"lock\":false,\"pos\":{\"x\":-3.9854,\"y\":1.5827,\"z\":-14.8081},\"rot\":{\"x\":359.9197,\"y\":269.9955,\"z\":0.0168}},\"5fd7e9\":{\"lock\":false,\"pos\":{\"x\":-11.8026,\"y\":1.6402,\"z\":7.2904},\"rot\":{\"x\":359.9201,\"y\":270.0001,\"z\":180.0168}},\"6da68c\":{\"lock\":false,\"pos\":{\"x\":-11.7862,\"y\":1.6459,\"z\":10.3689},\"rot\":{\"x\":359.9201,\"y\":270.0031,\"z\":180.0168}},\"70b4a2\":{\"lock\":false,\"pos\":{\"x\":-3.9278,\"y\":1.7492,\"z\":5.7572},\"rot\":{\"x\":359.9197,\"y\":269.9974,\"z\":180.0168}},\"7a167a\":{\"lock\":false,\"pos\":{\"x\":1.7021,\"y\":1.5583,\"z\":14.2869},\"rot\":{\"x\":359.9555,\"y\":224.7284,\"z\":0.0689}},\"a61381\":{\"lock\":false,\"pos\":{\"x\":-8.3054,\"y\":1.6036,\"z\":-10.3476},\"rot\":{\"x\":359.922,\"y\":270.0249,\"z\":0.0164}},\"d6bc5d\":{\"lock\":false,\"pos\":{\"x\":-2.6886,\"y\":1.6191,\"z\":-5.0485},\"rot\":{\"x\":0.0168,\"y\":180,\"z\":0.0803}},\"e6f44d\":{\"lock\":false,\"pos\":{\"x\":-0.7171,\"y\":1.4752,\"z\":-24.8646},\"rot\":{\"x\":359.9201,\"y\":270.0097,\"z\":0.0169}},\"eda22b\":{\"lock\":false,\"pos\":{\"x\":2.9208,\"y\":1.6001,\"z\":-41.5378},\"rot\":{\"x\":0.0007,\"y\":270.0139,\"z\":0.0039}}}}",
"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
}
}
]
},
{
"GUID": "ac164e",
"Name": "Custom_Model",
"Transform": {
"posX": -10.2259226,
"posY": 1.62541533,
"posZ": 66.4925,
"rotX": 0.02709897,
"rotY": 270.000061,
"rotZ": 0.0101506207,
"scaleX": 2.21,
"scaleY": 0.46,
"scaleZ": 2.42
},
"Nickname": "Delta Green Convergence",
"Description": "",
"GMNotes": "fancreations/scenario_delta_green.json",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0,
"a": 0.274509817
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomMesh": {
"MeshURL": "https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/798737729142900469/BDA1068C5A88459AE805540FE05B8092C4F8F392/",
"NormalURL": "",
"ColliderURL": "",
"Convex": true,
"MaterialIndex": 3,
"TypeIndex": 0,
"CustomShader": {
"SpecularColor": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"SpecularIntensity": 0.0,
"SpecularSharpness": 2.0,
"FresnelStrength": 0.0
},
"CastShadows": true
},
"LuaScript": "\r\nfunction onload(saved_data)\r\n createDownloadButton()\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make Download button\r\nfunction createDownloadButton()\r\n self.createButton({\r\n label=\"Download\", click_function=\"buttonClick_download\", function_owner=self,\r\n position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800,\r\n font_size=150, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by download button,\r\nfunction buttonClick_download()\r\n local params = { url = self.getGMNotes(), replace = self.guid }\r\n Global.call('placeholder_download', params)\r\nend\r\n",
"LuaScriptState": "{\"ml\":{\"0c01a1\":{\"lock\":false,\"pos\":{\"x\":-11.6774,\"y\":1.4086,\"z\":-14.0775},\"rot\":{\"x\":359.9832,\"y\":359.994,\"z\":359.92}},\"17807e\":{\"lock\":false,\"pos\":{\"x\":-23.6766,\"y\":1.6314,\"z\":11.46},\"rot\":{\"x\":359.9201,\"y\":269.9978,\"z\":180.0168}},\"1a3caf\":{\"lock\":false,\"pos\":{\"x\":-3.9559,\"y\":1.5975,\"z\":-10.4412},\"rot\":{\"x\":359.9197,\"y\":269.9996,\"z\":0.0168}},\"261874\":{\"lock\":false,\"pos\":{\"x\":-17.1201,\"y\":1.6144,\"z\":-15.28},\"rot\":{\"x\":359.9201,\"y\":269.9753,\"z\":0.0169}},\"4a7540\":{\"lock\":false,\"pos\":{\"x\":-3.9273,\"y\":1.7925,\"z\":5.7571},\"rot\":{\"x\":359.9197,\"y\":270.0006,\"z\":180.0168}},\"520889\":{\"lock\":false,\"pos\":{\"x\":-3.8323,\"y\":1.5826,\"z\":-14.4151},\"rot\":{\"x\":359.9197,\"y\":270.0049,\"z\":0.0168}},\"64b00f\":{\"lock\":false,\"pos\":{\"x\":-17.1199,\"y\":1.6223,\"z\":11.4595},\"rot\":{\"x\":359.9201,\"y\":269.9901,\"z\":0.0169}},\"7234af\":{\"lock\":false,\"pos\":{\"x\":-20.3296,\"y\":1.6132,\"z\":11.468},\"rot\":{\"x\":359.9201,\"y\":269.9948,\"z\":0.0169}},\"789378\":{\"lock\":false,\"pos\":{\"x\":-1.9242,\"y\":1.4772,\"z\":-23.8097},\"rot\":{\"x\":359.9201,\"y\":270,\"z\":0.0169}},\"8a689d\":{\"lock\":false,\"pos\":{\"x\":-17.1197,\"y\":1.6503,\"z\":-0.0295},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":0.0168}},\"9dab73\":{\"lock\":false,\"pos\":{\"x\":-2.7245,\"y\":1.6159,\"z\":0.3733},\"rot\":{\"x\":359.9197,\"y\":269.9865,\"z\":0.0169}},\"a45247\":{\"lock\":false,\"pos\":{\"x\":1.696,\"y\":1.5583,\"z\":14.2787},\"rot\":{\"x\":359.9551,\"y\":224.998,\"z\":0.0687}},\"ab39b9\":{\"lock\":false,\"pos\":{\"x\":-17.1201,\"y\":1.6234,\"z\":15.1897},\"rot\":{\"x\":359.9201,\"y\":269.988,\"z\":0.0169}},\"d2cb13\":{\"lock\":false,\"pos\":{\"x\":-12.0254,\"y\":1.614,\"z\":7.5293},\"rot\":{\"x\":359.9201,\"y\":269.995,\"z\":0.0168}},\"da2cbd\":{\"lock\":false,\"pos\":{\"x\":-17.1196,\"y\":1.6155,\"z\":-11.5093},\"rot\":{\"x\":359.9201,\"y\":270.0104,\"z\":0.0168}},\"ddc104\":{\"lock\":false,\"pos\":{\"x\":-2.6884,\"y\":1.6336,\"z\":-5.0485},\"rot\":{\"x\":359.9197,\"y\":269.9859,\"z\":0.0169}},\"fe4e96\":{\"lock\":false,\"pos\":{\"x\":-12.0018,\"y\":1.7668,\"z\":11.1085},\"rot\":{\"x\":359.9201,\"y\":270.0005,\"z\":180.0168}}}}",
"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
}
}
]
},
{
"GUID": "c6a612",
"Name": "Custom_Model",
"Transform": {
"posX": -9.267757,
"posY": 1.62578356,
"posZ": 66.13134,
"rotX": 0.0156269111,
"rotY": 270.000061,
"rotZ": 0.0133126955,
"scaleX": 2.21,
"scaleY": 0.46,
"scaleZ": 2.42
},
"Nickname": "Darkness Falls",
"Description": "",
"GMNotes": "fancreations/scenario_darkness_falls.json",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0,
"a": 0.274509817
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomMesh": {
"MeshURL": "https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/1487830597915523099/252BD2089F9DEF3F337BB8AE681939DE98C1EFA7/",
"NormalURL": "",
"ColliderURL": "",
"Convex": true,
"MaterialIndex": 3,
"TypeIndex": 0,
"CustomShader": {
"SpecularColor": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"SpecularIntensity": 0.0,
"SpecularSharpness": 2.0,
"FresnelStrength": 0.0
},
"CastShadows": true
},
"LuaScript": "\r\nfunction onload(saved_data)\r\n createDownloadButton()\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make Download button\r\nfunction createDownloadButton()\r\n self.createButton({\r\n label=\"Download\", click_function=\"buttonClick_download\", function_owner=self,\r\n position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800,\r\n font_size=150, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by download button,\r\nfunction buttonClick_download()\r\n local params = { url = self.getGMNotes(), replace = self.guid }\r\n Global.call('placeholder_download', params)\r\nend\r\n",
"LuaScriptState": "{\"ml\":{\"042d44\":{\"lock\":false,\"pos\":{\"x\":-2.6885,\"y\":1.6239,\"z\":-5.0485},\"rot\":{\"x\":359.9197,\"y\":270.0006,\"z\":0.0168}},\"3fb8ed\":{\"lock\":false,\"pos\":{\"x\":-2.68849992752075,\"y\":1.62393057346344,\"z\":-5.04850149154663},\"rot\":{\"x\":359.919738769531,\"y\":270.000061035156,\"z\":0.0168369449675083}},\"4add31\":{\"lock\":false,\"pos\":{\"x\":-23.6765022277832,\"y\":1.65464842319489,\"z\":-0.0299997963011265},\"rot\":{\"x\":359.920104980469,\"y\":270.000030517578,\"z\":0.0168411564081907}},\"5660ef\":{\"lock\":false,\"pos\":{\"x\":-30.2242183685303,\"y\":1.64166986942291,\"z\":15.1899843215942},\"rot\":{\"x\":359.920104980469,\"y\":270.001068115234,\"z\":0.0168381482362747}},\"6c3b6c\":{\"lock\":false,\"pos\":{\"x\":-17.120002746582,\"y\":1.6189227104187,\"z\":-0.0298999939113855},\"rot\":{\"x\":359.920104980469,\"y\":269.9970703125,\"z\":0.0167545769363642}},\"7234af\":{\"lock\":false,\"pos\":{\"x\":-20.4148006439209,\"y\":1.60989475250244,\"z\":-0.0934002250432968},\"rot\":{\"x\":359.920104980469,\"y\":270.009460449219,\"z\":0.0168546847999096}},\"767864\":{\"lock\":false,\"pos\":{\"x\":-6.91008472442627,\"y\":1.61784970760345,\"z\":-13.1002960205078},\"rot\":{\"x\":359.919738769531,\"y\":269.999938964844,\"z\":0.0168399773538113}},\"7d8fed\":{\"lock\":false,\"pos\":{\"x\":-30.2243003845215,\"y\":1.63271510601044,\"z\":-15.2799978256226},\"rot\":{\"x\":359.920104980469,\"y\":269.999938964844,\"z\":0.0168397836387157}},\"a45247\":{\"lock\":false,\"pos\":{\"x\":1.69610047340393,\"y\":1.55831742286682,\"z\":14.2787017822266},\"rot\":{\"x\":359.955139160156,\"y\":225.006576538086,\"z\":0.0686668530106544}},\"b5928a\":{\"lock\":false,\"pos\":{\"x\":-3.0259,\"y\":1.5813,\"z\":-14.8775},\"rot\":{\"x\":359.9197,\"y\":270.0014,\"z\":0.0168}},\"b756c0\":{\"lock\":false,\"pos\":{\"x\":-3.92760014533997,\"y\":1.72512221336365,\"z\":5.75710153579712},\"rot\":{\"x\":359.919738769531,\"y\":270.00439453125,\"z\":180.016815185547}},\"c7c0a9\":{\"lock\":false,\"pos\":{\"x\":-2.7247,\"y\":1.6208,\"z\":0.3733},\"rot\":{\"x\":359.9197,\"y\":270.0151,\"z\":0.0168}},\"ec7842\":{\"lock\":false,\"pos\":{\"x\":-16.0300998687744,\"y\":1.63047182559967,\"z\":-2.20079970359802},\"rot\":{\"x\":359.920104980469,\"y\":269.998748779297,\"z\":0.734870731830597}},\"fb280a\":{\"lock\":false,\"pos\":{\"x\":-3.95589995384216,\"y\":1.59753930568695,\"z\":-10.441201210022},\"rot\":{\"x\":359.919738769531,\"y\":270.000091552734,\"z\":0.0168370883911848}},\"fdd75d\":{\"lock\":false,\"pos\":{\"x\":-2.72470021247864,\"y\":1.62076044082642,\"z\":0.37329962849617},\"rot\":{\"x\":359.919738769531,\"y\":269.999389648438,\"z\":0.0168378036469221}}}}",
"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
}
}
]
},
{
"GUID": "0d7a8d",
"Name": "Custom_Model",
"Transform": {
"posX": -6.696724,
"posY": 1.62320268,
"posZ": 66.3477249,
"rotX": 359.9356,
"rotY": 269.999939,
"rotZ": 0.03551214,
"scaleX": 2.21,
"scaleY": 0.2,
"scaleZ": 2.46
},
"Nickname": "The Curse of Amulotep",
"Description": "",
"GMNotes": "fancreations/scenario_the_curse_of_amulotep.json",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0,
"a": 0.274509817
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomMesh": {
"MeshURL": "https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/798737729142921541/F138D6DF73FB79AC6D1C420869299A481AFA7B90/",
"NormalURL": "",
"ColliderURL": "",
"Convex": true,
"MaterialIndex": 3,
"TypeIndex": 0,
"CustomShader": {
"SpecularColor": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"SpecularIntensity": 0.0,
"SpecularSharpness": 2.0,
"FresnelStrength": 0.0
},
"CastShadows": true
},
"LuaScript": "\r\nfunction onload(saved_data)\r\n createDownloadButton()\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make Download button\r\nfunction createDownloadButton()\r\n self.createButton({\r\n label=\"Download\", click_function=\"buttonClick_download\", function_owner=self,\r\n position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800,\r\n font_size=150, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by download button,\r\nfunction buttonClick_download()\r\n local params = { url = self.getGMNotes(), replace = self.guid }\r\n Global.call('placeholder_download', params)\r\nend\r\n",
"LuaScriptState": "{\"ml\":{\"0ce6bb\":{\"lock\":false,\"pos\":{\"x\":-12.6932,\"y\":1.6812,\"z\":6.9294},\"rot\":{\"x\":359.9201,\"y\":270.0001,\"z\":180.0169}},\"5127f6\":{\"lock\":false,\"pos\":{\"x\":1.6965,\"y\":1.6662,\"z\":14.2788},\"rot\":{\"x\":359.9551,\"y\":224.9998,\"z\":180.0686}},\"5e4e43\":{\"lock\":false,\"pos\":{\"x\":-13.2968,\"y\":1.6723,\"z\":-7.7574},\"rot\":{\"x\":359.9201,\"y\":270.028,\"z\":180.0168}},\"8075b9\":{\"lock\":false,\"pos\":{\"x\":-2.7246,\"y\":1.6566,\"z\":0.3733},\"rot\":{\"x\":359.9197,\"y\":269.9854,\"z\":0.0169}},\"a08daa\":{\"lock\":false,\"pos\":{\"x\":-2.6884,\"y\":1.6535,\"z\":-5.0485},\"rot\":{\"x\":359.9197,\"y\":269.9855,\"z\":0.0169}},\"b3cbc1\":{\"lock\":false,\"pos\":{\"x\":-3.8937,\"y\":1.5826,\"z\":-14.6014},\"rot\":{\"x\":359.9197,\"y\":270.0009,\"z\":0.0168}},\"c6a9ae\":{\"lock\":false,\"pos\":{\"x\":-3.9274,\"y\":1.7611,\"z\":5.7572},\"rot\":{\"x\":359.9197,\"y\":269.9857,\"z\":180.0168}},\"dc50b3\":{\"lock\":false,\"pos\":{\"x\":-3.9555,\"y\":1.6556,\"z\":-10.4413},\"rot\":{\"x\":359.9197,\"y\":269.9999,\"z\":0.0168}},\"ecbf8f\":{\"lock\":false,\"pos\":{\"x\":-17.1201,\"y\":1.6754,\"z\":-15.2799},\"rot\":{\"x\":359.9201,\"y\":270.0269,\"z\":180.0168}},\"f9fc71\":{\"lock\":false,\"pos\":{\"x\":-50.9244,\"y\":1.7294,\"z\":8.1784},\"rot\":{\"x\":359.9201,\"y\":270.0001,\"z\":180.0169}}}}",
"XmlUI": "",
"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
}
}
]
},
{
"GUID": "0ec730",
"Name": "Custom_Model",
"Transform": {
"posX": -9.231621,
"posY": 1.65775061,
"posZ": 64.29783,
"rotX": 0.0208087917,
"rotY": 269.999939,
"rotZ": 0.0167711321,
"scaleX": 2.21,
"scaleY": 0.46,
"scaleZ": 2.42
},
"Nickname": "Consternation on the Constellation",
"Description": "",
"GMNotes": "fancreations/scenario_consternation_on_the_constellation.json",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0,
"a": 0.274509817
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomMesh": {
"MeshURL": "https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/762723517666349452/B8551E1479CED3BADEF4AF3B0A727EB7768C0289/",
"NormalURL": "",
"ColliderURL": "",
"Convex": true,
"MaterialIndex": 3,
"TypeIndex": 0,
"CustomShader": {
"SpecularColor": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"SpecularIntensity": 0.0,
"SpecularSharpness": 2.0,
"FresnelStrength": 0.0
},
"CastShadows": true
},
"LuaScript": "\r\nfunction onload(saved_data)\r\n createDownloadButton()\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make Download button\r\nfunction createDownloadButton()\r\n self.createButton({\r\n label=\"Download\", click_function=\"buttonClick_download\", function_owner=self,\r\n position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800,\r\n font_size=150, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by download button,\r\nfunction buttonClick_download()\r\n local params = { url = self.getGMNotes(), replace = self.guid }\r\n Global.call('placeholder_download', params)\r\nend\r\n",
"LuaScriptState": "{\"ml\":{\"011e57\":{\"lock\":false,\"pos\":{\"x\":7.4136,\"y\":1.5493,\"z\":-1.6503},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":180.0169}},\"14fd91\":{\"lock\":false,\"pos\":{\"x\":-2.7248,\"y\":1.6551,\"z\":0.3733},\"rot\":{\"x\":0.0168,\"y\":180.0145,\"z\":0.0803}},\"2f4093\":{\"lock\":false,\"pos\":{\"x\":-30.2242,\"y\":1.6976,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":269.9995,\"z\":0.0169}},\"370ae5\":{\"lock\":false,\"pos\":{\"x\":7.3549,\"y\":1.5428,\"z\":0.9084},\"rot\":{\"x\":359.9201,\"y\":270,\"z\":0.0169}},\"4339b6\":{\"lock\":false,\"pos\":{\"x\":-3.956,\"y\":1.6556,\"z\":-10.4412},\"rot\":{\"x\":359.9197,\"y\":270.0055,\"z\":0.0168}},\"4736d9\":{\"lock\":false,\"pos\":{\"x\":-10.0405,\"y\":1.5945,\"z\":-3.243},\"rot\":{\"x\":359.9201,\"y\":270.0059,\"z\":0.0169}},\"68e1d9\":{\"lock\":false,\"pos\":{\"x\":-10.0449,\"y\":1.5965,\"z\":3.4829},\"rot\":{\"x\":359.9201,\"y\":269.9974,\"z\":0.0169}},\"7234af\":{\"lock\":false,\"pos\":{\"x\":-33.3859,\"y\":1.6313,\"z\":11.159},\"rot\":{\"x\":359.9316,\"y\":315.0293,\"z\":359.9554}},\"7b0f48\":{\"lock\":false,\"pos\":{\"x\":-10.0533,\"y\":1.5959,\"z\":1.2614},\"rot\":{\"x\":359.9201,\"y\":269.9979,\"z\":0.0169}},\"8f2b3d\":{\"lock\":false,\"pos\":{\"x\":-33.341,\"y\":1.6301,\"z\":7.293},\"rot\":{\"x\":359.9201,\"y\":270.0001,\"z\":0.0169}},\"a1514c\":{\"lock\":false,\"pos\":{\"x\":-3.9277,\"y\":1.7184,\"z\":5.7572},\"rot\":{\"x\":359.9197,\"y\":269.9999,\"z\":180.0168}},\"bbb70a\":{\"lock\":false,\"pos\":{\"x\":-3.8848,\"y\":1.5826,\"z\":-14.7351},\"rot\":{\"x\":359.9197,\"y\":270.0318,\"z\":0.0168}},\"be5b52\":{\"lock\":false,\"pos\":{\"x\":1.6968,\"y\":1.5583,\"z\":14.2787},\"rot\":{\"x\":359.9551,\"y\":224.9981,\"z\":0.0687}},\"be5d2b\":{\"lock\":false,\"pos\":{\"x\":-10.0804,\"y\":1.5953,\"z\":-1.0163},\"rot\":{\"x\":359.9201,\"y\":269.9913,\"z\":0.0169}},\"bf0eaa\":{\"lock\":false,\"pos\":{\"x\":-30.2261,\"y\":1.6983,\"z\":10.1027},\"rot\":{\"x\":359.9201,\"y\":269.9998,\"z\":0.0169}},\"c34f49\":{\"lock\":false,\"pos\":{\"x\":-2.6886,\"y\":1.6535,\"z\":-5.0485},\"rot\":{\"x\":0.0168,\"y\":180,\"z\":0.0803}},\"c5a4bf\":{\"lock\":false,\"pos\":{\"x\":-36.7731,\"y\":1.709,\"z\":15.19},\"rot\":{\"x\":359.9201,\"y\":270,\"z\":0.0169}},\"d14543\":{\"lock\":false,\"pos\":{\"x\":-12.2221,\"y\":1.4168,\"z\":11.1913},\"rot\":{\"x\":0.08,\"y\":89.9905,\"z\":359.9831}}}}",
"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
}
}
]
},
{
"GUID": "5b81ff",
"Name": "Custom_Model",
"Transform": {
"posX": -9.931854,
"posY": 1.62417352,
"posZ": 64.7982559,
"rotX": 0.026679676,
"rotY": 270.0001,
"rotZ": 0.01991166,
"scaleX": 2.21,
"scaleY": 0.46,
"scaleZ": 2.42
},
"Nickname": "The Colour out of Space",
"Description": "",
"GMNotes": "fancreations/scenario_color_out_of_space.json",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0,
"a": 0.274509817
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomMesh": {
"MeshURL": "https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/798737729142919895/4026718A421BE11AC64320BE9BC2515B364D066E/",
"NormalURL": "",
"ColliderURL": "",
"Convex": true,
"MaterialIndex": 3,
"TypeIndex": 0,
"CustomShader": {
"SpecularColor": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"SpecularIntensity": 0.0,
"SpecularSharpness": 2.0,
"FresnelStrength": 0.0
},
"CastShadows": true
},
"LuaScript": "\r\nfunction onload(saved_data)\r\n createDownloadButton()\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make Download button\r\nfunction createDownloadButton()\r\n self.createButton({\r\n label=\"Download\", click_function=\"buttonClick_download\", function_owner=self,\r\n position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800,\r\n font_size=150, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by download button,\r\nfunction buttonClick_download()\r\n local params = { url = self.getGMNotes(), replace = self.guid }\r\n Global.call('placeholder_download', params)\r\nend\r\n",
"LuaScriptState": "{\"ml\":{\"058b91\":{\"lock\":false,\"pos\":{\"x\":-3.9559,\"y\":1.6556,\"z\":-10.4412},\"rot\":{\"x\":359.9197,\"y\":269.9998,\"z\":0.0168}},\"21c977\":{\"lock\":false,\"pos\":{\"x\":-21.0584,\"y\":1.6119,\"z\":3.505},\"rot\":{\"x\":359.9554,\"y\":225,\"z\":0.0684}},\"222582\":{\"lock\":false,\"pos\":{\"x\":-50.9244,\"y\":1.7266,\"z\":8.1784},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":0.0169}},\"23d608\":{\"lock\":false,\"pos\":{\"x\":-2.6884,\"y\":1.6535,\"z\":-5.0486},\"rot\":{\"x\":359.9197,\"y\":269.9854,\"z\":0.0169}},\"2ab9ac\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6776,\"z\":-7.7},\"rot\":{\"x\":359.9201,\"y\":269.9964,\"z\":180.0169}},\"2e887e\":{\"lock\":false,\"pos\":{\"x\":-3.9083,\"y\":1.5825,\"z\":-15.1234},\"rot\":{\"x\":359.9197,\"y\":269.9998,\"z\":0.0168}},\"407732\":{\"lock\":false,\"pos\":{\"x\":-9.7271,\"y\":1.6676,\"z\":-0.255},\"rot\":{\"x\":359.9201,\"y\":269.9876,\"z\":0.0169}},\"4c7aff\":{\"lock\":false,\"pos\":{\"x\":1.6966,\"y\":1.6584,\"z\":14.2788},\"rot\":{\"x\":359.9552,\"y\":224.998,\"z\":0.0687}},\"61b186\":{\"lock\":false,\"pos\":{\"x\":-11.155,\"y\":1.6791,\"z\":7.1548},\"rot\":{\"x\":359.9201,\"y\":269.9855,\"z\":180.0169}},\"6dca3e\":{\"lock\":false,\"pos\":{\"x\":-2.7246,\"y\":1.6551,\"z\":0.3736},\"rot\":{\"x\":359.9197,\"y\":269.9846,\"z\":0.0169}},\"6f54e2\":{\"lock\":false,\"pos\":{\"x\":-11.3147,\"y\":1.6797,\"z\":13.0979},\"rot\":{\"x\":359.9201,\"y\":269.9855,\"z\":180.0169}},\"7234af\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6042,\"z\":-3.83},\"rot\":{\"x\":359.9831,\"y\":359.9919,\"z\":359.92}},\"770eca\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6799,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9958,\"z\":180.0169}},\"80fb47\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.689,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9855,\"z\":180.0169}},\"a1b852\":{\"lock\":false,\"pos\":{\"x\":-11.2981,\"y\":1.7087,\"z\":10.3332},\"rot\":{\"x\":359.9201,\"y\":269.9856,\"z\":180.0169}},\"ab51fa\":{\"lock\":false,\"pos\":{\"x\":-20.3744,\"y\":1.6099,\"z\":0.0842},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":0.0169}},\"b83079\":{\"lock\":false,\"pos\":{\"x\":-3.9275,\"y\":1.7184,\"z\":5.7571},\"rot\":{\"x\":359.9197,\"y\":269.9856,\"z\":180.0168}},\"bfb121\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6821,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":269.9953,\"z\":180.0169}},\"c6995b\":{\"lock\":false,\"pos\":{\"x\":-21.6704,\"y\":1.6106,\"z\":-3.7228},\"rot\":{\"x\":359.9316,\"y\":315.0002,\"z\":359.9554}},\"d46b84\":{\"lock\":false,\"pos\":{\"x\":-11.4019,\"y\":1.6887,\"z\":15.8439},\"rot\":{\"x\":359.9274,\"y\":269.9868,\"z\":180.3533}},\"eb22de\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6065,\"z\":3.86},\"rot\":{\"x\":359.9831,\"y\":359.9921,\"z\":359.9201}}}}",
"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
}
}
]
},
{
"GUID": "9810eb",
"Name": "Custom_Model",
"Transform": {
"posX": -10.6023664,
"posY": 1.67893529,
"posZ": 64.24452,
"rotX": 0.0208085515,
"rotY": 270.0,
"rotZ": 0.01677115,
"scaleX": 2.21,
"scaleY": 0.2,
"scaleZ": 2.46
},
"Nickname": "The Collector",
"Description": "",
"GMNotes": "fancreations/scenario_the_collector.json",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0,
"a": 0.274509817
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomMesh": {
"MeshURL": "https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/798737729142920786/52ED9B6276539BF3E1F332C363B21B3D7F6960AA/",
"NormalURL": "",
"ColliderURL": "",
"Convex": true,
"MaterialIndex": 3,
"TypeIndex": 0,
"CustomShader": {
"SpecularColor": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"SpecularIntensity": 0.0,
"SpecularSharpness": 2.0,
"FresnelStrength": 0.0
},
"CastShadows": true
},
"LuaScript": "\r\nfunction onload(saved_data)\r\n createDownloadButton()\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make Download button\r\nfunction createDownloadButton()\r\n self.createButton({\r\n label=\"Download\", click_function=\"buttonClick_download\", function_owner=self,\r\n position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800,\r\n font_size=150, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by download button,\r\nfunction buttonClick_download()\r\n local params = { url = self.getGMNotes(), replace = self.guid }\r\n Global.call('placeholder_download', params)\r\nend\r\n",
"LuaScriptState": "{\"ml\":{\"00688d\":{\"lock\":false,\"pos\":{\"x\":-50.9244,\"y\":1.7266,\"z\":8.1784},\"rot\":{\"x\":359.9201,\"y\":270,\"z\":0.0169}},\"010d85\":{\"lock\":false,\"pos\":{\"x\":-3.9274,\"y\":1.7344,\"z\":5.7571},\"rot\":{\"x\":359.9197,\"y\":270.0001,\"z\":180.0168}},\"149deb\":{\"lock\":false,\"pos\":{\"x\":-17.1199,\"y\":1.6799,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":180.0169}},\"150603\":{\"lock\":false,\"pos\":{\"x\":-4.4609,\"y\":1.5834,\"z\":-14.7893},\"rot\":{\"x\":359.9197,\"y\":269.9951,\"z\":0.0168}},\"20314c\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6134,\"z\":-3.83},\"rot\":{\"x\":0.0169,\"y\":180,\"z\":0.0799}},\"27dc65\":{\"lock\":false,\"pos\":{\"x\":-20.5971,\"y\":1.6123,\"z\":7.2097},\"rot\":{\"x\":359.9201,\"y\":269.993,\"z\":0.0169}},\"368ca7\":{\"lock\":false,\"pos\":{\"x\":-2.6886,\"y\":1.6623,\"z\":-5.0485},\"rot\":{\"x\":359.9832,\"y\":-0.0001,\"z\":359.9197}},\"45a6ec\":{\"lock\":false,\"pos\":{\"x\":-17.1199,\"y\":1.6821,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":269.9998,\"z\":180.0169}},\"5e7e07\":{\"lock\":false,\"pos\":{\"x\":-23.6766,\"y\":1.6935,\"z\":15.19},\"rot\":{\"x\":359.9201,\"y\":270.0272,\"z\":180.0168}},\"643870\":{\"lock\":false,\"pos\":{\"x\":-20.1546,\"y\":1.6096,\"z\":0.0507},\"rot\":{\"x\":359.9201,\"y\":269.9931,\"z\":0.0169}},\"6f9258\":{\"lock\":false,\"pos\":{\"x\":-20.9414,\"y\":1.6117,\"z\":3.308},\"rot\":{\"x\":0.0776,\"y\":120,\"z\":0.0253}},\"7234af\":{\"lock\":false,\"pos\":{\"x\":-20.7421,\"y\":1.6081,\"z\":-7.8073},\"rot\":{\"x\":359.9201,\"y\":269.9929,\"z\":0.0169}},\"8ce0e1\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6868,\"z\":-7.7},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":180.0169}},\"8cf84a\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6065,\"z\":3.86},\"rot\":{\"x\":0.0169,\"y\":180.0001,\"z\":0.0799}},\"98b377\":{\"lock\":false,\"pos\":{\"x\":-2.7248,\"y\":1.6566,\"z\":0.3733},\"rot\":{\"x\":359.9832,\"y\":-0.0021,\"z\":359.9197}},\"abd037\":{\"lock\":false,\"pos\":{\"x\":-23.6766,\"y\":1.6913,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":270.0001,\"z\":180.0169}},\"c29eac\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6776,\"z\":-7.7},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":180.0169}},\"d1bab1\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.689,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":180.0169}},\"f8005d\":{\"lock\":false,\"pos\":{\"x\":-3.9558,\"y\":1.6556,\"z\":-10.4412},\"rot\":{\"x\":359.9197,\"y\":270,\"z\":0.0168}},\"fa8210\":{\"lock\":false,\"pos\":{\"x\":1.6965,\"y\":1.6545,\"z\":14.2788},\"rot\":{\"x\":359.9552,\"y\":224.9979,\"z\":0.0687}}}}",
"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
}
}
]
},
{
"GUID": "e57017",
"Name": "Custom_Model",
"Transform": {
"posX": -8.964345,
"posY": 1.62384832,
"posZ": 64.59164,
"rotX": 0.00531751,
"rotY": 270.000031,
"rotZ": 0.02576879,
"scaleX": 2.21,
"scaleY": 0.46,
"scaleZ": 2.42
},
"Nickname": "Carnevale of Spiders",
"Description": "A Farkham-con Original. Requires 3 XP",
"GMNotes": "fancreations/scenario_carnevale_of_spiders.json",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0,
"a": 0.274509817
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomMesh": {
"MeshURL": "https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/1474319121422110285/8BA9D8C5CFA6D4E35DFC2077002CB2256DCFB2D7/",
"NormalURL": "",
"ColliderURL": "",
"Convex": true,
"MaterialIndex": 3,
"TypeIndex": 0,
"CustomShader": {
"SpecularColor": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"SpecularIntensity": 0.0,
"SpecularSharpness": 2.0,
"FresnelStrength": 0.0
},
"CastShadows": true
},
"LuaScript": "\r\nfunction onload(saved_data)\r\n createDownloadButton()\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make Download button\r\nfunction createDownloadButton()\r\n self.createButton({\r\n label=\"Download\", click_function=\"buttonClick_download\", function_owner=self,\r\n position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800,\r\n font_size=150, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by download button,\r\nfunction buttonClick_download()\r\n local params = { url = self.getGMNotes(), replace = self.guid }\r\n Global.call('placeholder_download', params)\r\nend\r\n",
"LuaScriptState": "{\"ml\":{\"0368c1\":{\"lock\":false,\"pos\":{\"x\":-17.1201,\"y\":1.619,\"z\":-0.03},\"rot\":{\"x\":359.9202,\"y\":270.0046,\"z\":0.0167}},\"12d492\":{\"lock\":false,\"pos\":{\"x\":-30.2242,\"y\":1.6225,\"z\":-3.83},\"rot\":{\"x\":0.0169,\"y\":179.9998,\"z\":0.0799}},\"1e7f1b\":{\"lock\":false,\"pos\":{\"x\":-14.3835,\"y\":1.6303,\"z\":-0.2141},\"rot\":{\"x\":359.3509,\"y\":269.9973,\"z\":0.0169}},\"2e4956\":{\"lock\":false,\"pos\":{\"x\":-11.6656,\"y\":1.6551,\"z\":9.0735},\"rot\":{\"x\":359.9201,\"y\":269.9792,\"z\":0.0169}},\"3c6d68\":{\"lock\":false,\"pos\":{\"x\":-11.7638,\"y\":1.6337,\"z\":-14.9715},\"rot\":{\"x\":359.9201,\"y\":270.0002,\"z\":0.0169}},\"44b0c5\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6042,\"z\":-3.83},\"rot\":{\"x\":359.9831,\"y\":0.0002,\"z\":359.9201}},\"4cc43d\":{\"lock\":false,\"pos\":{\"x\":-3.9274,\"y\":1.7925,\"z\":5.7571},\"rot\":{\"x\":359.9197,\"y\":269.9698,\"z\":180.0169}},\"4d3553\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6065,\"z\":3.86},\"rot\":{\"x\":359.9831,\"y\":359.9847,\"z\":359.9201}},\"4d5e5f\":{\"lock\":false,\"pos\":{\"x\":-2.6885,\"y\":1.6143,\"z\":-5.0485},\"rot\":{\"x\":359.9197,\"y\":269.9982,\"z\":0.0168}},\"50caf4\":{\"lock\":false,\"pos\":{\"x\":-3.9559,\"y\":1.5975,\"z\":-10.4412},\"rot\":{\"x\":359.9197,\"y\":269.9998,\"z\":0.0168}},\"81a6f5\":{\"lock\":false,\"pos\":{\"x\":-26.8136,\"y\":1.6167,\"z\":-7.5513},\"rot\":{\"x\":0.0799,\"y\":90.0001,\"z\":359.9831}},\"949c7d\":{\"lock\":false,\"pos\":{\"x\":-30.2242,\"y\":1.6248,\"z\":3.86},\"rot\":{\"x\":0.0169,\"y\":179.9995,\"z\":0.0799}},\"a45247\":{\"lock\":false,\"pos\":{\"x\":1.6967,\"y\":1.5583,\"z\":14.2787},\"rot\":{\"x\":359.9551,\"y\":224.998,\"z\":0.0687}},\"a5891b\":{\"lock\":false,\"pos\":{\"x\":-3.5539,\"y\":1.5821,\"z\":-14.78},\"rot\":{\"x\":359.9197,\"y\":270.0027,\"z\":0.0168}},\"ab0576\":{\"lock\":false,\"pos\":{\"x\":-20.6238,\"y\":1.6124,\"z\":7.2554},\"rot\":{\"x\":359.9201,\"y\":270,\"z\":0.0169}},\"b676d8\":{\"lock\":false,\"pos\":{\"x\":-20.6237,\"y\":1.608,\"z\":-7.5965},\"rot\":{\"x\":0.0799,\"y\":89.9992,\"z\":359.9831}},\"bb43b8\":{\"lock\":false,\"pos\":{\"x\":-11.5593,\"y\":1.6557,\"z\":11.8573},\"rot\":{\"x\":359.9201,\"y\":269.9891,\"z\":0.0169}},\"c3031b\":{\"lock\":false,\"pos\":{\"x\":-2.7228,\"y\":1.6208,\"z\":0.3589},\"rot\":{\"x\":359.9197,\"y\":269.9689,\"z\":0.0169}},\"fde05d\":{\"lock\":false,\"pos\":{\"x\":-27.0646,\"y\":1.6215,\"z\":7.5852},\"rot\":{\"x\":359.9201,\"y\":269.9991,\"z\":0.0169}}}}",
"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
}
}
]
},
{
"GUID": "578e97",
"Name": "Custom_Model",
"Transform": {
"posX": -8.300671,
"posY": 1.62505531,
"posZ": 66.3435745,
"rotX": -0.005510362,
"rotY": 270.000122,
"rotZ": 0.0131574934,
"scaleX": 2.21,
"scaleY": 0.2,
"scaleZ": 2.46
},
"Nickname": "Bridge of Sighs",
"Description": "",
"GMNotes": "fancreations/scenario_bridge_of_sighs.json",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0,
"a": 0.274509817
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomMesh": {
"MeshURL": "https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/798737729142919243/F3ED3E5B6B8725F536FCDA4FB2D40E1D11725037/",
"NormalURL": "",
"ColliderURL": "",
"Convex": true,
"MaterialIndex": 3,
"TypeIndex": 0,
"CustomShader": {
"SpecularColor": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"SpecularIntensity": 0.0,
"SpecularSharpness": 2.0,
"FresnelStrength": 0.0
},
"CastShadows": true
},
"LuaScript": "\r\nfunction onload(saved_data)\r\n createDownloadButton()\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make Download button\r\nfunction createDownloadButton()\r\n self.createButton({\r\n label=\"Download\", click_function=\"buttonClick_download\", function_owner=self,\r\n position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800,\r\n font_size=150, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by download button,\r\nfunction buttonClick_download()\r\n local params = { url = self.getGMNotes(), replace = self.guid }\r\n Global.call('placeholder_download', params)\r\nend\r\n",
"LuaScriptState": "{\"ml\":{\"0d7898\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6868,\"z\":-7.7},\"rot\":{\"x\":359.9201,\"y\":269.9998,\"z\":180.0169}},\"2d9794\":{\"lock\":false,\"pos\":{\"x\":-4.7969,\"y\":1.5838,\"z\":-15.0746},\"rot\":{\"x\":359.9197,\"y\":270.0009,\"z\":0.0168}},\"3be6e8\":{\"lock\":false,\"pos\":{\"x\":-10.0797,\"y\":1.674,\"z\":-0.4023},\"rot\":{\"x\":359.9201,\"y\":269.9863,\"z\":0.0169}},\"3dc34f\":{\"lock\":false,\"pos\":{\"x\":-3.956,\"y\":1.6556,\"z\":-10.4412},\"rot\":{\"x\":359.9197,\"y\":269.9974,\"z\":0.0168}},\"50d3bc\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6776,\"z\":-7.7},\"rot\":{\"x\":359.9201,\"y\":269.9998,\"z\":180.0169}},\"5a9b00\":{\"lock\":false,\"pos\":{\"x\":-17.1198,\"y\":1.6754,\"z\":-15.2785},\"rot\":{\"x\":359.9201,\"y\":270.0052,\"z\":180.0169}},\"5d0fdd\":{\"lock\":false,\"pos\":{\"x\":-23.6766,\"y\":1.6846,\"z\":-15.28},\"rot\":{\"x\":359.9201,\"y\":270.005,\"z\":180.0169}},\"6e4a78\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6065,\"z\":3.86},\"rot\":{\"x\":359.9831,\"y\":0.0003,\"z\":359.9201}},\"7234af\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6042,\"z\":-3.83},\"rot\":{\"x\":359.9831,\"y\":359.98,\"z\":359.9201}},\"8ed50d\":{\"lock\":false,\"pos\":{\"x\":-23.6766,\"y\":1.6935,\"z\":15.19},\"rot\":{\"x\":359.9201,\"y\":270.0014,\"z\":180.0169}},\"8f569e\":{\"lock\":false,\"pos\":{\"x\":-2.7247,\"y\":1.6566,\"z\":0.3733},\"rot\":{\"x\":0.0168,\"y\":180.027,\"z\":0.0803}},\"9bcafb\":{\"lock\":false,\"pos\":{\"x\":-23.6764,\"y\":1.689,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":180.0169}},\"a5b019\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.602,\"z\":-11.51},\"rot\":{\"x\":359.9831,\"y\":0.0002,\"z\":359.92}},\"bbb99f\":{\"lock\":false,\"pos\":{\"x\":-20.5275,\"y\":1.6078,\"z\":-7.7916},\"rot\":{\"x\":0.0799,\"y\":89.9999,\"z\":359.9831}},\"c51bff\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6821,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":270.0001,\"z\":180.0169}},\"cd676c\":{\"lock\":false,\"pos\":{\"x\":-2.6885,\"y\":1.6623,\"z\":-5.0486},\"rot\":{\"x\":0.0168,\"y\":180.0007,\"z\":0.0803}},\"d7eb78\":{\"lock\":false,\"pos\":{\"x\":-19.5006,\"y\":1.612,\"z\":11.2137},\"rot\":{\"x\":0.0685,\"y\":134.9717,\"z\":0.0445}},\"d82996\":{\"lock\":false,\"pos\":{\"x\":-20.2633,\"y\":1.6053,\"z\":-15.0852},\"rot\":{\"x\":0.0799,\"y\":90,\"z\":359.9831}},\"da6072\":{\"lock\":false,\"pos\":{\"x\":1.6965,\"y\":1.6585,\"z\":14.2788},\"rot\":{\"x\":359.9552,\"y\":224.998,\"z\":0.0687}},\"dde586\":{\"lock\":false,\"pos\":{\"x\":-3.9275,\"y\":1.7237,\"z\":5.7571},\"rot\":{\"x\":359.9197,\"y\":270.0001,\"z\":180.0168}},\"dfff72\":{\"lock\":false,\"pos\":{\"x\":-23.6764,\"y\":1.6913,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":270,\"z\":180.0169}},\"e413cc\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6179,\"z\":11.46},\"rot\":{\"x\":359.9832,\"y\":0.0153,\"z\":359.9201}},\"e7b998\":{\"lock\":false,\"pos\":{\"x\":-17.1199,\"y\":1.6799,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":270.0052,\"z\":180.0169}},\"edb80f\":{\"lock\":false,\"pos\":{\"x\":-20.4959,\"y\":1.61,\"z\":-0.1873},\"rot\":{\"x\":0.0799,\"y\":89.9999,\"z\":359.9831}},\"f90f84\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6111,\"z\":-11.51},\"rot\":{\"x\":359.9831,\"y\":0,\"z\":359.9201}},\"fcfbbe\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6157,\"z\":3.86},\"rot\":{\"x\":0.0169,\"y\":180,\"z\":0.0799}}}}",
"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
}
}
]
},
{
"GUID": "4237da",
"Name": "Custom_Model",
"Transform": {
"posX": -10.6236877,
"posY": 1.62282968,
"posZ": 65.30158,
"rotX": 0.04264694,
"rotY": 270.0,
"rotZ": 0.0165211912,
"scaleX": 2.21,
"scaleY": 0.2,
"scaleZ": 2.46
},
"Nickname": "Blood Spilled in Salem",
"Description": "",
"GMNotes": "fancreations/scenario_salem.json",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0,
"a": 0.274509817
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomMesh": {
"MeshURL": "https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/798737729142918658/204E105211839B1E202E834F4A5C69E8E6A50A28/",
"NormalURL": "",
"ColliderURL": "",
"Convex": true,
"MaterialIndex": 3,
"TypeIndex": 0,
"CustomShader": {
"SpecularColor": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"SpecularIntensity": 0.0,
"SpecularSharpness": 2.0,
"FresnelStrength": 0.0
},
"CastShadows": true
},
"LuaScript": "\r\nfunction onload(saved_data)\r\n createDownloadButton()\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make Download button\r\nfunction createDownloadButton()\r\n self.createButton({\r\n label=\"Download\", click_function=\"buttonClick_download\", function_owner=self,\r\n position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800,\r\n font_size=150, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by download button,\r\nfunction buttonClick_download()\r\n local params = { url = self.getGMNotes(), replace = self.guid }\r\n Global.call('placeholder_download', params)\r\nend\r\n",
"LuaScriptState": "{\"ml\":{\"0488ba\":{\"lock\":false,\"pos\":{\"x\":-30.2242,\"y\":1.7004,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":270,\"z\":180.0169}},\"0acbd8\":{\"lock\":false,\"pos\":{\"x\":-30.2243,\"y\":1.6959,\"z\":-7.7},\"rot\":{\"x\":359.9201,\"y\":270.0001,\"z\":180.0169}},\"0d9dc2\":{\"lock\":false,\"pos\":{\"x\":-20.7379,\"y\":1.6093,\"z\":-3.7735},\"rot\":{\"x\":359.9747,\"y\":209.9999,\"z\":0.0776}},\"0eb577\":{\"lock\":false,\"pos\":{\"x\":-3.9275,\"y\":1.7611,\"z\":5.7571},\"rot\":{\"x\":359.9197,\"y\":269.9856,\"z\":180.0168}},\"1dd120\":{\"lock\":false,\"pos\":{\"x\":-23.6766,\"y\":1.6913,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":270.0001,\"z\":180.0169}},\"1e3806\":{\"lock\":false,\"pos\":{\"x\":-30.2242,\"y\":1.6225,\"z\":-3.83},\"rot\":{\"x\":359.9832,\"y\":0.0096,\"z\":359.92}},\"225690\":{\"lock\":false,\"pos\":{\"x\":-17.1199,\"y\":1.6821,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":180.0169}},\"23bbd8\":{\"lock\":false,\"pos\":{\"x\":-27.2865,\"y\":1.6195,\"z\":-0.0152},\"rot\":{\"x\":0.0799,\"y\":89.9999,\"z\":359.9831}},\"33b200\":{\"lock\":false,\"pos\":{\"x\":-2.6885,\"y\":1.6535,\"z\":-5.0485},\"rot\":{\"x\":359.9197,\"y\":269.9997,\"z\":0.0168}},\"479a5a\":{\"lock\":false,\"pos\":{\"x\":-2.7247,\"y\":1.656,\"z\":0.3733},\"rot\":{\"x\":359.9197,\"y\":270,\"z\":0.0168}},\"480533\":{\"lock\":false,\"pos\":{\"x\":-50.9243,\"y\":1.7294,\"z\":8.1784},\"rot\":{\"x\":359.9201,\"y\":269.931,\"z\":180.017}},\"4aaa9f\":{\"lock\":false,\"pos\":{\"x\":-30.2242,\"y\":1.6248,\"z\":3.86},\"rot\":{\"x\":359.9832,\"y\":0.0095,\"z\":359.92}},\"4eeeb3\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6799,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":270,\"z\":180.0169}},\"7234af\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6042,\"z\":-3.83},\"rot\":{\"x\":359.9832,\"y\":0.0095,\"z\":359.92}},\"83b781\":{\"lock\":false,\"pos\":{\"x\":-4.3576,\"y\":1.5832,\"z\":-14.9888},\"rot\":{\"x\":359.9197,\"y\":270.0004,\"z\":0.0168}},\"a06ab2\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.689,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":270.0002,\"z\":180.0169}},\"a08d45\":{\"lock\":false,\"pos\":{\"x\":-26.798,\"y\":1.6211,\"z\":7.6211},\"rot\":{\"x\":359.9201,\"y\":269.9998,\"z\":0.0169}},\"a1dbf2\":{\"lock\":false,\"pos\":{\"x\":-9.5286,\"y\":1.6602,\"z\":-1.2349},\"rot\":{\"x\":359.9201,\"y\":269.997,\"z\":180.0169}},\"a3dc2f\":{\"lock\":false,\"pos\":{\"x\":-4.4458,\"y\":1.663,\"z\":14.3162},\"rot\":{\"x\":359.9197,\"y\":269.9745,\"z\":180.0169}},\"aa3bc3\":{\"lock\":false,\"pos\":{\"x\":-30.2243,\"y\":1.6982,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":270.0001,\"z\":180.0169}},\"acac22\":{\"lock\":false,\"pos\":{\"x\":1.6967,\"y\":1.6368,\"z\":14.2788},\"rot\":{\"x\":359.9552,\"y\":225,\"z\":0.0687}},\"ade1bd\":{\"lock\":false,\"pos\":{\"x\":-3.956,\"y\":1.6585,\"z\":-10.4412},\"rot\":{\"x\":359.9197,\"y\":270.0001,\"z\":180.0168}},\"ae20a4\":{\"lock\":false,\"pos\":{\"x\":-17.1199,\"y\":1.6765,\"z\":-11.51},\"rot\":{\"x\":359.9201,\"y\":270,\"z\":180.0169}},\"b4a135\":{\"lock\":false,\"pos\":{\"x\":-26.9258,\"y\":1.6168,\"z\":-7.7032},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":0.0169}},\"b7e3ad\":{\"lock\":false,\"pos\":{\"x\":-20.2216,\"y\":1.6119,\"z\":7.3408},\"rot\":{\"x\":359.9201,\"y\":269.9998,\"z\":0.0169}},\"baff62\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6868,\"z\":-7.7},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":180.0169}},\"d33de6\":{\"lock\":false,\"pos\":{\"x\":-20.3424,\"y\":1.6076,\"z\":-7.7619},\"rot\":{\"x\":359.9201,\"y\":270.002,\"z\":0.0169}},\"e1bf6b\":{\"lock\":false,\"pos\":{\"x\":-26.9599,\"y\":1.6203,\"z\":3.9439},\"rot\":{\"x\":359.9316,\"y\":315.0001,\"z\":359.9554}},\"e90dde\":{\"lock\":false,\"pos\":{\"x\":-24.7567,\"y\":1.6149,\"z\":-3.8971},\"rot\":{\"x\":359.9832,\"y\":0.0096,\"z\":359.92}},\"ed48d8\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6157,\"z\":3.86},\"rot\":{\"x\":359.9832,\"y\":0.0096,\"z\":359.92}},\"ee673a\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6065,\"z\":3.86},\"rot\":{\"x\":359.9832,\"y\":0.0096,\"z\":359.92}},\"efe8d6\":{\"lock\":false,\"pos\":{\"x\":-17.1201,\"y\":1.6776,\"z\":-7.7},\"rot\":{\"x\":359.9201,\"y\":270.0001,\"z\":180.0169}},\"fda256\":{\"lock\":false,\"pos\":{\"x\":-27.7376,\"y\":1.619,\"z\":-4.1724},\"rot\":{\"x\":359.9316,\"y\":315.0002,\"z\":359.9554}}}}",
"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
}
}
]
},
{
"GUID": "4d5fa0",
"Name": "Custom_Model",
"Transform": {
"posX": 19.7377377,
"posY": 1.8204118,
"posZ": 5.85573626,
"rotX": 359.904175,
"rotY": 270.000031,
"rotZ": 0.0114050275,
"scaleX": 2.21,
"scaleY": 0.46,
"scaleZ": 2.42
},
"Nickname": "Against the Wendigo",
"Description": "",
"GMNotes": "fancreations/scenario_wendigo.json",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0,
"a": 0.274509817
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomMesh": {
"MeshURL": "https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/798737729142901599/7EE6EF24852C443DF5E92CF9498881E321CEE75A/",
"NormalURL": "",
"ColliderURL": "",
"Convex": true,
"MaterialIndex": 3,
"TypeIndex": 0,
"CustomShader": {
"SpecularColor": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"SpecularIntensity": 0.0,
"SpecularSharpness": 2.0,
"FresnelStrength": 0.0
},
"CastShadows": true
},
"LuaScript": "\r\nfunction onload(saved_data)\r\n createDownloadButton()\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make Download button\r\nfunction createDownloadButton()\r\n self.createButton({\r\n label=\"Download\", click_function=\"buttonClick_download\", function_owner=self,\r\n position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800,\r\n font_size=150, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by download button,\r\nfunction buttonClick_download()\r\n local params = { url = self.getGMNotes(), replace = self.guid }\r\n Global.call('placeholder_download', params)\r\nend\r\n",
"LuaScriptState": "{\"ml\":{\"06f882\":{\"lock\":true,\"pos\":{\"x\":-3.76900005340576,\"y\":4.13520002365112,\"z\":5.67080020904541},\"rot\":{\"x\":0,\"y\":90,\"z\":0}},\"0c01a1\":{\"lock\":false,\"pos\":{\"x\":1.2422,\"y\":1.3947,\"z\":0.1206},\"rot\":{\"x\":359.9832,\"y\":0.0007,\"z\":359.9197}},\"0e52c8\":{\"lock\":false,\"pos\":{\"x\":-36.7731170654297,\"y\":1.64632892608643,\"z\":-0.0299968924373388},\"rot\":{\"x\":359.920104980469,\"y\":269.999755859375,\"z\":0.0168402567505836}},\"0f6d69\":{\"lock\":false,\"pos\":{\"x\":-20.4015007019043,\"y\":1.60985171794891,\"z\":-0.177200019359589},\"rot\":{\"x\":0.0798944979906082,\"y\":90.0004348754883,\"z\":359.983123779297}},\"1ac3ac\":{\"lock\":false,\"pos\":{\"x\":-3.95601749420166,\"y\":1.59753954410553,\"z\":-10.441198348999},\"rot\":{\"x\":359.919738769531,\"y\":270.031280517578,\"z\":0.0167942680418491}},\"1ee2a5\":{\"lock\":false,\"pos\":{\"x\":-33.3772010803223,\"y\":1.62799525260925,\"z\":-0.00780024146661162},\"rot\":{\"x\":0.0798945650458336,\"y\":90.0005187988281,\"z\":359.983123779297}},\"201524\":{\"lock\":false,\"pos\":{\"x\":-17.1200008392334,\"y\":1.60646212100983,\"z\":3.86000037193298},\"rot\":{\"x\":0.0167902931571007,\"y\":180.035140991211,\"z\":0.079946868121624}},\"309b74\":{\"lock\":false,\"pos\":{\"x\":-12.432225227356,\"y\":1.63149964809418,\"z\":7.31530523300171},\"rot\":{\"x\":359.920104980469,\"y\":270.000457763672,\"z\":0.0168410111218691}},\"45ae28\":{\"lock\":false,\"pos\":{\"x\":-9.39212226867676,\"y\":1.50021779537201,\"z\":-27.1340980529785},\"rot\":{\"x\":359.920135498047,\"y\":270,\"z\":180.016860961914}},\"5f661f\":{\"lock\":false,\"pos\":{\"x\":-2.68850708007813,\"y\":1.61911654472351,\"z\":-5.048499584198},\"rot\":{\"x\":359.919738769531,\"y\":270.005615234375,\"z\":0.0168295986950397}},\"60ad05\":{\"lock\":false,\"pos\":{\"x\":-36.7731018066406,\"y\":1.63160705566406,\"z\":-3.83000040054321},\"rot\":{\"x\":0.0167906507849693,\"y\":180.034790039063,\"z\":0.0799511894583702}},\"6791fd\":{\"lock\":false,\"pos\":{\"x\":1.69690048694611,\"y\":1.55831575393677,\"z\":14.2784023284912},\"rot\":{\"x\":359.955139160156,\"y\":224.998107910156,\"z\":0.0686739981174469}},\"686672\":{\"lock\":false,\"pos\":{\"x\":-36.7732162475586,\"y\":1.64856255054474,\"z\":7.57000303268433},\"rot\":{\"x\":359.920104980469,\"y\":269.999664306641,\"z\":0.0168415307998657}},\"6f2827\":{\"lock\":false,\"pos\":{\"x\":-3.92771148681641,\"y\":1.74919271469116,\"z\":5.75710391998291},\"rot\":{\"x\":359.919738769531,\"y\":269.993286132813,\"z\":180.016830444336}},\"7234af\":{\"lock\":false,\"pos\":{\"x\":-36.7731018066406,\"y\":1.63386714458466,\"z\":3.86000084877014},\"rot\":{\"x\":0.0167915932834148,\"y\":180.034286499023,\"z\":0.0799638628959656}},\"82e1ed\":{\"lock\":false,\"pos\":{\"x\":-4.00120067596436,\"y\":1.58277893066406,\"z\":-14.5900020599365},\"rot\":{\"x\":359.919738769531,\"y\":269.992614746094,\"z\":0.016848323866725}},\"86cbee\":{\"lock\":false,\"pos\":{\"x\":-17.1199989318848,\"y\":1.60420215129852,\"z\":-3.8299994468689},\"rot\":{\"x\":0.0167905073612928,\"y\":180.034927368164,\"z\":0.0799460336565971}},\"88a1cf\":{\"lock\":false,\"pos\":{\"x\":-36.7732162475586,\"y\":1.6440749168396,\"z\":-7.69999694824219},\"rot\":{\"x\":359.920104980469,\"y\":269.999694824219,\"z\":0.0168403629213572}},\"9caa1f\":{\"lock\":false,\"pos\":{\"x\":-30.2241992950439,\"y\":1.62473499774933,\"z\":3.86000084877014},\"rot\":{\"x\":0.0167905203998089,\"y\":180.034866333008,\"z\":0.0799559205770493}},\"9dadf5\":{\"lock\":false,\"pos\":{\"x\":-1.4655841588974,\"y\":1.47562277317047,\"z\":-26.9304237365723},\"rot\":{\"x\":359.920135498047,\"y\":270.000732421875,\"z\":0.016870966181159}},\"9e701d\":{\"lock\":false,\"pos\":{\"x\":-2.72470688819885,\"y\":1.62076044082642,\"z\":0.373301297426224},\"rot\":{\"x\":359.919738769531,\"y\":269.982604980469,\"z\":0.0168617274612188}},\"a69955\":{\"lock\":false,\"pos\":{\"x\":-30.2242069244385,\"y\":1.65896475315094,\"z\":-0.0299987606704235},\"rot\":{\"x\":359.920104980469,\"y\":270.00048828125,\"z\":0.0168402157723904}},\"b3ec68\":{\"lock\":false,\"pos\":{\"x\":-12.7351093292236,\"y\":1.64195537567139,\"z\":-7.6860990524292},\"rot\":{\"x\":359.920104980469,\"y\":270.000061035156,\"z\":0.0168423783034086}},\"b6a235\":{\"lock\":false,\"pos\":{\"x\":-23.6765003204346,\"y\":1.61334466934204,\"z\":-3.82999992370605},\"rot\":{\"x\":0.0167906042188406,\"y\":180.034820556641,\"z\":0.0799501836299896}},\"d807d4\":{\"lock\":false,\"pos\":{\"x\":-26.8813991546631,\"y\":1.61892998218536,\"z\":-0.0326002426445484},\"rot\":{\"x\":0.079894594848156,\"y\":90.0005187988281,\"z\":359.983123779297}},\"dda3d5\":{\"lock\":false,\"pos\":{\"x\":-30.2241992950439,\"y\":1.62247502803802,\"z\":-3.82999992370605},\"rot\":{\"x\":0.0167906302958727,\"y\":180.034820556641,\"z\":0.0799499675631523}},\"e47eca\":{\"lock\":false,\"pos\":{\"x\":-23.6765003204346,\"y\":1.61560475826263,\"z\":3.86000061035156},\"rot\":{\"x\":0.0167904961854219,\"y\":180.034881591797,\"z\":0.0799509137868881}}}}",
"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
}
}
]
}
]
},
{
"GUID": "89c32e",
"Name": "Custom_Model_Bag",
"Transform": {
"posX": 35.98787,
"posY": 2.21615076,
"posZ": -2.28560567,
"rotX": 359.9331,
"rotY": 269.999939,
"rotZ": 0.014024375,
"scaleX": 0.5,
"scaleY": 0.07,
"scaleZ": 0.5
},
"Nickname": "Fan-Made Campaigns",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"MaterialIndex": -1,
"MeshIndex": -1,
"CustomMesh": {
"MeshURL": "https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/core_h_MSH.obj",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/1758068588410858852/B3312EB929FDEF7CB2B88F98CD757950B919B147/",
"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": "",
"LuaScriptState": "{\"ml\":[]}",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "754057",
"Name": "Custom_Model",
"Transform": {
"posX": -20.9388714,
"posY": 1.61394215,
"posZ": 76.40666,
"rotX": 0.0242888425,
"rotY": 270.0003,
"rotZ": -0.00310758385,
"scaleX": 2.21,
"scaleY": 0.46,
"scaleZ": 2.42
},
"Nickname": "Winter Winds",
"Description": "",
"GMNotes": "fancreations/campaign_winter_winds.json",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0,
"a": 0.274509817
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomMesh": {
"MeshURL": "https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/798737729142974098/BF07864708BDE2804C0495637DDD55E85CC883EA/",
"NormalURL": "",
"ColliderURL": "",
"Convex": true,
"MaterialIndex": 3,
"TypeIndex": 0,
"CustomShader": {
"SpecularColor": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"SpecularIntensity": 0.0,
"SpecularSharpness": 2.0,
"FresnelStrength": 0.0
},
"CastShadows": true
},
"LuaScript": "\r\nfunction onload(saved_data)\r\n createDownloadButton()\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make Download button\r\nfunction createDownloadButton()\r\n self.createButton({\r\n label=\"Download\", click_function=\"buttonClick_download\", function_owner=self,\r\n position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800,\r\n font_size=150, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by download button,\r\nfunction buttonClick_download()\r\n local params = { url = self.getGMNotes(), replace = self.guid }\r\n Global.call('placeholder_download', params)\r\nend\r\n",
"LuaScriptState": "{\"ml\":{\"11429d\":{\"lock\":false,\"pos\":{\"x\":9.5267,\"y\":1.2845,\"z\":4.5868},\"rot\":{\"x\":0.0799,\"y\":89.9987,\"z\":359.9831}},\"8077a1\":{\"lock\":false,\"pos\":{\"x\":9.1666,\"y\":1.2836,\"z\":-0.8205},\"rot\":{\"x\":0.0799,\"y\":89.9944,\"z\":359.9831}},\"d54710\":{\"lock\":false,\"pos\":{\"x\":-4.0215,\"y\":1.5826,\"z\":-15.2289},\"rot\":{\"x\":359.9197,\"y\":269.9984,\"z\":0.0168}},\"ddd10b\":{\"lock\":false,\"pos\":{\"x\":8.3252,\"y\":1.283,\"z\":-6.4267},\"rot\":{\"x\":0.0799,\"y\":89.996,\"z\":359.9831}}}}",
"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
}
}
]
},
{
"GUID": "19d469",
"Name": "Custom_Model",
"Transform": {
"posX": -9.099003,
"posY": 1.62454069,
"posZ": 67.4065857,
"rotX": 0.01221989,
"rotY": 270.000824,
"rotZ": 0.0207900628,
"scaleX": 2.21,
"scaleY": 0.46,
"scaleZ": 2.42
},
"Nickname": "The War of the Worlds",
"Description": "",
"GMNotes": "fancreations/campaign_war_of_the_world.json",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0,
"a": 0.274509817
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomMesh": {
"MeshURL": "https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/1461933574036562700/261026F89C2322BF6390608AAB7DE43BEFB6240A/",
"NormalURL": "",
"ColliderURL": "",
"Convex": true,
"MaterialIndex": 3,
"TypeIndex": 0,
"CustomShader": {
"SpecularColor": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"SpecularIntensity": 0.0,
"SpecularSharpness": 2.0,
"FresnelStrength": 0.0
},
"CastShadows": true
},
"LuaScript": "\r\nfunction onload(saved_data)\r\n createDownloadButton()\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make Download button\r\nfunction createDownloadButton()\r\n self.createButton({\r\n label=\"Download\", click_function=\"buttonClick_download\", function_owner=self,\r\n position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800,\r\n font_size=150, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by download button,\r\nfunction buttonClick_download()\r\n local params = { url = self.getGMNotes(), replace = self.guid }\r\n Global.call('placeholder_download', params)\r\nend\r\n",
"LuaScriptState": "{\"ml\":{\"193901\":{\"lock\":false,\"pos\":{\"x\":8.6179,\"y\":1.5146,\"z\":-16.1944},\"rot\":{\"x\":359.9201,\"y\":270.0002,\"z\":0.0169}},\"313523\":{\"lock\":false,\"pos\":{\"x\":10.7639,\"y\":1.4665,\"z\":-0.0043},\"rot\":{\"x\":359.9201,\"y\":270.0055,\"z\":0.0169}},\"480756\":{\"lock\":false,\"pos\":{\"x\":12.2554,\"y\":1.4727,\"z\":28.0126},\"rot\":{\"x\":359.9201,\"y\":269.9943,\"z\":0.0169}},\"a0d2b1\":{\"lock\":false,\"pos\":{\"x\":10.57,\"y\":1.4641,\"z\":-8.9474},\"rot\":{\"x\":359.9201,\"y\":270.0628,\"z\":0.0168}},\"b5928a\":{\"lock\":false,\"pos\":{\"x\":-3.8478,\"y\":1.5825,\"z\":-14.7052},\"rot\":{\"x\":359.9197,\"y\":270.0028,\"z\":0.0168}},\"eda22b\":{\"lock\":false,\"pos\":{\"x\":-1.4656,\"y\":1.5756,\"z\":-26.9315},\"rot\":{\"x\":359.9201,\"y\":270.0101,\"z\":0.0169}},\"f70a0d\":{\"lock\":false,\"pos\":{\"x\":10.9056,\"y\":1.4689,\"z\":8.8892},\"rot\":{\"x\":359.9201,\"y\":269.999,\"z\":0.0169}}}}",
"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
}
}
]
},
{
"GUID": "2abdd6",
"Name": "Custom_Model",
"Transform": {
"posX": -9.015044,
"posY": 1.62654376,
"posZ": 68.42619,
"rotX": 0.014992239,
"rotY": 269.997772,
"rotZ": 0.0133026578,
"scaleX": 2.21,
"scaleY": 0.46,
"scaleZ": 2.42
},
"Nickname": "Strange Aeons",
"Description": "A Pathfinder Adventure for Arkham Horror",
"GMNotes": "fancreations/campaign_strange_aeons.json",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0,
"a": 0.274509817
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomMesh": {
"MeshURL": "https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/798737729142947772/120E2BA8DF8C4E2AAC9E059FA046CC3A6229ECDF/",
"NormalURL": "",
"ColliderURL": "",
"Convex": true,
"MaterialIndex": 3,
"TypeIndex": 0,
"CustomShader": {
"SpecularColor": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"SpecularIntensity": 0.0,
"SpecularSharpness": 2.0,
"FresnelStrength": 0.0
},
"CastShadows": true
},
"LuaScript": "\r\nfunction onload(saved_data)\r\n createDownloadButton()\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make Download button\r\nfunction createDownloadButton()\r\n self.createButton({\r\n label=\"Download\", click_function=\"buttonClick_download\", function_owner=self,\r\n position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800,\r\n font_size=150, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by download button,\r\nfunction buttonClick_download()\r\n local params = { url = self.getGMNotes(), replace = self.guid }\r\n Global.call('placeholder_download', params)\r\nend\r\n",
"LuaScriptState": "{\"ml\":{\"1f4db7\":{\"lock\":false,\"pos\":{\"x\":-7.7139,\"y\":1.7478,\"z\":15.225},\"rot\":{\"x\":359.92,\"y\":270.0018,\"z\":180.0169}},\"7ba738\":{\"lock\":false,\"pos\":{\"x\":-3.946,\"y\":1.4062,\"z\":14.5235},\"rot\":{\"x\":359.9832,\"y\":-0.0016,\"z\":359.9197}},\"82e1ed\":{\"lock\":false,\"pos\":{\"x\":-4.1664,\"y\":1.5829,\"z\":-15.04},\"rot\":{\"x\":359.9197,\"y\":269.9994,\"z\":0.0168}},\"961940\":{\"lock\":false,\"pos\":{\"x\":8.4723,\"y\":1.2866,\"z\":6.7132},\"rot\":{\"x\":0.0799,\"y\":89.9989,\"z\":359.9831}},\"c2fe44\":{\"lock\":false,\"pos\":{\"x\":-0.4614,\"y\":1.7617,\"z\":-25.2014},\"rot\":{\"x\":359.9201,\"y\":269.9758,\"z\":0.0169}},\"eea51b\":{\"lock\":false,\"pos\":{\"x\":8.0856,\"y\":1.2853,\"z\":0.187},\"rot\":{\"x\":0.0799,\"y\":89.9983,\"z\":359.9831}}}}",
"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
}
}
]
},
{
"GUID": "75fe78",
"Name": "Custom_Model",
"Transform": {
"posX": -9.739226,
"posY": 1.62575209,
"posZ": 67.21711,
"rotX": 0.0268398523,
"rotY": 270.0016,
"rotZ": 0.0185373183,
"scaleX": 2.21,
"scaleY": 0.46,
"scaleZ": 2.42
},
"Nickname": "Pokemon Eldritch Edition",
"Description": "",
"GMNotes": "fancreations/campaign_pokemon_eldrich_edition.json",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0,
"a": 0.274509817
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomMesh": {
"MeshURL": "https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/1597043896926982160/40A0068DAB05395205E184765110430CAADDA2CF/",
"NormalURL": "",
"ColliderURL": "",
"Convex": true,
"MaterialIndex": 3,
"TypeIndex": 0,
"CustomShader": {
"SpecularColor": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"SpecularIntensity": 0.0,
"SpecularSharpness": 2.0,
"FresnelStrength": 0.0
},
"CastShadows": true
},
"LuaScript": "\r\nfunction onload(saved_data)\r\n createDownloadButton()\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make Download button\r\nfunction createDownloadButton()\r\n self.createButton({\r\n label=\"Download\", click_function=\"buttonClick_download\", function_owner=self,\r\n position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800,\r\n font_size=150, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by download button,\r\nfunction buttonClick_download()\r\n local params = { url = self.getGMNotes(), replace = self.guid }\r\n Global.call('placeholder_download', params)\r\nend\r\n",
"LuaScriptState": "{\"ml\":{\"05109d\":{\"lock\":false,\"pos\":{\"x\":-3.12649917602539,\"y\":1.12493538856506,\"z\":-50.2695999145508},\"rot\":{\"x\":359.979156494141,\"y\":89.9994506835938,\"z\":359.983215332031}},\"13ed7d\":{\"lock\":false,\"pos\":{\"x\":12.2512035369873,\"y\":1.28292536735535,\"z\":11.9865989685059},\"rot\":{\"x\":0.0799588114023209,\"y\":89.9949340820313,\"z\":359.983093261719}},\"1fae15\":{\"lock\":false,\"pos\":{\"x\":12.1805038452148,\"y\":1.27355456352234,\"z\":-20.1693019866943},\"rot\":{\"x\":0.0799674317240715,\"y\":89.9949417114258,\"z\":359.983062744141}},\"2cea4e\":{\"lock\":false,\"pos\":{\"x\":66.0026016235352,\"y\":1.11109709739685,\"z\":-58.8017997741699},\"rot\":{\"x\":359.979156494141,\"y\":89.9906921386719,\"z\":359.983215332031}},\"3da6dd\":{\"lock\":false,\"pos\":{\"x\":12.2621040344238,\"y\":1.27820038795471,\"z\":-4.00930261611938},\"rot\":{\"x\":0.0799657329916954,\"y\":89.9984359741211,\"z\":359.983093261719}},\"4c07bf\":{\"lock\":false,\"pos\":{\"x\":12.2919034957886,\"y\":1.27108502388,\"z\":-28.030704498291},\"rot\":{\"x\":0.0799620524048805,\"y\":90.0000457763672,\"z\":359.983093261719}},\"52d102\":{\"lock\":false,\"pos\":{\"x\":12.2132043838501,\"y\":1.27584600448608,\"z\":-12.2319049835205},\"rot\":{\"x\":0.0799582898616791,\"y\":89.9938659667969,\"z\":359.983093261719}},\"61801e\":{\"lock\":false,\"pos\":{\"x\":12.1700048446655,\"y\":1.28535795211792,\"z\":19.8675079345703},\"rot\":{\"x\":0.0799623876810074,\"y\":89.996826171875,\"z\":359.983093261719}},\"7b57ad\":{\"lock\":false,\"pos\":{\"x\":16.2712059020996,\"y\":1.27489864826202,\"z\":3.76080012321472},\"rot\":{\"x\":0.0799572914838791,\"y\":89.9929580688477,\"z\":359.983093261719}},\"9af38c\":{\"lock\":false,\"pos\":{\"x\":12.2501535415649,\"y\":1.48254573345184,\"z\":-36.0138473510742},\"rot\":{\"x\":-0.000153532513650134,\"y\":269.96923828125,\"z\":359.721130371094}},\"c627fc\":{\"lock\":false,\"pos\":{\"x\":17.8328266143799,\"y\":1.45285880565643,\"z\":-12.8706102371216},\"rot\":{\"x\":359.920104980469,\"y\":270.017272949219,\"z\":0.0168486014008522}},\"d14543\":{\"lock\":false,\"pos\":{\"x\":66.4962005615234,\"y\":1.11095499992371,\"z\":80.5901031494141},\"rot\":{\"x\":359.979156494141,\"y\":89.9937591552734,\"z\":359.983215332031}},\"e1caf1\":{\"lock\":false,\"pos\":{\"x\":12.1709051132202,\"y\":1.28772139549255,\"z\":27.8930072784424},\"rot\":{\"x\":0.0799488052725792,\"y\":89.9712753295898,\"z\":359.983062744141}},\"eda22b\":{\"lock\":false,\"pos\":{\"x\":-5.44584989547729,\"y\":1.5804318189621,\"z\":-29.4421005249023},\"rot\":{\"x\":359.920135498047,\"y\":270.000427246094,\"z\":0.0168711524456739}},\"f040a6\":{\"lock\":false,\"pos\":{\"x\":12.1407060623169,\"y\":1.28064227104187,\"z\":3.70839309692383},\"rot\":{\"x\":0.0799626931548119,\"y\":89.9970016479492,\"z\":359.983093261719}}}}",
"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
}
}
]
},
{
"GUID": "28e0a1",
"Name": "Custom_Model",
"Transform": {
"posX": -8.766098,
"posY": 1.626268,
"posZ": 70.11551,
"rotX": 0.00302817044,
"rotY": 270.000061,
"rotZ": 0.00206756871,
"scaleX": 2.21,
"scaleY": 0.46,
"scaleZ": 2.42
},
"Nickname": "Parallel Universe",
"Description": "",
"GMNotes": "fancreations/campaign_parallel_universe.json",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0,
"a": 0.274509817
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomMesh": {
"MeshURL": "https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/798737729142944953/7A5D3A94BF4A7798157C999A3E1CEAAFC3652CAC/",
"NormalURL": "",
"ColliderURL": "",
"Convex": true,
"MaterialIndex": 3,
"TypeIndex": 0,
"CustomShader": {
"SpecularColor": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"SpecularIntensity": 0.0,
"SpecularSharpness": 2.0,
"FresnelStrength": 0.0
},
"CastShadows": true
},
"LuaScript": "\r\nfunction onload(saved_data)\r\n createDownloadButton()\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make Download button\r\nfunction createDownloadButton()\r\n self.createButton({\r\n label=\"Download\", click_function=\"buttonClick_download\", function_owner=self,\r\n position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800,\r\n font_size=150, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by download button,\r\nfunction buttonClick_download()\r\n local params = { url = self.getGMNotes(), replace = self.guid }\r\n Global.call('placeholder_download', params)\r\nend\r\n",
"LuaScriptState": "{\"ml\":{\"56a08b\":{\"lock\":false,\"pos\":{\"x\":-3.8679,\"y\":1.5824,\"z\":-15.4044},\"rot\":{\"x\":359.9197,\"y\":270.0026,\"z\":0.0168}},\"6ca52c\":{\"lock\":false,\"pos\":{\"x\":10.1258,\"y\":1.283,\"z\":1.8531},\"rot\":{\"x\":0.0799,\"y\":89.9977,\"z\":359.9831}},\"8578ad\":{\"lock\":false,\"pos\":{\"x\":-4.4263,\"y\":1.6455,\"z\":14.8008},\"rot\":{\"x\":359.9197,\"y\":269.9995,\"z\":0.0168}},\"b4cf5a\":{\"lock\":false,\"pos\":{\"x\":3.9877,\"y\":1.4679,\"z\":-27.2649},\"rot\":{\"x\":359.9201,\"y\":269.9991,\"z\":0.0169}},\"c0897e\":{\"lock\":false,\"pos\":{\"x\":10.4203,\"y\":1.2811,\"z\":-2.9799},\"rot\":{\"x\":0.0799,\"y\":89.9995,\"z\":359.9831}},\"f39e68\":{\"lock\":false,\"pos\":{\"x\":10.161,\"y\":1.2842,\"z\":6.4667},\"rot\":{\"x\":0.0799,\"y\":89.9954,\"z\":359.9831}}}}",
"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
}
}
]
},
{
"GUID": "3c175c",
"Name": "Custom_Model",
"Transform": {
"posX": -8.83169651,
"posY": 1.62677991,
"posZ": 67.7617645,
"rotX": 0.009426403,
"rotY": 270.000153,
"rotZ": 0.02007607,
"scaleX": 2.21,
"scaleY": 0.2,
"scaleZ": 2.46
},
"Nickname": "The Outsider",
"Description": "",
"GMNotes": "fancreations/campaign_outsider.json",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0,
"a": 0.274509817
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomMesh": {
"MeshURL": "https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/798737729142944372/7F67F8FDAD99C9C2A6A6A5E98C548681117D092C/",
"NormalURL": "",
"ColliderURL": "",
"Convex": true,
"MaterialIndex": 3,
"TypeIndex": 0,
"CustomShader": {
"SpecularColor": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"SpecularIntensity": 0.0,
"SpecularSharpness": 2.0,
"FresnelStrength": 0.0
},
"CastShadows": true
},
"LuaScript": "\r\nfunction onload(saved_data)\r\n createDownloadButton()\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make Download button\r\nfunction createDownloadButton()\r\n self.createButton({\r\n label=\"Download\", click_function=\"buttonClick_download\", function_owner=self,\r\n position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800,\r\n font_size=150, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by download button,\r\nfunction buttonClick_download()\r\n local params = { url = self.getGMNotes(), replace = self.guid }\r\n Global.call('placeholder_download', params)\r\nend\r\n",
"LuaScriptState": "{\"ml\":{\"526ff9\":{\"lock\":false,\"pos\":{\"x\":9.7361,\"y\":1.2851,\"z\":7.604},\"rot\":{\"x\":0.0799,\"y\":89.999,\"z\":359.9831}},\"5b3ac7\":{\"lock\":false,\"pos\":{\"x\":9.9267,\"y\":1.2833,\"z\":1.7477},\"rot\":{\"x\":0.0799,\"y\":89.9971,\"z\":359.9831}},\"d166f2\":{\"lock\":false,\"pos\":{\"x\":9.8646,\"y\":1.2814,\"z\":-4.5878},\"rot\":{\"x\":0.0799,\"y\":89.9959,\"z\":359.9831}},\"d5b06c\":{\"lock\":false,\"pos\":{\"x\":-4.3545,\"y\":1.5833,\"z\":-14.5586},\"rot\":{\"x\":359.9197,\"y\":270.0016,\"z\":0.0168}}}}",
"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
}
}
]
},
{
"GUID": "608bea",
"Name": "Custom_Model",
"Transform": {
"posX": -9.515141,
"posY": 1.62602663,
"posZ": 67.7534256,
"rotX": 0.020412758,
"rotY": 270.000122,
"rotZ": 0.0180414468,
"scaleX": 2.21,
"scaleY": 0.46,
"scaleZ": 2.42
},
"Nickname": "Ordo Templi Orientis",
"Description": "",
"GMNotes": "fancreations/campaign_ordo_templi_orientis.json",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0,
"a": 0.274509817
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomMesh": {
"MeshURL": "https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/1017195498765395843/F0F85DBE17C72D5D09BD012DEDBB9E154EB07E7B/",
"NormalURL": "",
"ColliderURL": "",
"Convex": true,
"MaterialIndex": 3,
"TypeIndex": 0,
"CustomShader": {
"SpecularColor": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"SpecularIntensity": 0.0,
"SpecularSharpness": 2.0,
"FresnelStrength": 0.0
},
"CastShadows": true
},
"LuaScript": "\r\nfunction onload(saved_data)\r\n createDownloadButton()\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make Download button\r\nfunction createDownloadButton()\r\n self.createButton({\r\n label=\"Download\", click_function=\"buttonClick_download\", function_owner=self,\r\n position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800,\r\n font_size=150, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by download button,\r\nfunction buttonClick_download()\r\n local params = { url = self.getGMNotes(), replace = self.guid }\r\n Global.call('placeholder_download', params)\r\nend\r\n",
"LuaScriptState": "{\"ml\":{\"286579\":{\"lock\":false,\"pos\":{\"x\":12.2487,\"y\":1.2782,\"z\":-4.0135},\"rot\":{\"x\":0.08,\"y\":90.0001,\"z\":359.9831}},\"392e62\":{\"lock\":false,\"pos\":{\"x\":0.0804,\"y\":1.6282,\"z\":-10.4566},\"rot\":{\"x\":359.9198,\"y\":269.984,\"z\":0.0169}},\"7b28eb\":{\"lock\":false,\"pos\":{\"x\":12.2495,\"y\":1.2806,\"z\":3.9864},\"rot\":{\"x\":0.08,\"y\":89.9951,\"z\":359.9831}},\"7cda3f\":{\"lock\":false,\"pos\":{\"x\":12.2512,\"y\":1.2829,\"z\":11.9866},\"rot\":{\"x\":0.08,\"y\":89.9997,\"z\":359.9831}},\"b3bfc4\":{\"lock\":false,\"pos\":{\"x\":-1.4651,\"y\":1.4756,\"z\":-26.9305},\"rot\":{\"x\":359.9201,\"y\":270.0049,\"z\":0.0169}},\"ba2ded\":{\"lock\":false,\"pos\":{\"x\":12.2492,\"y\":1.2759,\"z\":-12.0135},\"rot\":{\"x\":0.08,\"y\":89.9974,\"z\":359.9831}},\"bbb70a\":{\"lock\":false,\"pos\":{\"x\":12.2503,\"y\":1.4585,\"z\":-20.0136},\"rot\":{\"x\":359.9201,\"y\":270.0311,\"z\":0.0168}}}}",
"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
}
}
]
},
{
"GUID": "edb650",
"Name": "Custom_Model",
"Transform": {
"posX": -9.646987,
"posY": 1.62625551,
"posZ": 69.45357,
"rotX": 0.0223398618,
"rotY": 270.0001,
"rotZ": 0.008236284,
"scaleX": 2.21,
"scaleY": 0.46,
"scaleZ": 2.42
},
"Nickname": "Of Sphinx and Sands",
"Description": "",
"GMNotes": "fancreations/campaign_of_sphinx_and_sands.json",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0,
"a": 0.274509817
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomMesh": {
"MeshURL": "https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/1705159936395227290/3E915F544AB47D63A4B1D05B0412216586EFA34A/",
"NormalURL": "",
"ColliderURL": "",
"Convex": true,
"MaterialIndex": 3,
"TypeIndex": 0,
"CustomShader": {
"SpecularColor": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"SpecularIntensity": 0.0,
"SpecularSharpness": 2.0,
"FresnelStrength": 0.0
},
"CastShadows": true
},
"LuaScript": "\r\nfunction onload(saved_data)\r\n createDownloadButton()\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make Download button\r\nfunction createDownloadButton()\r\n self.createButton({\r\n label=\"Download\", click_function=\"buttonClick_download\", function_owner=self,\r\n position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800,\r\n font_size=150, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by download button,\r\nfunction buttonClick_download()\r\n local params = { url = self.getGMNotes(), replace = self.guid }\r\n Global.call('placeholder_download', params)\r\nend\r\n",
"LuaScriptState": "{\"ml\":{\"13f2cf\":{\"lock\":false,\"pos\":{\"x\":4.3706,\"y\":1.6287,\"z\":11.8032},\"rot\":{\"x\":359.9197,\"y\":269.996,\"z\":0.0168}},\"6d8dad\":{\"lock\":false,\"pos\":{\"x\":11.901,\"y\":1.2781,\"z\":-6.0589},\"rot\":{\"x\":0.08,\"y\":89.9996,\"z\":359.9831}},\"6e0236\":{\"lock\":false,\"pos\":{\"x\":11.9519,\"y\":1.2794,\"z\":-1.4092},\"rot\":{\"x\":0.08,\"y\":89.9995,\"z\":359.9831}},\"7c3cdc\":{\"lock\":false,\"pos\":{\"x\":11.8848,\"y\":1.2769,\"z\":-10.2113},\"rot\":{\"x\":0.08,\"y\":89.9995,\"z\":359.9831}},\"a3da91\":{\"lock\":false,\"pos\":{\"x\":-0.9527,\"y\":1.2611,\"z\":56.0573},\"rot\":{\"x\":0.0208,\"y\":270.0182,\"z\":0.0168}},\"e54f2a\":{\"lock\":false,\"pos\":{\"x\":12.1996,\"y\":1.2807,\"z\":3.856},\"rot\":{\"x\":0.0799,\"y\":89.9951,\"z\":359.9831}},\"eda22b\":{\"lock\":false,\"pos\":{\"x\":-5.0775,\"y\":1.5802,\"z\":-28.4084},\"rot\":{\"x\":359.9201,\"y\":269.9929,\"z\":0.0169}}}}",
"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
}
}
]
},
{
"GUID": "aaceca",
"Name": "Custom_Model",
"Transform": {
"posX": -8.63985,
"posY": 1.62513,
"posZ": 66.4434738,
"rotX": 0.00561045436,
"rotY": 270.000153,
"rotZ": 0.03304737,
"scaleX": 2.21,
"scaleY": 0.2,
"scaleZ": 2.46
},
"Nickname": "North Country Cycle",
"Description": "",
"GMNotes": "fancreations/campaign_north_country_cycle.json",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0,
"a": 0.274509817
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomMesh": {
"MeshURL": "https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/798737729142942211/3504BAF688D57DC30E7E1E2009A0FD4951D3BA58/",
"NormalURL": "",
"ColliderURL": "",
"Convex": true,
"MaterialIndex": 3,
"TypeIndex": 0,
"CustomShader": {
"SpecularColor": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"SpecularIntensity": 0.0,
"SpecularSharpness": 2.0,
"FresnelStrength": 0.0
},
"CastShadows": true
},
"LuaScript": "\r\nfunction onload(saved_data)\r\n createDownloadButton()\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make Download button\r\nfunction createDownloadButton()\r\n self.createButton({\r\n label=\"Download\", click_function=\"buttonClick_download\", function_owner=self,\r\n position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800,\r\n font_size=150, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by download button,\r\nfunction buttonClick_download()\r\n local params = { url = self.getGMNotes(), replace = self.guid }\r\n Global.call('placeholder_download', params)\r\nend\r\n",
"LuaScriptState": "{\"ml\":{\"147dea\":{\"lock\":false,\"pos\":{\"x\":9.4431,\"y\":1.2854,\"z\":7.085},\"rot\":{\"x\":0.0799,\"y\":89.9987,\"z\":359.9831}},\"7f9f0d\":{\"lock\":false,\"pos\":{\"x\":9.3077,\"y\":1.2837,\"z\":0.2819},\"rot\":{\"x\":0.0799,\"y\":89.9984,\"z\":359.9831}},\"df5156\":{\"lock\":false,\"pos\":{\"x\":9.2722,\"y\":1.2819,\"z\":-6.0997},\"rot\":{\"x\":0.0799,\"y\":89.9909,\"z\":359.9831}},\"ea0896\":{\"lock\":false,\"pos\":{\"x\":-3.3332,\"y\":1.5816,\"z\":-15.257},\"rot\":{\"x\":359.9197,\"y\":270.0002,\"z\":0.0168}}}}",
"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
}
}
]
},
{
"GUID": "0f96ac",
"Name": "Custom_Model",
"Transform": {
"posX": -7.63897133,
"posY": 1.62566841,
"posZ": 68.54492,
"rotX": 359.98587,
"rotY": 270.000122,
"rotZ": 0.0110502979,
"scaleX": 2.21,
"scaleY": 0.2,
"scaleZ": 2.46
},
"Nickname": "The London Set",
"Description": "",
"GMNotes": "fancreations/campaign_london_set.json",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0,
"a": 0.274509817
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomMesh": {
"MeshURL": "https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/798737729142939236/70113DAB44263CD5EA5A0913B4325A57B8113A4C/",
"NormalURL": "",
"ColliderURL": "",
"Convex": true,
"MaterialIndex": 3,
"TypeIndex": 0,
"CustomShader": {
"SpecularColor": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"SpecularIntensity": 0.0,
"SpecularSharpness": 2.0,
"FresnelStrength": 0.0
},
"CastShadows": true
},
"LuaScript": "\r\nfunction onload(saved_data)\r\n createDownloadButton()\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make Download button\r\nfunction createDownloadButton()\r\n self.createButton({\r\n label=\"Download\", click_function=\"buttonClick_download\", function_owner=self,\r\n position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800,\r\n font_size=150, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by download button,\r\nfunction buttonClick_download()\r\n local params = { url = self.getGMNotes(), replace = self.guid }\r\n Global.call('placeholder_download', params)\r\nend\r\n",
"LuaScriptState": "{\"ml\":{\"4c5c55\":{\"lock\":false,\"pos\":{\"x\":8.0489,\"y\":1.2874,\"z\":7.1029},\"rot\":{\"x\":0.0799,\"y\":89.9962,\"z\":359.9831}},\"905ad3\":{\"lock\":false,\"pos\":{\"x\":8.4268,\"y\":1.2838,\"z\":-3.1101},\"rot\":{\"x\":0.0799,\"y\":89.9894,\"z\":359.9831}},\"c56f66\":{\"lock\":false,\"pos\":{\"x\":8.2949,\"y\":1.2857,\"z\":2.5561},\"rot\":{\"x\":0.0799,\"y\":89.9962,\"z\":359.9831}}}}",
"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
}
}
]
},
{
"GUID": "acdf16",
"Name": "Custom_Model",
"Transform": {
"posX": -7.36846828,
"posY": 1.62623155,
"posZ": 68.0745239,
"rotX": 0.00745268771,
"rotY": 269.9998,
"rotZ": 0.026660664,
"scaleX": 2.21,
"scaleY": 0.2,
"scaleZ": 2.46
},
"Nickname": "Kiedy sny Stają się Rzeczywiścią",
"Description": "",
"GMNotes": "fancreations/campaign_kiedy_sny_staj%C4%85_si%C4%99_rzeczywi%C5%9Bci%C4%85.json",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0,
"a": 0.274509817
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomMesh": {
"MeshURL": "https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/798737729142937909/81868D8E838249B9D5C467282B6EF12DC5879CA5/",
"NormalURL": "",
"ColliderURL": "",
"Convex": true,
"MaterialIndex": 3,
"TypeIndex": 0,
"CustomShader": {
"SpecularColor": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"SpecularIntensity": 0.0,
"SpecularSharpness": 2.0,
"FresnelStrength": 0.0
},
"CastShadows": true
},
"LuaScript": "\r\nfunction onload(saved_data)\r\n createDownloadButton()\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make Download button\r\nfunction createDownloadButton()\r\n self.createButton({\r\n label=\"Download\", click_function=\"buttonClick_download\", function_owner=self,\r\n position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800,\r\n font_size=150, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by download button,\r\nfunction buttonClick_download()\r\n local params = { url = self.getGMNotes(), replace = self.guid }\r\n Global.call('placeholder_download', params)\r\nend\r\n",
"LuaScriptState": "{\"ml\":{\"1e00a9\":{\"lock\":false,\"pos\":{\"x\":9.3117,\"y\":1.285,\"z\":4.9883},\"rot\":{\"x\":0.0799,\"y\":89.9803,\"z\":359.9831}},\"24e5eb\":{\"lock\":false,\"pos\":{\"x\":-5.6029,\"y\":1.5487,\"z\":23.9983},\"rot\":{\"x\":359.9201,\"y\":270.0043,\"z\":359.5229}},\"2889f0\":{\"lock\":false,\"pos\":{\"x\":9.5686,\"y\":1.2858,\"z\":9.0951},\"rot\":{\"x\":0.0799,\"y\":89.9924,\"z\":359.9831}},\"31a93a\":{\"lock\":false,\"pos\":{\"x\":8.9743,\"y\":1.2844,\"z\":1.3267},\"rot\":{\"x\":0.0799,\"y\":89.9966,\"z\":359.9831}},\"68ca42\":{\"lock\":false,\"pos\":{\"x\":-3.3874,\"y\":1.3969,\"z\":-14.6273},\"rot\":{\"x\":359.9832,\"y\":-0.0008,\"z\":359.9196}},\"bd069f\":{\"lock\":false,\"pos\":{\"x\":9.3965,\"y\":1.2827,\"z\":-2.4823},\"rot\":{\"x\":0.0799,\"y\":89.9951,\"z\":359.9831}}}}",
"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
}
}
]
},
{
"GUID": "2df25a",
"Name": "Custom_Model",
"Transform": {
"posX": -7.32299137,
"posY": 1.62589657,
"posZ": 68.34116,
"rotX": 359.992462,
"rotY": 269.999939,
"rotZ": 0.0134784151,
"scaleX": 2.21,
"scaleY": 0.46,
"scaleZ": 2.42
},
"Nickname": "Kaimonogatari",
"Description": "version 1.41",
"GMNotes": "fancreations/campaign_kaimonogatari.json",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0,
"a": 0.274509817
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomMesh": {
"MeshURL": "https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/1673610640345018565/0AFEB7913AD4F24AA04D2CB7DCD97106F58D33D9/",
"NormalURL": "",
"ColliderURL": "",
"Convex": true,
"MaterialIndex": 3,
"TypeIndex": 0,
"CustomShader": {
"SpecularColor": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"SpecularIntensity": 0.0,
"SpecularSharpness": 2.0,
"FresnelStrength": 0.0
},
"CastShadows": true
},
"LuaScript": "\r\nfunction onload(saved_data)\r\n createDownloadButton()\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make Download button\r\nfunction createDownloadButton()\r\n self.createButton({\r\n label=\"Download\", click_function=\"buttonClick_download\", function_owner=self,\r\n position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800,\r\n font_size=150, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by download button,\r\nfunction buttonClick_download()\r\n local params = { url = self.getGMNotes(), replace = self.guid }\r\n Global.call('placeholder_download', params)\r\nend\r\n",
"LuaScriptState": "{\"ml\":{\"2a9a02\":{\"lock\":false,\"pos\":{\"x\":3.5083,\"y\":1.6247,\"z\":-6.1625},\"rot\":{\"x\":359.9197,\"y\":269.9857,\"z\":0.0168}},\"4076cd\":{\"lock\":false,\"pos\":{\"x\":12.2501,\"y\":1.4727,\"z\":27.9864},\"rot\":{\"x\":359.9201,\"y\":269.9268,\"z\":0.017}},\"486b0b\":{\"lock\":false,\"pos\":{\"x\":3.5252,\"y\":1.6251,\"z\":-4.553},\"rot\":{\"x\":359.9197,\"y\":270.0142,\"z\":0.0168}},\"64ad17\":{\"lock\":false,\"pos\":{\"x\":12.2496,\"y\":1.4562,\"z\":-28.0137},\"rot\":{\"x\":359.9201,\"y\":269.9981,\"z\":0.0169}},\"8221db\":{\"lock\":false,\"pos\":{\"x\":12.2519,\"y\":1.468,\"z\":11.9864},\"rot\":{\"x\":359.9201,\"y\":269.9924,\"z\":0.0169}},\"8f297e\":{\"lock\":false,\"pos\":{\"x\":12.2494,\"y\":1.4633,\"z\":-4.0136},\"rot\":{\"x\":359.9201,\"y\":269.9989,\"z\":0.0169}},\"9a39d8\":{\"lock\":false,\"pos\":{\"x\":12.2505,\"y\":1.4585,\"z\":-20.0137},\"rot\":{\"x\":359.9202,\"y\":269.7147,\"z\":0.0173}},\"ad56f2\":{\"lock\":false,\"pos\":{\"x\":12.2499,\"y\":1.4703,\"z\":19.9864},\"rot\":{\"x\":359.9201,\"y\":269.9645,\"z\":0.0169}},\"b34bec\":{\"lock\":false,\"pos\":{\"x\":12.1371,\"y\":1.3166,\"z\":-46.4024},\"rot\":{\"x\":0.0208,\"y\":270.0001,\"z\":0.0168}},\"b86938\":{\"lock\":false,\"pos\":{\"x\":12.2499,\"y\":1.4609,\"z\":-12.0136},\"rot\":{\"x\":359.9202,\"y\":269.7146,\"z\":0.0173}},\"b987fc\":{\"lock\":false,\"pos\":{\"x\":12.2492,\"y\":1.475,\"z\":35.9864},\"rot\":{\"x\":359.9201,\"y\":269.9995,\"z\":0.0169}},\"b99de3\":{\"lock\":false,\"pos\":{\"x\":12.2498,\"y\":1.4656,\"z\":3.9864},\"rot\":{\"x\":359.9201,\"y\":269.9216,\"z\":0.017}},\"c644be\":{\"lock\":false,\"pos\":{\"x\":-3.4418,\"y\":1.4948,\"z\":28.9615},\"rot\":{\"x\":359.9201,\"y\":269.9807,\"z\":0.0169}},\"eda22b\":{\"lock\":false,\"pos\":{\"x\":-1.4655,\"y\":1.5756,\"z\":-26.9304},\"rot\":{\"x\":359.9201,\"y\":270.0008,\"z\":0.0169}},\"f051fc\":{\"lock\":false,\"pos\":{\"x\":12.2492,\"y\":1.475,\"z\":35.9864},\"rot\":{\"x\":359.9201,\"y\":270.0026,\"z\":0.0169}},\"f5db25\":{\"lock\":false,\"pos\":{\"x\":-3.4942,\"y\":1.5821,\"z\":-14.5172},\"rot\":{\"x\":359.9197,\"y\":269.9996,\"z\":0.0168}},\"fba392\":{\"lock\":false,\"pos\":{\"x\":12.2504,\"y\":1.4538,\"z\":-36.0139},\"rot\":{\"x\":359.9201,\"y\":269.998,\"z\":0.0169}},\"fcfa07\":{\"lock\":false,\"pos\":{\"x\":-11.9064,\"y\":1.5066,\"z\":28.8153},\"rot\":{\"x\":359.9201,\"y\":269.9953,\"z\":0.0169}}}}",
"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
}
}
]
},
{
"GUID": "019847",
"Name": "Custom_Model",
"Transform": {
"posX": -5.02015448,
"posY": 1.6197685,
"posZ": 70.20802,
"rotX": 359.8152,
"rotY": 270.0,
"rotZ": 0.00363881537,
"scaleX": 2.21,
"scaleY": 0.2,
"scaleZ": 2.46
},
"Nickname": "Into the Shadowlands",
"Description": "",
"GMNotes": "fancreations/campaign_into_the_shadowland.json",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0,
"a": 0.274509817
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomMesh": {
"MeshURL": "https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/798737729142946871/EAA18FFE753B1ED020A9F3117E9654B093369D26/",
"NormalURL": "",
"ColliderURL": "",
"Convex": true,
"MaterialIndex": 3,
"TypeIndex": 0,
"CustomShader": {
"SpecularColor": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"SpecularIntensity": 0.0,
"SpecularSharpness": 2.0,
"FresnelStrength": 0.0
},
"CastShadows": true
},
"LuaScript": "\r\nfunction onload(saved_data)\r\n createDownloadButton()\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make Download button\r\nfunction createDownloadButton()\r\n self.createButton({\r\n label=\"Download\", click_function=\"buttonClick_download\", function_owner=self,\r\n position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800,\r\n font_size=150, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by download button,\r\nfunction buttonClick_download()\r\n local params = { url = self.getGMNotes(), replace = self.guid }\r\n Global.call('placeholder_download', params)\r\nend\r\n",
"LuaScriptState": "{\"ml\":{\"b1bc62\":{\"lock\":false,\"pos\":{\"x\":10.2009,\"y\":1.2817,\"z\":-2.161},\"rot\":{\"x\":0.0799,\"y\":89.9964,\"z\":359.9831}},\"c1aad0\":{\"lock\":false,\"pos\":{\"x\":9.6318,\"y\":1.285,\"z\":6.3703},\"rot\":{\"x\":0.0799,\"y\":89.9923,\"z\":359.9831}}}}",
"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
}
}
]
},
{
"GUID": "2d417b",
"Name": "Custom_Model",
"Transform": {
"posX": -7.85078239,
"posY": 1.62565935,
"posZ": 68.8305054,
"rotX": 359.979675,
"rotY": 270.0,
"rotZ": 0.0100566251,
"scaleX": 2.21,
"scaleY": 0.46,
"scaleZ": 2.42
},
"Nickname": "Idol Thoughts",
"Description": "",
"GMNotes": "fancreations/campaign_idol_thoughts.json",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0,
"a": 0.274509817
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomMesh": {
"MeshURL": "https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/1011563111884720834/103D38A8FBBFA64EB66439667F8775B15FC679C9/",
"NormalURL": "",
"ColliderURL": "",
"Convex": true,
"MaterialIndex": 3,
"TypeIndex": 0,
"CustomShader": {
"SpecularColor": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"SpecularIntensity": 0.0,
"SpecularSharpness": 2.0,
"FresnelStrength": 0.0
},
"CastShadows": true
},
"LuaScript": "\r\nfunction onload(saved_data)\r\n createDownloadButton()\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make Download button\r\nfunction createDownloadButton()\r\n self.createButton({\r\n label=\"Download\", click_function=\"buttonClick_download\", function_owner=self,\r\n position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800,\r\n font_size=150, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by download button,\r\nfunction buttonClick_download()\r\n local params = { url = self.getGMNotes(), replace = self.guid }\r\n Global.call('placeholder_download', params)\r\nend\r\n",
"LuaScriptState": "{\"ml\":{\"0fad66\":{\"lock\":false,\"pos\":{\"x\":12.2500028610229,\"y\":1.46070170402527,\"z\":-12.6663017272949},\"rot\":{\"x\":359.920104980469,\"y\":270.013061523438,\"z\":0.016855750232935}},\"16ceab\":{\"lock\":false,\"pos\":{\"x\":12.2508039474487,\"y\":1.46838736534119,\"z\":13.4375},\"rot\":{\"x\":359.920135498047,\"y\":269.997741699219,\"z\":0.0168768782168627}},\"34b55b\":{\"lock\":false,\"pos\":{\"x\":12.2501564025879,\"y\":1.54031658172607,\"z\":19.986349105835},\"rot\":{\"x\":0.0798780843615532,\"y\":90.0000076293945,\"z\":359.983123779297}},\"49dfb9\":{\"lock\":false,\"pos\":{\"x\":12.2508029937744,\"y\":1.46327579021454,\"z\":-3.92020153999329},\"rot\":{\"x\":359.920135498047,\"y\":269.994262695313,\"z\":0.0168821681290865}},\"4f944f\":{\"lock\":false,\"pos\":{\"x\":12.2503032684326,\"y\":1.46581149101257,\"z\":4.68769979476929},\"rot\":{\"x\":359.920135498047,\"y\":270.004669189453,\"z\":0.0168670099228621}},\"82e1ed\":{\"lock\":false,\"pos\":{\"x\":-4.55330038070679,\"y\":1.58349049091339,\"z\":-14.8002042770386},\"rot\":{\"x\":359.919738769531,\"y\":270,\"z\":0.0168378297239542}},\"d5b604\":{\"lock\":false,\"pos\":{\"x\":12.2505016326904,\"y\":1.27312207221985,\"z\":-21.3052005767822},\"rot\":{\"x\":359.955413818359,\"y\":225.000747680664,\"z\":0.0684693679213524}}}}",
"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
}
}
]
},
{
"GUID": "0f0680",
"Name": "Custom_Model",
"Transform": {
"posX": -9.201606,
"posY": 1.629235,
"posZ": 68.85857,
"rotX": 0.01882192,
"rotY": 270.00058,
"rotZ": 0.0165497828,
"scaleX": 0.6494761,
"scaleY": 0.09070112,
"scaleZ": 0.6494761
},
"Nickname": "Future Reflections",
"Description": "",
"GMNotes": "fancreations/campaign_future_reflections.json",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0,
"a": 0.274509817
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomMesh": {
"MeshURL": "https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/core_h_MSH.obj",
"DiffuseURL": "https://i.imgur.com/T97bYDU.pnghttps://i.imgur.com/T97bYDU.png",
"NormalURL": "",
"ColliderURL": "https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/core_h_COL.obj",
"Convex": true,
"MaterialIndex": 3,
"TypeIndex": 0,
"CustomShader": {
"SpecularColor": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"SpecularIntensity": 0.0,
"SpecularSharpness": 2.0,
"FresnelStrength": 0.0
},
"CastShadows": true
},
"LuaScript": "\r\nfunction onload(saved_data)\r\n createDownloadButton()\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make Download button\r\nfunction createDownloadButton()\r\n self.createButton({\r\n label=\"Download\", click_function=\"buttonClick_download\", function_owner=self,\r\n position={0,0.1,7}, rotation={0,0,0}, height=850, width=3300,\r\n font_size=700, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by download button,\r\nfunction buttonClick_download()\r\n local params = { url = self.getGMNotes(), replace = self.guid }\r\n Global.call('placeholder_download', params)\r\nend\r\n",
"LuaScriptState": "{\"ml\":{\"004d53\":{\"lock\":false,\"pos\":{\"x\":-3.5339,\"y\":2.4522,\"z\":-14.974},\"rot\":{\"x\":359.9886,\"y\":270,\"z\":0.0024}},\"0151be\":{\"lock\":false,\"pos\":{\"x\":-30.2243,\"y\":1.627,\"z\":11.4601},\"rot\":{\"x\":0.0156,\"y\":180.9005,\"z\":0.0802}},\"01961e\":{\"lock\":false,\"pos\":{\"x\":-3.9276,\"y\":1.7636,\"z\":5.7572},\"rot\":{\"x\":359.9197,\"y\":270.0193,\"z\":180.0168}},\"0ccc8d\":{\"lock\":false,\"pos\":{\"x\":1.7009,\"y\":1.5583,\"z\":14.2781},\"rot\":{\"x\":359.9551,\"y\":225.0036,\"z\":0.0687}},\"0de2c4\":{\"lock\":false,\"pos\":{\"x\":-16.6401,\"y\":1.3599,\"z\":-67.8206},\"rot\":{\"x\":0.0208,\"y\":270.009,\"z\":0.0168}},\"0f46eb\":{\"lock\":false,\"pos\":{\"x\":-19.3001,\"y\":1.3145,\"z\":-61.2332},\"rot\":{\"x\":0.0208,\"y\":269.9961,\"z\":0.0168}},\"15105c\":{\"lock\":false,\"pos\":{\"x\":-19.2959,\"y\":1.3122,\"z\":-69.0607},\"rot\":{\"x\":0.0208,\"y\":269.9999,\"z\":0.0168}},\"16df70\":{\"lock\":false,\"pos\":{\"x\":-19.3,\"y\":1.3168,\"z\":-53.4358},\"rot\":{\"x\":0.0208,\"y\":269.9999,\"z\":0.0168}},\"17a00f\":{\"lock\":false,\"pos\":{\"x\":-36.7732,\"y\":1.6463,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":270.0001,\"z\":180.0168}},\"1c3aab\":{\"lock\":false,\"pos\":{\"x\":-19.3001,\"y\":1.3145,\"z\":-61.2332},\"rot\":{\"x\":0.0208,\"y\":270,\"z\":0.0168}},\"1d61c6\":{\"lock\":false,\"pos\":{\"x\":12.2483,\"y\":1.475,\"z\":35.9866},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":0.0169}},\"1da958\":{\"lock\":false,\"pos\":{\"x\":-22.6169,\"y\":1.3645,\"z\":-84.8185},\"rot\":{\"x\":0.0168,\"y\":179.9921,\"z\":359.9792}},\"208c4d\":{\"lock\":false,\"pos\":{\"x\":-16.6335,\"y\":1.3638,\"z\":-54.6166},\"rot\":{\"x\":0.0218,\"y\":266.5908,\"z\":0.0155}},\"226716\":{\"lock\":false,\"pos\":{\"x\":-16.6403,\"y\":1.3596,\"z\":-69.0603},\"rot\":{\"x\":0.0208,\"y\":269.9998,\"z\":0.0168}},\"231320\":{\"lock\":false,\"pos\":{\"x\":-3.9272,\"y\":1.7973,\"z\":5.7576},\"rot\":{\"x\":359.9197,\"y\":270.0057,\"z\":180.0168}},\"24bf26\":{\"lock\":false,\"pos\":{\"x\":-26.2996,\"y\":1.2665,\"z\":-84.818},\"rot\":{\"x\":359.9792,\"y\":90.0002,\"z\":359.9832}},\"26c67a\":{\"lock\":false,\"pos\":{\"x\":0.5742,\"y\":1.6277,\"z\":-9.8657},\"rot\":{\"x\":359.9197,\"y\":270.002,\"z\":0.0168}},\"26f88d\":{\"lock\":false,\"pos\":{\"x\":-16.639,\"y\":1.3603,\"z\":-66.8114},\"rot\":{\"x\":0.0208,\"y\":270.0166,\"z\":0.0168}},\"270c8f\":{\"lock\":false,\"pos\":{\"x\":-26.2998,\"y\":1.2734,\"z\":-61.2407},\"rot\":{\"x\":359.9792,\"y\":90.0002,\"z\":359.9832}},\"28eca9\":{\"lock\":false,\"pos\":{\"x\":-30.2243,\"y\":1.6327,\"z\":-15.28},\"rot\":{\"x\":359.9201,\"y\":270,\"z\":180.0168}},\"298237\":{\"lock\":false,\"pos\":{\"x\":-22.6146,\"y\":1.3701,\"z\":-65.5964},\"rot\":{\"x\":0.0168,\"y\":180.0003,\"z\":359.9792}},\"2b0bee\":{\"lock\":false,\"pos\":{\"x\":-19.2998,\"y\":1.3076,\"z\":-84.8182},\"rot\":{\"x\":0.0208,\"y\":270.0002,\"z\":0.0168}},\"2b7ea2\":{\"lock\":false,\"pos\":{\"x\":-10.4852,\"y\":1.0777,\"z\":73.5727},\"rot\":{\"x\":359.9792,\"y\":89.9769,\"z\":359.9832}},\"2bf3e1\":{\"lock\":false,\"pos\":{\"x\":-2.6887,\"y\":1.6191,\"z\":-5.0485},\"rot\":{\"x\":359.9197,\"y\":270.0182,\"z\":0.0168}},\"2c2feb\":{\"lock\":false,\"pos\":{\"x\":-26.9465,\"y\":1.619,\"z\":0.0429},\"rot\":{\"x\":359.9201,\"y\":270.0127,\"z\":0.0168}},\"2e2f73\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6281,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":180.0168}},\"307044\":{\"lock\":false,\"pos\":{\"x\":-16.6385,\"y\":1.3553,\"z\":-83.5415},\"rot\":{\"x\":0.0208,\"y\":269.9782,\"z\":0.0168}},\"31fffc\":{\"lock\":false,\"pos\":{\"x\":-23.6766,\"y\":1.6258,\"z\":-7.7},\"rot\":{\"x\":359.9201,\"y\":270,\"z\":180.0168}},\"34592b\":{\"lock\":false,\"pos\":{\"x\":-3.7823,\"y\":1.4788,\"z\":-27.0319},\"rot\":{\"x\":359.9201,\"y\":270.0278,\"z\":0.0168}},\"3701d9\":{\"lock\":false,\"pos\":{\"x\":-10.4852,\"y\":1.0764,\"z\":68.9727},\"rot\":{\"x\":359.9792,\"y\":89.9804,\"z\":359.9832}},\"3742e4\":{\"lock\":false,\"pos\":{\"x\":-26.3002,\"y\":1.2688,\"z\":-76.9454},\"rot\":{\"x\":359.9792,\"y\":89.9993,\"z\":359.9832}},\"376a06\":{\"lock\":false,\"pos\":{\"x\":-26.3002,\"y\":1.2688,\"z\":-76.9456},\"rot\":{\"x\":359.9792,\"y\":89.9798,\"z\":359.9832}},\"389792\":{\"lock\":false,\"pos\":{\"x\":-22.6157,\"y\":1.3668,\"z\":-76.946},\"rot\":{\"x\":0.0168,\"y\":180,\"z\":359.9792}},\"3c5886\":{\"lock\":false,\"pos\":{\"x\":-30.2243,\"y\":1.6417,\"z\":15.19},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":0.0168}},\"3c7b42\":{\"lock\":false,\"pos\":{\"x\":-23.6767,\"y\":1.6133,\"z\":-3.8301},\"rot\":{\"x\":359.9832,\"y\":0.0051,\"z\":359.9201}},\"3ddfeb\":{\"lock\":false,\"pos\":{\"x\":-16.6394,\"y\":1.3546,\"z\":-86.0186},\"rot\":{\"x\":0.0208,\"y\":269.9996,\"z\":0.0168}},\"3f60eb\":{\"lock\":false,\"pos\":{\"x\":-19.2948,\"y\":1.3714,\"z\":-65.5815},\"rot\":{\"x\":0.0208,\"y\":269.9986,\"z\":0.0168}},\"41bfc7\":{\"lock\":false,\"pos\":{\"x\":-16.6532,\"y\":1.3615,\"z\":-62.4536},\"rot\":{\"x\":0.0211,\"y\":269.0246,\"z\":0.0164}},\"43239b\":{\"lock\":false,\"pos\":{\"x\":-30.2242,\"y\":1.6394,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":270,\"z\":180.0168}},\"44d1ab\":{\"lock\":false,\"pos\":{\"x\":-16.6402,\"y\":1.355,\"z\":-84.8182},\"rot\":{\"x\":0.0208,\"y\":270.0322,\"z\":0.0168}},\"4ad11b\":{\"lock\":false,\"pos\":{\"x\":-16.6373,\"y\":1.3569,\"z\":-78.1785},\"rot\":{\"x\":0.0209,\"y\":269.8461,\"z\":0.0167}},\"4d3ac8\":{\"lock\":false,\"pos\":{\"x\":-26.3,\"y\":1.2757,\"z\":-53.4369},\"rot\":{\"x\":359.9792,\"y\":90.0003,\"z\":359.9832}},\"4e809f\":{\"lock\":false,\"pos\":{\"x\":-22.617,\"y\":1.3133,\"z\":-61.2414},\"rot\":{\"x\":0.0208,\"y\":270,\"z\":0.0168}},\"52127f\":{\"lock\":false,\"pos\":{\"x\":-2.7248,\"y\":1.599,\"z\":0.3733},\"rot\":{\"x\":359.9197,\"y\":269.9999,\"z\":0.0168}},\"543164\":{\"lock\":false,\"pos\":{\"x\":-16.6421,\"y\":1.3592,\"z\":-70.2847},\"rot\":{\"x\":0.0209,\"y\":269.8676,\"z\":0.0167}},\"55012a\":{\"lock\":false,\"pos\":{\"x\":-30.2242,\"y\":1.6372,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":180.0168}},\"554be6\":{\"lock\":false,\"pos\":{\"x\":-30.2244,\"y\":1.6247,\"z\":3.8599},\"rot\":{\"x\":359.9832,\"y\":0.0071,\"z\":359.92}},\"55e98a\":{\"lock\":false,\"pos\":{\"x\":-19.2936,\"y\":1.3099,\"z\":-76.9415},\"rot\":{\"x\":0.0208,\"y\":270.0001,\"z\":0.0168}},\"565f15\":{\"lock\":false,\"pos\":{\"x\":-22.6158,\"y\":1.3087,\"z\":-76.946},\"rot\":{\"x\":0.0208,\"y\":269.9999,\"z\":0.0168}},\"5b38c6\":{\"lock\":false,\"pos\":{\"x\":-26.9136,\"y\":1.6179,\"z\":-3.626},\"rot\":{\"x\":359.9201,\"y\":270.0271,\"z\":0.0168}},\"5d16e3\":{\"lock\":false,\"pos\":{\"x\":-16.6401,\"y\":1.3619,\"z\":-61.231},\"rot\":{\"x\":0.0208,\"y\":270.0002,\"z\":0.0168}},\"6330da\":{\"lock\":false,\"pos\":{\"x\":-16.6401,\"y\":1.3645,\"z\":-52.152},\"rot\":{\"x\":0.0208,\"y\":270.0314,\"z\":0.0168}},\"646860\":{\"lock\":false,\"pos\":{\"x\":-10.3191,\"y\":1.0818,\"z\":87.1778},\"rot\":{\"x\":359.9792,\"y\":89.9741,\"z\":359.9832}},\"6bd479\":{\"lock\":false,\"pos\":{\"x\":-16.6403,\"y\":1.3576,\"z\":-75.7054},\"rot\":{\"x\":0.0208,\"y\":270.0208,\"z\":0.0168}},\"6e30b0\":{\"lock\":false,\"pos\":{\"x\":-10.4363,\"y\":1.0818,\"z\":87.5054},\"rot\":{\"x\":359.9792,\"y\":89.9739,\"z\":359.9832}},\"7234af\":{\"lock\":false,\"pos\":{\"x\":-25.1063,\"y\":1.6197,\"z\":11.1563},\"rot\":{\"x\":0.0683,\"y\":135.1794,\"z\":0.0448}},\"72caa1\":{\"lock\":false,\"pos\":{\"x\":-16.6392,\"y\":1.3606,\"z\":-65.5811},\"rot\":{\"x\":0.0208,\"y\":269.9983,\"z\":0.0168}},\"75298f\":{\"lock\":false,\"pos\":{\"x\":-3.956,\"y\":1.5975,\"z\":-10.4412},\"rot\":{\"x\":359.9197,\"y\":270.025,\"z\":0.0168}},\"779aa6\":{\"lock\":false,\"pos\":{\"x\":-16.6402,\"y\":1.3549,\"z\":-84.8182},\"rot\":{\"x\":0.0208,\"y\":270.0096,\"z\":0.0168}},\"7929dd\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6303,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":270,\"z\":180.0168}},\"7af9ff\":{\"lock\":false,\"pos\":{\"x\":-26.2999,\"y\":1.2688,\"z\":-76.9454},\"rot\":{\"x\":359.9792,\"y\":90.0002,\"z\":359.9832}},\"7f7566\":{\"lock\":false,\"pos\":{\"x\":-22.6157,\"y\":1.3087,\"z\":-76.946},\"rot\":{\"x\":0.0168,\"y\":180.0001,\"z\":359.9792}},\"825d74\":{\"lock\":false,\"pos\":{\"x\":-30.2243,\"y\":1.6202,\"z\":-11.51},\"rot\":{\"x\":0.0169,\"y\":179.9742,\"z\":0.0799}},\"848191\":{\"lock\":false,\"pos\":{\"x\":-27.2223,\"y\":1.6194,\"z\":0.1067},\"rot\":{\"x\":0.0799,\"y\":89.9749,\"z\":359.9831}},\"84a141\":{\"lock\":false,\"pos\":{\"x\":-16.6403,\"y\":1.3576,\"z\":-75.7054},\"rot\":{\"x\":0.0208,\"y\":270.0334,\"z\":0.0168}},\"8551e1\":{\"lock\":false,\"pos\":{\"x\":-3.956,\"y\":1.5975,\"z\":-10.4412},\"rot\":{\"x\":359.9197,\"y\":270.0032,\"z\":0.0168}},\"855920\":{\"lock\":false,\"pos\":{\"x\":-23.7787,\"y\":1.6157,\"z\":3.6187},\"rot\":{\"x\":0.0166,\"y\":180.1407,\"z\":0.08}},\"875dca\":{\"lock\":false,\"pos\":{\"x\":-16.6336,\"y\":1.3569,\"z\":-78.1716},\"rot\":{\"x\":0.0218,\"y\":266.6161,\"z\":0.0155}},\"888fcc\":{\"lock\":false,\"pos\":{\"x\":-19.2998,\"y\":1.3657,\"z\":-84.8182},\"rot\":{\"x\":0.0208,\"y\":270.0035,\"z\":0.0168}},\"8b0a9e\":{\"lock\":false,\"pos\":{\"x\":-16.639,\"y\":1.361,\"z\":-64.3414},\"rot\":{\"x\":0.0208,\"y\":269.9907,\"z\":0.0168}},\"8e8dcf\":{\"lock\":false,\"pos\":{\"x\":-22.6157,\"y\":1.311,\"z\":-69.0756},\"rot\":{\"x\":0.0168,\"y\":180,\"z\":359.9792}},\"8f57db\":{\"lock\":false,\"pos\":{\"x\":-22.6169,\"y\":1.3133,\"z\":-61.2414},\"rot\":{\"x\":0.0168,\"y\":179.9999,\"z\":359.9792}},\"90cfdb\":{\"lock\":false,\"pos\":{\"x\":-16.6385,\"y\":1.3554,\"z\":-83.5415},\"rot\":{\"x\":0.0208,\"y\":270.0007,\"z\":0.0168}},\"92c727\":{\"lock\":false,\"pos\":{\"x\":-26.3001,\"y\":1.2734,\"z\":-61.241},\"rot\":{\"x\":359.9792,\"y\":89.9999,\"z\":359.9832}},\"92cda8\":{\"lock\":false,\"pos\":{\"x\":-22.6157,\"y\":1.311,\"z\":-69.0756},\"rot\":{\"x\":0.0209,\"y\":269.6944,\"z\":0.0167}},\"969654\":{\"lock\":false,\"pos\":{\"x\":-22.6139,\"y\":1.3156,\"z\":-53.4338},\"rot\":{\"x\":0.0208,\"y\":270,\"z\":0.0168}},\"972bf0\":{\"lock\":false,\"pos\":{\"x\":-10.4852,\"y\":1.0804,\"z\":82.7727},\"rot\":{\"x\":359.9792,\"y\":89.9804,\"z\":359.9832}},\"97e7a1\":{\"lock\":false,\"pos\":{\"x\":-2.7248,\"y\":1.6208,\"z\":0.3733},\"rot\":{\"x\":359.9197,\"y\":270.0001,\"z\":0.0168}},\"9cd95a\":{\"lock\":false,\"pos\":{\"x\":-16.6335,\"y\":1.3615,\"z\":-62.4568},\"rot\":{\"x\":0.0218,\"y\":266.5908,\"z\":0.0155}},\"9e80b9\":{\"lock\":false,\"pos\":{\"x\":-16.64,\"y\":1.3638,\"z\":-54.6207},\"rot\":{\"x\":0.0208,\"y\":269.9772,\"z\":0.0168}},\"a01d1c\":{\"lock\":false,\"pos\":{\"x\":-10.4852,\"y\":1.0791,\"z\":78.1727},\"rot\":{\"x\":359.9792,\"y\":89.9802,\"z\":359.9832}},\"a09177\":{\"lock\":false,\"pos\":{\"x\":-2.6886,\"y\":1.6191,\"z\":-5.0469},\"rot\":{\"x\":359.9197,\"y\":269.9995,\"z\":0.0168}},\"a13075\":{\"lock\":false,\"pos\":{\"x\":-22.6169,\"y\":1.3064,\"z\":-84.8185},\"rot\":{\"x\":0.0208,\"y\":269.9926,\"z\":0.0168}},\"a6ca48\":{\"lock\":false,\"pos\":{\"x\":-26.2999,\"y\":1.2711,\"z\":-69.0603},\"rot\":{\"x\":359.9792,\"y\":90.0002,\"z\":359.9832}},\"a7606b\":{\"lock\":false,\"pos\":{\"x\":-16.6466,\"y\":1.3592,\"z\":-70.295},\"rot\":{\"x\":0.0218,\"y\":266.5696,\"z\":0.0155}},\"a95b8c\":{\"lock\":false,\"pos\":{\"x\":-22.6169,\"y\":1.3064,\"z\":-84.8185},\"rot\":{\"x\":0.0168,\"y\":179.9999,\"z\":359.9792}},\"aaeac7\":{\"lock\":false,\"pos\":{\"x\":-16.6401,\"y\":1.36,\"z\":-67.8206},\"rot\":{\"x\":0.0208,\"y\":270.0258,\"z\":0.0168}},\"ab52dc\":{\"lock\":false,\"pos\":{\"x\":-26.2996,\"y\":1.2665,\"z\":-84.818},\"rot\":{\"x\":359.9792,\"y\":90.0128,\"z\":359.9832}},\"b675fd\":{\"lock\":false,\"pos\":{\"x\":-16.6403,\"y\":1.3596,\"z\":-69.0603},\"rot\":{\"x\":0.0208,\"y\":270.0005,\"z\":0.0168}},\"ba989d\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6281,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":270,\"z\":180.0168}},\"bb1f89\":{\"lock\":false,\"pos\":{\"x\":-25.0849,\"y\":1.6131,\"z\":-11.4046},\"rot\":{\"x\":359.9554,\"y\":224.9996,\"z\":0.0684}},\"bde4a6\":{\"lock\":false,\"pos\":{\"x\":-16.64,\"y\":1.3641,\"z\":-53.3904},\"rot\":{\"x\":0.0208,\"y\":269.9887,\"z\":0.0168}},\"be9e91\":{\"lock\":false,\"pos\":{\"x\":-26.3002,\"y\":1.2711,\"z\":-69.0606},\"rot\":{\"x\":359.9792,\"y\":89.9998,\"z\":359.9832}},\"c0e7b1\":{\"lock\":false,\"pos\":{\"x\":-16.6414,\"y\":1.3546,\"z\":-86.0129},\"rot\":{\"x\":0.0218,\"y\":266.5644,\"z\":0.0155}},\"c1aa7a\":{\"lock\":false,\"pos\":{\"x\":-26.2995,\"y\":1.2665,\"z\":-84.8178},\"rot\":{\"x\":359.9792,\"y\":90.0001,\"z\":359.9832}},\"c2ef97\":{\"lock\":false,\"pos\":{\"x\":-22.6139,\"y\":1.3156,\"z\":-53.4381},\"rot\":{\"x\":0.0168,\"y\":179.9999,\"z\":359.9792}},\"c72f87\":{\"lock\":false,\"pos\":{\"x\":-19.2998,\"y\":1.3076,\"z\":-84.8182},\"rot\":{\"x\":0.0208,\"y\":269.9951,\"z\":0.0168}},\"cbce2b\":{\"lock\":false,\"pos\":{\"x\":0.1527,\"y\":1.6285,\"z\":-9.2222},\"rot\":{\"x\":359.9197,\"y\":270.0159,\"z\":0.0168}},\"ccf9a8\":{\"lock\":false,\"pos\":{\"x\":-27.2589,\"y\":1.6173,\"z\":-7.4508},\"rot\":{\"x\":0.0799,\"y\":90.0004,\"z\":359.9831}},\"ce1703\":{\"lock\":false,\"pos\":{\"x\":-19.2958,\"y\":1.3122,\"z\":-69.0607},\"rot\":{\"x\":0.0208,\"y\":269.9961,\"z\":0.0168}},\"d17c37\":{\"lock\":false,\"pos\":{\"x\":-26.9457,\"y\":1.6213,\"z\":7.5712},\"rot\":{\"x\":359.9201,\"y\":270,\"z\":0.0169}},\"d3d270\":{\"lock\":false,\"pos\":{\"x\":-16.6396,\"y\":1.3573,\"z\":-76.9456},\"rot\":{\"x\":0.0208,\"y\":270.0207,\"z\":0.0168}},\"d4082a\":{\"lock\":false,\"pos\":{\"x\":-19.2936,\"y\":1.3099,\"z\":-76.9415},\"rot\":{\"x\":0.0208,\"y\":269.9962,\"z\":0.0168}},\"d6fdbf\":{\"lock\":false,\"pos\":{\"x\":-16.6401,\"y\":1.3619,\"z\":-61.231},\"rot\":{\"x\":0.0208,\"y\":270.024,\"z\":0.0168}},\"d70f9e\":{\"lock\":false,\"pos\":{\"x\":-26.3,\"y\":1.2757,\"z\":-53.4368},\"rot\":{\"x\":359.9792,\"y\":89.9999,\"z\":359.9832}},\"d7ba40\":{\"lock\":false,\"pos\":{\"x\":-30.2242,\"y\":1.6225,\"z\":-3.83},\"rot\":{\"x\":359.9832,\"y\":0.0105,\"z\":359.92}},\"d8e1ad\":{\"lock\":false,\"pos\":{\"x\":-16.6401,\"y\":1.3569,\"z\":-78.1756},\"rot\":{\"x\":0.0208,\"y\":270.0207,\"z\":0.0168}},\"d9f2c7\":{\"lock\":false,\"pos\":{\"x\":-16.6385,\"y\":1.3554,\"z\":-83.5415},\"rot\":{\"x\":0.0208,\"y\":269.9983,\"z\":0.0168}},\"d9fb86\":{\"lock\":false,\"pos\":{\"x\":-16.6396,\"y\":1.3573,\"z\":-76.9456},\"rot\":{\"x\":0.0208,\"y\":270.0086,\"z\":0.0168}},\"dcceb8\":{\"lock\":false,\"pos\":{\"x\":12.2502,\"y\":1.4727,\"z\":27.9861},\"rot\":{\"x\":359.9201,\"y\":270.0878,\"z\":0.0168}},\"de216f\":{\"lock\":false,\"pos\":{\"x\":-16.6401,\"y\":1.3622,\"z\":-60.001},\"rot\":{\"x\":0.0208,\"y\":270.0149,\"z\":0.0168}},\"e04b48\":{\"lock\":false,\"pos\":{\"x\":-16.6404,\"y\":1.3576,\"z\":-75.7053},\"rot\":{\"x\":0.0208,\"y\":270.0152,\"z\":0.0168}},\"e1786c\":{\"lock\":false,\"pos\":{\"x\":-16.6394,\"y\":1.3546,\"z\":-86.0186},\"rot\":{\"x\":0.0208,\"y\":269.9993,\"z\":0.0168}},\"e86318\":{\"lock\":false,\"pos\":{\"x\":-30.2243,\"y\":1.6349,\"z\":-7.7},\"rot\":{\"x\":359.9201,\"y\":270.0001,\"z\":180.0168}},\"f0d3cc\":{\"lock\":false,\"pos\":{\"x\":-16.64,\"y\":1.3642,\"z\":-53.3904},\"rot\":{\"x\":0.0208,\"y\":270.0119,\"z\":0.0168}},\"f30100\":{\"lock\":false,\"pos\":{\"x\":-30.2242,\"y\":1.6372,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":270,\"z\":180.0168}},\"f48116\":{\"lock\":false,\"pos\":{\"x\":12.2503,\"y\":1.4703,\"z\":19.9865},\"rot\":{\"x\":359.9201,\"y\":270.0402,\"z\":0.0168}},\"f69811\":{\"lock\":false,\"pos\":{\"x\":1.6964,\"y\":1.5583,\"z\":14.2788},\"rot\":{\"x\":359.9551,\"y\":224.998,\"z\":0.0687}},\"f7a65d\":{\"lock\":false,\"pos\":{\"x\":-16.64,\"y\":1.3645,\"z\":-52.152},\"rot\":{\"x\":0.0208,\"y\":270.0303,\"z\":0.0168}},\"f7bef5\":{\"lock\":false,\"pos\":{\"x\":-19.3,\"y\":1.3168,\"z\":-53.4358},\"rot\":{\"x\":0.0208,\"y\":270.0453,\"z\":0.0168}},\"f94187\":{\"lock\":false,\"pos\":{\"x\":-16.6401,\"y\":1.3622,\"z\":-60.001},\"rot\":{\"x\":0.0208,\"y\":270.0422,\"z\":0.0168}},\"fc1612\":{\"lock\":false,\"pos\":{\"x\":-16.6396,\"y\":1.3573,\"z\":-76.9456},\"rot\":{\"x\":0.0208,\"y\":270.0098,\"z\":0.0168}},\"fc27ff\":{\"lock\":false,\"pos\":{\"x\":-26.2991,\"y\":1.2721,\"z\":-65.5814},\"rot\":{\"x\":359.9792,\"y\":90.0019,\"z\":359.9832}},\"fc34bd\":{\"lock\":false,\"pos\":{\"x\":-10.4561,\"y\":1.0831,\"z\":91.8885},\"rot\":{\"x\":359.9792,\"y\":89.9725,\"z\":359.9832}},\"fc63ca\":{\"lock\":false,\"pos\":{\"x\":-19.2936,\"y\":1.368,\"z\":-76.9415},\"rot\":{\"x\":0.0208,\"y\":269.9999,\"z\":0.0168}},\"ffa2b2\":{\"lock\":false,\"pos\":{\"x\":-16.6402,\"y\":1.355,\"z\":-84.8182},\"rot\":{\"x\":0.0208,\"y\":269.9994,\"z\":0.0168}}}}",
"XmlUI": ""
},
{
"GUID": "bcfff6",
"Name": "Custom_Model",
"Transform": {
"posX": -8.439498,
"posY": 1.62632942,
"posZ": 68.39645,
"rotX": 0.0038283586,
"rotY": 270.000275,
"rotZ": 0.0139548341,
"scaleX": 2.21,
"scaleY": 0.46,
"scaleZ": 2.42
},
"Nickname": "The Dying Star",
"Description": "",
"GMNotes": "fancreations/campaign_dying_star.json",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0,
"a": 0.274509817
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomMesh": {
"MeshURL": "https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/798737729142922162/AD09D68EC542F778CCA3A4F5B33E17EF50AFE31B/",
"NormalURL": "",
"ColliderURL": "",
"Convex": true,
"MaterialIndex": 3,
"TypeIndex": 0,
"CustomShader": {
"SpecularColor": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"SpecularIntensity": 0.0,
"SpecularSharpness": 2.0,
"FresnelStrength": 0.0
},
"CastShadows": true
},
"LuaScript": "\r\nfunction onload(saved_data)\r\n createDownloadButton()\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make Download button\r\nfunction createDownloadButton()\r\n self.createButton({\r\n label=\"Download\", click_function=\"buttonClick_download\", function_owner=self,\r\n position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800,\r\n font_size=150, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by download button,\r\nfunction buttonClick_download()\r\n local params = { url = self.getGMNotes(), replace = self.guid }\r\n Global.call('placeholder_download', params)\r\nend\r\n",
"LuaScriptState": "{\"ml\":{\"9ae382\":{\"lock\":false,\"pos\":{\"x\":-3.3515,\"y\":1.4052,\"z\":13.818},\"rot\":{\"x\":359.9832,\"y\":-0.0001,\"z\":359.9197}},\"b310b9\":{\"lock\":false,\"pos\":{\"x\":8.6044,\"y\":1.2859,\"z\":4.9796},\"rot\":{\"x\":0.08,\"y\":89.9997,\"z\":359.9831}},\"c2a55d\":{\"lock\":false,\"pos\":{\"x\":8.6023,\"y\":1.2838,\"z\":-2.2398},\"rot\":{\"x\":0.08,\"y\":89.9987,\"z\":359.9831}}}}",
"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
}
}
]
},
{
"GUID": "d713f4",
"Name": "Custom_Model",
"Transform": {
"posX": -8.252559,
"posY": 1.62559509,
"posZ": 69.2681351,
"rotX": 359.988739,
"rotY": 269.997253,
"rotZ": 0.008655346,
"scaleX": 2.21,
"scaleY": 0.46,
"scaleZ": 2.42
},
"Nickname": "Dark Matter",
"Description": "Final Release",
"GMNotes": "fancreations/campaign_dark_matter.json",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0,
"a": 0.274509817
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomMesh": {
"MeshURL": "https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/1699532377258479383/73EBF45477C1D927159E5993D99AD144641037EA/",
"NormalURL": "",
"ColliderURL": "",
"Convex": true,
"MaterialIndex": 3,
"TypeIndex": 0,
"CustomShader": {
"SpecularColor": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"SpecularIntensity": 0.0,
"SpecularSharpness": 2.0,
"FresnelStrength": 0.0
},
"CastShadows": true
},
"LuaScript": "\r\nfunction onload(saved_data)\r\n createDownloadButton()\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make Download button\r\nfunction createDownloadButton()\r\n self.createButton({\r\n label=\"Download\", click_function=\"buttonClick_download\", function_owner=self,\r\n position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800,\r\n font_size=150, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by download button,\r\nfunction buttonClick_download()\r\n local params = { url = self.getGMNotes(), replace = self.guid }\r\n Global.call('placeholder_download', params)\r\nend\r\n",
"LuaScriptState": "{\"ml\":{\"045c41\":{\"lock\":false,\"pos\":{\"x\":-27.5163,\"y\":1.621,\"z\":2.7626},\"rot\":{\"x\":0.0412,\"y\":45.0179,\"z\":359.9676}},\"069d46\":{\"lock\":false,\"pos\":{\"x\":-2.7247,\"y\":1.6159,\"z\":0.3733},\"rot\":{\"x\":0.0168,\"y\":180.0195,\"z\":0.0803}},\"0aa185\":{\"lock\":false,\"pos\":{\"x\":-1.46690142154694,\"y\":1.47562432289124,\"z\":-26.9304046630859},\"rot\":{\"x\":359.920135498047,\"y\":270.008209228516,\"z\":0.0168602559715509}},\"0e856b\":{\"lock\":false,\"pos\":{\"x\":0.8693,\"y\":1.5538,\"z\":-4.9902},\"rot\":{\"x\":359.9197,\"y\":270.0005,\"z\":0.0169}},\"114fee\":{\"lock\":false,\"pos\":{\"x\":-30.2243,\"y\":1.6349,\"z\":-7.7},\"rot\":{\"x\":359.9201,\"y\":270.0276,\"z\":180.0168}},\"1175f2\":{\"lock\":false,\"pos\":{\"x\":-3.80500054359436,\"y\":1.58237993717194,\"z\":-15.0130023956299},\"rot\":{\"x\":359.919738769531,\"y\":269.996978759766,\"z\":0.0168421547859907}},\"13bc7d\":{\"lock\":true,\"pos\":{\"x\":-33.1967010498047,\"y\":1.61310005187988,\"z\":30.128999710083},\"rot\":{\"x\":359.983093261719,\"y\":0,\"z\":359.920104980469}},\"1f1e9f\":{\"lock\":false,\"pos\":{\"x\":-20.0709,\"y\":1.6101,\"z\":2.256},\"rot\":{\"x\":359.9316,\"y\":314.9919,\"z\":359.9554}},\"2157cc\":{\"lock\":false,\"pos\":{\"x\":-33.1007,\"y\":1.6286,\"z\":2.4472},\"rot\":{\"x\":359.9109,\"y\":315.0142,\"z\":359.9155}},\"267216\":{\"lock\":false,\"pos\":{\"x\":-12.2907028198242,\"y\":1.49070179462433,\"z\":-26.9724044799805},\"rot\":{\"x\":359.920135498047,\"y\":269.994995117188,\"z\":0.0168787688016891}},\"26b4a0\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6133,\"z\":-3.83},\"rot\":{\"x\":359.9831,\"y\":359.9544,\"z\":359.9201}},\"2853ba\":{\"lock\":false,\"pos\":{\"x\":-3.9277,\"y\":1.7588,\"z\":5.7572},\"rot\":{\"x\":359.9197,\"y\":270.0002,\"z\":180.0168}},\"2863a5\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6212,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":270.0001,\"z\":180.0168}},\"29032c\":{\"lock\":false,\"pos\":{\"x\":-8.7785,\"y\":1.6356,\"z\":5.8505},\"rot\":{\"x\":359.9214,\"y\":269.9991,\"z\":0.0179}},\"2a01d2\":{\"lock\":false,\"pos\":{\"x\":-8.4946,\"y\":1.6432,\"z\":0.2536},\"rot\":{\"x\":359.9219,\"y\":270,\"z\":180.0171}},\"2aafdf\":{\"lock\":false,\"pos\":{\"x\":-20.5002,\"y\":1.6112,\"z\":3.8116},\"rot\":{\"x\":359.9554,\"y\":225.0337,\"z\":0.0684}},\"2b0d9e\":{\"lock\":false,\"pos\":{\"x\":-11.4866,\"y\":1.6145,\"z\":11.598},\"rot\":{\"x\":359.9201,\"y\":270.0001,\"z\":0.0168}},\"2bd90b\":{\"lock\":false,\"pos\":{\"x\":12.2505006790161,\"y\":1.47031617164612,\"z\":19.9863033294678},\"rot\":{\"x\":359.920104980469,\"y\":270.011779785156,\"z\":0.0168575774878263}},\"2bf6e7\":{\"lock\":false,\"pos\":{\"x\":-30.2235,\"y\":1.6383,\"z\":3.8584},\"rot\":{\"x\":359.9201,\"y\":270,\"z\":180.0168}},\"2dbbbf\":{\"lock\":false,\"pos\":{\"x\":-23.6763,\"y\":1.6303,\"z\":7.5762},\"rot\":{\"x\":359.9201,\"y\":270.0001,\"z\":180.0168}},\"2e3d6e\":{\"lock\":false,\"pos\":{\"x\":1.6976,\"y\":1.5583,\"z\":14.2785},\"rot\":{\"x\":359.9551,\"y\":225.0016,\"z\":0.0687}},\"2ebcda\":{\"lock\":false,\"pos\":{\"x\":12.2493019104004,\"y\":1.46325051784515,\"z\":-4.01380062103271},\"rot\":{\"x\":359.920104980469,\"y\":270.040679931641,\"z\":0.0168172847479582}},\"31022c\":{\"lock\":false,\"pos\":{\"x\":-36.7714,\"y\":1.6316,\"z\":-3.8293},\"rot\":{\"x\":359.9833,\"y\":0.1069,\"z\":359.92}},\"32039e\":{\"lock\":false,\"pos\":{\"x\":12.2501029968262,\"y\":1.46089386940002,\"z\":-12.0141010284424},\"rot\":{\"x\":359.920104980469,\"y\":270.014068603516,\"z\":0.0168543010950089}},\"335087\":{\"lock\":false,\"pos\":{\"x\":-3.956,\"y\":1.5975,\"z\":-10.4416},\"rot\":{\"x\":359.9197,\"y\":269.9998,\"z\":0.0168}},\"361798\":{\"lock\":false,\"pos\":{\"x\":-8.7785,\"y\":1.6356,\"z\":5.8505},\"rot\":{\"x\":359.922,\"y\":269.9999,\"z\":0.0167}},\"37e3f9\":{\"lock\":false,\"pos\":{\"x\":-23.6766,\"y\":1.6258,\"z\":-7.7},\"rot\":{\"x\":359.9201,\"y\":269.9989,\"z\":0.0168}},\"3af545\":{\"lock\":false,\"pos\":{\"x\":-30.2431,\"y\":1.6372,\"z\":-0.0303},\"rot\":{\"x\":359.9201,\"y\":270.0093,\"z\":0.0168}},\"3e4d11\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6189,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9992,\"z\":0.0168}},\"4006aa\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6156,\"z\":3.86},\"rot\":{\"x\":359.9831,\"y\":359.9222,\"z\":359.9201}},\"42dace\":{\"lock\":false,\"pos\":{\"x\":-26.8078,\"y\":1.6211,\"z\":7.5985},\"rot\":{\"x\":359.9201,\"y\":270.0088,\"z\":0.0169}},\"44b0c5\":{\"lock\":false,\"pos\":{\"x\":-20.514,\"y\":1.61,\"z\":-0.1438},\"rot\":{\"x\":0.0799,\"y\":90,\"z\":359.9831}},\"4616fc\":{\"lock\":false,\"pos\":{\"x\":-3.9277,\"y\":1.7348,\"z\":5.7572},\"rot\":{\"x\":359.9197,\"y\":269.9999,\"z\":180.0168}},\"48214a\":{\"lock\":false,\"pos\":{\"x\":-2.7249,\"y\":1.6208,\"z\":0.3732},\"rot\":{\"x\":0.0168,\"y\":179.9909,\"z\":0.0803}},\"489c78\":{\"lock\":false,\"pos\":{\"x\":-23.6663,\"y\":1.6303,\"z\":7.5701},\"rot\":{\"x\":359.9201,\"y\":270.0166,\"z\":180.0168}},\"4a20aa\":{\"lock\":false,\"pos\":{\"x\":-2.6894,\"y\":1.6191,\"z\":-5.0491},\"rot\":{\"x\":0.0169,\"y\":179.9562,\"z\":0.0802}},\"500d5d\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6156,\"z\":3.86},\"rot\":{\"x\":359.9833,\"y\":0.1274,\"z\":359.92}},\"513118\":{\"lock\":false,\"pos\":{\"x\":-23.6744,\"y\":1.6269,\"z\":-3.8304},\"rot\":{\"x\":359.9201,\"y\":270.0002,\"z\":180.0168}},\"534034\":{\"lock\":false,\"pos\":{\"x\":-2.7119,\"y\":1.6256,\"z\":0.372},\"rot\":{\"x\":0.0169,\"y\":179.9638,\"z\":0.0802}},\"535781\":{\"lock\":false,\"pos\":{\"x\":-2.7248,\"y\":1.6208,\"z\":0.3735},\"rot\":{\"x\":0.0168,\"y\":180.0242,\"z\":0.0803}},\"536963\":{\"lock\":false,\"pos\":{\"x\":-3.9562,\"y\":1.5975,\"z\":-10.4427},\"rot\":{\"x\":359.9197,\"y\":269.9991,\"z\":0.0168}},\"53a47f\":{\"lock\":false,\"pos\":{\"x\":-2.6885,\"y\":1.6191,\"z\":-5.0485},\"rot\":{\"x\":0.0168,\"y\":180.0209,\"z\":0.0803}},\"592384\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6281,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9988,\"z\":0.0168}},\"5d3df0\":{\"lock\":false,\"pos\":{\"x\":-30.2242,\"y\":1.6394,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":180.0168}},\"5d4418\":{\"lock\":false,\"pos\":{\"x\":-17.1199,\"y\":1.6212,\"z\":7.5701},\"rot\":{\"x\":359.9201,\"y\":270.0001,\"z\":180.0168}},\"5f2346\":{\"lock\":false,\"pos\":{\"x\":-36.7731,\"y\":1.6339,\"z\":3.86},\"rot\":{\"x\":359.9832,\"y\":0.0019,\"z\":359.92}},\"5fc1a6\":{\"lock\":false,\"pos\":{\"x\":-33.5324,\"y\":1.6277,\"z\":-1.6032},\"rot\":{\"x\":359.9316,\"y\":315.0352,\"z\":359.9554}},\"607420\":{\"lock\":false,\"pos\":{\"x\":-8.4432,\"y\":1.6496,\"z\":5.7611},\"rot\":{\"x\":359.9218,\"y\":270,\"z\":180.0166}},\"61fcd5\":{\"lock\":false,\"pos\":{\"x\":-2.7247,\"y\":1.6208,\"z\":0.3734},\"rot\":{\"x\":0.0168,\"y\":180.0296,\"z\":0.0803}},\"634def\":{\"lock\":false,\"pos\":{\"x\":-3.956,\"y\":1.5975,\"z\":-10.4414},\"rot\":{\"x\":359.9197,\"y\":269.9995,\"z\":0.0168}},\"63aad4\":{\"lock\":false,\"pos\":{\"x\":12.2506017684937,\"y\":1.45853734016418,\"z\":-20.0140037536621},\"rot\":{\"x\":359.920104980469,\"y\":270.023742675781,\"z\":0.0168408546596766}},\"63f66e\":{\"lock\":false,\"pos\":{\"x\":-36.7719,\"y\":1.6486,\"z\":7.5695},\"rot\":{\"x\":359.9201,\"y\":269.9996,\"z\":180.0168}},\"64ad41\":{\"lock\":false,\"pos\":{\"x\":-30.2242,\"y\":1.6372,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":270.0275,\"z\":180.0168}},\"66dad0\":{\"lock\":true,\"pos\":{\"x\":-58.557300567627,\"y\":1.69340002536774,\"z\":-18.8325004577637},\"rot\":{\"x\":359.920104980469,\"y\":269.999908447266,\"z\":0.0169000010937452}},\"6720a1\":{\"lock\":false,\"pos\":{\"x\":-2.7246,\"y\":1.6159,\"z\":0.3733},\"rot\":{\"x\":0.0168,\"y\":180,\"z\":0.0803}},\"67a96b\":{\"lock\":false,\"pos\":{\"x\":-23.6766,\"y\":1.6303,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":269.9991,\"z\":0.0168}},\"686756\":{\"lock\":false,\"pos\":{\"x\":-3.9561,\"y\":1.5975,\"z\":-10.4416},\"rot\":{\"x\":359.9196,\"y\":269.998,\"z\":0.0171}},\"69ea39\":{\"lock\":false,\"pos\":{\"x\":-17.1202,\"y\":1.6189,\"z\":-0.0301},\"rot\":{\"x\":359.9201,\"y\":270.0276,\"z\":180.0168}},\"6b5ddc\":{\"lock\":false,\"pos\":{\"x\":-8.3461,\"y\":1.688,\"z\":5.7631},\"rot\":{\"x\":359.9217,\"y\":270,\"z\":180.0172}},\"6ea278\":{\"lock\":false,\"pos\":{\"x\":-20.6489,\"y\":1.609,\"z\":-4.1141},\"rot\":{\"x\":359.9312,\"y\":314.516,\"z\":359.956}},\"701dd2\":{\"lock\":false,\"pos\":{\"x\":-2.7251,\"y\":1.6208,\"z\":0.3732},\"rot\":{\"x\":0.0168,\"y\":179.9979,\"z\":0.0803}},\"7073a0\":{\"lock\":false,\"pos\":{\"x\":-3.956,\"y\":1.5975,\"z\":-10.4415},\"rot\":{\"x\":359.9197,\"y\":269.9982,\"z\":0.0168}},\"70fb89\":{\"lock\":false,\"pos\":{\"x\":-2.6888,\"y\":1.5973,\"z\":-5.0485},\"rot\":{\"x\":0.0168,\"y\":180.0061,\"z\":0.0803}},\"721fcb\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6133,\"z\":-3.83},\"rot\":{\"x\":359.9832,\"y\":0.0399,\"z\":359.92}},\"7234af\":{\"lock\":false,\"pos\":{\"x\":-30.2252,\"y\":1.6225,\"z\":-3.8296},\"rot\":{\"x\":359.9942,\"y\":359.9567,\"z\":0.105}},\"725a4c\":{\"lock\":false,\"pos\":{\"x\":-26.9678,\"y\":1.6179,\"z\":-3.963},\"rot\":{\"x\":359.9201,\"y\":270.0172,\"z\":0.0168}},\"7295df\":{\"lock\":false,\"pos\":{\"x\":-23.6767,\"y\":1.6281,\"z\":-0.0299},\"rot\":{\"x\":359.9201,\"y\":270.0277,\"z\":180.0168}},\"72ff1f\":{\"lock\":false,\"pos\":{\"x\":-3.9269,\"y\":1.7492,\"z\":5.756},\"rot\":{\"x\":359.9197,\"y\":269.9728,\"z\":180.0169}},\"794376\":{\"lock\":true,\"pos\":{\"x\":-22.7847995758057,\"y\":1.64330005645752,\"z\":-30.1574001312256},\"rot\":{\"x\":0.0169000010937452,\"y\":180,\"z\":0.0798999965190887}},\"799bbe\":{\"lock\":false,\"pos\":{\"x\":-20.4091,\"y\":1.6121,\"z\":7.5345},\"rot\":{\"x\":359.9201,\"y\":270.0114,\"z\":0.0169}},\"7de8a9\":{\"lock\":false,\"pos\":{\"x\":1.6975,\"y\":1.5583,\"z\":14.2786},\"rot\":{\"x\":359.9551,\"y\":224.9998,\"z\":0.0687}},\"7eb60b\":{\"lock\":false,\"pos\":{\"x\":12.2504014968872,\"y\":1.47267174720764,\"z\":27.9864044189453},\"rot\":{\"x\":359.920135498047,\"y\":270.001495361328,\"z\":0.0168716460466385}},\"803086\":{\"lock\":false,\"pos\":{\"x\":-3.9446,\"y\":1.7685,\"z\":5.7514},\"rot\":{\"x\":359.9197,\"y\":269.9995,\"z\":180.0168}},\"8033ba\":{\"lock\":false,\"pos\":{\"x\":-27.3532,\"y\":1.6185,\"z\":-2.6717},\"rot\":{\"x\":359.9376,\"y\":314.9674,\"z\":0.0453}},\"812e2c\":{\"lock\":false,\"pos\":{\"x\":-30.2242,\"y\":1.6372,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":180.0168}},\"894e00\":{\"lock\":false,\"pos\":{\"x\":-8.1015,\"y\":1.6972,\"z\":5.7465},\"rot\":{\"x\":359.9215,\"y\":270.0015,\"z\":180.017}},\"8b9040\":{\"lock\":false,\"pos\":{\"x\":-8.2344,\"y\":1.649,\"z\":17.9789},\"rot\":{\"x\":0.0823,\"y\":89.9971,\"z\":359.9924}},\"8baacc\":{\"lock\":false,\"pos\":{\"x\":-3.9276,\"y\":1.7348,\"z\":5.7574},\"rot\":{\"x\":359.9197,\"y\":270.0001,\"z\":180.0168}},\"8bc3e1\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6189,\"z\":-0.0297},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":180.0168}},\"8bc697\":{\"lock\":false,\"pos\":{\"x\":-15.1924,\"y\":1.6587,\"z\":18.0143},\"rot\":{\"x\":0.0799,\"y\":89.9783,\"z\":359.9831}},\"8c6465\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6189,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":270,\"z\":180.0168}},\"8cf22d\":{\"lock\":false,\"pos\":{\"x\":-17.1098,\"y\":1.6211,\"z\":7.5702},\"rot\":{\"x\":359.9201,\"y\":270.0219,\"z\":180.0168}},\"8cfe99\":{\"lock\":false,\"pos\":{\"x\":12.2504034042358,\"y\":1.46560490131378,\"z\":3.98619985580444},\"rot\":{\"x\":359.920104980469,\"y\":270.017883300781,\"z\":0.0168493706732988}},\"908fff\":{\"lock\":false,\"pos\":{\"x\":-11.5119,\"y\":1.6402,\"z\":8.3989},\"rot\":{\"x\":359.9201,\"y\":270.0008,\"z\":0.0168}},\"91a822\":{\"lock\":false,\"pos\":{\"x\":-8.3678,\"y\":1.6591,\"z\":5.7427},\"rot\":{\"x\":359.9217,\"y\":270.0002,\"z\":180.0162}},\"92718e\":{\"lock\":false,\"pos\":{\"x\":-8.1998,\"y\":1.6107,\"z\":14.1116},\"rot\":{\"x\":359.9215,\"y\":270.0006,\"z\":180.0164}},\"92a72d\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6281,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":270.0275,\"z\":180.0168}},\"92ab86\":{\"lock\":false,\"pos\":{\"x\":-2.7257,\"y\":1.6256,\"z\":0.3762},\"rot\":{\"x\":0.0168,\"y\":180.001,\"z\":0.0803}},\"94b412\":{\"lock\":false,\"pos\":{\"x\":-30.2235,\"y\":1.6251,\"z\":3.8602},\"rot\":{\"x\":359.9816,\"y\":0.0207,\"z\":359.8866}},\"950eb5\":{\"lock\":false,\"pos\":{\"x\":-20.1861,\"y\":1.6108,\"z\":3.9106},\"rot\":{\"x\":359.9316,\"y\":314.9879,\"z\":359.9554}},\"973c5d\":{\"lock\":false,\"pos\":{\"x\":-2.6886,\"y\":1.6143,\"z\":-5.0485},\"rot\":{\"x\":0.0169,\"y\":179.9583,\"z\":0.0802}},\"978a0e\":{\"lock\":false,\"pos\":{\"x\":1.6974,\"y\":1.5583,\"z\":14.2786},\"rot\":{\"x\":359.9551,\"y\":224.999,\"z\":0.0687}},\"97fd5a\":{\"lock\":false,\"pos\":{\"x\":-36.7721,\"y\":1.6463,\"z\":-0.0309},\"rot\":{\"x\":359.9201,\"y\":270,\"z\":180.0168}},\"99db87\":{\"lock\":true,\"pos\":{\"x\":-58.5584983825684,\"y\":1.69739997386932,\"z\":8.3577995300293},\"rot\":{\"x\":359.920104980469,\"y\":270.000061035156,\"z\":0.0169000010937452}},\"9a1f65\":{\"lock\":false,\"pos\":{\"x\":-20.5169,\"y\":1.6101,\"z\":0.1021},\"rot\":{\"x\":359.9201,\"y\":270.0094,\"z\":0.0169}},\"9c1257\":{\"lock\":false,\"pos\":{\"x\":-3.9274,\"y\":1.7299,\"z\":5.7579},\"rot\":{\"x\":359.9197,\"y\":269.9991,\"z\":180.0168}},\"9c9fe8\":{\"lock\":false,\"pos\":{\"x\":-23.6766,\"y\":1.6281,\"z\":-0.0174},\"rot\":{\"x\":359.9201,\"y\":270.0035,\"z\":180.0168}},\"9cef1b\":{\"lock\":false,\"pos\":{\"x\":-15.1508,\"y\":1.6203,\"z\":14.1589},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":180.0168}},\"9fb0a6\":{\"lock\":false,\"pos\":{\"x\":-36.7733,\"y\":1.6463,\"z\":-0.0307},\"rot\":{\"x\":359.9201,\"y\":270.0145,\"z\":180.0168}},\"a31603\":{\"lock\":false,\"pos\":{\"x\":1.6976,\"y\":1.5583,\"z\":14.2787},\"rot\":{\"x\":359.9551,\"y\":224.9998,\"z\":0.0687}},\"a3fb6c\":{\"lock\":false,\"pos\":{\"x\":-30.422,\"y\":1.6509,\"z\":-0.2053},\"rot\":{\"x\":359.9218,\"y\":269.9958,\"z\":0.0173}},\"a475de\":{\"lock\":false,\"pos\":{\"x\":-2.6886,\"y\":1.6191,\"z\":-5.0485},\"rot\":{\"x\":0.0168,\"y\":180.0001,\"z\":0.0803}},\"a4845c\":{\"lock\":false,\"pos\":{\"x\":-8.5177,\"y\":1.6449,\"z\":5.813},\"rot\":{\"x\":359.9219,\"y\":270.0001,\"z\":180.0166}},\"a7d0a1\":{\"lock\":false,\"pos\":{\"x\":-3.956,\"y\":1.5975,\"z\":-10.4412},\"rot\":{\"x\":359.9197,\"y\":270.0027,\"z\":0.0168}},\"a7d828\":{\"lock\":false,\"pos\":{\"x\":-8.1905,\"y\":1.61,\"z\":11.8587},\"rot\":{\"x\":359.9215,\"y\":269.9995,\"z\":180.0173}},\"a97eaf\":{\"lock\":false,\"pos\":{\"x\":1.7207,\"y\":1.5583,\"z\":14.3019},\"rot\":{\"x\":359.9544,\"y\":225.5961,\"z\":0.0682}},\"a9aa44\":{\"lock\":false,\"pos\":{\"x\":-17.1201,\"y\":1.6167,\"z\":-7.7},\"rot\":{\"x\":359.9201,\"y\":270,\"z\":180.0168}},\"abb4b3\":{\"lock\":false,\"pos\":{\"x\":1.6985,\"y\":1.5583,\"z\":14.278},\"rot\":{\"x\":359.9551,\"y\":224.9979,\"z\":0.0687}},\"ad1bfb\":{\"lock\":false,\"pos\":{\"x\":-11.6967,\"y\":1.6155,\"z\":14.1497},\"rot\":{\"x\":359.9201,\"y\":270.0001,\"z\":180.0168}},\"aff3b1\":{\"lock\":false,\"pos\":{\"x\":1.7021,\"y\":1.5583,\"z\":14.2777},\"rot\":{\"x\":359.9551,\"y\":224.9998,\"z\":0.0687}},\"b14b17\":{\"lock\":false,\"pos\":{\"x\":-11.7333,\"y\":1.6585,\"z\":18.0345},\"rot\":{\"x\":0.0796,\"y\":90.0178,\"z\":0.5566}},\"b4ac2d\":{\"lock\":false,\"pos\":{\"x\":-20.3355,\"y\":1.6098,\"z\":0.026},\"rot\":{\"x\":359.9201,\"y\":270.0095,\"z\":0.0169}},\"b4b2b4\":{\"lock\":false,\"pos\":{\"x\":-33.1748,\"y\":1.6268,\"z\":-2.6772},\"rot\":{\"x\":0.0451,\"y\":44.9884,\"z\":359.9406}},\"b4fa6f\":{\"lock\":false,\"pos\":{\"x\":-3.956,\"y\":1.5975,\"z\":-10.4415},\"rot\":{\"x\":359.9197,\"y\":269.9941,\"z\":0.0168}},\"b6da68\":{\"lock\":false,\"pos\":{\"x\":1.6964,\"y\":1.5583,\"z\":14.279},\"rot\":{\"x\":359.9551,\"y\":224.9995,\"z\":0.0687}},\"b76e68\":{\"lock\":false,\"pos\":{\"x\":-3.956,\"y\":1.5975,\"z\":-10.4412},\"rot\":{\"x\":359.9197,\"y\":269.9981,\"z\":0.0168}},\"b9ac65\":{\"lock\":false,\"pos\":{\"x\":-28.2377,\"y\":1.6495,\"z\":2.0266},\"rot\":{\"x\":359.92,\"y\":269.9771,\"z\":359.2602}},\"b9e1d3\":{\"lock\":false,\"pos\":{\"x\":-3.9276,\"y\":1.7251,\"z\":5.7571},\"rot\":{\"x\":359.9197,\"y\":269.9999,\"z\":180.0168}},\"badc52\":{\"lock\":false,\"pos\":{\"x\":-1.842,\"y\":1.4973,\"z\":-38.9128},\"rot\":{\"x\":0,\"y\":270.0063,\"z\":359.7724}},\"bb5677\":{\"lock\":false,\"pos\":{\"x\":-30.2041,\"y\":1.6361,\"z\":-3.8301},\"rot\":{\"x\":359.9201,\"y\":270,\"z\":180.0168}},\"c0b9c8\":{\"lock\":false,\"pos\":{\"x\":-38.1809,\"y\":1.6662,\"z\":-1.6393},\"rot\":{\"x\":359.9202,\"y\":270.0044,\"z\":0.9822}},\"c0dc73\":{\"lock\":true,\"pos\":{\"x\":0.0192313026636839,\"y\":1.61084246635437,\"z\":-10.3509302139282},\"rot\":{\"x\":359.919769287109,\"y\":269.9873046875,\"z\":0.0168541558086872}},\"c29a78\":{\"lock\":false,\"pos\":{\"x\":12.2518014907837,\"y\":1.46795856952667,\"z\":11.9862012863159},\"rot\":{\"x\":359.920135498047,\"y\":270.012054443359,\"z\":0.0168575420975685}},\"c3d85c\":{\"lock\":false,\"pos\":{\"x\":-2.34665441513062,\"y\":1.45420181751251,\"z\":-19.0668277740479},\"rot\":{\"x\":0.0168837867677212,\"y\":179.999877929688,\"z\":0.0798836573958397}},\"c774e4\":{\"lock\":false,\"pos\":{\"x\":-33.441,\"y\":1.6263,\"z\":-6.1811},\"rot\":{\"x\":359.9554,\"y\":225.0271,\"z\":0.0684}},\"c8a705\":{\"lock\":false,\"pos\":{\"x\":-33.4979,\"y\":1.6287,\"z\":1.9603},\"rot\":{\"x\":359.9554,\"y\":225.035,\"z\":0.0684}},\"ca66e0\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6156,\"z\":3.86},\"rot\":{\"x\":359.9831,\"y\":359.9748,\"z\":359.92}},\"cafa1a\":{\"lock\":false,\"pos\":{\"x\":-30.2243,\"y\":1.6372,\"z\":-0.0299},\"rot\":{\"x\":359.9202,\"y\":270.0007,\"z\":180.0173}},\"ce9e32\":{\"lock\":false,\"pos\":{\"x\":-26.7377,\"y\":1.6188,\"z\":0.0573},\"rot\":{\"x\":359.9201,\"y\":270.0096,\"z\":0.0169}},\"d04948\":{\"lock\":false,\"pos\":{\"x\":-36.7733,\"y\":1.6441,\"z\":-7.7},\"rot\":{\"x\":359.9201,\"y\":269.9891,\"z\":180.0168}},\"d40fa8\":{\"lock\":false,\"pos\":{\"x\":-20.1609,\"y\":1.6088,\"z\":-2.7823},\"rot\":{\"x\":359.9554,\"y\":224.9969,\"z\":0.0684}},\"d9e450\":{\"lock\":false,\"pos\":{\"x\":-26.9393,\"y\":1.6201,\"z\":3.6475},\"rot\":{\"x\":359.9201,\"y\":270.0319,\"z\":0.0168}},\"dd1996\":{\"lock\":false,\"pos\":{\"x\":-2.6885,\"y\":1.6191,\"z\":-5.0485},\"rot\":{\"x\":0.0168,\"y\":180.012,\"z\":0.0803}},\"dd29bd\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6258,\"z\":-7.7},\"rot\":{\"x\":359.9201,\"y\":270.0145,\"z\":180.0168}},\"df1491\":{\"lock\":false,\"pos\":{\"x\":-23.6747,\"y\":1.6292,\"z\":3.8607},\"rot\":{\"x\":359.9201,\"y\":270,\"z\":180.0168}},\"e04c21\":{\"lock\":false,\"pos\":{\"x\":12.2497024536133,\"y\":1.4561824798584,\"z\":-28.014404296875},\"rot\":{\"x\":359.920135498047,\"y\":270.002288818359,\"z\":0.0168702751398087}},\"e0f394\":{\"lock\":false,\"pos\":{\"x\":-34.2201,\"y\":1.6292,\"z\":-0.0218},\"rot\":{\"x\":359.9201,\"y\":269.9978,\"z\":0.0169}},\"e3a2dd\":{\"lock\":false,\"pos\":{\"x\":-3.9277,\"y\":1.6914,\"z\":5.7572},\"rot\":{\"x\":359.9197,\"y\":270.0001,\"z\":180.0168}},\"e4be75\":{\"lock\":false,\"pos\":{\"x\":-23.6736,\"y\":1.6145,\"z\":-0.0296},\"rot\":{\"x\":0.0168,\"y\":180,\"z\":0.0799}},\"e6e44a\":{\"lock\":false,\"pos\":{\"x\":-0.0518,\"y\":1.6326,\"z\":4.136},\"rot\":{\"x\":359.9197,\"y\":270.0051,\"z\":0.0168}},\"e7d3f3\":{\"lock\":false,\"pos\":{\"x\":-3.9141,\"y\":1.6049,\"z\":14.8205},\"rot\":{\"x\":359.9197,\"y\":269.9995,\"z\":180.0168}},\"ea1fa3\":{\"lock\":false,\"pos\":{\"x\":-0.0422,\"y\":1.6335,\"z\":7.3454},\"rot\":{\"x\":359.9197,\"y\":270.0329,\"z\":0.0168}},\"ea8a74\":{\"lock\":false,\"pos\":{\"x\":-26.0822,\"y\":1.6176,\"z\":0.0309},\"rot\":{\"x\":359.9282,\"y\":269.9886,\"z\":0.0537}},\"ef5c32\":{\"lock\":false,\"pos\":{\"x\":-2.6886,\"y\":1.5973,\"z\":-5.0485},\"rot\":{\"x\":0.0168,\"y\":180.0004,\"z\":0.0803}},\"f7c870\":{\"lock\":false,\"pos\":{\"x\":-15.1872,\"y\":1.6197,\"z\":11.9241},\"rot\":{\"x\":359.9201,\"y\":270,\"z\":180.0168}},\"f9a6e7\":{\"lock\":false,\"pos\":{\"x\":-30.2172,\"y\":1.6394,\"z\":7.5701},\"rot\":{\"x\":359.9201,\"y\":270.0244,\"z\":180.0168}},\"fb0a1d\":{\"lock\":false,\"pos\":{\"x\":-17.1198,\"y\":1.6189,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":270.0215,\"z\":180.0168}},\"fc8c1c\":{\"lock\":false,\"pos\":{\"x\":-30.2224,\"y\":1.6236,\"z\":-0.0296},\"rot\":{\"x\":0.0168,\"y\":180,\"z\":0.0799}},\"fcab72\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6065,\"z\":3.86},\"rot\":{\"x\":359.9831,\"y\":359.9765,\"z\":359.9201}},\"fdd2bc\":{\"lock\":false,\"pos\":{\"x\":-11.7001,\"y\":1.6149,\"z\":11.9109},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":180.0168}}}}",
"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
}
}
]
},
{
"GUID": "bc7fa7",
"Name": "Custom_Model",
"Transform": {
"posX": 36.9266243,
"posY": 2.29483938,
"posZ": -84.23487,
"rotX": 359.920135,
"rotY": 270.000031,
"rotZ": 0.01687411,
"scaleX": 2.21,
"scaleY": 0.46,
"scaleZ": 2.42
},
"Nickname": "Darkham Horror",
"Description": "",
"GMNotes": "fancreations/campaign_darkham_horror.json",
"ColorDiffuse": {
"r": 0.391985983,
"g": 0.391985983,
"b": 0.391985983
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomMesh": {
"MeshURL": "https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/1692775970051821718/827267BBD7EFBAD3EA384A5A04629B2E5BD88EE5/",
"NormalURL": "",
"ColliderURL": "",
"Convex": true,
"MaterialIndex": 3,
"TypeIndex": 0,
"CustomShader": {
"SpecularColor": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"SpecularIntensity": 0.0,
"SpecularSharpness": 2.0,
"FresnelStrength": 0.0
},
"CastShadows": true
},
"LuaScript": "\r\nfunction onload(saved_data)\r\n createDownloadButton()\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make Download button\r\nfunction createDownloadButton()\r\n self.createButton({\r\n label=\"Download\", click_function=\"buttonClick_download\", function_owner=self,\r\n position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800,\r\n font_size=150, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by download button,\r\nfunction buttonClick_download()\r\n local params = { url = self.getGMNotes(), replace = self.guid }\r\n Global.call('placeholder_download', params)\r\nend\r\n",
"LuaScriptState": "{\"ml\":{\"044ab6\":{\"lock\":false,\"pos\":{\"x\":12.2499,\"y\":1.4609,\"z\":-12.0137},\"rot\":{\"x\":359.9201,\"y\":270.1017,\"z\":0.0167}},\"17c59d\":{\"lock\":false,\"pos\":{\"x\":12.2503,\"y\":1.4585,\"z\":-20.0139},\"rot\":{\"x\":359.9201,\"y\":270.0724,\"z\":0.0168}},\"221778\":{\"lock\":false,\"pos\":{\"x\":12.587,\"y\":1.5039,\"z\":-33.847},\"rot\":{\"x\":359.9201,\"y\":270.0021,\"z\":0.0169}},\"515ba5\":{\"lock\":false,\"pos\":{\"x\":-3.9152,\"y\":1.5861,\"z\":-15.094},\"rot\":{\"x\":359.9832,\"y\":0.0004,\"z\":359.9197}},\"5f8e94\":{\"lock\":false,\"pos\":{\"x\":12.2496,\"y\":1.4633,\"z\":-4.0139},\"rot\":{\"x\":359.9201,\"y\":270.0854,\"z\":0.0168}},\"7b5ee7\":{\"lock\":false,\"pos\":{\"x\":12.2495,\"y\":1.4656,\"z\":3.9892},\"rot\":{\"x\":359.9201,\"y\":270.0862,\"z\":0.0168}},\"7cb918\":{\"lock\":false,\"pos\":{\"x\":12.25,\"y\":1.4703,\"z\":19.9865},\"rot\":{\"x\":359.9201,\"y\":270.0856,\"z\":0.0168}},\"92c6fc\":{\"lock\":false,\"pos\":{\"x\":12.256,\"y\":1.3178,\"z\":36.1097},\"rot\":{\"x\":0.08,\"y\":89.9982,\"z\":359.9831}},\"b5c9d7\":{\"lock\":false,\"pos\":{\"x\":12.2494,\"y\":1.4563,\"z\":-28.0139},\"rot\":{\"x\":359.9201,\"y\":270.1024,\"z\":0.0167}},\"bc4a2e\":{\"lock\":false,\"pos\":{\"x\":12.2525,\"y\":1.468,\"z\":11.9863},\"rot\":{\"x\":359.9201,\"y\":270.0859,\"z\":0.0168}},\"c09838\":{\"lock\":false,\"pos\":{\"x\":12.2503,\"y\":1.4727,\"z\":27.9858},\"rot\":{\"x\":359.9201,\"y\":270.0597,\"z\":0.0168}},\"eda22b\":{\"lock\":false,\"pos\":{\"x\":-1.4223,\"y\":1.6,\"z\":-41.3729},\"rot\":{\"x\":0,\"y\":270.0014,\"z\":-0.0002}},\"fe8e8a\":{\"lock\":false,\"pos\":{\"x\":-1.4656,\"y\":1.4756,\"z\":-26.9305},\"rot\":{\"x\":359.9201,\"y\":270.0092,\"z\":0.0169}}}}",
"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
}
}
]
},
{
"GUID": "169eb9",
"Name": "Custom_Model",
"Transform": {
"posX": -7.512531,
"posY": 1.625491,
"posZ": 67.90099,
"rotX": 359.966,
"rotY": 270.000336,
"rotZ": 0.0308681726,
"scaleX": 2.21,
"scaleY": 0.46,
"scaleZ": 2.42
},
"Nickname": "Cyclopean Foundations",
"Description": "",
"GMNotes": "fancreations/campaign_cyclopean_foundations.json",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0,
"a": 0.274509817
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomMesh": {
"MeshURL": "https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/1746813422552975974/8FB3A4AF2D5A102720F630961A2270572ABA2317/",
"NormalURL": "",
"ColliderURL": "",
"Convex": true,
"MaterialIndex": 3,
"TypeIndex": 0,
"CustomShader": {
"SpecularColor": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"SpecularIntensity": 0.0,
"SpecularSharpness": 2.0,
"FresnelStrength": 0.0
},
"CastShadows": true
},
"LuaScript": "\r\nfunction onload(saved_data)\r\n createDownloadButton()\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make Download button\r\nfunction createDownloadButton()\r\n self.createButton({\r\n label=\"Download\", click_function=\"buttonClick_download\", function_owner=self,\r\n position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800,\r\n font_size=150, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by download button,\r\nfunction buttonClick_download()\r\n local params = { url = self.getGMNotes(), replace = self.guid }\r\n Global.call('placeholder_download', params)\r\nend\r\n",
"LuaScriptState": "{\"ml\":{\"133644\":{\"lock\":false,\"pos\":{\"x\":-8.8564,\"y\":1.599,\"z\":5.6547},\"rot\":{\"x\":359.9319,\"y\":314.8602,\"z\":359.9567}},\"36864b\":{\"lock\":false,\"pos\":{\"x\":12.2555,\"y\":1.4562,\"z\":-28.0164},\"rot\":{\"x\":359.9201,\"y\":269.9951,\"z\":0.0169}},\"3e21bb\":{\"lock\":false,\"pos\":{\"x\":12.2553,\"y\":1.4632,\"z\":-4.005},\"rot\":{\"x\":359.9201,\"y\":269.9968,\"z\":0.0169}},\"430ed4\":{\"lock\":false,\"pos\":{\"x\":4.3522,\"y\":1.3853,\"z\":-17.0378},\"rot\":{\"x\":359.9831,\"y\":359.994,\"z\":359.9197}},\"4b8bb9\":{\"lock\":false,\"pos\":{\"x\":-0.4792,\"y\":1.6273,\"z\":-16.0225},\"rot\":{\"x\":359.9197,\"y\":270.0078,\"z\":0.0168}},\"790e50\":{\"lock\":false,\"pos\":{\"x\":-8.9524,\"y\":1.598,\"z\":1.6016},\"rot\":{\"x\":359.9319,\"y\":314.9326,\"z\":359.9567}},\"90b00d\":{\"lock\":false,\"pos\":{\"x\":7.4716,\"y\":1.3116,\"z\":-57.7787},\"rot\":{\"x\":0.0208,\"y\":270.02,\"z\":0.0168}},\"9a9282\":{\"lock\":false,\"pos\":{\"x\":-8.7944,\"y\":1.5965,\"z\":-2.7374},\"rot\":{\"x\":359.932,\"y\":314.9316,\"z\":359.9567}},\"a4139a\":{\"lock\":false,\"pos\":{\"x\":12.2509,\"y\":1.4656,\"z\":3.9859},\"rot\":{\"x\":359.9201,\"y\":270.0126,\"z\":0.0169}},\"b3f144\":{\"lock\":false,\"pos\":{\"x\":12.2559,\"y\":1.4727,\"z\":27.9863},\"rot\":{\"x\":359.9201,\"y\":270.017,\"z\":0.0169}},\"b9e000\":{\"lock\":false,\"pos\":{\"x\":-8.9341,\"y\":1.5955,\"z\":-6.8668},\"rot\":{\"x\":359.9319,\"y\":314.9296,\"z\":359.9567}},\"ca9ca7\":{\"lock\":false,\"pos\":{\"x\":12.2556,\"y\":1.4703,\"z\":20.0036},\"rot\":{\"x\":359.9201,\"y\":270.0293,\"z\":0.0168}},\"d1759b\":{\"lock\":false,\"pos\":{\"x\":-1.4665,\"y\":1.5756,\"z\":-26.9423},\"rot\":{\"x\":359.9201,\"y\":270.1273,\"z\":0.0167}},\"dc90ba\":{\"lock\":false,\"pos\":{\"x\":12.2583,\"y\":1.4679,\"z\":11.9859},\"rot\":{\"x\":359.9201,\"y\":270.0256,\"z\":0.0168}},\"e6cb60\":{\"lock\":false,\"pos\":{\"x\":12.2559,\"y\":1.4609,\"z\":-12.0153},\"rot\":{\"x\":359.9201,\"y\":269.9904,\"z\":0.0169}},\"f58e85\":{\"lock\":false,\"pos\":{\"x\":12.2563,\"y\":1.4585,\"z\":-20.0169},\"rot\":{\"x\":359.9201,\"y\":270.011,\"z\":0.0169}},\"f91f29\":{\"lock\":false,\"pos\":{\"x\":4.8432,\"y\":1.4601,\"z\":-45.0493},\"rot\":{\"x\":0.001,\"y\":269.9469,\"z\":1.0297}}}}",
"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
}
}
]
},
{
"GUID": "7458b7",
"Name": "Custom_Model",
"Transform": {
"posX": -7.13933945,
"posY": 1.62521,
"posZ": 68.79657,
"rotX": 359.940582,
"rotY": 269.999969,
"rotZ": 0.0230009966,
"scaleX": 2.21,
"scaleY": 0.46,
"scaleZ": 2.42
},
"Nickname": "The Crown of Egil",
"Description": "version 1.1",
"GMNotes": "fancreations/campaign_crown_of_egil.json",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0,
"a": 0.274509817
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomMesh": {
"MeshURL": "https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj",
"DiffuseURL": "https://i.imgur.com/Vn2CXra.png",
"NormalURL": "",
"ColliderURL": "",
"Convex": true,
"MaterialIndex": 3,
"TypeIndex": 0,
"CustomShader": {
"SpecularColor": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"SpecularIntensity": 0.0,
"SpecularSharpness": 2.0,
"FresnelStrength": 0.0
},
"CastShadows": true
},
"LuaScript": "\r\nfunction onload(saved_data)\r\n createDownloadButton()\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make Download button\r\nfunction createDownloadButton()\r\n self.createButton({\r\n label=\"Download\", click_function=\"buttonClick_download\", function_owner=self,\r\n position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800,\r\n font_size=150, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by download button,\r\nfunction buttonClick_download()\r\n local params = { url = self.getGMNotes(), replace = self.guid }\r\n Global.call('placeholder_download', params)\r\nend\r\n",
"LuaScriptState": "{\"ml\":{\"0f0921\":{\"lock\":false,\"pos\":{\"x\":9.3665,\"y\":1.4613,\"z\":-24.4342},\"rot\":{\"x\":359.9201,\"y\":269.998,\"z\":0.0169}},\"2bd90b\":{\"lock\":false,\"pos\":{\"x\":12.2499,\"y\":1.4703,\"z\":19.9864},\"rot\":{\"x\":359.9201,\"y\":269.9952,\"z\":0.0169}},\"454d79\":{\"lock\":false,\"pos\":{\"x\":0.0267,\"y\":1.4743,\"z\":-24.432},\"rot\":{\"x\":359.9201,\"y\":270.0003,\"z\":0.0169}},\"51fbbc\":{\"lock\":false,\"pos\":{\"x\":12.25,\"y\":1.4727,\"z\":27.9863},\"rot\":{\"x\":359.9201,\"y\":270.0094,\"z\":0.0169}},\"614c82\":{\"lock\":false,\"pos\":{\"x\":-8.9849,\"y\":1.4868,\"z\":-24.5062},\"rot\":{\"x\":359.9201,\"y\":269.997,\"z\":0.0169}},\"8cfe99\":{\"lock\":false,\"pos\":{\"x\":12.2499,\"y\":1.4656,\"z\":3.9862},\"rot\":{\"x\":359.9201,\"y\":270.0069,\"z\":0.0169}},\"924db3\":{\"lock\":true,\"pos\":{\"x\":-8.8505,\"y\":1.5867,\"z\":-24.4131},\"rot\":{\"x\":359.9201,\"y\":270.0004,\"z\":0.0169}},\"c0b834\":{\"lock\":false,\"pos\":{\"x\":-0.4563,\"y\":1.6272,\"z\":-16.291},\"rot\":{\"x\":359.9197,\"y\":269.986,\"z\":0.0169}},\"c29a78\":{\"lock\":false,\"pos\":{\"x\":12.2518,\"y\":1.468,\"z\":11.9862},\"rot\":{\"x\":359.9201,\"y\":270.0005,\"z\":0.0169}},\"d8f692\":{\"lock\":false,\"pos\":{\"x\":-1.4656,\"y\":1.4756,\"z\":-26.9304},\"rot\":{\"x\":359.9201,\"y\":270.0126,\"z\":0.0169}},\"eda22b\":{\"lock\":false,\"pos\":{\"x\":0.0799,\"y\":1.5742,\"z\":-24.3909},\"rot\":{\"x\":359.9201,\"y\":270.0021,\"z\":0.0169}},\"fef4f5\":{\"lock\":false,\"pos\":{\"x\":8.7241,\"y\":1.4621,\"z\":-24.4486},\"rot\":{\"x\":359.9201,\"y\":270.0136,\"z\":0.0169}}}}",
"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
}
}
]
},
{
"GUID": "613b64",
"Name": "Custom_Model",
"Transform": {
"posX": -6.24266,
"posY": 1.62363315,
"posZ": 68.90326,
"rotX": 359.893066,
"rotY": 269.999939,
"rotZ": 0.03827177,
"scaleX": 2.21,
"scaleY": 0.46,
"scaleZ": 2.42
},
"Nickname": "Call of the Plaguebearer",
"Description": "",
"GMNotes": "fancreations/campaign_call_of_the_plaguebearer.json",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0,
"a": 0.274509817
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomMesh": {
"MeshURL": "https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/1767067672754132384/EBC8D780049D2612C6BC0603BD87E94769C34D19/",
"NormalURL": "",
"ColliderURL": "",
"Convex": true,
"MaterialIndex": 3,
"TypeIndex": 0,
"CustomShader": {
"SpecularColor": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"SpecularIntensity": 0.0,
"SpecularSharpness": 2.0,
"FresnelStrength": 0.0
},
"CastShadows": true
},
"LuaScript": "\r\nfunction onload(saved_data)\r\n createDownloadButton()\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make Download button\r\nfunction createDownloadButton()\r\n self.createButton({\r\n label=\"Download\", click_function=\"buttonClick_download\", function_owner=self,\r\n position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800,\r\n font_size=150, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by download button,\r\nfunction buttonClick_download()\r\n local params = { url = self.getGMNotes(), replace = self.guid }\r\n Global.call('placeholder_download', params)\r\nend\r\n",
"LuaScriptState": "{\"ml\":{\"02e7d2\":{\"lock\":false,\"pos\":{\"x\":21.0277,\"y\":1.5237,\"z\":4.9552},\"rot\":{\"x\":0.0799,\"y\":90.0111,\"z\":359.9832}},\"10f183\":{\"lock\":false,\"pos\":{\"x\":12.092,\"y\":1.4584,\"z\":-21.2056},\"rot\":{\"x\":359.9201,\"y\":269.9965,\"z\":0.0169}},\"13f15a\":{\"lock\":false,\"pos\":{\"x\":-0.8693,\"y\":1.4355,\"z\":47.641},\"rot\":{\"x\":0.0003,\"y\":270.025,\"z\":359.2322}},\"24c385\":{\"lock\":false,\"pos\":{\"x\":11.9594,\"y\":1.4651,\"z\":0.8362},\"rot\":{\"x\":359.9201,\"y\":270.0032,\"z\":0.0169}},\"2bd90b\":{\"lock\":false,\"pos\":{\"x\":11.9948,\"y\":1.4694,\"z\":15.5876},\"rot\":{\"x\":359.9201,\"y\":270,\"z\":0.0169}},\"3fa7c8\":{\"lock\":false,\"pos\":{\"x\":0.3323,\"y\":1.6286,\"z\":-7.7335},\"rot\":{\"x\":359.9197,\"y\":270.002,\"z\":0.0168}},\"47e769\":{\"lock\":false,\"pos\":{\"x\":12.0918,\"y\":1.4563,\"z\":-28.5325},\"rot\":{\"x\":359.9201,\"y\":270.0239,\"z\":0.0168}},\"51fbbc\":{\"lock\":false,\"pos\":{\"x\":11.9307,\"y\":1.4716,\"z\":22.8828},\"rot\":{\"x\":359.9201,\"y\":269.9986,\"z\":0.0169}},\"6fee85\":{\"lock\":false,\"pos\":{\"x\":12.0108,\"y\":1.4629,\"z\":-6.4239},\"rot\":{\"x\":359.9201,\"y\":270.1797,\"z\":0.0166}},\"71b3ae\":{\"lock\":false,\"pos\":{\"x\":12.0638,\"y\":1.4607,\"z\":-13.6749},\"rot\":{\"x\":359.9201,\"y\":270.0066,\"z\":0.0169}},\"c29a78\":{\"lock\":false,\"pos\":{\"x\":12.0395,\"y\":1.4671,\"z\":8.2048},\"rot\":{\"x\":359.9201,\"y\":270.0003,\"z\":0.0169}},\"eda22b\":{\"lock\":false,\"pos\":{\"x\":-0.8626,\"y\":1.3157,\"z\":71.8684},\"rot\":{\"x\":0.0208,\"y\":269.9915,\"z\":0.0168}},\"f5db25\":{\"lock\":false,\"pos\":{\"x\":-3.6762,\"y\":1.5823,\"z\":-14.5355},\"rot\":{\"x\":359.9197,\"y\":270.0002,\"z\":0.0168}}}}",
"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
}
}
]
},
{
"GUID": "ab6b9a",
"Name": "Custom_Model",
"Transform": {
"posX": -8.54414749,
"posY": 1.62650764,
"posZ": 69.13627,
"rotX": -0.00142080942,
"rotY": 270.00116,
"rotZ": 0.01105684,
"scaleX": 2.21,
"scaleY": 0.46,
"scaleZ": 2.42
},
"Nickname": "The Approaching Storm",
"Description": "",
"GMNotes": "fancreations/campaign_approaching_storm.json",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0,
"a": 0.274509817
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomMesh": {
"MeshURL": "https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/798737729142917748/FA44959693A82787BC34D6FA2487911AB24E619B/",
"NormalURL": "",
"ColliderURL": "",
"Convex": true,
"MaterialIndex": 3,
"TypeIndex": 0,
"CustomShader": {
"SpecularColor": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"SpecularIntensity": 0.0,
"SpecularSharpness": 2.0,
"FresnelStrength": 0.0
},
"CastShadows": true
},
"LuaScript": "\r\nfunction onload(saved_data)\r\n createDownloadButton()\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make Download button\r\nfunction createDownloadButton()\r\n self.createButton({\r\n label=\"Download\", click_function=\"buttonClick_download\", function_owner=self,\r\n position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800,\r\n font_size=150, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by download button,\r\nfunction buttonClick_download()\r\n local params = { url = self.getGMNotes(), replace = self.guid }\r\n Global.call('placeholder_download', params)\r\nend\r\n",
"LuaScriptState": "{\"ml\":{\"20982e\":{\"lock\":false,\"pos\":{\"x\":8.3104,\"y\":1.2871,\"z\":7.5999},\"rot\":{\"x\":0.08,\"y\":89.9985,\"z\":359.9831}},\"266dcb\":{\"lock\":false,\"pos\":{\"x\":8.1241,\"y\":1.2846,\"z\":-1.7036},\"rot\":{\"x\":0.08,\"y\":89.9962,\"z\":359.9831}},\"3a3b5a\":{\"lock\":false,\"pos\":{\"x\":8.159,\"y\":1.286,\"z\":2.9166},\"rot\":{\"x\":0.08,\"y\":89.9925,\"z\":359.9831}},\"4d6544\":{\"lock\":false,\"pos\":{\"x\":7.9998,\"y\":1.282,\"z\":-11.3677},\"rot\":{\"x\":359.92,\"y\":270.0005,\"z\":0.0169}},\"67d524\":{\"lock\":false,\"pos\":{\"x\":8.0606,\"y\":1.2899,\"z\":15.9247},\"rot\":{\"x\":0.08,\"y\":89.9808,\"z\":359.9831}},\"7521a9\":{\"lock\":false,\"pos\":{\"x\":-3.5895,\"y\":1.5822,\"z\":-14.7357},\"rot\":{\"x\":359.9197,\"y\":270.0013,\"z\":0.0168}},\"84cdaf\":{\"lock\":false,\"pos\":{\"x\":8.0379,\"y\":1.2834,\"z\":-6.2152},\"rot\":{\"x\":0.08,\"y\":89.9981,\"z\":359.9831}},\"90aab1\":{\"lock\":false,\"pos\":{\"x\":8.0656,\"y\":1.2886,\"z\":11.2954},\"rot\":{\"x\":0.08,\"y\":89.983,\"z\":359.9831}}}}",
"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
}
}
]
},
{
"GUID": "39916d",
"Name": "Custom_Model",
"Transform": {
"posX": 15.3083286,
"posY": 1.82473969,
"posZ": -2.201004,
"rotX": 359.9312,
"rotY": 270.0,
"rotZ": 0.006373925,
"scaleX": 2.21,
"scaleY": 0.46,
"scaleZ": 2.42
},
"Nickname": "Alice in Wonderland",
"Description": "",
"GMNotes": "fancreations/campaign_alice_in_wonderland.json",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0,
"a": 0.274509817
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomMesh": {
"MeshURL": "https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/1478823218929917964/80063921C2355FE26816A0E40F88D31F9EF5C4A6/",
"NormalURL": "",
"ColliderURL": "",
"Convex": true,
"MaterialIndex": 3,
"TypeIndex": 0,
"CustomShader": {
"SpecularColor": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"SpecularIntensity": 0.0,
"SpecularSharpness": 2.0,
"FresnelStrength": 0.0
},
"CastShadows": true
},
"LuaScript": "\r\nfunction onload(saved_data)\r\n createDownloadButton()\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make Download button\r\nfunction createDownloadButton()\r\n self.createButton({\r\n label=\"Download\", click_function=\"buttonClick_download\", function_owner=self,\r\n position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800,\r\n font_size=150, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by download button,\r\nfunction buttonClick_download()\r\n local params = { url = self.getGMNotes(), replace = self.guid }\r\n Global.call('placeholder_download', params)\r\nend\r\n",
"LuaScriptState": "{\"ml\":{\"0916b6\":{\"lock\":false,\"pos\":{\"x\":12.2601,\"y\":1.4609,\"z\":-12.0168},\"rot\":{\"x\":359.9201,\"y\":269.9998,\"z\":0.0169}},\"18aa54\":{\"lock\":false,\"pos\":{\"x\":12.2578,\"y\":1.4727,\"z\":27.9861},\"rot\":{\"x\":359.9201,\"y\":270.0804,\"z\":0.0168}},\"1cc5a6\":{\"lock\":false,\"pos\":{\"x\":12.2488,\"y\":1.29,\"z\":35.9871},\"rot\":{\"x\":359.9831,\"y\":0.0028,\"z\":359.92}},\"219a80\":{\"lock\":false,\"pos\":{\"x\":4.3697,\"y\":1.5643,\"z\":-38.8587},\"rot\":{\"x\":-0.0004,\"y\":90.0462,\"z\":0.439}},\"2ec188\":{\"lock\":false,\"pos\":{\"x\":12.2496,\"y\":1.2688,\"z\":-36.0141},\"rot\":{\"x\":359.9831,\"y\":359.9885,\"z\":359.92}},\"8d88c8\":{\"lock\":false,\"pos\":{\"x\":12.2599,\"y\":1.4679,\"z\":11.9849},\"rot\":{\"x\":359.9201,\"y\":270.0313,\"z\":0.0168}},\"8eb793\":{\"lock\":false,\"pos\":{\"x\":12.2592,\"y\":1.4656,\"z\":3.9839},\"rot\":{\"x\":359.9201,\"y\":270.001,\"z\":0.0169}},\"952572\":{\"lock\":false,\"pos\":{\"x\":12.2575,\"y\":1.4703,\"z\":19.9857},\"rot\":{\"x\":359.9201,\"y\":270.0386,\"z\":0.0168}},\"9e33a0\":{\"lock\":false,\"pos\":{\"x\":12.2582,\"y\":1.4632,\"z\":-4.0158},\"rot\":{\"x\":359.9201,\"y\":270.0062,\"z\":0.0169}},\"b5928a\":{\"lock\":false,\"pos\":{\"x\":-3.6881,\"y\":1.5822,\"z\":-15.0624},\"rot\":{\"x\":359.9198,\"y\":269.9666,\"z\":0.0169}},\"bd556e\":{\"lock\":false,\"pos\":{\"x\":12.2593,\"y\":1.4585,\"z\":-20.0202},\"rot\":{\"x\":359.9201,\"y\":270.0686,\"z\":0.0168}},\"dddf97\":{\"lock\":false,\"pos\":{\"x\":-5.4661,\"y\":1.5,\"z\":-42.0169},\"rot\":{\"x\":0,\"y\":270.0246,\"z\":0}},\"e6bb63\":{\"lock\":false,\"pos\":{\"x\":12.2572,\"y\":1.4562,\"z\":-28.0186},\"rot\":{\"x\":359.9201,\"y\":270.0342,\"z\":0.0168}},\"eda22b\":{\"lock\":false,\"pos\":{\"x\":-1.4103,\"y\":1.5756,\"z\":-26.7181},\"rot\":{\"x\":359.9202,\"y\":269.6949,\"z\":0.0173}},\"f22477\":{\"lock\":false,\"pos\":{\"x\":8.444,\"y\":1.5098,\"z\":-33.462},\"rot\":{\"x\":359.9201,\"y\":270.0056,\"z\":0.0169}}}}",
"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
}
}
]
}
]
}
]
},
{
"GUID": "0ef5c8",
"Name": "Custom_Model_Bag",
"Transform": {
"posX": 29.5184841,
"posY": 1.82533538,
"posZ": -0.0761143044,
"rotX": 359.9201,
"rotY": 270.002136,
"rotZ": 0.0168699156,
"scaleX": 1.76,
"scaleY": 0.11,
"scaleZ": 1.49
},
"Nickname": "Official Standalone/Challenge Scenarios",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.9999998,
"g": 0.992168248,
"b": 0.9999998
},
"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": false,
"Hands": false,
"MaterialIndex": -1,
"MeshIndex": -1,
"CustomMesh": {
"MeshURL": "http://pastebin.com/raw.php?i=uWAmuNZ2",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/1758068588410895356/0B5F0CCD29DEC12514840D7B9CD2329B635A79A6/",
"NormalURL": "",
"ColliderURL": "",
"Convex": true,
"MaterialIndex": 3,
"TypeIndex": 6,
"CustomShader": {
"SpecularColor": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"SpecularIntensity": 0.0,
"SpecularSharpness": 2.0,
"FresnelStrength": 0.0
},
"CastShadows": true
},
"Bag": {
"Order": 0
},
"LuaScript": "-- Utility memory bag by Directsun\r\n-- Version 2.5.2\r\n-- Fork of Memory Bag 2.0 by MrStump\r\n\r\nfunction updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction combineMemoryFromBagsWithin()\r\n local bagObjList = self.getObjects()\r\n for _, bagObj in ipairs(bagObjList) do\r\n local data = bagObj.lua_script_state\r\n if data ~= nil then\r\n local j = JSON.decode(data)\r\n if j ~= nil and j.ml ~= nil then\r\n for guid, entry in pairs(j.ml) do\r\n memoryList[guid] = entry\r\n end\r\n end\r\n end\r\n end\r\nend\r\n\r\nfunction updateMemoryWithMoves()\r\n memoryList = memoryListBackup\r\n --get the first transposed object's coordinates\r\n local obj = getObjectFromGUID(moveGuid)\r\n\r\n -- p1 is where needs to go, p2 is where it was\r\n local refObjPos = memoryList[moveGuid].pos\r\n local deltaPos = findOffsetDistance(obj.getPosition(), refObjPos, nil)\r\n local movedRotation = obj.getRotation()\r\n for guid, entry in pairs(memoryList) do\r\n memoryList[guid].pos.x = entry.pos.x - deltaPos.x\r\n memoryList[guid].pos.y = entry.pos.y - deltaPos.y\r\n memoryList[guid].pos.z = entry.pos.z - deltaPos.z\r\n -- memoryList[guid].rot.x = movedRotation.x\r\n -- memoryList[guid].rot.y = movedRotation.y\r\n -- memoryList[guid].rot.z = movedRotation.z\r\n end\r\n\r\n --theList[obj.getGUID()] = {\r\n -- pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n -- rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n -- lock=obj.getLock()\r\n --}\r\n moveList = {}\r\nend\r\n\r\nfunction onload(saved_data)\r\n fresh = true\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n moveList = {}\r\n moveGuid = nil\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n fresh = false\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.1,-6}, rotation={0,0,0}, height=500, width=1200,\r\n font_size=350, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by Transpose button\r\nfunction buttonClick_transpose()\r\n moveGuid = nil\r\n broadcastToAll(\"Select one object and move it- all objects will move relative to the new location\", {0.75, 0.75, 1})\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n moveList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects(true)\r\n createSetupActionButtons(true)\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects(false)\r\n createSetupActionButtons(false)\r\nend\r\n\r\nfunction getAllObjectsInMemory()\r\n local objTable = {}\r\n local curObj = {}\r\n\r\n for guid in pairs(memoryListBackup) do\r\n curObj = getObjectFromGUID(guid)\r\n table.insert(objTable, curObj)\r\n end\r\n\r\n return objTable\r\n -- return getAllObjects()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects(move)\r\n local howManyButtons = 0\r\n\r\n local objsToHaveButtons = {}\r\n if move == true then\r\n objsToHaveButtons = getAllObjectsInMemory()\r\n else\r\n objsToHaveButtons = getAllObjects()\r\n end\r\n\r\n for _, obj in ipairs(objsToHaveButtons) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1 * 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor + 4\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj, move) end\r\n local color = {0.75,0.25,0.25,0.6}\r\n local colorMove = {0,0,1,0.6}\r\n if move == true then\r\n color = colorMove\r\n end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=1000, width=1000,\r\n color=color,\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons(move)\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,1,-2}, rotation={0,0,0}, height=240, width=550,\r\n font_size=150, color={0,0,0}, font_color={1,1,1}\r\n })\r\n\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={-1.2,1,-2}, rotation={0,0,0}, height=240, width=570,\r\n font_size=150, color={0,0,0}, font_color={1,1,1}\r\n })\r\n\r\n if move == false then\r\n self.createButton({\r\n label=\"Add\", click_function=\"buttonClick_add\", function_owner=self,\r\n position={-1.2,1,2}, rotation={0,0,0}, height=240, width=550,\r\n font_size=150, color={0,0,0}, font_color={0.25,1,0.25}\r\n })\r\n\r\n if fresh == false then\r\n self.createButton({\r\n label=\"Set New\", click_function=\"buttonClick_setNew\", function_owner=self,\r\n position={0,1,2}, rotation={0,0,0}, height=240, width=600,\r\n font_size=150, color={0,0,0}, font_color={0.75,0.75,1}\r\n })\r\n self.createButton({\r\n label=\"Remove\", click_function=\"buttonClick_remove\", function_owner=self,\r\n position={1.3,1,2}, rotation={0,0,0}, height=240, width=600,\r\n font_size=150, color={0,0,0}, font_color={1,0.25,0.25}\r\n })\r\n end\r\n end\r\n\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={1.2,1,-2}, rotation={0,0,0}, height=240, width=500,\r\n font_size=150, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj, move)\r\n local colorMove = {0,0,1,0.6}\r\n local color = {0,1,0,0.6}\r\n\r\n previousGuid = selectedGuid\r\n selectedGuid = obj.getGUID()\r\n\r\n theList = memoryList\r\n if move == true then\r\n theList = moveList\r\n if previousGuid ~= nil and previousGuid ~= selectedGuid then\r\n local prevObj = getObjectFromGUID(previousGuid)\r\n prevObj.highlightOff()\r\n self.editButton({index=previousIndex, color=colorMove})\r\n theList[previousGuid] = nil\r\n end\r\n previousIndex = index\r\n end\r\n\r\n if theList[selectedGuid] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n theList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n if move == true then\r\n color = colorMove\r\n end\r\n self.editButton({index=index, color=color})\r\n theList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n moveList = {}\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\n moveGuid = nil\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n fresh = false\r\n if next(moveList) ~= nil then\r\n for guid in pairs(moveList) do\r\n moveGuid = guid\r\n end\r\n if memoryListBackup[moveGuid] == nil then\r\n broadcastToAll(\"Item selected for moving is not already in memory\", {1, 0.25, 0.25})\r\n else\r\n broadcastToAll(\"Moving all items in memory relative to new objects position!\", {0.75, 0.75, 1})\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(moveList) do\r\n moveGuid = guid\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n updateMemoryWithMoves()\r\n updateSave()\r\n buttonClick_place()\r\n end\r\n elseif next(memoryList) == nil and moveGuid == nil then\r\n memoryList = memoryListBackup\r\n broadcastToAll(\"No selections made.\", {0.75, 0.25, 0.25})\r\n end\r\n combineMemoryFromBagsWithin()\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n moveGuid = nil\r\nend\r\n\r\nfunction combineTables(first_table, second_table)\r\n for k,v in pairs(second_table) do first_table[k] = v end\r\nend\r\n\r\nfunction buttonClick_add()\r\n fresh = false\r\n combineTables(memoryList, memoryListBackup)\r\n broadcastToAll(\"Adding internal bags and selections to existing memory\", {0.25, 0.75, 0.25})\r\n combineMemoryFromBagsWithin()\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\nfunction buttonClick_remove()\r\n broadcastToAll(\"Removing Selected Entries From Memory\", {1.0, 0.25, 0.25})\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n memoryListBackup[guid] = nil\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Removed\", {1,1,1})\r\n memoryList = memoryListBackup\r\n updateSave()\r\nend\r\n\r\nfunction buttonClick_setNew()\r\n broadcastToAll(\"Setting new position relative to items in memory\", {0.75, 0.75, 1})\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n guid = obj.guid\r\n if memoryListBackup[guid] ~= nil then\r\n count = count + 1\r\n memoryListBackup[guid].pos = obj.getPosition()\r\n memoryListBackup[guid].rot = obj.getRotation()\r\n memoryListBackup[guid].lock = obj.getLock()\r\n end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n memoryList = memoryListBackup\r\n updateSave()\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n fresh = true\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0.7,1,2}, rotation={0,0,0}, height=280, width=600,\r\n font_size=200, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={-0.7,1,2}, rotation={0,0,0}, height=280, width=650,\r\n font_size=200, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,1,-2}, rotation={0,0,0}, height=240, width=500,\r\n font_size=150, color={0,0,0}, font_color={1,1,1}\r\n })\r\n\r\n--- self.createButton({\r\n--- label=\"Move\", click_function=\"buttonClick_transpose\", function_owner=self,\r\n--- position={-2.8,0.3,0}, rotation={0,0,0}, height=350, width=800,\r\n--- font_size=250, color={0,0,0}, font_color={0.75,0.75,1}\r\n--- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot, smooth=false\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local yOffset = 0\r\n if obj ~= nil then\r\n local bounds = obj.getBounds()\r\n yOffset = (bounds.size.y - bounds.offset.y)\r\n end\r\n local deltaPos = {}\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + yOffset\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\nfunction rotateMyCoordinates(desiredPos, obj)\r\n\tlocal angle = math.rad(obj.getRotation().y)\r\n local x = desiredPos.x * math.sin(angle)\r\n\tlocal z = desiredPos.z * math.cos(angle)\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend",
"LuaScriptState": "{\"ml\":{\"77a5f9\":{\"lock\":false,\"pos\":{\"x\":23.5741920471191,\"y\":1.44980025291443,\"z\":3.92446112632751},\"rot\":{\"x\":359.920135498047,\"y\":269.999877929688,\"z\":0.0168737601488829}},\"9f6801\":{\"lock\":false,\"pos\":{\"x\":23.5700016021729,\"y\":1.44740319252014,\"z\":-4.23362255096436},\"rot\":{\"x\":359.920135498047,\"y\":269.999908447266,\"z\":0.016874834895134}}}}",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "77a5f9",
"Name": "Custom_Model_Bag",
"Transform": {
"posX": 23.5741978,
"posY": 1.4498,
"posZ": 3.9244616,
"rotX": 359.920135,
"rotY": 269.9998,
"rotZ": 0.0168747976,
"scaleX": 0.5,
"scaleY": 0.07,
"scaleZ": 0.5
},
"Nickname": "Standalone Scenarios",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"MaterialIndex": -1,
"MeshIndex": -1,
"CustomMesh": {
"MeshURL": "https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/core_h_MSH.obj",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/1758068588410818645/F8C950620F886182DD2BB1FD351E41D0B77B4827/",
"NormalURL": "",
"ColliderURL": "",
"Convex": true,
"MaterialIndex": 3,
"TypeIndex": 6,
"CustomShader": {
"SpecularColor": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"SpecularIntensity": 0.0,
"SpecularSharpness": 2.0,
"FresnelStrength": 0.0
},
"CastShadows": true
},
"Bag": {
"Order": 0
},
"LuaScript": "-- Utility memory bag by Directsun\r\n-- Version 2.5.2\r\n-- Fork of Memory Bag 2.0 by MrStump\r\n\r\nfunction updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction combineMemoryFromBagsWithin()\r\n local bagObjList = self.getObjects()\r\n for _, bagObj in ipairs(bagObjList) do\r\n local data = bagObj.lua_script_state\r\n if data ~= nil then\r\n local j = JSON.decode(data)\r\n if j ~= nil and j.ml ~= nil then\r\n for guid, entry in pairs(j.ml) do\r\n memoryList[guid] = entry\r\n end\r\n end\r\n end\r\n end\r\nend\r\n\r\nfunction updateMemoryWithMoves()\r\n memoryList = memoryListBackup\r\n --get the first transposed object's coordinates\r\n local obj = getObjectFromGUID(moveGuid)\r\n\r\n -- p1 is where needs to go, p2 is where it was\r\n local refObjPos = memoryList[moveGuid].pos\r\n local deltaPos = findOffsetDistance(obj.getPosition(), refObjPos, nil)\r\n local movedRotation = obj.getRotation()\r\n for guid, entry in pairs(memoryList) do\r\n memoryList[guid].pos.x = entry.pos.x - deltaPos.x\r\n memoryList[guid].pos.y = entry.pos.y - deltaPos.y\r\n memoryList[guid].pos.z = entry.pos.z - deltaPos.z\r\n -- memoryList[guid].rot.x = movedRotation.x\r\n -- memoryList[guid].rot.y = movedRotation.y\r\n -- memoryList[guid].rot.z = movedRotation.z\r\n end\r\n\r\n --theList[obj.getGUID()] = {\r\n -- pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n -- rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n -- lock=obj.getLock()\r\n --}\r\n moveList = {}\r\nend\r\n\r\nfunction onload(saved_data)\r\n fresh = true\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n moveList = {}\r\n moveGuid = nil\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n fresh = false\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.1,-6}, rotation={0,0,0}, height=500, width=1200,\r\n font_size=350, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by Transpose button\r\nfunction buttonClick_transpose()\r\n moveGuid = nil\r\n broadcastToAll(\"Select one object and move it- all objects will move relative to the new location\", {0.75, 0.75, 1})\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n moveList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects(true)\r\n createSetupActionButtons(true)\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects(false)\r\n createSetupActionButtons(false)\r\nend\r\n\r\nfunction getAllObjectsInMemory()\r\n local objTable = {}\r\n local curObj = {}\r\n\r\n for guid in pairs(memoryListBackup) do\r\n curObj = getObjectFromGUID(guid)\r\n table.insert(objTable, curObj)\r\n end\r\n\r\n return objTable\r\n -- return getAllObjects()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects(move)\r\n local howManyButtons = 0\r\n\r\n local objsToHaveButtons = {}\r\n if move == true then\r\n objsToHaveButtons = getAllObjectsInMemory()\r\n else\r\n objsToHaveButtons = getAllObjects()\r\n end\r\n\r\n for _, obj in ipairs(objsToHaveButtons) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1 * 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor + 4\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj, move) end\r\n local color = {0.75,0.25,0.25,0.6}\r\n local colorMove = {0,0,1,0.6}\r\n if move == true then\r\n color = colorMove\r\n end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=1000, width=1000,\r\n color=color,\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons(move)\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={-1.25,0.1,-6}, rotation={0,0,0}, height=500, width=1200,\r\n font_size=350, color={0,0,0}, font_color={1,1,1}\r\n })\r\n\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={-1.25,0.3,-7}, rotation={0,0,0}, height=500, width=1200,\r\n font_size=350, color={0,0,0}, font_color={1,1,1}\r\n })\r\n\r\n if move == false then\r\n self.createButton({\r\n label=\"Add\", click_function=\"buttonClick_add\", function_owner=self,\r\n position={1.25,0.3,-6}, rotation={0,0,0}, height=500, width=1200,\r\n font_size=350, color={0,0,0}, font_color={0.25,1,0.25}\r\n })\r\n\r\n if fresh == false then\r\n self.createButton({\r\n label=\"Set New\", click_function=\"buttonClick_setNew\", function_owner=self,\r\n position={1.25,0.3,-8}, rotation={0,0,0}, height=500, width=1200,\r\n font_size=350, color={0,0,0}, font_color={0.75,0.75,1}\r\n })\r\n self.createButton({\r\n label=\"Remove\", click_function=\"buttonClick_remove\", function_owner=self,\r\n position={1.25,0.3,-7}, rotation={0,0,0}, height=500, width=1200,\r\n font_size=350, color={0,0,0}, font_color={1,0.25,0.25}\r\n })\r\n end\r\n end\r\n\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-1.25,0.3,-8}, rotation={0,0,0}, height=500, width=1200,\r\n font_size=350, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj, move)\r\n local colorMove = {0,0,1,0.6}\r\n local color = {0,1,0,0.6}\r\n\r\n previousGuid = selectedGuid\r\n selectedGuid = obj.getGUID()\r\n\r\n theList = memoryList\r\n if move == true then\r\n theList = moveList\r\n if previousGuid ~= nil and previousGuid ~= selectedGuid then\r\n local prevObj = getObjectFromGUID(previousGuid)\r\n prevObj.highlightOff()\r\n self.editButton({index=previousIndex, color=colorMove})\r\n theList[previousGuid] = nil\r\n end\r\n previousIndex = index\r\n end\r\n\r\n if theList[selectedGuid] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n theList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n if move == true then\r\n color = colorMove\r\n end\r\n self.editButton({index=index, color=color})\r\n theList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n moveList = {}\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\n moveGuid = nil\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n fresh = false\r\n if next(moveList) ~= nil then\r\n for guid in pairs(moveList) do\r\n moveGuid = guid\r\n end\r\n if memoryListBackup[moveGuid] == nil then\r\n broadcastToAll(\"Item selected for moving is not already in memory\", {1, 0.25, 0.25})\r\n else\r\n broadcastToAll(\"Moving all items in memory relative to new objects position!\", {0.75, 0.75, 1})\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(moveList) do\r\n moveGuid = guid\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n updateMemoryWithMoves()\r\n updateSave()\r\n buttonClick_place()\r\n end\r\n elseif next(memoryList) == nil and moveGuid == nil then\r\n memoryList = memoryListBackup\r\n broadcastToAll(\"No selections made.\", {0.75, 0.25, 0.25})\r\n end\r\n combineMemoryFromBagsWithin()\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n moveGuid = nil\r\nend\r\n\r\nfunction combineTables(first_table, second_table)\r\n for k,v in pairs(second_table) do first_table[k] = v end\r\nend\r\n\r\nfunction buttonClick_add()\r\n fresh = false\r\n combineTables(memoryList, memoryListBackup)\r\n broadcastToAll(\"Adding internal bags and selections to existing memory\", {0.25, 0.75, 0.25})\r\n combineMemoryFromBagsWithin()\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\nfunction buttonClick_remove()\r\n broadcastToAll(\"Removing Selected Entries From Memory\", {1.0, 0.25, 0.25})\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n memoryListBackup[guid] = nil\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Removed\", {1,1,1})\r\n memoryList = memoryListBackup\r\n updateSave()\r\nend\r\n\r\nfunction buttonClick_setNew()\r\n broadcastToAll(\"Setting new position relative to items in memory\", {0.75, 0.75, 1})\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n guid = obj.guid\r\n if memoryListBackup[guid] ~= nil then\r\n count = count + 1\r\n memoryListBackup[guid].pos = obj.getPosition()\r\n memoryListBackup[guid].rot = obj.getRotation()\r\n memoryListBackup[guid].lock = obj.getLock()\r\n end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n memoryList = memoryListBackup\r\n updateSave()\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n fresh = true\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={1.35,1,6}, rotation={0,0,0}, height=500, width=1200,\r\n font_size=350, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={-1.25,1,6}, rotation={0,0,0}, height=500, width=1200,\r\n font_size=350, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.1,-6}, rotation={0,0,0}, height=500, width=1200,\r\n font_size=350, color={0,0,0}, font_color={1,1,1}\r\n })\r\n--- self.createButton({\r\n--- label=\"Move\", click_function=\"buttonClick_transpose\", function_owner=self,\r\n--- position={-2.8,0.3,0}, rotation={0,0,0}, height=350, width=800,\r\n--- font_size=250, color={0,0,0}, font_color={0.75,0.75,1}\r\n--- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot, smooth=false\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local yOffset = 0\r\n if obj ~= nil then\r\n local bounds = obj.getBounds()\r\n yOffset = (bounds.size.y - bounds.offset.y)\r\n end\r\n local deltaPos = {}\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + yOffset\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\nfunction rotateMyCoordinates(desiredPos, obj)\r\n\tlocal angle = math.rad(obj.getRotation().y)\r\n local x = desiredPos.x * math.sin(angle)\r\n\tlocal z = desiredPos.z * math.cos(angle)\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend",
"LuaScriptState": "{\"ml\":{\"01d780\":{\"lock\":false,\"pos\":{\"x\":13.1483497619629,\"y\":1.46328043937683,\"z\":0.344838321208954},\"rot\":{\"x\":359.920135498047,\"y\":270,\"z\":0.0168741904199123}},\"23dd51\":{\"lock\":false,\"pos\":{\"x\":13.1490411758423,\"y\":1.47034692764282,\"z\":24.3448371887207},\"rot\":{\"x\":359.920135498047,\"y\":270,\"z\":0.0168740674853325}},\"4c173f\":{\"lock\":false,\"pos\":{\"x\":13.1493549346924,\"y\":1.46092355251312,\"z\":-7.6552677154541},\"rot\":{\"x\":359.920135498047,\"y\":269.999816894531,\"z\":0.0168726611882448}},\"4dee5a\":{\"lock\":false,\"pos\":{\"x\":13.1496782302856,\"y\":1.45856726169586,\"z\":-15.6552724838257},\"rot\":{\"x\":359.920135498047,\"y\":270.000061035156,\"z\":0.0168734770268202}},\"baa795\":{\"lock\":false,\"pos\":{\"x\":13.1500024795532,\"y\":1.47027361392975,\"z\":24.1007766723633},\"rot\":{\"x\":359.920104980469,\"y\":270.011413574219,\"z\":0.0168580133467913}},\"db7039\":{\"lock\":false,\"pos\":{\"x\":13.1510820388794,\"y\":1.46798837184906,\"z\":16.3448314666748},\"rot\":{\"x\":359.920135498047,\"y\":269.999969482422,\"z\":0.0168733540922403}},\"ee987d\":{\"lock\":false,\"pos\":{\"x\":13.1491632461548,\"y\":1.46563506126404,\"z\":8.34475708007813},\"rot\":{\"x\":359.920135498047,\"y\":270,\"z\":0.0168739948421717}},\"fc7674\":{\"lock\":false,\"pos\":{\"x\":13.1484975814819,\"y\":1.45621335506439,\"z\":-23.6551971435547},\"rot\":{\"x\":359.920135498047,\"y\":269.999938964844,\"z\":0.0168736819177866}}}}",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "01d780",
"Name": "Custom_Model",
"Transform": {
"posX": 13.14835,
"posY": 1.46328044,
"posZ": 0.344837755,
"rotX": 359.920135,
"rotY": 270.0,
"rotZ": 0.01687357,
"scaleX": 2.21,
"scaleY": 0.46,
"scaleZ": 2.42
},
"Nickname": "Murder at the Excelsior Hotel",
"Description": "",
"GMNotes": "scenarios/murder_at_the_excelsior_hotel.json",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0,
"a": 0.274509817
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomMesh": {
"MeshURL": "https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/766102485311280290/6AFE3755ED304F8D6D1E0B0E7CCA7748BA07DDE9/",
"NormalURL": "",
"ColliderURL": "",
"Convex": true,
"MaterialIndex": 3,
"TypeIndex": 0,
"CustomShader": {
"SpecularColor": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"SpecularIntensity": 0.0,
"SpecularSharpness": 2.0,
"FresnelStrength": 0.0
},
"CastShadows": true
},
"LuaScript": "\r\nfunction onload(saved_data)\r\n createDownloadButton()\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make Download button\r\nfunction createDownloadButton()\r\n self.createButton({\r\n label=\"Download\", click_function=\"buttonClick_download\", function_owner=self,\r\n position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800,\r\n font_size=150, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by download button,\r\nfunction buttonClick_download()\r\n local params = { url = self.getGMNotes(), replace = self.guid }\r\n Global.call('placeholder_download', params)\r\nend\r\n",
"LuaScriptState": "{\"ml\":{\"0ba29a\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.684,\"z\":-7.7},\"rot\":{\"x\":359.9201,\"y\":269.9997,\"z\":0.0169}},\"0f58ed\":{\"lock\":false,\"pos\":{\"x\":-23.6766,\"y\":1.6817,\"z\":-15.28},\"rot\":{\"x\":359.9201,\"y\":270.0023,\"z\":0.0169}},\"227fad\":{\"lock\":false,\"pos\":{\"x\":-0.2311,\"y\":1.6586,\"z\":-10.4794},\"rot\":{\"x\":359.9197,\"y\":270.0001,\"z\":180.0168}},\"36b4eb\":{\"lock\":false,\"pos\":{\"x\":0.1775,\"y\":1.5004,\"z\":41.8364},\"rot\":{\"x\":-0.0002,\"y\":269.9862,\"z\":359.9778}},\"37760f\":{\"lock\":false,\"pos\":{\"x\":-2.6885,\"y\":1.6623,\"z\":-5.0485},\"rot\":{\"x\":0.0168,\"y\":180.0001,\"z\":0.0803}},\"4146bf\":{\"lock\":false,\"pos\":{\"x\":-30.224,\"y\":1.6976,\"z\":7.5699},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":0.0169}},\"45facd\":{\"lock\":false,\"pos\":{\"x\":-1.4655,\"y\":1.5473,\"z\":-26.9304},\"rot\":{\"x\":359.9201,\"y\":269.9998,\"z\":0.0169}},\"56a08d\":{\"lock\":false,\"pos\":{\"x\":-23.6764,\"y\":1.6134,\"z\":-3.83},\"rot\":{\"x\":359.9831,\"y\":0.0014,\"z\":359.9201}},\"7234af\":{\"lock\":false,\"pos\":{\"x\":-30.2242,\"y\":1.6248,\"z\":3.86},\"rot\":{\"x\":359.9831,\"y\":0.0016,\"z\":359.9201}},\"74eec6\":{\"lock\":false,\"pos\":{\"x\":1.6966,\"y\":1.5583,\"z\":14.2787},\"rot\":{\"x\":359.9551,\"y\":224.9981,\"z\":0.0687}},\"888a6b\":{\"lock\":false,\"pos\":{\"x\":-2.7247,\"y\":1.664,\"z\":0.3733},\"rot\":{\"x\":0.0168,\"y\":180.0001,\"z\":0.0803}},\"89314b\":{\"lock\":false,\"pos\":{\"x\":-27.2138,\"y\":1.6206,\"z\":3.9104},\"rot\":{\"x\":359.9316,\"y\":314.9952,\"z\":359.9554}},\"9a82ba\":{\"lock\":false,\"pos\":{\"x\":-27.057,\"y\":1.6192,\"z\":0.0521},\"rot\":{\"x\":359.92,\"y\":270.1797,\"z\":0.0166}},\"9a9f9a\":{\"lock\":false,\"pos\":{\"x\":-30.2242,\"y\":1.6954,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.995,\"z\":0.0169}},\"a78d38\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6862,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":270.0005,\"z\":0.0169}},\"b1e599\":{\"lock\":false,\"pos\":{\"x\":-3.9558,\"y\":1.6556,\"z\":-10.4414},\"rot\":{\"x\":359.9197,\"y\":270.0001,\"z\":0.0168}},\"bbb70a\":{\"lock\":false,\"pos\":{\"x\":-3.8865,\"y\":1.5827,\"z\":-14.4341},\"rot\":{\"x\":359.9197,\"y\":270.0306,\"z\":0.0168}},\"c630c5\":{\"lock\":false,\"pos\":{\"x\":-23.6764,\"y\":1.6111,\"z\":-11.51},\"rot\":{\"x\":359.9831,\"y\":0.0015,\"z\":359.92}},\"d71f11\":{\"lock\":false,\"pos\":{\"x\":-3.3174,\"y\":1.6622,\"z\":14.9915},\"rot\":{\"x\":359.9197,\"y\":269.9979,\"z\":0.0168}},\"fd4231\":{\"lock\":false,\"pos\":{\"x\":-3.9277,\"y\":1.7291,\"z\":5.7572},\"rot\":{\"x\":359.9197,\"y\":269.9999,\"z\":180.0168}}}}",
"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
}
}
]
},
{
"GUID": "23dd51",
"Name": "Custom_Model",
"Transform": {
"posX": 13.1490431,
"posY": 1.47034681,
"posZ": 24.344841,
"rotX": 359.920135,
"rotY": 269.999969,
"rotZ": 0.0168736633,
"scaleX": 2.21,
"scaleY": 0.46,
"scaleZ": 2.42
},
"Nickname": "Carnevale of Horrors",
"Description": "Investigators must spend 3XP each to play this side-mission",
"GMNotes": "scenarios/carnevale_of_horrors.json",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0,
"a": 0.274509817
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomMesh": {
"MeshURL": "https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/826883954590151386/AFF80583FAE6A513663D7BA0A36C4EDAC02DCF43/",
"NormalURL": "",
"ColliderURL": "",
"Convex": true,
"MaterialIndex": 3,
"TypeIndex": 0,
"CustomShader": {
"SpecularColor": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"SpecularIntensity": 0.0,
"SpecularSharpness": 2.0,
"FresnelStrength": 0.0
},
"CastShadows": true
},
"LuaScript": "\r\nfunction onload(saved_data)\r\n createDownloadButton()\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make Download button\r\nfunction createDownloadButton()\r\n self.createButton({\r\n label=\"Download\", click_function=\"buttonClick_download\", function_owner=self,\r\n position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800,\r\n font_size=150, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by download button,\r\nfunction buttonClick_download()\r\n local params = { url = self.getGMNotes(), replace = self.guid }\r\n Global.call('placeholder_download', params)\r\nend\r\n",
"LuaScriptState": "{\"ml\":{\"0368c1\":{\"lock\":false,\"pos\":{\"x\":-17.1201114654541,\"y\":1.61892175674438,\"z\":-0.0300021637231112},\"rot\":{\"x\":359.920104980469,\"y\":270.0048828125,\"z\":0.0166656374931335}},\"12d492\":{\"lock\":false,\"pos\":{\"x\":-30.2241992950439,\"y\":1.62247502803802,\"z\":-3.82999968528748},\"rot\":{\"x\":0.0168392304331064,\"y\":179.999969482422,\"z\":0.0799403712153435}},\"1e7f1b\":{\"lock\":false,\"pos\":{\"x\":-14.3835000991821,\"y\":1.63026607036591,\"z\":-0.214106932282448},\"rot\":{\"x\":359.350921630859,\"y\":269.9970703125,\"z\":0.0168699957430363}},\"2e4956\":{\"lock\":false,\"pos\":{\"x\":-11.6656150817871,\"y\":1.65501761436462,\"z\":9.07350444793701},\"rot\":{\"x\":359.920104980469,\"y\":269.979156494141,\"z\":0.0168711394071579}},\"44b0c5\":{\"lock\":false,\"pos\":{\"x\":-17.1200008392334,\"y\":1.6042023897171,\"z\":-3.8299994468689},\"rot\":{\"x\":359.983154296875,\"y\":7.26335347280838E-05,\"z\":359.920074462891}},\"4cc43d\":{\"lock\":false,\"pos\":{\"x\":-3.92750906944275,\"y\":1.73475027084351,\"z\":5.75710296630859},\"rot\":{\"x\":359.919738769531,\"y\":269.9697265625,\"z\":180.016860961914}},\"4d3553\":{\"lock\":false,\"pos\":{\"x\":-17.1200008392334,\"y\":1.6064624786377,\"z\":3.86000037193298},\"rot\":{\"x\":359.983154296875,\"y\":359.984527587891,\"z\":359.920074462891}},\"655937\":{\"lock\":false,\"pos\":{\"x\":-2.68850708007813,\"y\":1.61911654472351,\"z\":-5.04849863052368},\"rot\":{\"x\":0.0167769361287355,\"y\":180.041900634766,\"z\":0.0802685767412186}},\"81a6f5\":{\"lock\":false,\"pos\":{\"x\":-26.8136005401611,\"y\":1.61662578582764,\"z\":-7.55130100250244},\"rot\":{\"x\":0.0798944160342216,\"y\":90.0000228881836,\"z\":359.983123779297}},\"949c7d\":{\"lock\":false,\"pos\":{\"x\":-30.2241992950439,\"y\":1.62473511695862,\"z\":3.85999989509583},\"rot\":{\"x\":0.0168391969054937,\"y\":180.000030517578,\"z\":0.0799363553524017}},\"a45247\":{\"lock\":false,\"pos\":{\"x\":1.69670069217682,\"y\":1.55831575393677,\"z\":14.2787017822266},\"rot\":{\"x\":359.955139160156,\"y\":224.998001098633,\"z\":0.0686731338500977}},\"a49fb6\":{\"lock\":false,\"pos\":{\"x\":-2.72470688819885,\"y\":1.62076044082642,\"z\":0.373301953077316},\"rot\":{\"x\":0.0168950818479061,\"y\":179.957504272461,\"z\":0.0802437588572502}},\"a5891b\":{\"lock\":false,\"pos\":{\"x\":-3.55390048027039,\"y\":1.58209657669067,\"z\":-14.7800006866455},\"rot\":{\"x\":359.919738769531,\"y\":270.002655029297,\"z\":0.0168340262025595}},\"aa7abc\":{\"lock\":false,\"pos\":{\"x\":-3.95601725578308,\"y\":1.59753942489624,\"z\":-10.4411973953247},\"rot\":{\"x\":359.919738769531,\"y\":270.000061035156,\"z\":0.0168379191309214}},\"ab0576\":{\"lock\":false,\"pos\":{\"x\":-20.6238021850586,\"y\":1.61234605312347,\"z\":7.25540113449097},\"rot\":{\"x\":359.920104980469,\"y\":269.999938964844,\"z\":0.0168641619384289}},\"b676d8\":{\"lock\":false,\"pos\":{\"x\":-20.6236991882324,\"y\":1.60798108577728,\"z\":-7.59650039672852},\"rot\":{\"x\":0.0798945501446724,\"y\":90.0000839233398,\"z\":359.983123779297}},\"bb43b8\":{\"lock\":false,\"pos\":{\"x\":-11.5593156814575,\"y\":1.6556875705719,\"z\":11.8573036193848},\"rot\":{\"x\":359.920104980469,\"y\":270.007659912109,\"z\":0.0168330129235983}},\"c1d121\":{\"lock\":false,\"pos\":{\"x\":-1.46558094024658,\"y\":1.47562277317047,\"z\":-26.9304218292236},\"rot\":{\"x\":359.920135498047,\"y\":269.997222900391,\"z\":0.0168759189546108}},\"eb8aad\":{\"lock\":false,\"pos\":{\"x\":-11.5609178543091,\"y\":1.61305212974548,\"z\":6.36680364608765},\"rot\":{\"x\":359.920104980469,\"y\":269.986938476563,\"z\":0.0168587826192379}},\"fde05d\":{\"lock\":false,\"pos\":{\"x\":-27.0645999908447,\"y\":1.62142419815063,\"z\":7.58519983291626},\"rot\":{\"x\":359.920104980469,\"y\":269.999938964844,\"z\":0.0168681684881449}}}}",
"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
}
}
]
},
{
"GUID": "4c173f",
"Name": "Custom_Model",
"Transform": {
"posX": 13.1493549,
"posY": 1.46092355,
"posZ": -7.655272,
"rotX": 359.920135,
"rotY": 269.999817,
"rotZ": 0.0168724488,
"scaleX": 2.21,
"scaleY": 0.2,
"scaleZ": 2.46
},
"Nickname": "The Labyrinths of Lunacy",
"Description": "Beyond the Veil",
"GMNotes": "scenarios/labyrinths_of_lunacy.json",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0,
"a": 0.274509817
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomMesh": {
"MeshURL": "https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/798737729142912455/15B44AE6487546376FD9DED67A1BC9D613163511/",
"NormalURL": "",
"ColliderURL": "",
"Convex": true,
"MaterialIndex": 3,
"TypeIndex": 0,
"CustomShader": {
"SpecularColor": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"SpecularIntensity": 0.0,
"SpecularSharpness": 2.0,
"FresnelStrength": 0.0
},
"CastShadows": true
},
"LuaScript": "\r\nfunction onload(saved_data)\r\n createDownloadButton()\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make Download button\r\nfunction createDownloadButton()\r\n self.createButton({\r\n label=\"Download\", click_function=\"buttonClick_download\", function_owner=self,\r\n position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800,\r\n font_size=150, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by download button,\r\nfunction buttonClick_download()\r\n local params = { url = self.getGMNotes(), replace = self.guid }\r\n Global.call('placeholder_download', params)\r\nend\r\n",
"LuaScriptState": "{\"ml\":{\"14808b\":{\"lock\":false,\"pos\":{\"x\":3.41869044303894,\"y\":1.28437542915344,\"z\":-24.9040718078613},\"rot\":{\"x\":0.0799649506807327,\"y\":89.9995422363281,\"z\":359.983093261719}},\"2ea2a2\":{\"lock\":false,\"pos\":{\"x\":3.46256279945374,\"y\":1.2856125831604,\"z\":-20.4963111877441},\"rot\":{\"x\":0.0799649506807327,\"y\":89.9990615844727,\"z\":359.983093261719}},\"76b476\":{\"lock\":false,\"pos\":{\"x\":3.36501669883728,\"y\":1.28312563896179,\"z\":-29.4009819030762},\"rot\":{\"x\":0.0799627229571342,\"y\":89.9967651367188,\"z\":359.983062744141}},\"79b534\":{\"lock\":false,\"pos\":{\"x\":-1.14386463165283,\"y\":1.29200720787048,\"z\":-20.5858478546143},\"rot\":{\"x\":0.0799693316221237,\"y\":90.0000152587891,\"z\":359.983093261719}},\"c352ac\":{\"lock\":false,\"pos\":{\"x\":-1.22769546508789,\"y\":1.28950834274292,\"z\":-29.4703197479248},\"rot\":{\"x\":0.0799669772386551,\"y\":89.9994888305664,\"z\":359.983093261719}},\"c7c4c1\":{\"lock\":false,\"pos\":{\"x\":-1.03725624084473,\"y\":1.29063451290131,\"z\":-24.7441463470459},\"rot\":{\"x\":0.079962931573391,\"y\":89.9992523193359,\"z\":359.983093261719}},\"cd5dde\":{\"lock\":false,\"pos\":{\"x\":-10.0876741409302,\"y\":1.48784339427948,\"z\":-26.2493495941162},\"rot\":{\"x\":359.920135498047,\"y\":270.000122070313,\"z\":0.016872052103281}},\"f4dcee\":{\"lock\":false,\"pos\":{\"x\":-3.75470089912415,\"y\":1.58234548568726,\"z\":-14.8894033432007},\"rot\":{\"x\":359.919738769531,\"y\":270.003631591797,\"z\":0.0168327763676643}}}}",
"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
}
}
]
},
{
"GUID": "4dee5a",
"Name": "Custom_Model",
"Transform": {
"posX": 13.1496763,
"posY": 1.45856726,
"posZ": -15.6552753,
"rotX": 359.920135,
"rotY": 270.000061,
"rotZ": 0.0168734081,
"scaleX": 2.21,
"scaleY": 0.46,
"scaleZ": 2.42
},
"Nickname": "The Blob that Ate Everything",
"Description": "Scenario Pack",
"GMNotes": "scenarios/blob_that_ate_everything.json",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0,
"a": 0.274509817
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomMesh": {
"MeshURL": "https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/784129708171644922/CF8E4B744A65B5C7FEAF46C907D8E470A9E2241F/",
"NormalURL": "",
"ColliderURL": "",
"Convex": true,
"MaterialIndex": 3,
"TypeIndex": 0,
"CustomShader": {
"SpecularColor": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"SpecularIntensity": 0.0,
"SpecularSharpness": 2.0,
"FresnelStrength": 0.0
},
"CastShadows": true
},
"LuaScript": "\r\nfunction onload(saved_data)\r\n createDownloadButton()\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make Download button\r\nfunction createDownloadButton()\r\n self.createButton({\r\n label=\"Download\", click_function=\"buttonClick_download\", function_owner=self,\r\n position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800,\r\n font_size=150, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by download button,\r\nfunction buttonClick_download()\r\n local params = { url = self.getGMNotes(), replace = self.guid }\r\n Global.call('placeholder_download', params)\r\nend\r\n",
"LuaScriptState": "{\"ml\":{\"0c5373\":{\"lock\":false,\"pos\":{\"x\":-12.1817,\"y\":1.6544,\"z\":-12.071},\"rot\":{\"x\":0.0799,\"y\":90.0043,\"z\":359.9831}},\"2b78cf\":{\"lock\":false,\"pos\":{\"x\":-39.9314,\"y\":1.6372,\"z\":-0.0372},\"rot\":{\"x\":359.9201,\"y\":270.0096,\"z\":0.0169}},\"2c10cf\":{\"lock\":false,\"pos\":{\"x\":2.353,\"y\":1.3935,\"z\":1.3729},\"rot\":{\"x\":0.0803,\"y\":89.9994,\"z\":359.9831}},\"36b4eb\":{\"lock\":false,\"pos\":{\"x\":-1.4657,\"y\":1.4756,\"z\":-26.9304},\"rot\":{\"x\":359.9201,\"y\":269.9867,\"z\":0.0169}},\"3a6bb8\":{\"lock\":false,\"pos\":{\"x\":-23.6764,\"y\":1.6134,\"z\":-3.83},\"rot\":{\"x\":0.0169,\"y\":179.9992,\"z\":0.0799}},\"46f500\":{\"lock\":false,\"pos\":{\"x\":-36.7731,\"y\":1.6317,\"z\":-3.83},\"rot\":{\"x\":0.0169,\"y\":179.9989,\"z\":0.0799}},\"4f9f66\":{\"lock\":false,\"pos\":{\"x\":-2.7246,\"y\":1.6566,\"z\":0.3735},\"rot\":{\"x\":0.0168,\"y\":180.0012,\"z\":0.0803}},\"4ff304\":{\"lock\":false,\"pos\":{\"x\":-30.2242,\"y\":1.6248,\"z\":3.86},\"rot\":{\"x\":0.0169,\"y\":179.9991,\"z\":0.0799}},\"5d8be3\":{\"lock\":false,\"pos\":{\"x\":-23.6764,\"y\":1.6157,\"z\":3.86},\"rot\":{\"x\":0.0169,\"y\":179.9992,\"z\":0.0799}},\"6345b1\":{\"lock\":false,\"pos\":{\"x\":-26.8995,\"y\":1.619,\"z\":-0.1078},\"rot\":{\"x\":359.9201,\"y\":270.0096,\"z\":0.0169}},\"69fd89\":{\"lock\":false,\"pos\":{\"x\":-27.0309,\"y\":1.617,\"z\":-7.5875},\"rot\":{\"x\":359.9201,\"y\":270.0096,\"z\":0.0169}},\"71210c\":{\"lock\":false,\"pos\":{\"x\":-30.2242,\"y\":1.6203,\"z\":-11.51},\"rot\":{\"x\":0.0169,\"y\":179.9994,\"z\":0.0799}},\"7234af\":{\"lock\":false,\"pos\":{\"x\":-33.5839,\"y\":1.6283,\"z\":0.0616},\"rot\":{\"x\":359.9201,\"y\":270.0096,\"z\":0.0169}},\"7b0f72\":{\"lock\":false,\"pos\":{\"x\":1.6966,\"y\":1.5583,\"z\":14.2788},\"rot\":{\"x\":359.9551,\"y\":224.9978,\"z\":0.0687}},\"830305\":{\"lock\":false,\"pos\":{\"x\":2.2928,\"y\":1.3929,\"z\":-1.2197},\"rot\":{\"x\":0.0803,\"y\":89.9991,\"z\":359.9831}},\"8456bc\":{\"lock\":false,\"pos\":{\"x\":-3.9559,\"y\":1.6556,\"z\":-10.4412},\"rot\":{\"x\":359.9197,\"y\":270,\"z\":0.0168}},\"88e8cf\":{\"lock\":false,\"pos\":{\"x\":-26.9009,\"y\":1.6213,\"z\":7.7793},\"rot\":{\"x\":359.9201,\"y\":270.0095,\"z\":0.0169}},\"98c518\":{\"lock\":false,\"pos\":{\"x\":-12.4828,\"y\":1.6633,\"z\":7.5848},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":0.0169}},\"a1af1f\":{\"lock\":false,\"pos\":{\"x\":-20.613,\"y\":1.6102,\"z\":-0.1764},\"rot\":{\"x\":359.9201,\"y\":270.0096,\"z\":0.0169}},\"aea880\":{\"lock\":false,\"pos\":{\"x\":-12.307,\"y\":1.6796,\"z\":15.299},\"rot\":{\"x\":359.9202,\"y\":270.0012,\"z\":0.2651}},\"b76184\":{\"lock\":false,\"pos\":{\"x\":-33.6393,\"y\":1.6306,\"z\":7.5293},\"rot\":{\"x\":359.9201,\"y\":270.0097,\"z\":0.0169}},\"bbb70a\":{\"lock\":false,\"pos\":{\"x\":-3.3759,\"y\":1.5818,\"z\":-15.0362},\"rot\":{\"x\":359.9197,\"y\":270.0306,\"z\":0.0168}},\"c164a9\":{\"lock\":false,\"pos\":{\"x\":-3.9271,\"y\":1.7717,\"z\":5.7574},\"rot\":{\"x\":359.9197,\"y\":269.9998,\"z\":180.0168}},\"c425b7\":{\"lock\":false,\"pos\":{\"x\":-30.2242,\"y\":1.6225,\"z\":-3.83},\"rot\":{\"x\":0.0169,\"y\":179.9993,\"z\":0.0799}},\"d7e54e\":{\"lock\":false,\"pos\":{\"x\":-34.2304,\"y\":1.627,\"z\":-7.4733},\"rot\":{\"x\":359.9201,\"y\":270.0097,\"z\":0.0169}},\"e9889e\":{\"lock\":false,\"pos\":{\"x\":-30.2243,\"y\":1.6954,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":270.001,\"z\":0.0169}},\"f9947f\":{\"lock\":false,\"pos\":{\"x\":-36.7731,\"y\":1.6339,\"z\":3.86},\"rot\":{\"x\":0.0169,\"y\":179.999,\"z\":0.0799}},\"fb5176\":{\"lock\":false,\"pos\":{\"x\":-30.2242,\"y\":1.627,\"z\":11.46},\"rot\":{\"x\":0.0169,\"y\":179.9993,\"z\":0.0799}},\"fd7be1\":{\"lock\":false,\"pos\":{\"x\":-12.3779,\"y\":1.6807,\"z\":11.4083},\"rot\":{\"x\":359.9201,\"y\":270.0002,\"z\":0.0169}}}}",
"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
}
}
]
},
{
"GUID": "db7039",
"Name": "Custom_Model",
"Transform": {
"posX": 13.1510839,
"posY": 1.46798825,
"posZ": 16.3448353,
"rotX": 359.920135,
"rotY": 269.999969,
"rotZ": 0.0168735236,
"scaleX": 2.21,
"scaleY": 0.46,
"scaleZ": 2.42
},
"Nickname": "Curse of the Rougarou",
"Description": "Investigators must spend 1XP each to play this side-mission",
"GMNotes": "scenarios/curse_of_the_rougarou.json",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0,
"a": 0.274509817
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomMesh": {
"MeshURL": "https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/826883954590159139/DD8593B1F0B0D531AF8F3A9B6A37568E551B9B03/",
"NormalURL": "",
"ColliderURL": "",
"Convex": true,
"MaterialIndex": 3,
"TypeIndex": 0,
"CustomShader": {
"SpecularColor": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"SpecularIntensity": 0.0,
"SpecularSharpness": 2.0,
"FresnelStrength": 0.0
},
"CastShadows": true
},
"LuaScript": "\r\nfunction onload(saved_data)\r\n createDownloadButton()\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make Download button\r\nfunction createDownloadButton()\r\n self.createButton({\r\n label=\"Download\", click_function=\"buttonClick_download\", function_owner=self,\r\n position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800,\r\n font_size=150, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by download button,\r\nfunction buttonClick_download()\r\n local params = { url = self.getGMNotes(), replace = self.guid }\r\n Global.call('placeholder_download', params)\r\nend\r\n",
"LuaScriptState": "{\"ml\":{\"134d83\":{\"lock\":false,\"pos\":{\"x\":-3.9277036190033,\"y\":1.69623827934265,\"z\":5.75710153579712},\"rot\":{\"x\":359.919738769531,\"y\":269.987701416016,\"z\":180.016845703125}},\"425f86\":{\"lock\":false,\"pos\":{\"x\":-1.46565771102905,\"y\":1.47562313079834,\"z\":-26.9294033050537},\"rot\":{\"x\":359.920135498047,\"y\":270.007720947266,\"z\":0.0168614573776722}},\"44573a\":{\"lock\":false,\"pos\":{\"x\":-4.63759899139404,\"y\":1.40698504447937,\"z\":13.822603225708},\"rot\":{\"x\":359.983154296875,\"y\":-0.000882750551681966,\"z\":359.919677734375}},\"73e53d\":{\"lock\":false,\"pos\":{\"x\":-11.327299118042,\"y\":1.41429996490479,\"z\":7.08839988708496},\"rot\":{\"x\":359.983154296875,\"y\":4.73912332381587E-05,\"z\":359.920043945313}},\"917668\":{\"lock\":false,\"pos\":{\"x\":-2.72460699081421,\"y\":1.62076032161713,\"z\":0.373301774263382},\"rot\":{\"x\":0.0167892463505268,\"y\":180.033096313477,\"z\":0.0802659317851067}},\"9d0d56\":{\"lock\":false,\"pos\":{\"x\":-3.9560170173645,\"y\":1.59753954410553,\"z\":-10.4411993026733},\"rot\":{\"x\":359.919738769531,\"y\":269.985260009766,\"z\":0.0168587360531092}},\"a45247\":{\"lock\":false,\"pos\":{\"x\":1.69670081138611,\"y\":1.55831623077393,\"z\":14.2787017822266},\"rot\":{\"x\":359.955139160156,\"y\":224.998016357422,\"z\":0.0686719864606857}},\"cf0c00\":{\"lock\":false,\"pos\":{\"x\":-3.73250079154968,\"y\":1.58228385448456,\"z\":-14.994101524353},\"rot\":{\"x\":359.919738769531,\"y\":270.002075195313,\"z\":0.0168349482119083}},\"d47bca\":{\"lock\":false,\"pos\":{\"x\":-2.6884241104126,\"y\":1.61430239677429,\"z\":-5.0485954284668},\"rot\":{\"x\":0.0167896263301373,\"y\":180.032699584961,\"z\":0.0802661553025246}}}}",
"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
}
}
]
},
{
"GUID": "ee987d",
"Name": "Custom_Model",
"Transform": {
"posX": 13.1491671,
"posY": 1.46563506,
"posZ": 8.344757,
"rotX": 359.920135,
"rotY": 270.0,
"rotZ": 0.01687389,
"scaleX": 2.21,
"scaleY": 0.46,
"scaleZ": 2.42
},
"Nickname": "Guardians of the Abyss",
"Description": "Official side-mission",
"GMNotes": "scenarios/guardians_of_the_abyss.json",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0,
"a": 0.274509817
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomMesh": {
"MeshURL": "https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/826883954590180592/50C4420774777AFE0D3168DA24D0E72941862CC4/",
"NormalURL": "",
"ColliderURL": "",
"Convex": true,
"MaterialIndex": 3,
"TypeIndex": 0,
"CustomShader": {
"SpecularColor": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"SpecularIntensity": 0.0,
"SpecularSharpness": 2.0,
"FresnelStrength": 0.0
},
"CastShadows": true
},
"LuaScript": "\r\nfunction onload(saved_data)\r\n createDownloadButton()\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make Download button\r\nfunction createDownloadButton()\r\n self.createButton({\r\n label=\"Download\", click_function=\"buttonClick_download\", function_owner=self,\r\n position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800,\r\n font_size=150, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by download button,\r\nfunction buttonClick_download()\r\n local params = { url = self.getGMNotes(), replace = self.guid }\r\n Global.call('placeholder_download', params)\r\nend\r\n",
"LuaScriptState": "{\"ml\":{\"446a90\":{\"lock\":false,\"pos\":{\"x\":0.7985600233078,\"y\":1.47349917888641,\"z\":-23.423095703125},\"rot\":{\"x\":359.920104980469,\"y\":270.025115966797,\"z\":0.0168373417109251}},\"578bcb\":{\"lock\":false,\"pos\":{\"x\":-10.5053005218506,\"y\":1.48731505870819,\"z\":-30.0198059082031},\"rot\":{\"x\":359.920135498047,\"y\":269.999816894531,\"z\":0.0168746002018452}},\"82e1ed\":{\"lock\":false,\"pos\":{\"x\":-3.79650044441223,\"y\":1.58224201202393,\"z\":-15.4413013458252},\"rot\":{\"x\":359.919738769531,\"y\":269.994476318359,\"z\":0.0168457124382257}},\"9ff406\":{\"lock\":false,\"pos\":{\"x\":-10.4343023300171,\"y\":1.48930680751801,\"z\":-22.9196033477783},\"rot\":{\"x\":359.920135498047,\"y\":269.997589111328,\"z\":0.0168764963746071}}}}",
"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
}
}
]
},
{
"GUID": "fc7674",
"Name": "Custom_Model",
"Transform": {
"posX": 13.1485014,
"posY": 1.45621336,
"posZ": -23.6552048,
"rotX": 359.920135,
"rotY": 269.999939,
"rotZ": 0.0168734714,
"scaleX": 2.21,
"scaleY": 0.46,
"scaleZ": 2.42
},
"Nickname": "War of the Outer Gods",
"Description": "Scenario Pack",
"GMNotes": "scenarios/war_of_the_outer_gods.json",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0,
"a": 0.274509817
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomMesh": {
"MeshURL": "https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/1655599785041387976/264E2E1DA532DC374D6E75B19AD4FEDDBEAA22F0/",
"NormalURL": "",
"ColliderURL": "",
"Convex": true,
"MaterialIndex": 3,
"TypeIndex": 0,
"CustomShader": {
"SpecularColor": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"SpecularIntensity": 0.0,
"SpecularSharpness": 2.0,
"FresnelStrength": 0.0
},
"CastShadows": true
},
"LuaScript": "\r\nfunction onload(saved_data)\r\n createDownloadButton()\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make Download button\r\nfunction createDownloadButton()\r\n self.createButton({\r\n label=\"Download\", click_function=\"buttonClick_download\", function_owner=self,\r\n position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800,\r\n font_size=150, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by download button,\r\nfunction buttonClick_download()\r\n local params = { url = self.getGMNotes(), replace = self.guid }\r\n Global.call('placeholder_download', params)\r\nend\r\n",
"LuaScriptState": "{\"ml\":{\"012f6e\":{\"lock\":false,\"pos\":{\"x\":-33.1674919128418,\"y\":1.6287933588028,\"z\":3.70239424705505},\"rot\":{\"x\":359.931579589844,\"y\":315.000122070313,\"z\":359.955413818359}},\"01a1bf\":{\"lock\":false,\"pos\":{\"x\":-2.68847990036011,\"y\":1.61911654472351,\"z\":-5.04854345321655},\"rot\":{\"x\":0.0168357044458389,\"y\":179.999969482422,\"z\":0.0802558362483978}},\"119ff4\":{\"lock\":false,\"pos\":{\"x\":-2.72466206550598,\"y\":1.62076032161713,\"z\":0.373312473297119},\"rot\":{\"x\":0.0168315507471561,\"y\":180.002822875977,\"z\":0.080256812274456}},\"1375c8\":{\"lock\":false,\"pos\":{\"x\":-0.0221959762275219,\"y\":1.61770987510681,\"z\":2.87429571151733},\"rot\":{\"x\":0.0168356113135815,\"y\":179.999984741211,\"z\":0.080255962908268}},\"1ade36\":{\"lock\":false,\"pos\":{\"x\":-3.95589303970337,\"y\":1.59753930568695,\"z\":-10.4411792755127},\"rot\":{\"x\":359.919738769531,\"y\":270.000152587891,\"z\":0.0168368946760893}},\"262233\":{\"lock\":false,\"pos\":{\"x\":-23.6764488220215,\"y\":1.62806642055511,\"z\":-0.0300165209919214},\"rot\":{\"x\":359.920104980469,\"y\":270.000305175781,\"z\":0.0168391764163971}},\"308d21\":{\"lock\":false,\"pos\":{\"x\":-20.245641708374,\"y\":1.60910308361053,\"z\":-1.98555314540863},\"rot\":{\"x\":359.931579589844,\"y\":315,\"z\":359.955413818359}},\"30c009\":{\"lock\":false,\"pos\":{\"x\":-26.6726875305176,\"y\":1.6186695098877,\"z\":0.0717479661107063},\"rot\":{\"x\":359.920104980469,\"y\":270.008666992188,\"z\":0.0168553087860346}},\"3111c8\":{\"lock\":false,\"pos\":{\"x\":-3.92764544487,\"y\":1.70105218887329,\"z\":5.75713586807251},\"rot\":{\"x\":359.919738769531,\"y\":270,\"z\":180.016815185547}},\"354cd0\":{\"lock\":false,\"pos\":{\"x\":-36.7732048034668,\"y\":1.63610112667084,\"z\":11.4600057601929},\"rot\":{\"x\":359.983154296875,\"y\":-7.23976627341472E-05,\"z\":359.920074462891}},\"363e2d\":{\"lock\":false,\"pos\":{\"x\":-3.92945504188538,\"y\":1.70105469226837,\"z\":5.75715255737305},\"rot\":{\"x\":359.919738769531,\"y\":270.000061035156,\"z\":180.016830444336}},\"36b4eb\":{\"lock\":false,\"pos\":{\"x\":-1.4717743396759,\"y\":1.47563123703003,\"z\":-26.9304161071777},\"rot\":{\"x\":359.920135498047,\"y\":269.986267089844,\"z\":0.0168911255896091}},\"370aa5\":{\"lock\":false,\"pos\":{\"x\":-33.3459815979004,\"y\":1.6377238035202,\"z\":-13.0488519668579},\"rot\":{\"x\":359.920104980469,\"y\":270.007629394531,\"z\":0.0168289542198181}},\"44d047\":{\"lock\":false,\"pos\":{\"x\":-14.6150169372559,\"y\":1.62739491462708,\"z\":-6.00151872634888},\"rot\":{\"x\":359.920013427734,\"y\":270.0048828125,\"z\":0.735514640808105}},\"473d21\":{\"lock\":false,\"pos\":{\"x\":-36.773136138916,\"y\":1.64856243133545,\"z\":7.56998348236084},\"rot\":{\"x\":359.920104980469,\"y\":270.000305175781,\"z\":0.0168392565101385}},\"638f24\":{\"lock\":false,\"pos\":{\"x\":-36.7732353210449,\"y\":1.62935054302216,\"z\":-11.5099906921387},\"rot\":{\"x\":359.983154296875,\"y\":0.000155930014443584,\"z\":359.920043945313}},\"677a88\":{\"lock\":false,\"pos\":{\"x\":-33.8202323913574,\"y\":1.66120958328247,\"z\":16.7586078643799},\"rot\":{\"x\":359.393829345703,\"y\":269.9990234375,\"z\":0.0168407447636127}},\"7234af\":{\"lock\":false,\"pos\":{\"x\":-40.2050437927246,\"y\":1.63523375988007,\"z\":-7.77354431152344},\"rot\":{\"x\":359.920104980469,\"y\":270.008728027344,\"z\":0.0168547462671995}},\"790c3a\":{\"lock\":false,\"pos\":{\"x\":-17.1199398040771,\"y\":1.62006711959839,\"z\":3.85998702049255},\"rot\":{\"x\":359.920104980469,\"y\":270.000274658203,\"z\":0.0168391242623329}},\"7b0f72\":{\"lock\":false,\"pos\":{\"x\":1.69660425186157,\"y\":1.55831599235535,\"z\":14.27880859375},\"rot\":{\"x\":359.955139160156,\"y\":224.997817993164,\"z\":0.0686719566583633}},\"7f901e\":{\"lock\":false,\"pos\":{\"x\":-33.5703430175781,\"y\":1.63791847229004,\"z\":-13.4511194229126},\"rot\":{\"x\":359.920104980469,\"y\":269.999969482422,\"z\":0.0168396458029747}},\"a96a99\":{\"lock\":false,\"pos\":{\"x\":-5.41815328598022,\"y\":1.62370681762695,\"z\":-2.43894195556641},\"rot\":{\"x\":0.0168357398360968,\"y\":179.999938964844,\"z\":0.0802559182047844}},\"b2f67d\":{\"lock\":false,\"pos\":{\"x\":-40.2400131225586,\"y\":1.63415777683258,\"z\":-11.6012926101685},\"rot\":{\"x\":359.931579589844,\"y\":314.999816894531,\"z\":359.955413818359}},\"b57f26\":{\"lock\":false,\"pos\":{\"x\":-17.119945526123,\"y\":1.6178103685379,\"z\":-3.83001327514648},\"rot\":{\"x\":359.920074462891,\"y\":270.000366210938,\"z\":0.0170574262738228}},\"b976f6\":{\"lock\":false,\"pos\":{\"x\":-43.3699989318848,\"y\":1.6532735824585,\"z\":-7.70002031326294},\"rot\":{\"x\":359.920104980469,\"y\":270.000183105469,\"z\":0.016839362680912}},\"be7797\":{\"lock\":false,\"pos\":{\"x\":-36.7731857299805,\"y\":1.64407479763031,\"z\":-7.70001935958862},\"rot\":{\"x\":359.920104980469,\"y\":270.000213623047,\"z\":0.0168393291532993}},\"bfc095\":{\"lock\":false,\"pos\":{\"x\":-33.264720916748,\"y\":1.64666676521301,\"z\":17.7659683227539},\"rot\":{\"x\":359.920104980469,\"y\":270.008117675781,\"z\":0.016829950734973}},\"c21137\":{\"lock\":false,\"pos\":{\"x\":-30.220832824707,\"y\":1.6371922492981,\"z\":-0.0298347342759371},\"rot\":{\"x\":359.920104980469,\"y\":269.979156494141,\"z\":0.0168686341494322}},\"ca62fc\":{\"lock\":false,\"pos\":{\"x\":-17.119909286499,\"y\":1.60531914234161,\"z\":-0.0299909822642803},\"rot\":{\"x\":359.983154296875,\"y\":1.91053222806659E-05,\"z\":359.920074462891}},\"d9e9ca\":{\"lock\":false,\"pos\":{\"x\":-43.3699531555176,\"y\":1.65776121616364,\"z\":7.56960582733154},\"rot\":{\"x\":359.920104980469,\"y\":269.998138427734,\"z\":0.0168421883136034}},\"dcb241\":{\"lock\":false,\"pos\":{\"x\":-3.61810564994812,\"y\":1.58212554454803,\"z\":-14.987250328064},\"rot\":{\"x\":359.919738769531,\"y\":270.025085449219,\"z\":0.0168028976768255}},\"dcb5db\":{\"lock\":false,\"pos\":{\"x\":-40.8296585083008,\"y\":1.64187610149384,\"z\":11.8642778396606},\"rot\":{\"x\":359.955413818359,\"y\":224.999725341797,\"z\":0.0683861002326012}},\"f2b1dd\":{\"lock\":false,\"pos\":{\"x\":-14.0998258590698,\"y\":1.6266473531723,\"z\":-5.97682428359985},\"rot\":{\"x\":359.408386230469,\"y\":270.001953125,\"z\":0.0172571241855621}},\"f52a2e\":{\"lock\":false,\"pos\":{\"x\":-36.7731704711914,\"y\":1.65080201625824,\"z\":15.1899909973145},\"rot\":{\"x\":359.920104980469,\"y\":270.000244140625,\"z\":0.0168393030762672}},\"f7e308\":{\"lock\":false,\"pos\":{\"x\":-39.8396644592285,\"y\":1.6392365694046,\"z\":7.5797963142395},\"rot\":{\"x\":359.920104980469,\"y\":270.008636474609,\"z\":0.0168524961918592}},\"fa15cd\":{\"lock\":false,\"pos\":{\"x\":-36.7732353210449,\"y\":1.64184725284576,\"z\":-15.2800159454346},\"rot\":{\"x\":359.920104980469,\"y\":270.000366210938,\"z\":0.0168388821184635}},\"fc5dce\":{\"lock\":false,\"pos\":{\"x\":-33.6138725280762,\"y\":1.62700355052948,\"z\":-4.50444030761719},\"rot\":{\"x\":359.955413818359,\"y\":225.000061035156,\"z\":0.0683787390589714}},\"fe6ec3\":{\"lock\":false,\"pos\":{\"x\":-20.3256988525391,\"y\":1.61053466796875,\"z\":2.50686311721802},\"rot\":{\"x\":359.955200195313,\"y\":225.168899536133,\"z\":0.0682470053434372}}}}",
"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
}
}
]
}
]
},
{
"GUID": "9f6801",
"Name": "Custom_Model_Bag",
"Transform": {
"posX": 23.5700054,
"posY": 1.44740355,
"posZ": -4.233625,
"rotX": 359.920135,
"rotY": 269.999878,
"rotZ": 0.01687391,
"scaleX": 0.5,
"scaleY": 0.07,
"scaleZ": 0.5
},
"Nickname": "Challenge Scenarios",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"MaterialIndex": -1,
"MeshIndex": -1,
"CustomMesh": {
"MeshURL": "https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/core_h_MSH.obj",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/1758068588410811700/1DF1FE7CA9B185FE571B967718A66C175FB35B64/",
"NormalURL": "",
"ColliderURL": "",
"Convex": true,
"MaterialIndex": 3,
"TypeIndex": 6,
"CustomShader": {
"SpecularColor": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"SpecularIntensity": 0.0,
"SpecularSharpness": 2.0,
"FresnelStrength": 0.0
},
"CastShadows": true
},
"Bag": {
"Order": 0
},
"LuaScript": "-- Utility memory bag by Directsun\r\n-- Version 2.5.2\r\n-- Fork of Memory Bag 2.0 by MrStump\r\n\r\nfunction updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction combineMemoryFromBagsWithin()\r\n local bagObjList = self.getObjects()\r\n for _, bagObj in ipairs(bagObjList) do\r\n local data = bagObj.lua_script_state\r\n if data ~= nil then\r\n local j = JSON.decode(data)\r\n if j ~= nil and j.ml ~= nil then\r\n for guid, entry in pairs(j.ml) do\r\n memoryList[guid] = entry\r\n end\r\n end\r\n end\r\n end\r\nend\r\n\r\nfunction updateMemoryWithMoves()\r\n memoryList = memoryListBackup\r\n --get the first transposed object's coordinates\r\n local obj = getObjectFromGUID(moveGuid)\r\n\r\n -- p1 is where needs to go, p2 is where it was\r\n local refObjPos = memoryList[moveGuid].pos\r\n local deltaPos = findOffsetDistance(obj.getPosition(), refObjPos, nil)\r\n local movedRotation = obj.getRotation()\r\n for guid, entry in pairs(memoryList) do\r\n memoryList[guid].pos.x = entry.pos.x - deltaPos.x\r\n memoryList[guid].pos.y = entry.pos.y - deltaPos.y\r\n memoryList[guid].pos.z = entry.pos.z - deltaPos.z\r\n -- memoryList[guid].rot.x = movedRotation.x\r\n -- memoryList[guid].rot.y = movedRotation.y\r\n -- memoryList[guid].rot.z = movedRotation.z\r\n end\r\n\r\n --theList[obj.getGUID()] = {\r\n -- pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n -- rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n -- lock=obj.getLock()\r\n --}\r\n moveList = {}\r\nend\r\n\r\nfunction onload(saved_data)\r\n fresh = true\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n moveList = {}\r\n moveGuid = nil\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n fresh = false\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.1,-6}, rotation={0,0,0}, height=500, width=1200,\r\n font_size=350, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by Transpose button\r\nfunction buttonClick_transpose()\r\n moveGuid = nil\r\n broadcastToAll(\"Select one object and move it- all objects will move relative to the new location\", {0.75, 0.75, 1})\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n moveList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects(true)\r\n createSetupActionButtons(true)\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects(false)\r\n createSetupActionButtons(false)\r\nend\r\n\r\nfunction getAllObjectsInMemory()\r\n local objTable = {}\r\n local curObj = {}\r\n\r\n for guid in pairs(memoryListBackup) do\r\n curObj = getObjectFromGUID(guid)\r\n table.insert(objTable, curObj)\r\n end\r\n\r\n return objTable\r\n -- return getAllObjects()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects(move)\r\n local howManyButtons = 0\r\n\r\n local objsToHaveButtons = {}\r\n if move == true then\r\n objsToHaveButtons = getAllObjectsInMemory()\r\n else\r\n objsToHaveButtons = getAllObjects()\r\n end\r\n\r\n for _, obj in ipairs(objsToHaveButtons) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1 * 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor + 4\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj, move) end\r\n local color = {0.75,0.25,0.25,0.6}\r\n local colorMove = {0,0,1,0.6}\r\n if move == true then\r\n color = colorMove\r\n end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=1000, width=1000,\r\n color=color,\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons(move)\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={-1.25,0.1,-6}, rotation={0,0,0}, height=500, width=1200,\r\n font_size=350, color={0,0,0}, font_color={1,1,1}\r\n })\r\n\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={-1.25,0.3,-7}, rotation={0,0,0}, height=500, width=1200,\r\n font_size=350, color={0,0,0}, font_color={1,1,1}\r\n })\r\n\r\n if move == false then\r\n self.createButton({\r\n label=\"Add\", click_function=\"buttonClick_add\", function_owner=self,\r\n position={1.25,0.3,-6}, rotation={0,0,0}, height=500, width=1200,\r\n font_size=350, color={0,0,0}, font_color={0.25,1,0.25}\r\n })\r\n\r\n if fresh == false then\r\n self.createButton({\r\n label=\"Set New\", click_function=\"buttonClick_setNew\", function_owner=self,\r\n position={1.25,0.3,-8}, rotation={0,0,0}, height=500, width=1200,\r\n font_size=350, color={0,0,0}, font_color={0.75,0.75,1}\r\n })\r\n self.createButton({\r\n label=\"Remove\", click_function=\"buttonClick_remove\", function_owner=self,\r\n position={1.25,0.3,-7}, rotation={0,0,0}, height=500, width=1200,\r\n font_size=350, color={0,0,0}, font_color={1,0.25,0.25}\r\n })\r\n end\r\n end\r\n\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-1.25,0.3,-8}, rotation={0,0,0}, height=500, width=1200,\r\n font_size=350, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj, move)\r\n local colorMove = {0,0,1,0.6}\r\n local color = {0,1,0,0.6}\r\n\r\n previousGuid = selectedGuid\r\n selectedGuid = obj.getGUID()\r\n\r\n theList = memoryList\r\n if move == true then\r\n theList = moveList\r\n if previousGuid ~= nil and previousGuid ~= selectedGuid then\r\n local prevObj = getObjectFromGUID(previousGuid)\r\n prevObj.highlightOff()\r\n self.editButton({index=previousIndex, color=colorMove})\r\n theList[previousGuid] = nil\r\n end\r\n previousIndex = index\r\n end\r\n\r\n if theList[selectedGuid] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n theList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n if move == true then\r\n color = colorMove\r\n end\r\n self.editButton({index=index, color=color})\r\n theList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n moveList = {}\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\n moveGuid = nil\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n fresh = false\r\n if next(moveList) ~= nil then\r\n for guid in pairs(moveList) do\r\n moveGuid = guid\r\n end\r\n if memoryListBackup[moveGuid] == nil then\r\n broadcastToAll(\"Item selected for moving is not already in memory\", {1, 0.25, 0.25})\r\n else\r\n broadcastToAll(\"Moving all items in memory relative to new objects position!\", {0.75, 0.75, 1})\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(moveList) do\r\n moveGuid = guid\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n updateMemoryWithMoves()\r\n updateSave()\r\n buttonClick_place()\r\n end\r\n elseif next(memoryList) == nil and moveGuid == nil then\r\n memoryList = memoryListBackup\r\n broadcastToAll(\"No selections made.\", {0.75, 0.25, 0.25})\r\n end\r\n combineMemoryFromBagsWithin()\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n moveGuid = nil\r\nend\r\n\r\nfunction combineTables(first_table, second_table)\r\n for k,v in pairs(second_table) do first_table[k] = v end\r\nend\r\n\r\nfunction buttonClick_add()\r\n fresh = false\r\n combineTables(memoryList, memoryListBackup)\r\n broadcastToAll(\"Adding internal bags and selections to existing memory\", {0.25, 0.75, 0.25})\r\n combineMemoryFromBagsWithin()\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\nfunction buttonClick_remove()\r\n broadcastToAll(\"Removing Selected Entries From Memory\", {1.0, 0.25, 0.25})\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n memoryListBackup[guid] = nil\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Removed\", {1,1,1})\r\n memoryList = memoryListBackup\r\n updateSave()\r\nend\r\n\r\nfunction buttonClick_setNew()\r\n broadcastToAll(\"Setting new position relative to items in memory\", {0.75, 0.75, 1})\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n guid = obj.guid\r\n if memoryListBackup[guid] ~= nil then\r\n count = count + 1\r\n memoryListBackup[guid].pos = obj.getPosition()\r\n memoryListBackup[guid].rot = obj.getRotation()\r\n memoryListBackup[guid].lock = obj.getLock()\r\n end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n memoryList = memoryListBackup\r\n updateSave()\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n fresh = true\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={1.35,1,6}, rotation={0,0,0}, height=500, width=1200,\r\n font_size=350, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={-1.25,1,6}, rotation={0,0,0}, height=500, width=1200,\r\n font_size=350, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.1,-6}, rotation={0,0,0}, height=500, width=1200,\r\n font_size=350, color={0,0,0}, font_color={1,1,1}\r\n })\r\n--- self.createButton({\r\n--- label=\"Move\", click_function=\"buttonClick_transpose\", function_owner=self,\r\n--- position={-2.8,0.3,0}, rotation={0,0,0}, height=350, width=800,\r\n--- font_size=250, color={0,0,0}, font_color={0.75,0.75,1}\r\n--- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot, smooth=false\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local yOffset = 0\r\n if obj ~= nil then\r\n local bounds = obj.getBounds()\r\n yOffset = (bounds.size.y - bounds.offset.y)\r\n end\r\n local deltaPos = {}\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + yOffset\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\nfunction rotateMyCoordinates(desiredPos, obj)\r\n\tlocal angle = math.rad(obj.getRotation().y)\r\n local x = desiredPos.x * math.sin(angle)\r\n\tlocal z = desiredPos.z * math.cos(angle)\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend",
"LuaScriptState": "{\"ml\":{\"451eaa\":{\"lock\":false,\"pos\":{\"x\":12.2499923706055,\"y\":1.46560537815094,\"z\":3.98634815216064},\"rot\":{\"x\":359.920135498047,\"y\":269.999969482422,\"z\":0.0168744251132011}},\"72ab92\":{\"lock\":false,\"pos\":{\"x\":12.2520599365234,\"y\":1.46795785427094,\"z\":11.9863653182983},\"rot\":{\"x\":359.920135498047,\"y\":270,\"z\":0.0168752707540989}},\"9e73fa\":{\"lock\":false,\"pos\":{\"x\":12.2499151229858,\"y\":1.46089398860931,\"z\":-12.0136032104492},\"rot\":{\"x\":359.920135498047,\"y\":269.999969482422,\"z\":0.0168741904199123}},\"cc7eb3\":{\"lock\":false,\"pos\":{\"x\":12.2493734359741,\"y\":1.46325075626373,\"z\":-4.01360559463501},\"rot\":{\"x\":359.920135498047,\"y\":270,\"z\":0.016873374581337}}}}",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "451eaa",
"Name": "Custom_Model",
"Transform": {
"posX": 12.2499971,
"posY": 1.46560514,
"posZ": 3.98634815,
"rotX": 359.920135,
"rotY": 269.999939,
"rotZ": 0.0168736149,
"scaleX": 2.21,
"scaleY": 0.46,
"scaleZ": 2.42
},
"Nickname": "Bad Blood",
"Description": "Challenge Scenario",
"GMNotes": "scenarios/challenge_bad_blood.json",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0,
"a": 0.274509817
},
"LayoutGroupSortIndex": 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,
"CustomMesh": {
"MeshURL": "https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/1655599785039299268/52DB5C3A0E600D6AECB0B851ECF90C5B3D016421/",
"NormalURL": "",
"ColliderURL": "",
"Convex": true,
"MaterialIndex": 3,
"TypeIndex": 0,
"CustomShader": {
"SpecularColor": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"SpecularIntensity": 0.0,
"SpecularSharpness": 2.0,
"FresnelStrength": 0.0
},
"CastShadows": true
},
"LuaScript": "\r\nfunction onload(saved_data)\r\n createDownloadButton()\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make Download button\r\nfunction createDownloadButton()\r\n self.createButton({\r\n label=\"Download\", click_function=\"buttonClick_download\", function_owner=self,\r\n position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800,\r\n font_size=150, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by download button,\r\nfunction buttonClick_download()\r\n local params = { url = self.getGMNotes(), replace = self.guid }\r\n Global.call('placeholder_download', params)\r\nend\r\n",
"LuaScriptState": "{\"ml\":{\"007d36\":{\"lock\":false,\"pos\":{\"x\":-36.7731895446777,\"y\":1.64407479763031,\"z\":-7.70001554489136},\"rot\":{\"x\":359.920104980469,\"y\":269.999328613281,\"z\":0.0168409943580627}},\"00d19a\":{\"lock\":false,\"pos\":{\"x\":-38.7164535522461,\"y\":1.68264377117157,\"z\":-9.52374649047852},\"rot\":{\"x\":359.920104980469,\"y\":270.002807617188,\"z\":0.0168448258191347}},\"061a07\":{\"lock\":false,\"pos\":{\"x\":-20.4535999298096,\"y\":1.60994374752045,\"z\":-0.111300319433212},\"rot\":{\"x\":0.0798908993601799,\"y\":89.9882278442383,\"z\":359.983123779297}},\"0678e8\":{\"lock\":false,\"pos\":{\"x\":-23.6764717102051,\"y\":1.63030004501343,\"z\":7.56998538970947},\"rot\":{\"x\":359.920104980469,\"y\":269.999389648438,\"z\":0.0168406069278717}},\"06d6fe\":{\"lock\":false,\"pos\":{\"x\":-25.4280700683594,\"y\":1.68353700637817,\"z\":5.99185943603516},\"rot\":{\"x\":359.922698974609,\"y\":269.999755859375,\"z\":1.47544634342194}},\"07f90c\":{\"lock\":false,\"pos\":{\"x\":-27.1247005462646,\"y\":1.6170357465744,\"z\":-7.63210105895996},\"rot\":{\"x\":359.920104980469,\"y\":270.008087158203,\"z\":0.0168558973819017}},\"165dac\":{\"lock\":false,\"pos\":{\"x\":-2.68851804733276,\"y\":1.59734869003296,\"z\":-5.04851770401001},\"rot\":{\"x\":0.0168365500867367,\"y\":179.999603271484,\"z\":0.0802549868822098}},\"25f3c2\":{\"lock\":false,\"pos\":{\"x\":-18.6359195709229,\"y\":1.67094278335571,\"z\":-1.67357134819031},\"rot\":{\"x\":359.919982910156,\"y\":269.996643066406,\"z\":1.39543783664703}},\"2a3c87\":{\"lock\":false,\"pos\":{\"x\":-23.6765213012695,\"y\":1.62581241130829,\"z\":-7.70001459121704},\"rot\":{\"x\":359.920104980469,\"y\":269.999328613281,\"z\":0.0168407671153545}},\"30ed35\":{\"lock\":false,\"pos\":{\"x\":-18.5939636230469,\"y\":1.66943037509918,\"z\":-9.29181957244873},\"rot\":{\"x\":359.921173095703,\"y\":269.976348876953,\"z\":1.46869027614594}},\"34e74c\":{\"lock\":false,\"pos\":{\"x\":-33.5060005187988,\"y\":1.62598347663879,\"z\":-7.46410274505615},\"rot\":{\"x\":359.920104980469,\"y\":270.002014160156,\"z\":0.0168642066419125}},\"377b20\":{\"lock\":false,\"pos\":{\"x\":-30.2241649627686,\"y\":1.6371967792511,\"z\":-0.0300150476396084},\"rot\":{\"x\":359.920104980469,\"y\":269.999450683594,\"z\":0.0168403703719378}},\"3b4478\":{\"lock\":false,\"pos\":{\"x\":-32.1027717590332,\"y\":1.68981921672821,\"z\":-1.61117219924927},\"rot\":{\"x\":1.05327343940735,\"y\":269.993774414063,\"z\":0.784092843532562}},\"3d7245\":{\"lock\":false,\"pos\":{\"x\":-20.472448348999,\"y\":1.60774183273315,\"z\":-7.69286489486694},\"rot\":{\"x\":0.0798909068107605,\"y\":89.9881896972656,\"z\":359.983123779297}},\"428e26\":{\"lock\":false,\"pos\":{\"x\":-12.8403749465942,\"y\":1.65113496780396,\"z\":6.03833913803101},\"rot\":{\"x\":359.920104980469,\"y\":269.981506347656,\"z\":0.0168634727597237}},\"510265\":{\"lock\":false,\"pos\":{\"x\":-3.38745307922363,\"y\":1.58178853988647,\"z\":-15.034649848938},\"rot\":{\"x\":359.919738769531,\"y\":270.001312255859,\"z\":0.0168359484523535}},\"5789a0\":{\"lock\":false,\"pos\":{\"x\":-23.6765003204346,\"y\":1.6133451461792,\"z\":-3.82999897003174},\"rot\":{\"x\":359.983184814453,\"y\":0.0180035475641489,\"z\":359.920043945313}},\"7234af\":{\"lock\":false,\"pos\":{\"x\":-23.6765003204346,\"y\":1.6156051158905,\"z\":3.86000037193298},\"rot\":{\"x\":359.983184814453,\"y\":0.0184735096991062,\"z\":359.920043945313}},\"73f813\":{\"lock\":false,\"pos\":{\"x\":-23.6764583587646,\"y\":1.6280665397644,\"z\":-0.0300134774297476},\"rot\":{\"x\":359.920104980469,\"y\":269.997406005859,\"z\":0.0168432109057903}},\"847357\":{\"lock\":false,\"pos\":{\"x\":-3.95591735839844,\"y\":1.59753930568695,\"z\":-10.4411735534668},\"rot\":{\"x\":359.919738769531,\"y\":269.999694824219,\"z\":0.0168375447392464}},\"88a71f\":{\"lock\":false,\"pos\":{\"x\":-15.3431625366211,\"y\":1.61713230609894,\"z\":2.30415105819702},\"rot\":{\"x\":359.920104980469,\"y\":269.991577148438,\"z\":0.0168513152748346}},\"88e9a0\":{\"lock\":false,\"pos\":{\"x\":-25.3403053283691,\"y\":1.68284678459167,\"z\":-1.50465857982636},\"rot\":{\"x\":359.922943115234,\"y\":269.98291015625,\"z\":1.63856101036072}},\"927692\":{\"lock\":false,\"pos\":{\"x\":-30.224235534668,\"y\":1.63494277000427,\"z\":-7.70001649856567},\"rot\":{\"x\":359.920104980469,\"y\":269.999450683594,\"z\":0.0168404299765825}},\"99909c\":{\"lock\":false,\"pos\":{\"x\":-30.2242984771729,\"y\":1.62247550487518,\"z\":-3.82999992370605},\"rot\":{\"x\":359.983184814453,\"y\":0.0181040540337563,\"z\":359.920043945313}},\"9c1b91\":{\"lock\":false,\"pos\":{\"x\":-11.84925365448,\"y\":1.4153037071228,\"z\":8.0305700302124},\"rot\":{\"x\":359.983154296875,\"y\":5.82942702749278E-05,\"z\":359.920043945313}},\"a00323\":{\"lock\":false,\"pos\":{\"x\":-2.72483348846436,\"y\":1.59899258613586,\"z\":0.372691959142685},\"rot\":{\"x\":0.0168312788009644,\"y\":180.003341674805,\"z\":0.0802560299634933}},\"adebd8\":{\"lock\":false,\"pos\":{\"x\":-27.4881000518799,\"y\":1.62100207805634,\"z\":4.13960027694702},\"rot\":{\"x\":359.955383300781,\"y\":225.012222290039,\"z\":0.0683689713478088}},\"b5637e\":{\"lock\":false,\"pos\":{\"x\":-25.1550369262695,\"y\":1.67983627319336,\"z\":-9.20204162597656},\"rot\":{\"x\":359.921356201172,\"y\":270.007080078125,\"z\":1.59127795696259}},\"b8619a\":{\"lock\":false,\"pos\":{\"x\":-3.9276659488678,\"y\":1.75400519371033,\"z\":5.75231170654297},\"rot\":{\"x\":359.919738769531,\"y\":269.999328613281,\"z\":180.016815185547}},\"c5f67a\":{\"lock\":false,\"pos\":{\"x\":-17.1200084686279,\"y\":1.61666977405548,\"z\":-7.70001411437988},\"rot\":{\"x\":359.920104980469,\"y\":269.999176025391,\"z\":0.0168416071683168}},\"d0aa0f\":{\"lock\":false,\"pos\":{\"x\":-1.46558129787445,\"y\":1.47562265396118,\"z\":-26.9304294586182},\"rot\":{\"x\":359.920135498047,\"y\":269.998718261719,\"z\":0.0168742313981056}},\"ef5528\":{\"lock\":false,\"pos\":{\"x\":-31.8565654754639,\"y\":1.68725693225861,\"z\":-9.34178924560547},\"rot\":{\"x\":359.925323486328,\"y\":269.992340087891,\"z\":1.40744805335999}},\"f61f6c\":{\"lock\":false,\"pos\":{\"x\":-17.1199321746826,\"y\":1.61892378330231,\"z\":-0.0300151035189629},\"rot\":{\"x\":359.920104980469,\"y\":269.999389648438,\"z\":0.0168404094874859}}}}",
"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
}
}
]
},
{
"GUID": "72ab92",
"Name": "Custom_Model",
"Transform": {
"posX": 12.2520618,
"posY": 1.467958,
"posZ": 11.9863663,
"rotX": 359.920135,
"rotY": 270.0,
"rotZ": 0.016874,
"scaleX": 2.21,
"scaleY": 0.46,
"scaleZ": 2.42
},
"Nickname": "All or Nothing",
"Description": "Challenge Scenario",
"GMNotes": "scenarios/challenge_all_or_nothing.json",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0,
"a": 0.274509817
},
"LayoutGroupSortIndex": 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,
"CustomMesh": {
"MeshURL": "https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/1655600953066192972/8A5939900FCA8E2A2772CEDE6A03594A68961C4C/",
"NormalURL": "",
"ColliderURL": "",
"Convex": true,
"MaterialIndex": 3,
"TypeIndex": 0,
"CustomShader": {
"SpecularColor": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"SpecularIntensity": 0.0,
"SpecularSharpness": 2.0,
"FresnelStrength": 0.0
},
"CastShadows": true
},
"LuaScript": "\r\nfunction onload(saved_data)\r\n createDownloadButton()\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make Download button\r\nfunction createDownloadButton()\r\n self.createButton({\r\n label=\"Download\", click_function=\"buttonClick_download\", function_owner=self,\r\n position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800,\r\n font_size=150, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by download button,\r\nfunction buttonClick_download()\r\n local params = { url = self.getGMNotes(), replace = self.guid }\r\n Global.call('placeholder_download', params)\r\nend\r\n",
"LuaScriptState": "{\"ml\":{\"083fc2\":{\"lock\":false,\"pos\":{\"x\":-10.8500003814697,\"y\":1.41115474700928,\"z\":-1.34567248821259},\"rot\":{\"x\":0.0799797624349594,\"y\":90.00146484375,\"z\":359.983123779297}},\"0b6166\":{\"lock\":false,\"pos\":{\"x\":-30.2242,\"y\":1.6931,\"z\":-7.7},\"rot\":{\"x\":359.9201,\"y\":269.9998,\"z\":0.0169}},\"116eb9\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6793,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":0.0169}},\"1ed6d5\":{\"lock\":false,\"pos\":{\"x\":-26.8623,\"y\":1.6176,\"z\":-4.4728},\"rot\":{\"x\":0.0446,\"y\":44.9999,\"z\":359.9316}},\"25652c\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6167,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":270.011,\"z\":0.0169}},\"29d606\":{\"lock\":false,\"pos\":{\"x\":-2.72459888458252,\"y\":1.59899246692657,\"z\":0.373301416635513},\"rot\":{\"x\":0.0168360080569983,\"y\":180,\"z\":0.0802551135420799}},\"45341b\":{\"lock\":false,\"pos\":{\"x\":-23.676477432251,\"y\":1.63030004501343,\"z\":7.56998491287231},\"rot\":{\"x\":359.920104980469,\"y\":270.027587890625,\"z\":0.0168011523783207}},\"4541f6\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6862,\"z\":-0.0299},\"rot\":{\"x\":359.9218,\"y\":269.9987,\"z\":0.016}},\"47b306\":{\"lock\":false,\"pos\":{\"x\":-30.2244,\"y\":1.6909,\"z\":-15.28},\"rot\":{\"x\":359.9201,\"y\":269.9996,\"z\":0.0169}},\"4901f8\":{\"lock\":false,\"pos\":{\"x\":-26.8973,\"y\":1.619,\"z\":-0.0345},\"rot\":{\"x\":359.9201,\"y\":270.0111,\"z\":0.0169}},\"4bd010\":{\"lock\":false,\"pos\":{\"x\":-36.7731,\"y\":1.7045,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9998,\"z\":0.0169}},\"52e361\":{\"lock\":false,\"pos\":{\"x\":-15.0137,\"y\":1.6712,\"z\":-9.996},\"rot\":{\"x\":359.9201,\"y\":270,\"z\":0.0169}},\"556e96\":{\"lock\":false,\"pos\":{\"x\":-3.92741346359253,\"y\":1.76363432407379,\"z\":5.75710391998291},\"rot\":{\"x\":359.919738769531,\"y\":270,\"z\":180.016815185547}},\"58e1e2\":{\"lock\":false,\"pos\":{\"x\":-2.68849968910217,\"y\":1.61430251598358,\"z\":-5.04850006103516},\"rot\":{\"x\":0.0168356839567423,\"y\":180,\"z\":0.0802557542920113}},\"64a96b\":{\"lock\":false,\"pos\":{\"x\":-17.1201,\"y\":1.6748,\"z\":-7.7},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":0.0169}},\"66197b\":{\"lock\":false,\"pos\":{\"x\":-3.9912,\"y\":1.6632,\"z\":15.0046},\"rot\":{\"x\":359.9197,\"y\":269.9999,\"z\":0.0168}},\"70df0b\":{\"lock\":false,\"pos\":{\"x\":-30.2243,\"y\":1.6976,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":269.9998,\"z\":0.0169}},\"7234af\":{\"lock\":false,\"pos\":{\"x\":-33.6012,\"y\":1.6283,\"z\":-0.1123},\"rot\":{\"x\":359.9201,\"y\":270.0112,\"z\":0.0169}},\"739b98\":{\"lock\":false,\"pos\":{\"x\":-27.0616,\"y\":1.6204,\"z\":3.8989},\"rot\":{\"x\":359.9315,\"y\":314.9926,\"z\":359.9554}},\"7c8eef\":{\"lock\":false,\"pos\":{\"x\":-3.84129118919373,\"y\":1.58243310451508,\"z\":-15.0043783187866},\"rot\":{\"x\":359.919738769531,\"y\":269.999938964844,\"z\":0.0168378949165344}},\"7d30ce\":{\"lock\":false,\"pos\":{\"x\":-20.5607,\"y\":1.6091,\"z\":-3.6976},\"rot\":{\"x\":359.9316,\"y\":314.9958,\"z\":359.9554}},\"7f6452\":{\"lock\":false,\"pos\":{\"x\":-14.7653,\"y\":1.751,\"z\":5.0207},\"rot\":{\"x\":357.2015,\"y\":0.0614,\"z\":359.919}},\"7f7fb0\":{\"lock\":false,\"pos\":{\"x\":-1.46529722213745,\"y\":1.47562217712402,\"z\":-26.930419921875},\"rot\":{\"x\":359.920135498047,\"y\":269.998687744141,\"z\":0.0168742742389441}},\"7faf81\":{\"lock\":false,\"pos\":{\"x\":-17.1199321746826,\"y\":1.6189239025116,\"z\":-0.0300155226141214},\"rot\":{\"x\":359.920104980469,\"y\":269.976104736328,\"z\":0.0168728288263083}},\"89f865\":{\"lock\":false,\"pos\":{\"x\":-20.3063659667969,\"y\":1.60967397689819,\"z\":-0.330693691968918},\"rot\":{\"x\":359.920104980469,\"y\":269.996734619141,\"z\":0.0168722663074732}},\"8fffb7\":{\"lock\":false,\"pos\":{\"x\":-26.9403209686279,\"y\":1.61894810199738,\"z\":-0.249956101179123},\"rot\":{\"x\":359.920104980469,\"y\":269.996643066406,\"z\":0.0168721340596676}},\"90bb07\":{\"lock\":false,\"pos\":{\"x\":-23.676513671875,\"y\":1.62694978713989,\"z\":-3.83001303672791},\"rot\":{\"x\":359.920104980469,\"y\":269.999755859375,\"z\":0.0168398190289736}},\"911f8c\":{\"lock\":false,\"pos\":{\"x\":-36.7731018066406,\"y\":1.64632892608643,\"z\":-0.0300025120377541},\"rot\":{\"x\":359.920104980469,\"y\":269.999389648438,\"z\":0.0168404243886471}},\"9a3039\":{\"lock\":false,\"pos\":{\"x\":-30.2241725921631,\"y\":1.6371967792511,\"z\":-0.0300148297101259},\"rot\":{\"x\":359.920104980469,\"y\":269.988464355469,\"z\":0.0168557409197092}},\"a2fcc1\":{\"lock\":false,\"pos\":{\"x\":-3.95601868629456,\"y\":1.59753942489624,\"z\":-10.4412021636963},\"rot\":{\"x\":359.919738769531,\"y\":269.999694824219,\"z\":0.0168375782668591}},\"b00f35\":{\"lock\":false,\"pos\":{\"x\":-30.2242,\"y\":1.6954,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":270.0001,\"z\":0.0169}},\"b58f4c\":{\"lock\":false,\"pos\":{\"x\":-2.7247,\"y\":1.6571,\"z\":0.3733},\"rot\":{\"x\":0.0168,\"y\":180,\"z\":0.0803}},\"b5928a\":{\"lock\":false,\"pos\":{\"x\":-4.14500188827515,\"y\":1.58281075954437,\"z\":-15.1672077178955},\"rot\":{\"x\":359.919738769531,\"y\":270.001342773438,\"z\":0.016835855320096}},\"b68edf\":{\"lock\":false,\"pos\":{\"x\":-26.6902599334717,\"y\":1.61968195438385,\"z\":3.4335298538208},\"rot\":{\"x\":359.955413818359,\"y\":224.999755859375,\"z\":0.0683809518814087}},\"b8e732\":{\"lock\":false,\"pos\":{\"x\":-33.573299407959,\"y\":1.62825286388397,\"z\":-0.061400979757309},\"rot\":{\"x\":359.920104980469,\"y\":269.996612548828,\"z\":0.0168721005320549}},\"d14543\":{\"lock\":false,\"pos\":{\"x\":-10.850001335144,\"y\":1.41232633590698,\"z\":2.63781023025513},\"rot\":{\"x\":0.0799899846315384,\"y\":89.9986190795898,\"z\":359.983123779297}},\"d70162\":{\"lock\":false,\"pos\":{\"x\":-20.2601,\"y\":1.6109,\"z\":3.9765},\"rot\":{\"x\":0.0446,\"y\":45.0011,\"z\":359.9316}},\"d7558d\":{\"lock\":false,\"pos\":{\"x\":-30.2242,\"y\":1.6203,\"z\":-11.51},\"rot\":{\"x\":0.0169,\"y\":180,\"z\":0.08}},\"f704e9\":{\"lock\":false,\"pos\":{\"x\":-2.6884,\"y\":1.6555,\"z\":-5.0486},\"rot\":{\"x\":0.0168,\"y\":180,\"z\":0.0803}},\"f797c9\":{\"lock\":false,\"pos\":{\"x\":-23.6764583587646,\"y\":1.61560499668121,\"z\":3.85998773574829},\"rot\":{\"x\":359.983154296875,\"y\":0.00015486468328163,\"z\":359.920074462891}}}}",
"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
}
}
]
},
{
"GUID": "9e73fa",
"Name": "Custom_Model",
"Transform": {
"posX": 12.249917,
"posY": 1.46089387,
"posZ": -12.0136051,
"rotX": 359.920135,
"rotY": 269.999939,
"rotZ": 0.0168743581,
"scaleX": 2.21,
"scaleY": 0.46,
"scaleZ": 2.42
},
"Nickname": "Read or Die",
"Description": "Challenge Scenario",
"GMNotes": "scenarios/challenge_read_or_die.json",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0,
"a": 0.274509817
},
"LayoutGroupSortIndex": 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,
"CustomMesh": {
"MeshURL": "https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/1655599785039304850/852232605656B7DD6577C475A1988491D3378506/",
"NormalURL": "",
"ColliderURL": "",
"Convex": true,
"MaterialIndex": 3,
"TypeIndex": 0,
"CustomShader": {
"SpecularColor": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"SpecularIntensity": 0.0,
"SpecularSharpness": 2.0,
"FresnelStrength": 0.0
},
"CastShadows": true
},
"LuaScript": "\r\nfunction onload(saved_data)\r\n createDownloadButton()\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make Download button\r\nfunction createDownloadButton()\r\n self.createButton({\r\n label=\"Download\", click_function=\"buttonClick_download\", function_owner=self,\r\n position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800,\r\n font_size=150, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by download button,\r\nfunction buttonClick_download()\r\n local params = { url = self.getGMNotes(), replace = self.guid }\r\n Global.call('placeholder_download', params)\r\nend\r\n",
"LuaScriptState": "{\"ml\":{\"0b6166\":{\"lock\":false,\"pos\":{\"x\":-30.2242164611816,\"y\":1.63494277000427,\"z\":-7.69999742507935},\"rot\":{\"x\":359.920104980469,\"y\":269.999755859375,\"z\":0.0168405212461948}},\"116eb9\":{\"lock\":false,\"pos\":{\"x\":-17.1200122833252,\"y\":1.62114298343658,\"z\":7.57000160217285},\"rot\":{\"x\":359.920227050781,\"y\":270.000030517578,\"z\":0.0158715806901455}},\"1ed6d5\":{\"lock\":false,\"pos\":{\"x\":-26.8623008728027,\"y\":1.61759853363037,\"z\":-4.47279977798462},\"rot\":{\"x\":0.0445885099470615,\"y\":44.9998931884766,\"z\":359.931610107422}},\"25652c\":{\"lock\":false,\"pos\":{\"x\":-23.6765003204346,\"y\":1.61669516563416,\"z\":7.57000017166138},\"rot\":{\"x\":359.920104980469,\"y\":270.010955810547,\"z\":0.0168545935302973}},\"4541f6\":{\"lock\":false,\"pos\":{\"x\":-23.6765174865723,\"y\":1.6280665397644,\"z\":-0.0298972446471453},\"rot\":{\"x\":359.920104980469,\"y\":269.998687744141,\"z\":0.0168421491980553}},\"47b306\":{\"lock\":false,\"pos\":{\"x\":-30.2244167327881,\"y\":1.63271534442902,\"z\":-15.2799968719482},\"rot\":{\"x\":359.920104980469,\"y\":269.999572753906,\"z\":0.0168408285826445}},\"4901f8\":{\"lock\":false,\"pos\":{\"x\":-26.8973007202148,\"y\":1.61895155906677,\"z\":-0.0345002859830856},\"rot\":{\"x\":359.920104980469,\"y\":270.011077880859,\"z\":0.0168521460145712}},\"4bd010\":{\"lock\":false,\"pos\":{\"x\":-36.7731170654297,\"y\":1.64632892608643,\"z\":-0.0299971085041761},\"rot\":{\"x\":359.920104980469,\"y\":269.999755859375,\"z\":0.0168413035571575}},\"52e361\":{\"lock\":false,\"pos\":{\"x\":-15.0137166976929,\"y\":1.61305797100067,\"z\":-9.99599838256836},\"rot\":{\"x\":359.920104980469,\"y\":270,\"z\":0.0168404802680016}},\"556e96\":{\"lock\":false,\"pos\":{\"x\":-3.92741346359253,\"y\":1.76363432407379,\"z\":5.75710344314575},\"rot\":{\"x\":359.919738769531,\"y\":270,\"z\":180.016815185547}},\"64a96b\":{\"lock\":false,\"pos\":{\"x\":-17.1201171875,\"y\":1.61667001247406,\"z\":-7.69999647140503},\"rot\":{\"x\":359.920104980469,\"y\":269.999908447266,\"z\":0.0168406590819359}},\"70df0b\":{\"lock\":false,\"pos\":{\"x\":-30.2243175506592,\"y\":1.63943064212799,\"z\":7.5700044631958},\"rot\":{\"x\":359.920104980469,\"y\":269.999786376953,\"z\":0.0168404951691628}},\"7234af\":{\"lock\":false,\"pos\":{\"x\":-33.6012001037598,\"y\":1.62827694416046,\"z\":-0.112300202250481},\"rot\":{\"x\":359.920104980469,\"y\":270.011199951172,\"z\":0.0168518424034119}},\"739b98\":{\"lock\":false,\"pos\":{\"x\":-27.0615997314453,\"y\":1.62033677101135,\"z\":3.89890003204346},\"rot\":{\"x\":359.931579589844,\"y\":314.992584228516,\"z\":359.955413818359}},\"7d30ce\":{\"lock\":false,\"pos\":{\"x\":-20.560697555542,\"y\":1.60903918743134,\"z\":-3.69760060310364},\"rot\":{\"x\":359.931579589844,\"y\":314.995727539063,\"z\":359.955413818359}},\"7f6452\":{\"lock\":false,\"pos\":{\"x\":-14.7655344009399,\"y\":1.63109755516052,\"z\":5.0237078666687},\"rot\":{\"x\":359.460418701172,\"y\":0.0547760464251041,\"z\":359.920104980469}},\"7f7fb0\":{\"lock\":false,\"pos\":{\"x\":-1.46529912948608,\"y\":1.47562229633331,\"z\":-26.9304046630859},\"rot\":{\"x\":359.920135498047,\"y\":269.998687744141,\"z\":0.0168741643428802}},\"9229a8\":{\"lock\":false,\"pos\":{\"x\":-3.8162043094635,\"y\":1.60489428043365,\"z\":15.2543392181396},\"rot\":{\"x\":359.919738769531,\"y\":270.025726318359,\"z\":0.0168026704341173}},\"a2fcc1\":{\"lock\":false,\"pos\":{\"x\":-3.9560170173645,\"y\":1.59753942489624,\"z\":-10.4411973953247},\"rot\":{\"x\":359.919738769531,\"y\":269.999694824219,\"z\":0.016838489100337}},\"b00f35\":{\"lock\":false,\"pos\":{\"x\":-30.2242164611816,\"y\":1.63719689846039,\"z\":-0.0299969501793385},\"rot\":{\"x\":359.920104980469,\"y\":270.000061035156,\"z\":0.0168402399867773}},\"b58f4c\":{\"lock\":false,\"pos\":{\"x\":-2.72471642494202,\"y\":1.59899258613586,\"z\":0.373303711414337},\"rot\":{\"x\":0.0168358348309994,\"y\":180,\"z\":0.080255500972271}},\"b5928a\":{\"lock\":false,\"pos\":{\"x\":-4.14500045776367,\"y\":1.58281064033508,\"z\":-15.1672019958496},\"rot\":{\"x\":359.919738769531,\"y\":270.001403808594,\"z\":0.0168358217924833}},\"d70162\":{\"lock\":false,\"pos\":{\"x\":-20.2600994110107,\"y\":1.61087548732758,\"z\":3.97650074958801},\"rot\":{\"x\":0.0445899441838264,\"y\":45.0010795593262,\"z\":359.931610107422}},\"d7558d\":{\"lock\":false,\"pos\":{\"x\":-30.2241992950439,\"y\":1.62021791934967,\"z\":-11.5100021362305},\"rot\":{\"x\":0.0168392490595579,\"y\":180.000030517578,\"z\":0.0799427479505539}},\"f704e9\":{\"lock\":false,\"pos\":{\"x\":-2.68841671943665,\"y\":1.59734857082367,\"z\":-5.04859685897827},\"rot\":{\"x\":0.0168358106166124,\"y\":180,\"z\":0.080255463719368}}}}",
"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
}
}
]
},
{
"GUID": "cc7eb3",
"Name": "Custom_Model",
"Transform": {
"posX": 12.2493753,
"posY": 1.4632504,
"posZ": -4.013606,
"rotX": 359.920135,
"rotY": 269.999969,
"rotZ": 0.0168741345,
"scaleX": 2.21,
"scaleY": 0.46,
"scaleZ": 2.42
},
"Nickname": "By the Book",
"Description": "Challenge Scenario",
"GMNotes": "scenarios/challenge_by_the_book.json",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0,
"a": 0.274509817
},
"LayoutGroupSortIndex": 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,
"CustomMesh": {
"MeshURL": "https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/1719794129200879643/47A3BC15C8C8ADB45137A2258B86C1D2DB9C2B03/",
"NormalURL": "",
"ColliderURL": "",
"Convex": true,
"MaterialIndex": 3,
"TypeIndex": 0,
"CustomShader": {
"SpecularColor": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"SpecularIntensity": 0.0,
"SpecularSharpness": 2.0,
"FresnelStrength": 0.0
},
"CastShadows": true
},
"LuaScript": "\r\nfunction onload(saved_data)\r\n createDownloadButton()\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make Download button\r\nfunction createDownloadButton()\r\n self.createButton({\r\n label=\"Download\", click_function=\"buttonClick_download\", function_owner=self,\r\n position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800,\r\n font_size=150, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by download button,\r\nfunction buttonClick_download()\r\n local params = { url = self.getGMNotes(), replace = self.guid }\r\n Global.call('placeholder_download', params)\r\nend\r\n",
"LuaScriptState": "{\"ml\":{\"078171\":{\"lock\":false,\"pos\":{\"x\":-30.2242584228516,\"y\":1.63719689846039,\"z\":-0.0299957916140556},\"rot\":{\"x\":359.920104980469,\"y\":270.002471923828,\"z\":0.0168361309915781}},\"132ff8\":{\"lock\":false,\"pos\":{\"x\":-2.68855905532837,\"y\":1.59734869003296,\"z\":-5.04853010177612},\"rot\":{\"x\":0.0172368064522743,\"y\":179.71369934082,\"z\":0.0801699236035347}},\"28560b\":{\"lock\":false,\"pos\":{\"x\":-30.2243347167969,\"y\":1.63494288921356,\"z\":-7.70015335083008},\"rot\":{\"x\":359.920104980469,\"y\":270.009979248047,\"z\":0.0168257430195808}},\"2e61c2\":{\"lock\":false,\"pos\":{\"x\":-23.6764507293701,\"y\":1.61334466934204,\"z\":-3.83001446723938},\"rot\":{\"x\":0.0168022476136684,\"y\":180.026519775391,\"z\":0.0799475461244583}},\"32cf14\":{\"lock\":false,\"pos\":{\"x\":-23.6339359283447,\"y\":1.64497601985931,\"z\":0.021269578486681},\"rot\":{\"x\":359.920104980469,\"y\":269.998260498047,\"z\":0.01684445515275}},\"377b20\":{\"lock\":false,\"pos\":{\"x\":-23.6765613555908,\"y\":1.63030016422272,\"z\":7.56991815567017},\"rot\":{\"x\":359.920104980469,\"y\":269.995483398438,\"z\":0.0168459136039019}},\"404746\":{\"lock\":false,\"pos\":{\"x\":-3.92776012420654,\"y\":1.72512245178223,\"z\":5.75715970993042},\"rot\":{\"x\":359.919738769531,\"y\":269.99951171875,\"z\":180.016815185547}},\"4bcde2\":{\"lock\":false,\"pos\":{\"x\":-3.5483729839325,\"y\":1.58213448524475,\"z\":-14.6246137619019},\"rot\":{\"x\":359.919738769531,\"y\":270.001373291016,\"z\":0.0168364923447371}},\"582271\":{\"lock\":false,\"pos\":{\"x\":-33.3494300842285,\"y\":1.62914729118347,\"z\":4.04451847076416},\"rot\":{\"x\":359.955413818359,\"y\":224.999969482422,\"z\":0.0683810487389565}},\"5b38c6\":{\"lock\":false,\"pos\":{\"x\":-26.756908416748,\"y\":1.61764490604401,\"z\":-3.81423091888428},\"rot\":{\"x\":0.0168208945542574,\"y\":180.010650634766,\"z\":0.0799001008272171}},\"6a9cce\":{\"lock\":false,\"pos\":{\"x\":-3.95602917671204,\"y\":1.59753942489624,\"z\":-10.4413318634033},\"rot\":{\"x\":359.919738769531,\"y\":270.002777099609,\"z\":0.0168333575129509}},\"7234af\":{\"lock\":false,\"pos\":{\"x\":-30.2243156433105,\"y\":1.62247514724731,\"z\":-3.82998299598694},\"rot\":{\"x\":0.0168022662401199,\"y\":180.026550292969,\"z\":0.079947292804718}},\"76315c\":{\"lock\":false,\"pos\":{\"x\":-17.1200580596924,\"y\":1.63957512378693,\"z\":-3.82998967170715},\"rot\":{\"x\":359.920104980469,\"y\":270.006683349609,\"z\":0.0168335996568203}},\"7b7b8f\":{\"lock\":false,\"pos\":{\"x\":-23.6764583587646,\"y\":1.61560475826263,\"z\":3.85998749732971},\"rot\":{\"x\":0.0168023202568293,\"y\":180.026473999023,\"z\":0.0799476280808449}},\"80958a\":{\"lock\":false,\"pos\":{\"x\":-36.7731285095215,\"y\":1.63386714458466,\"z\":3.85998678207397},\"rot\":{\"x\":0.0168022774159908,\"y\":180.026504516602,\"z\":0.0799472630023956}},\"8553fd\":{\"lock\":false,\"pos\":{\"x\":-30.2241878509521,\"y\":1.62473511695862,\"z\":3.85999059677124},\"rot\":{\"x\":0.0168023742735386,\"y\":180.026473999023,\"z\":0.0799478888511658}},\"9f537e\":{\"lock\":false,\"pos\":{\"x\":-23.6766147613525,\"y\":1.62581253051758,\"z\":-7.69999694824219},\"rot\":{\"x\":359.920104980469,\"y\":270.000122070313,\"z\":0.0168394483625889}},\"a3fb6c\":{\"lock\":false,\"pos\":{\"x\":-17.0228900909424,\"y\":1.60517001152039,\"z\":-0.0761644020676613},\"rot\":{\"x\":359.920074462891,\"y\":269.996795654297,\"z\":0.0168049652129412}},\"af086a\":{\"lock\":false,\"pos\":{\"x\":-36.7732849121094,\"y\":1.6440749168396,\"z\":-7.70005464553833},\"rot\":{\"x\":359.920104980469,\"y\":270.000457763672,\"z\":0.0168390292674303}},\"b55a93\":{\"lock\":false,\"pos\":{\"x\":-33.7677268981934,\"y\":1.62731420993805,\"z\":-4.17729187011719},\"rot\":{\"x\":359.955413818359,\"y\":224.999954223633,\"z\":0.0683816373348236}},\"ba4abc\":{\"lock\":false,\"pos\":{\"x\":-26.886302947998,\"y\":1.62117731571198,\"z\":7.59083938598633},\"rot\":{\"x\":0.0798944607377052,\"y\":89.9999465942383,\"z\":359.983123779297}},\"bfc5ff\":{\"lock\":false,\"pos\":{\"x\":-30.2242774963379,\"y\":1.6394305229187,\"z\":7.57000494003296},\"rot\":{\"x\":359.920104980469,\"y\":270.001495361328,\"z\":0.0168374851346016}},\"c299e2\":{\"lock\":false,\"pos\":{\"x\":-17.1200580596924,\"y\":1.67071938514709,\"z\":3.86001300811768},\"rot\":{\"x\":359.920104980469,\"y\":269.999206542969,\"z\":180.016830444336}},\"d04a35\":{\"lock\":false,\"pos\":{\"x\":-36.7731285095215,\"y\":1.66328275203705,\"z\":-0.030061325058341},\"rot\":{\"x\":359.920104980469,\"y\":270.000946044922,\"z\":0.0168413575738668}},\"d0aa0f\":{\"lock\":false,\"pos\":{\"x\":-1.45866584777832,\"y\":1.4756041765213,\"z\":-26.9604606628418},\"rot\":{\"x\":359.920104980469,\"y\":270.035003662109,\"z\":0.0168234780430794}},\"d5c600\":{\"lock\":false,\"pos\":{\"x\":-33.3743667602539,\"y\":1.63022899627686,\"z\":7.60610103607178},\"rot\":{\"x\":0.0798945277929306,\"y\":90.0000228881836,\"z\":359.983123779297}},\"ef1ef0\":{\"lock\":false,\"pos\":{\"x\":-26.7100830078125,\"y\":1.61653804779053,\"z\":-7.35874366760254},\"rot\":{\"x\":0.0798942297697067,\"y\":89.9999465942383,\"z\":359.983123779297}},\"f2b0c1\":{\"lock\":false,\"pos\":{\"x\":-33.270751953125,\"y\":1.62787294387817,\"z\":0.0817478746175766},\"rot\":{\"x\":359.920104980469,\"y\":270,\"z\":0.0168676003813744}},\"fac63b\":{\"lock\":false,\"pos\":{\"x\":-36.7732315063477,\"y\":1.64856266975403,\"z\":7.5700044631958},\"rot\":{\"x\":359.920104980469,\"y\":270.001647949219,\"z\":0.0168373547494411}},\"fffec1\":{\"lock\":false,\"pos\":{\"x\":-2.72475790977478,\"y\":1.61594641208649,\"z\":0.373361140489578},\"rot\":{\"x\":0.0167973879724741,\"y\":180.027191162109,\"z\":0.0802645087242126}}}}",
"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
}
}
]
}
]
}
]
},
{
"GUID": "07c325",
"Name": "Custom_Model",
"Transform": {
"posX": -47.3465729,
"posY": 1.61384785,
"posZ": 21.5041027,
"rotX": 359.9201,
"rotY": 269.9765,
"rotZ": 0.0169217233,
"scaleX": 0.45,
"scaleY": 0.6,
"scaleZ": 0.45
},
"Nickname": "Neutral",
"Description": "Action token",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomMesh": {
"MeshURL": "https://pastebin.com/raw/ALrYhQGb",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/950722873599303195/BAB8BB40C755C099128931212969243EFF56ED39/",
"NormalURL": "",
"ColliderURL": "",
"Convex": true,
"MaterialIndex": 3,
"TypeIndex": 4,
"CastShadows": true
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "8888ff",
"Name": "Custom_Model",
"Transform": {
"posX": -6.86033773,
"posY": 1.55718017,
"posZ": 20.7384338,
"rotX": 359.9831,
"rotY": 359.9649,
"rotZ": 359.920135,
"scaleX": 0.45,
"scaleY": 0.6,
"scaleZ": 0.45
},
"Nickname": "Seeker",
"Description": "Action token",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomMesh": {
"MeshURL": "https://pastebin.com/raw/ALrYhQGb",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/952965722516265983/F50A6212D30C442429ED22B8CC8FD24D4CB76A2A/",
"NormalURL": "",
"ColliderURL": "",
"Convex": true,
"MaterialIndex": 3,
"TypeIndex": 4,
"CastShadows": true
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"3": {
"GUID": "7f001b",
"Name": "Custom_Model",
"Transform": {
"posX": -6.86033773,
"posY": 1.55718017,
"posZ": 20.7384377,
"rotX": 359.9831,
"rotY": 359.9651,
"rotZ": 359.920135,
"scaleX": 0.45,
"scaleY": 0.6,
"scaleZ": 0.45
},
"Nickname": "Rogue",
"Description": "Action token",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomMesh": {
"MeshURL": "https://pastebin.com/raw/ALrYhQGb",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/952965722515898740/E92441671B056D4CDF99DF9E6C88BE6598AAB50F/",
"NormalURL": "",
"ColliderURL": "",
"Convex": true,
"MaterialIndex": 3,
"TypeIndex": 4,
"CastShadows": true
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"4": {
"GUID": "6bd479",
"Name": "Custom_Model",
"Transform": {
"posX": -6.86033773,
"posY": 1.55718017,
"posZ": 20.7384415,
"rotX": 359.9831,
"rotY": 359.96524,
"rotZ": 359.920135,
"scaleX": 0.45,
"scaleY": 0.6,
"scaleZ": 0.45
},
"Nickname": "Mystic",
"Description": "Action token",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomMesh": {
"MeshURL": "https://pastebin.com/raw/ALrYhQGb",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/952965722516557267/757887224F6C37104CDFFE241FAD09B57117D670/",
"NormalURL": "",
"ColliderURL": "",
"Convex": true,
"MaterialIndex": 3,
"TypeIndex": 4,
"CastShadows": true
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"1": {
"GUID": "11508f",
"Name": "Custom_Model",
"Transform": {
"posX": -47.7645378,
"posY": 1.61430728,
"posZ": 21.085535,
"rotX": 359.9201,
"rotY": 270.003,
"rotZ": 0.0168831274,
"scaleX": 0.45,
"scaleY": 0.6,
"scaleZ": 0.45
},
"Nickname": "Guardian",
"Description": "Action token",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomMesh": {
"MeshURL": "https://pastebin.com/raw/ALrYhQGb",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/952965722516201848/72B3B9E2B59F25FEC82412AC22245D03655A4558/",
"NormalURL": "",
"ColliderURL": "",
"Convex": true,
"MaterialIndex": 3,
"TypeIndex": 4,
"CastShadows": true
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"5": {
"GUID": "0c9182",
"Name": "Custom_Model",
"Transform": {
"posX": -47.7645378,
"posY": 1.61430728,
"posZ": 21.085537,
"rotX": 359.9201,
"rotY": 270.0027,
"rotZ": 0.0168826059,
"scaleX": 0.45,
"scaleY": 0.6,
"scaleZ": 0.45
},
"Nickname": "Survivor",
"Description": "Action token",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomMesh": {
"MeshURL": "https://pastebin.com/raw/ALrYhQGb",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/952965722515960460/F43F63452854B10B416FDF3BF9EF3068E6E68F26/",
"NormalURL": "",
"ColliderURL": "",
"Convex": true,
"MaterialIndex": 3,
"TypeIndex": 4,
"CastShadows": true
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "b28feb",
"Name": "Custom_Model",
"Transform": {
"posX": -17.658144,
"posY": 1.56047583,
"posZ": -19.09394,
"rotX": 0.01814409,
"rotY": 180.156784,
"rotZ": 0.07117136,
"scaleX": 0.45,
"scaleY": 0.6,
"scaleZ": 0.45
},
"Nickname": "Neutral",
"Description": "Action token",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomMesh": {
"MeshURL": "https://pastebin.com/raw/ALrYhQGb",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/950722873599303195/BAB8BB40C755C099128931212969243EFF56ED39/",
"NormalURL": "",
"ColliderURL": "",
"Convex": true,
"MaterialIndex": 3,
"TypeIndex": 4,
"CastShadows": true
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"1": {
"GUID": "11508f",
"Name": "Custom_Model",
"Transform": {
"posX": -6.86033773,
"posY": 1.55718017,
"posZ": 20.73843,
"rotX": 359.9831,
"rotY": 359.964783,
"rotZ": 359.920135,
"scaleX": 0.45,
"scaleY": 0.6,
"scaleZ": 0.45
},
"Nickname": "Guardian",
"Description": "Action token",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomMesh": {
"MeshURL": "https://pastebin.com/raw/ALrYhQGb",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/952965722516201848/72B3B9E2B59F25FEC82412AC22245D03655A4558/",
"NormalURL": "",
"ColliderURL": "",
"Convex": true,
"MaterialIndex": 3,
"TypeIndex": 4,
"CastShadows": true
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"2": {
"GUID": "8888ff",
"Name": "Custom_Model",
"Transform": {
"posX": -6.86033773,
"posY": 1.55718017,
"posZ": 20.7384338,
"rotX": 359.9831,
"rotY": 359.9649,
"rotZ": 359.920135,
"scaleX": 0.45,
"scaleY": 0.6,
"scaleZ": 0.45
},
"Nickname": "Seeker",
"Description": "Action token",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomMesh": {
"MeshURL": "https://pastebin.com/raw/ALrYhQGb",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/952965722516265983/F50A6212D30C442429ED22B8CC8FD24D4CB76A2A/",
"NormalURL": "",
"ColliderURL": "",
"Convex": true,
"MaterialIndex": 3,
"TypeIndex": 4,
"CastShadows": true
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"3": {
"GUID": "7f001b",
"Name": "Custom_Model",
"Transform": {
"posX": -6.86033773,
"posY": 1.55718017,
"posZ": 20.7384377,
"rotX": 359.9831,
"rotY": 359.9651,
"rotZ": 359.920135,
"scaleX": 0.45,
"scaleY": 0.6,
"scaleZ": 0.45
},
"Nickname": "Rogue",
"Description": "Action token",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomMesh": {
"MeshURL": "https://pastebin.com/raw/ALrYhQGb",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/952965722515898740/E92441671B056D4CDF99DF9E6C88BE6598AAB50F/",
"NormalURL": "",
"ColliderURL": "",
"Convex": true,
"MaterialIndex": 3,
"TypeIndex": 4,
"CastShadows": true
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"5": {
"GUID": "0c9182",
"Name": "Custom_Model",
"Transform": {
"posX": -6.86033773,
"posY": 1.55718,
"posZ": 20.7384453,
"rotX": 359.9831,
"rotY": 359.9654,
"rotZ": 359.920135,
"scaleX": 0.45,
"scaleY": 0.6,
"scaleZ": 0.45
},
"Nickname": "Survivor",
"Description": "Action token",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomMesh": {
"MeshURL": "https://pastebin.com/raw/ALrYhQGb",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/952965722515960460/F43F63452854B10B416FDF3BF9EF3068E6E68F26/",
"NormalURL": "",
"ColliderURL": "",
"Convex": true,
"MaterialIndex": 3,
"TypeIndex": 4,
"CastShadows": true
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"4": {
"GUID": "0ebcde",
"Name": "Custom_Model",
"Transform": {
"posX": -17.67566,
"posY": 1.56045556,
"posZ": -19.34179,
"rotX": 0.01682271,
"rotY": 180.026154,
"rotZ": 0.07988995,
"scaleX": 0.45,
"scaleY": 0.6,
"scaleZ": 0.45
},
"Nickname": "Mystic",
"Description": "Action token",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomMesh": {
"MeshURL": "https://pastebin.com/raw/ALrYhQGb",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/952965722516557267/757887224F6C37104CDFFE241FAD09B57117D670/",
"NormalURL": "",
"ColliderURL": "",
"Convex": true,
"MaterialIndex": 3,
"TypeIndex": 4,
"CastShadows": true
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "6ed29f",
"Name": "Custom_Model",
"Transform": {
"posX": -20.1439533,
"posY": 1.56396151,
"posZ": -19.0927734,
"rotX": 0.0165511947,
"rotY": 180.023926,
"rotZ": 0.0804988742,
"scaleX": 0.45,
"scaleY": 0.6,
"scaleZ": 0.45
},
"Nickname": "Neutral",
"Description": "Action token",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomMesh": {
"MeshURL": "https://pastebin.com/raw/ALrYhQGb",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/950722873599303195/BAB8BB40C755C099128931212969243EFF56ED39/",
"NormalURL": "",
"ColliderURL": "",
"Convex": true,
"MaterialIndex": 3,
"TypeIndex": 4,
"CastShadows": true
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"1": {
"GUID": "11508f",
"Name": "Custom_Model",
"Transform": {
"posX": -6.86033773,
"posY": 1.55718017,
"posZ": 20.73843,
"rotX": 359.9831,
"rotY": 359.964783,
"rotZ": 359.920135,
"scaleX": 0.45,
"scaleY": 0.6,
"scaleZ": 0.45
},
"Nickname": "Guardian",
"Description": "Action token",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomMesh": {
"MeshURL": "https://pastebin.com/raw/ALrYhQGb",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/952965722516201848/72B3B9E2B59F25FEC82412AC22245D03655A4558/",
"NormalURL": "",
"ColliderURL": "",
"Convex": true,
"MaterialIndex": 3,
"TypeIndex": 4,
"CastShadows": true
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"2": {
"GUID": "8888ff",
"Name": "Custom_Model",
"Transform": {
"posX": -6.86033773,
"posY": 1.55718017,
"posZ": 20.7384338,
"rotX": 359.9831,
"rotY": 359.9649,
"rotZ": 359.920135,
"scaleX": 0.45,
"scaleY": 0.6,
"scaleZ": 0.45
},
"Nickname": "Seeker",
"Description": "Action token",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomMesh": {
"MeshURL": "https://pastebin.com/raw/ALrYhQGb",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/952965722516265983/F50A6212D30C442429ED22B8CC8FD24D4CB76A2A/",
"NormalURL": "",
"ColliderURL": "",
"Convex": true,
"MaterialIndex": 3,
"TypeIndex": 4,
"CastShadows": true
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"3": {
"GUID": "7f001b",
"Name": "Custom_Model",
"Transform": {
"posX": -6.86033773,
"posY": 1.55718017,
"posZ": 20.7384377,
"rotX": 359.9831,
"rotY": 359.9651,
"rotZ": 359.920135,
"scaleX": 0.45,
"scaleY": 0.6,
"scaleZ": 0.45
},
"Nickname": "Rogue",
"Description": "Action token",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomMesh": {
"MeshURL": "https://pastebin.com/raw/ALrYhQGb",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/952965722515898740/E92441671B056D4CDF99DF9E6C88BE6598AAB50F/",
"NormalURL": "",
"ColliderURL": "",
"Convex": true,
"MaterialIndex": 3,
"TypeIndex": 4,
"CastShadows": true
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"5": {
"GUID": "0c9182",
"Name": "Custom_Model",
"Transform": {
"posX": -6.86033773,
"posY": 1.55718,
"posZ": 20.7384453,
"rotX": 359.9831,
"rotY": 359.9654,
"rotZ": 359.920135,
"scaleX": 0.45,
"scaleY": 0.6,
"scaleZ": 0.45
},
"Nickname": "Survivor",
"Description": "Action token",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomMesh": {
"MeshURL": "https://pastebin.com/raw/ALrYhQGb",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/952965722515960460/F43F63452854B10B416FDF3BF9EF3068E6E68F26/",
"NormalURL": "",
"ColliderURL": "",
"Convex": true,
"MaterialIndex": 3,
"TypeIndex": 4,
"CastShadows": true
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"4": {
"GUID": "16b80c",
"Name": "Custom_Model",
"Transform": {
"posX": -20.1443577,
"posY": 1.56389713,
"posZ": -19.34181,
"rotX": 0.0168308914,
"rotY": 180.0266,
"rotZ": 0.07989165,
"scaleX": 0.45,
"scaleY": 0.6,
"scaleZ": 0.45
},
"Nickname": "Mystic",
"Description": "Action token",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomMesh": {
"MeshURL": "https://pastebin.com/raw/ALrYhQGb",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/952965722516557267/757887224F6C37104CDFFE241FAD09B57117D670/",
"NormalURL": "",
"ColliderURL": "",
"Convex": true,
"MaterialIndex": 3,
"TypeIndex": 4,
"CastShadows": true
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "9c3361",
"Name": "Custom_Model",
"Transform": {
"posX": -18.8880863,
"posY": 1.56217754,
"posZ": -19.0935955,
"rotX": 0.008929267,
"rotY": 180.106659,
"rotZ": 0.08678313,
"scaleX": 0.45,
"scaleY": 0.6,
"scaleZ": 0.45
},
"Nickname": "Neutral",
"Description": "Action token",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomMesh": {
"MeshURL": "https://pastebin.com/raw/ALrYhQGb",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/950722873599303195/BAB8BB40C755C099128931212969243EFF56ED39/",
"NormalURL": "",
"ColliderURL": "",
"Convex": true,
"MaterialIndex": 3,
"TypeIndex": 4,
"CastShadows": true
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "8888ff",
"Name": "Custom_Model",
"Transform": {
"posX": -6.86033773,
"posY": 1.55718017,
"posZ": 20.7384338,
"rotX": 359.9831,
"rotY": 359.9649,
"rotZ": 359.920135,
"scaleX": 0.45,
"scaleY": 0.6,
"scaleZ": 0.45
},
"Nickname": "Seeker",
"Description": "Action token",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomMesh": {
"MeshURL": "https://pastebin.com/raw/ALrYhQGb",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/952965722516265983/F50A6212D30C442429ED22B8CC8FD24D4CB76A2A/",
"NormalURL": "",
"ColliderURL": "",
"Convex": true,
"MaterialIndex": 3,
"TypeIndex": 4,
"CastShadows": true
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"3": {
"GUID": "7f001b",
"Name": "Custom_Model",
"Transform": {
"posX": -6.86033773,
"posY": 1.55718017,
"posZ": 20.7384377,
"rotX": 359.9831,
"rotY": 359.9651,
"rotZ": 359.920135,
"scaleX": 0.45,
"scaleY": 0.6,
"scaleZ": 0.45
},
"Nickname": "Rogue",
"Description": "Action token",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomMesh": {
"MeshURL": "https://pastebin.com/raw/ALrYhQGb",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/952965722515898740/E92441671B056D4CDF99DF9E6C88BE6598AAB50F/",
"NormalURL": "",
"ColliderURL": "",
"Convex": true,
"MaterialIndex": 3,
"TypeIndex": 4,
"CastShadows": true
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"5": {
"GUID": "0c9182",
"Name": "Custom_Model",
"Transform": {
"posX": -6.86033773,
"posY": 1.55718,
"posZ": 20.7384453,
"rotX": 359.9831,
"rotY": 359.9654,
"rotZ": 359.920135,
"scaleX": 0.45,
"scaleY": 0.6,
"scaleZ": 0.45
},
"Nickname": "Survivor",
"Description": "Action token",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomMesh": {
"MeshURL": "https://pastebin.com/raw/ALrYhQGb",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/952965722515960460/F43F63452854B10B416FDF3BF9EF3068E6E68F26/",
"NormalURL": "",
"ColliderURL": "",
"Convex": true,
"MaterialIndex": 3,
"TypeIndex": 4,
"CastShadows": true
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"4": {
"GUID": "82091a",
"Name": "Custom_Model",
"Transform": {
"posX": -18.905962,
"posY": 1.56217074,
"posZ": -19.3418026,
"rotX": 0.0168290678,
"rotY": 180.023651,
"rotZ": 0.07989036,
"scaleX": 0.45,
"scaleY": 0.6,
"scaleZ": 0.45
},
"Nickname": "Mystic",
"Description": "Action token",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomMesh": {
"MeshURL": "https://pastebin.com/raw/ALrYhQGb",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/952965722516557267/757887224F6C37104CDFFE241FAD09B57117D670/",
"NormalURL": "",
"ColliderURL": "",
"Convex": true,
"MaterialIndex": 3,
"TypeIndex": 4,
"CastShadows": true
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"1": {
"GUID": "11508f",
"Name": "Custom_Model",
"Transform": {
"posX": -18.9059639,
"posY": 1.56217074,
"posZ": -19.3418045,
"rotX": 0.0168283526,
"rotY": 180.023743,
"rotZ": 0.0798902661,
"scaleX": 0.45,
"scaleY": 0.6,
"scaleZ": 0.45
},
"Nickname": "Guardian",
"Description": "Action token",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomMesh": {
"MeshURL": "https://pastebin.com/raw/ALrYhQGb",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/952965722516201848/72B3B9E2B59F25FEC82412AC22245D03655A4558/",
"NormalURL": "",
"ColliderURL": "",
"Convex": true,
"MaterialIndex": 3,
"TypeIndex": 4,
"CastShadows": true
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "5954d0",
"Name": "Custom_Model",
"Transform": {
"posX": -47.3425446,
"posY": 1.60142028,
"posZ": -20.6804638,
"rotX": 359.9201,
"rotY": 269.9857,
"rotZ": 0.0169196669,
"scaleX": 0.45,
"scaleY": 0.6,
"scaleZ": 0.45
},
"Nickname": "Neutral",
"Description": "Action token",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomMesh": {
"MeshURL": "https://pastebin.com/raw/ALrYhQGb",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/950722873599303195/BAB8BB40C755C099128931212969243EFF56ED39/",
"NormalURL": "",
"ColliderURL": "",
"Convex": true,
"MaterialIndex": 3,
"TypeIndex": 4,
"CastShadows": true
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"1": {
"GUID": "11508f",
"Name": "Custom_Model",
"Transform": {
"posX": -6.86033773,
"posY": 1.55718017,
"posZ": 20.73843,
"rotX": 359.9831,
"rotY": 359.964783,
"rotZ": 359.920135,
"scaleX": 0.45,
"scaleY": 0.6,
"scaleZ": 0.45
},
"Nickname": "Guardian",
"Description": "Action token",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomMesh": {
"MeshURL": "https://pastebin.com/raw/ALrYhQGb",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/952965722516201848/72B3B9E2B59F25FEC82412AC22245D03655A4558/",
"NormalURL": "",
"ColliderURL": "",
"Convex": true,
"MaterialIndex": 3,
"TypeIndex": 4,
"CastShadows": true
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"2": {
"GUID": "8888ff",
"Name": "Custom_Model",
"Transform": {
"posX": -6.86033773,
"posY": 1.55718017,
"posZ": 20.7384338,
"rotX": 359.9831,
"rotY": 359.9649,
"rotZ": 359.920135,
"scaleX": 0.45,
"scaleY": 0.6,
"scaleZ": 0.45
},
"Nickname": "Seeker",
"Description": "Action token",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomMesh": {
"MeshURL": "https://pastebin.com/raw/ALrYhQGb",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/952965722516265983/F50A6212D30C442429ED22B8CC8FD24D4CB76A2A/",
"NormalURL": "",
"ColliderURL": "",
"Convex": true,
"MaterialIndex": 3,
"TypeIndex": 4,
"CastShadows": true
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"3": {
"GUID": "7f001b",
"Name": "Custom_Model",
"Transform": {
"posX": -6.86033773,
"posY": 1.55718017,
"posZ": 20.7384377,
"rotX": 359.9831,
"rotY": 359.9651,
"rotZ": 359.920135,
"scaleX": 0.45,
"scaleY": 0.6,
"scaleZ": 0.45
},
"Nickname": "Rogue",
"Description": "Action token",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomMesh": {
"MeshURL": "https://pastebin.com/raw/ALrYhQGb",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/952965722515898740/E92441671B056D4CDF99DF9E6C88BE6598AAB50F/",
"NormalURL": "",
"ColliderURL": "",
"Convex": true,
"MaterialIndex": 3,
"TypeIndex": 4,
"CastShadows": true
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"5": {
"GUID": "0c9182",
"Name": "Custom_Model",
"Transform": {
"posX": -6.86033773,
"posY": 1.55718,
"posZ": 20.7384453,
"rotX": 359.9831,
"rotY": 359.9654,
"rotZ": 359.920135,
"scaleX": 0.45,
"scaleY": 0.6,
"scaleZ": 0.45
},
"Nickname": "Survivor",
"Description": "Action token",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomMesh": {
"MeshURL": "https://pastebin.com/raw/ALrYhQGb",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/952965722515960460/F43F63452854B10B416FDF3BF9EF3068E6E68F26/",
"NormalURL": "",
"ColliderURL": "",
"Convex": true,
"MaterialIndex": 3,
"TypeIndex": 4,
"CastShadows": true
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"4": {
"GUID": "5e58c2",
"Name": "Custom_Model",
"Transform": {
"posX": -47.75154,
"posY": 1.60186982,
"posZ": -21.08986,
"rotX": 359.9201,
"rotY": 270.000183,
"rotZ": 0.01688935,
"scaleX": 0.45,
"scaleY": 0.6,
"scaleZ": 0.45
},
"Nickname": "Mystic",
"Description": "Action token",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomMesh": {
"MeshURL": "https://pastebin.com/raw/ALrYhQGb",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/952965722516557267/757887224F6C37104CDFFE241FAD09B57117D670/",
"NormalURL": "",
"ColliderURL": "",
"Convex": true,
"MaterialIndex": 3,
"TypeIndex": 4,
"CastShadows": true
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "fa6bf1",
"Name": "Custom_Model",
"Transform": {
"posX": -47.3462448,
"posY": 1.60105956,
"posZ": -21.9229584,
"rotX": 359.9201,
"rotY": 270.01123,
"rotZ": 0.0168769825,
"scaleX": 0.45,
"scaleY": 0.6,
"scaleZ": 0.45
},
"Nickname": "Neutral",
"Description": "Action token",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomMesh": {
"MeshURL": "https://pastebin.com/raw/ALrYhQGb",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/950722873599303195/BAB8BB40C755C099128931212969243EFF56ED39/",
"NormalURL": "",
"ColliderURL": "",
"Convex": true,
"MaterialIndex": 3,
"TypeIndex": 4,
"CastShadows": true
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"1": {
"GUID": "11508f",
"Name": "Custom_Model",
"Transform": {
"posX": -6.86033773,
"posY": 1.55718017,
"posZ": 20.73843,
"rotX": 359.9831,
"rotY": 359.964783,
"rotZ": 359.920135,
"scaleX": 0.45,
"scaleY": 0.6,
"scaleZ": 0.45
},
"Nickname": "Guardian",
"Description": "Action token",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomMesh": {
"MeshURL": "https://pastebin.com/raw/ALrYhQGb",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/952965722516201848/72B3B9E2B59F25FEC82412AC22245D03655A4558/",
"NormalURL": "",
"ColliderURL": "",
"Convex": true,
"MaterialIndex": 3,
"TypeIndex": 4,
"CastShadows": true
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"2": {
"GUID": "8888ff",
"Name": "Custom_Model",
"Transform": {
"posX": -6.86033773,
"posY": 1.55718017,
"posZ": 20.7384338,
"rotX": 359.9831,
"rotY": 359.9649,
"rotZ": 359.920135,
"scaleX": 0.45,
"scaleY": 0.6,
"scaleZ": 0.45
},
"Nickname": "Seeker",
"Description": "Action token",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomMesh": {
"MeshURL": "https://pastebin.com/raw/ALrYhQGb",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/952965722516265983/F50A6212D30C442429ED22B8CC8FD24D4CB76A2A/",
"NormalURL": "",
"ColliderURL": "",
"Convex": true,
"MaterialIndex": 3,
"TypeIndex": 4,
"CastShadows": true
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"3": {
"GUID": "7f001b",
"Name": "Custom_Model",
"Transform": {
"posX": -6.86033773,
"posY": 1.55718017,
"posZ": 20.7384377,
"rotX": 359.9831,
"rotY": 359.9651,
"rotZ": 359.920135,
"scaleX": 0.45,
"scaleY": 0.6,
"scaleZ": 0.45
},
"Nickname": "Rogue",
"Description": "Action token",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomMesh": {
"MeshURL": "https://pastebin.com/raw/ALrYhQGb",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/952965722515898740/E92441671B056D4CDF99DF9E6C88BE6598AAB50F/",
"NormalURL": "",
"ColliderURL": "",
"Convex": true,
"MaterialIndex": 3,
"TypeIndex": 4,
"CastShadows": true
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"5": {
"GUID": "0c9182",
"Name": "Custom_Model",
"Transform": {
"posX": -6.86033773,
"posY": 1.55718,
"posZ": 20.7384453,
"rotX": 359.9831,
"rotY": 359.9654,
"rotZ": 359.920135,
"scaleX": 0.45,
"scaleY": 0.6,
"scaleZ": 0.45
},
"Nickname": "Survivor",
"Description": "Action token",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomMesh": {
"MeshURL": "https://pastebin.com/raw/ALrYhQGb",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/952965722515960460/F43F63452854B10B416FDF3BF9EF3068E6E68F26/",
"NormalURL": "",
"ColliderURL": "",
"Convex": true,
"MaterialIndex": 3,
"TypeIndex": 4,
"CastShadows": true
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"4": {
"GUID": "c80173",
"Name": "Custom_Model",
"Transform": {
"posX": -47.7556953,
"posY": 1.60150981,
"posZ": -22.3324471,
"rotX": 359.9201,
"rotY": 270.019958,
"rotZ": 0.0168625377,
"scaleX": 0.45,
"scaleY": 0.6,
"scaleZ": 0.45
},
"Nickname": "Mystic",
"Description": "Action token",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomMesh": {
"MeshURL": "https://pastebin.com/raw/ALrYhQGb",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/952965722516557267/757887224F6C37104CDFFE241FAD09B57117D670/",
"NormalURL": "",
"ColliderURL": "",
"Convex": true,
"MaterialIndex": 3,
"TypeIndex": 4,
"CastShadows": true
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "29fae0",
"Name": "Custom_Model",
"Transform": {
"posX": -47.34645,
"posY": 1.60069764,
"posZ": -23.1531868,
"rotX": 359.920135,
"rotY": 269.978943,
"rotZ": 0.0169127211,
"scaleX": 0.45,
"scaleY": 0.6,
"scaleZ": 0.45
},
"Nickname": "Neutral",
"Description": "Action token",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomMesh": {
"MeshURL": "https://pastebin.com/raw/ALrYhQGb",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/950722873599303195/BAB8BB40C755C099128931212969243EFF56ED39/",
"NormalURL": "",
"ColliderURL": "",
"Convex": true,
"MaterialIndex": 3,
"TypeIndex": 4,
"CastShadows": true
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"1": {
"GUID": "11508f",
"Name": "Custom_Model",
"Transform": {
"posX": -6.86033773,
"posY": 1.55718017,
"posZ": 20.73843,
"rotX": 359.9831,
"rotY": 359.964783,
"rotZ": 359.920135,
"scaleX": 0.45,
"scaleY": 0.6,
"scaleZ": 0.45
},
"Nickname": "Guardian",
"Description": "Action token",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomMesh": {
"MeshURL": "https://pastebin.com/raw/ALrYhQGb",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/952965722516201848/72B3B9E2B59F25FEC82412AC22245D03655A4558/",
"NormalURL": "",
"ColliderURL": "",
"Convex": true,
"MaterialIndex": 3,
"TypeIndex": 4,
"CastShadows": true
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"2": {
"GUID": "8888ff",
"Name": "Custom_Model",
"Transform": {
"posX": -6.86033773,
"posY": 1.55718017,
"posZ": 20.7384338,
"rotX": 359.9831,
"rotY": 359.9649,
"rotZ": 359.920135,
"scaleX": 0.45,
"scaleY": 0.6,
"scaleZ": 0.45
},
"Nickname": "Seeker",
"Description": "Action token",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomMesh": {
"MeshURL": "https://pastebin.com/raw/ALrYhQGb",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/952965722516265983/F50A6212D30C442429ED22B8CC8FD24D4CB76A2A/",
"NormalURL": "",
"ColliderURL": "",
"Convex": true,
"MaterialIndex": 3,
"TypeIndex": 4,
"CastShadows": true
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"3": {
"GUID": "7f001b",
"Name": "Custom_Model",
"Transform": {
"posX": -6.86033773,
"posY": 1.55718017,
"posZ": 20.7384377,
"rotX": 359.9831,
"rotY": 359.9651,
"rotZ": 359.920135,
"scaleX": 0.45,
"scaleY": 0.6,
"scaleZ": 0.45
},
"Nickname": "Rogue",
"Description": "Action token",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomMesh": {
"MeshURL": "https://pastebin.com/raw/ALrYhQGb",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/952965722515898740/E92441671B056D4CDF99DF9E6C88BE6598AAB50F/",
"NormalURL": "",
"ColliderURL": "",
"Convex": true,
"MaterialIndex": 3,
"TypeIndex": 4,
"CastShadows": true
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"5": {
"GUID": "0c9182",
"Name": "Custom_Model",
"Transform": {
"posX": -6.86033773,
"posY": 1.55718,
"posZ": 20.7384453,
"rotX": 359.9831,
"rotY": 359.9654,
"rotZ": 359.920135,
"scaleX": 0.45,
"scaleY": 0.6,
"scaleZ": 0.45
},
"Nickname": "Survivor",
"Description": "Action token",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomMesh": {
"MeshURL": "https://pastebin.com/raw/ALrYhQGb",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/952965722515960460/F43F63452854B10B416FDF3BF9EF3068E6E68F26/",
"NormalURL": "",
"ColliderURL": "",
"Convex": true,
"MaterialIndex": 3,
"TypeIndex": 4,
"CastShadows": true
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"4": {
"GUID": "6bd479",
"Name": "Custom_Model",
"Transform": {
"posX": -47.7556458,
"posY": 1.60114765,
"posZ": -23.56274,
"rotX": 359.9201,
"rotY": 269.99884,
"rotZ": 0.0168910772,
"scaleX": 0.45,
"scaleY": 0.6,
"scaleZ": 0.45
},
"Nickname": "Mystic",
"Description": "Action token",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomMesh": {
"MeshURL": "https://pastebin.com/raw/ALrYhQGb",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/952965722516557267/757887224F6C37104CDFFE241FAD09B57117D670/",
"NormalURL": "",
"ColliderURL": "",
"Convex": true,
"MaterialIndex": 3,
"TypeIndex": 4,
"CastShadows": true
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "77f1e5",
"Name": "Deck",
"Transform": {
"posX": -29.18273,
"posY": 1.3893007,
"posZ": 95.80249,
"rotX": 0.02080765,
"rotY": 270.006165,
"rotZ": 180.016769,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Tarot Deck",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": false,
"SidewaysCard": false,
"DeckIDs": [
266300,
266301,
266302,
266303,
266304,
266305,
266306,
266307,
266308,
266309,
266310,
266311,
266312,
266313,
266314,
266315,
266316,
266317,
266318,
266319,
266320,
266321
],
"CustomDeck": {
"2663": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1697276706767616930/9DB49D8C4BBF9C396AB364151195351559FD1B98/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1697276706767619573/BC43BD2A94446B804BE325C7255D8179DEB2ABE8/",
"NumWidth": 6,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "01cd9f",
"Name": "Card",
"Transform": {
"posX": 12.2500153,
"posY": 1.73947859,
"posZ": 3.98634577,
"rotX": 359.9205,
"rotY": 270.0058,
"rotZ": 180.01741,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "The Fool · 0",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 266300,
"SidewaysCard": false,
"CustomDeck": {
"2663": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1697276706767616930/9DB49D8C4BBF9C396AB364151195351559FD1B98/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1697276706767619573/BC43BD2A94446B804BE325C7255D8179DEB2ABE8/",
"NumWidth": 6,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "0fd716",
"Name": "Card",
"Transform": {
"posX": 12.2500181,
"posY": 1.718483,
"posZ": 3.98634744,
"rotX": 359.931641,
"rotY": 270.001251,
"rotZ": 180.0148,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "The Magician · I",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 266301,
"SidewaysCard": false,
"CustomDeck": {
"2663": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1697276706767616930/9DB49D8C4BBF9C396AB364151195351559FD1B98/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1697276706767619573/BC43BD2A94446B804BE325C7255D8179DEB2ABE8/",
"NumWidth": 6,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "a6d017",
"Name": "Card",
"Transform": {
"posX": 12.2500181,
"posY": 1.70998371,
"posZ": 3.98634744,
"rotX": 359.9323,
"rotY": 270.000946,
"rotZ": 180.014648,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "The High Priestess · II",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 266302,
"SidewaysCard": false,
"CustomDeck": {
"2663": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1697276706767616930/9DB49D8C4BBF9C396AB364151195351559FD1B98/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1697276706767619573/BC43BD2A94446B804BE325C7255D8179DEB2ABE8/",
"NumWidth": 6,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "ee4a47",
"Name": "Card",
"Transform": {
"posX": 12.2500134,
"posY": 1.7022202,
"posZ": 3.98634,
"rotX": 359.9326,
"rotY": 270.000946,
"rotZ": 180.014572,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "The Empress · III",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 266303,
"SidewaysCard": false,
"CustomDeck": {
"2663": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1697276706767616930/9DB49D8C4BBF9C396AB364151195351559FD1B98/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1697276706767619573/BC43BD2A94446B804BE325C7255D8179DEB2ABE8/",
"NumWidth": 6,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "8be589",
"Name": "Card",
"Transform": {
"posX": 12.2500191,
"posY": 1.68924534,
"posZ": 3.98634768,
"rotX": 359.9315,
"rotY": 270.001282,
"rotZ": 180.014877,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "The Emperor · IV",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 266304,
"SidewaysCard": false,
"CustomDeck": {
"2663": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1697276706767616930/9DB49D8C4BBF9C396AB364151195351559FD1B98/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1697276706767619573/BC43BD2A94446B804BE325C7255D8179DEB2ABE8/",
"NumWidth": 6,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "2f9064",
"Name": "Card",
"Transform": {
"posX": 12.2500458,
"posY": 1.6864903,
"posZ": 3.986339,
"rotX": 359.932831,
"rotY": 270.000854,
"rotZ": 180.01442,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "The Hierophant · V",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 266305,
"SidewaysCard": false,
"CustomDeck": {
"2663": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1697276706767616930/9DB49D8C4BBF9C396AB364151195351559FD1B98/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1697276706767619573/BC43BD2A94446B804BE325C7255D8179DEB2ABE8/",
"NumWidth": 6,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "d5d07a",
"Name": "Card",
"Transform": {
"posX": 12.2500563,
"posY": 1.67575681,
"posZ": 3.986337,
"rotX": 359.9328,
"rotY": 270.000854,
"rotZ": 180.014481,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "The Lovers · VI",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 266306,
"SidewaysCard": false,
"CustomDeck": {
"2663": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1697276706767616930/9DB49D8C4BBF9C396AB364151195351559FD1B98/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1697276706767619573/BC43BD2A94446B804BE325C7255D8179DEB2ABE8/",
"NumWidth": 6,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "f633db",
"Name": "Card",
"Transform": {
"posX": 12.25002,
"posY": 1.66189778,
"posZ": 3.98633623,
"rotX": 359.9321,
"rotY": 270.0011,
"rotZ": 180.014786,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "The Chariot · VII",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 266307,
"SidewaysCard": false,
"CustomDeck": {
"2663": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1697276706767616930/9DB49D8C4BBF9C396AB364151195351559FD1B98/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1697276706767619573/BC43BD2A94446B804BE325C7255D8179DEB2ABE8/",
"NumWidth": 6,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "e0ad3b",
"Name": "Card",
"Transform": {
"posX": 12.2499952,
"posY": 1.66536677,
"posZ": 3.98634982,
"rotX": 359.942932,
"rotY": 270.0012,
"rotZ": 180.031677,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Strength · VIII",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 266308,
"SidewaysCard": false,
"CustomDeck": {
"2663": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1697276706767616930/9DB49D8C4BBF9C396AB364151195351559FD1B98/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1697276706767619573/BC43BD2A94446B804BE325C7255D8179DEB2ABE8/",
"NumWidth": 6,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "e2e3a0",
"Name": "Card",
"Transform": {
"posX": 12.25002,
"posY": 1.640742,
"posZ": 3.98634815,
"rotX": 359.931427,
"rotY": 270.001221,
"rotZ": 180.014984,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "The Hermit · IX",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 266309,
"SidewaysCard": false,
"CustomDeck": {
"2663": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1697276706767616930/9DB49D8C4BBF9C396AB364151195351559FD1B98/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1697276706767619573/BC43BD2A94446B804BE325C7255D8179DEB2ABE8/",
"NumWidth": 6,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "00f067",
"Name": "Card",
"Transform": {
"posX": 12.2500029,
"posY": 1.63971281,
"posZ": 3.98634839,
"rotX": 359.934021,
"rotY": 270.001129,
"rotZ": 180.015427,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Wheel of Fortune · X",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 266310,
"SidewaysCard": false,
"CustomDeck": {
"2663": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1697276706767616930/9DB49D8C4BBF9C396AB364151195351559FD1B98/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1697276706767619573/BC43BD2A94446B804BE325C7255D8179DEB2ABE8/",
"NumWidth": 6,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "c4282a",
"Name": "Card",
"Transform": {
"posX": 12.2499952,
"posY": 1.636281,
"posZ": 3.98634982,
"rotX": 359.9336,
"rotY": 270.0012,
"rotZ": 180.0142,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Justice · XI",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 266311,
"SidewaysCard": false,
"CustomDeck": {
"2663": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1697276706767616930/9DB49D8C4BBF9C396AB364151195351559FD1B98/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1697276706767619573/BC43BD2A94446B804BE325C7255D8179DEB2ABE8/",
"NumWidth": 6,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "522d77",
"Name": "Card",
"Transform": {
"posX": 12.2500257,
"posY": 1.61160719,
"posZ": 3.98633933,
"rotX": 359.934662,
"rotY": 270.0011,
"rotZ": 180.017166,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "The Hanged Man · XII",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 266312,
"SidewaysCard": false,
"CustomDeck": {
"2663": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1697276706767616930/9DB49D8C4BBF9C396AB364151195351559FD1B98/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1697276706767619573/BC43BD2A94446B804BE325C7255D8179DEB2ABE8/",
"NumWidth": 6,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "a00798",
"Name": "Card",
"Transform": {
"posX": 12.2499952,
"posY": 1.61690724,
"posZ": 3.98634982,
"rotX": 359.930267,
"rotY": 270.00116,
"rotZ": 180.013962,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Death · XIII",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 266313,
"SidewaysCard": false,
"CustomDeck": {
"2663": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1697276706767616930/9DB49D8C4BBF9C396AB364151195351559FD1B98/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1697276706767619573/BC43BD2A94446B804BE325C7255D8179DEB2ABE8/",
"NumWidth": 6,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "ffb72a",
"Name": "Card",
"Transform": {
"posX": 12.2499952,
"posY": 1.60756385,
"posZ": 3.98634982,
"rotX": 359.938629,
"rotY": 270.00116,
"rotZ": 180.014771,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Temperance · XIV",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 266314,
"SidewaysCard": false,
"CustomDeck": {
"2663": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1697276706767616930/9DB49D8C4BBF9C396AB364151195351559FD1B98/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1697276706767619573/BC43BD2A94446B804BE325C7255D8179DEB2ABE8/",
"NumWidth": 6,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "8328fd",
"Name": "Card",
"Transform": {
"posX": 12.2500267,
"posY": 1.58260739,
"posZ": 3.98633957,
"rotX": 359.934937,
"rotY": 270.0011,
"rotZ": 180.017426,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "The Devil · XV",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 266315,
"SidewaysCard": false,
"CustomDeck": {
"2663": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1697276706767616930/9DB49D8C4BBF9C396AB364151195351559FD1B98/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1697276706767619573/BC43BD2A94446B804BE325C7255D8179DEB2ABE8/",
"NumWidth": 6,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "25ae32",
"Name": "Card",
"Transform": {
"posX": 12.2500267,
"posY": 1.57305872,
"posZ": 3.98633981,
"rotX": 359.934937,
"rotY": 270.0011,
"rotZ": 180.017517,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "The Tower · XVI",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 266316,
"SidewaysCard": false,
"CustomDeck": {
"2663": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1697276706767616930/9DB49D8C4BBF9C396AB364151195351559FD1B98/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1697276706767619573/BC43BD2A94446B804BE325C7255D8179DEB2ABE8/",
"NumWidth": 6,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "37153b",
"Name": "Card",
"Transform": {
"posX": 12.2500038,
"posY": 1.57091343,
"posZ": 3.986348,
"rotX": 359.934326,
"rotY": 270.0011,
"rotZ": 180.016,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "The Star · XVII",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 266317,
"SidewaysCard": false,
"CustomDeck": {
"2663": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1697276706767616930/9DB49D8C4BBF9C396AB364151195351559FD1B98/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1697276706767619573/BC43BD2A94446B804BE325C7255D8179DEB2ABE8/",
"NumWidth": 6,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "37c24c",
"Name": "Card",
"Transform": {
"posX": 12.2500372,
"posY": 1.553576,
"posZ": 3.986334,
"rotX": 359.921356,
"rotY": 270.00116,
"rotZ": 180.027023,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "The Moon · XVIII",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 266318,
"SidewaysCard": false,
"CustomDeck": {
"2663": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1697276706767616930/9DB49D8C4BBF9C396AB364151195351559FD1B98/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1697276706767619573/BC43BD2A94446B804BE325C7255D8179DEB2ABE8/",
"NumWidth": 6,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "65b6cb",
"Name": "Card",
"Transform": {
"posX": 12.2500267,
"posY": 1.54414439,
"posZ": 3.98634171,
"rotX": 359.935242,
"rotY": 270.001068,
"rotZ": 180.01564,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "The Sun · XIX",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 266319,
"SidewaysCard": false,
"CustomDeck": {
"2663": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1697276706767616930/9DB49D8C4BBF9C396AB364151195351559FD1B98/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1697276706767619573/BC43BD2A94446B804BE325C7255D8179DEB2ABE8/",
"NumWidth": 6,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "e5e392",
"Name": "Card",
"Transform": {
"posX": 12.2499933,
"posY": 1.5096041,
"posZ": 3.98631287,
"rotX": 359.974426,
"rotY": 270.001373,
"rotZ": 180.048553,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Judgement · XX",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 266320,
"SidewaysCard": false,
"CustomDeck": {
"2663": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1697276706767616930/9DB49D8C4BBF9C396AB364151195351559FD1B98/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1697276706767619573/BC43BD2A94446B804BE325C7255D8179DEB2ABE8/",
"NumWidth": 6,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "dacc75",
"Name": "Card",
"Transform": {
"posX": 12.2499809,
"posY": 1.47904122,
"posZ": 3.986356,
"rotX": 359.921783,
"rotY": 270.00116,
"rotZ": 180.030853,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "The World · XXI",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 266321,
"SidewaysCard": false,
"CustomDeck": {
"2663": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1697276706767616930/9DB49D8C4BBF9C396AB364151195351559FD1B98/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1697276706767619573/BC43BD2A94446B804BE325C7255D8179DEB2ABE8/",
"NumWidth": 6,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "a230f9",
"Name": "Bag",
"Transform": {
"posX": -26.4343815,
"posY": 1.180181,
"posZ": 95.75857,
"rotX": 359.9832,
"rotY": 0.00204430358,
"rotZ": 0.020849308,
"scaleX": 0.450000465,
"scaleY": 0.450000465,
"scaleZ": 0.450000465
},
"Nickname": "Tarot Deck (Scripted)",
"Description": "Right-click for card reading options.",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.627451062,
"g": 0.1254875,
"b": 0.9411765
},
"LayoutGroupSortIndex": 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,
"Bag": {
"Order": 0
},
"LuaScript": "CARD_OFFSET = Vector({0, 0.1, -2})\nORIENTATIONS = { {0, 270, 0}, { 0, 90, 0} }\nREADING = {\n \"Temperance\",\n \"Justice\",\n \"Hermit\",\n \"Hanged Man\",\n \"Hierophant\",\n \"Lovers\",\n \"Chariot\",\n \"Wheel of Fortune\"\n}\n\nfunction onLoad()\n self.addContextMenuItem(\"Chaos\", chaos, false)\n self.addContextMenuItem(\"Balance\", balance, false)\n self.addContextMenuItem(\"Choice\", choice, false)\n self.addContextMenuItem(\"Destiny (Campaign)\", destiny, false)\n self.addContextMenuItem(\"Accept Your Fate\", fate, false)\n\n math.randomseed(os.time())\nend\n\nfunction chaos(color)\n self.shuffle()\n self.takeObject({\n position = self.getPosition() + CARD_OFFSET,\n rotation = ORIENTATIONS[math.random(2)],\n smooth = true\n })\nend\n\nfunction balance(color)\n self.shuffle()\n self.takeObject({\n position = self.getPosition() + CARD_OFFSET,\n rotation = ORIENTATIONS[1],\n smooth = true\n })\n self.takeObject({\n position = self.getPosition() + 2*CARD_OFFSET,\n rotation = ORIENTATIONS[2],\n smooth = true\n })\nend\n\nfunction choice(color)\n self.shuffle()\n for i=1,3 do\n self.takeObject({\n position = self.getPosition() + i*CARD_OFFSET,\n rotation = ORIENTATIONS[1],\n smooth = true\n })\n end\n broadcastToColor(\"Choose and reverse two of the cards.\", color)\nend\n\nfunction destiny(color)\n self.shuffle()\n for i=1,8 do\n self.takeObject({\n position = self.getPosition() + i*CARD_OFFSET,\n rotation = ORIENTATIONS[1],\n smooth = true\n })\n end\n broadcastToColor(\"Each card corresponds to one scenario, leftmost is first. Choose and reverse half of the cards (rounded up).\", color)\nend\n\nfunction fate(color)\n local guids = {}\n local cards = self.getObjects()\n for i,card in ipairs(cards) do\n for j,reading in ipairs(READING) do\n if string.match(card.name, reading) ~= nil then\n guids[j] = card.guid\n end\n end\n end\n for k,guid in ipairs(guids) do\n self.takeObject({\n guid = guid,\n position = self.getPosition() + k*CARD_OFFSET,\n rotation = ORIENTATIONS[1],\n smooth = true\n })\n end\n broadcastToColor(\"Each card corresponds to one scenario, leftmost is first. Choose and reverse half of the cards (rounded up).\", color)\nend",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "0fd716",
"Name": "Card",
"Transform": {
"posX": -13.7908669,
"posY": 2.985347,
"posZ": 65.4212952,
"rotX": 0.0912693,
"rotY": 269.988739,
"rotZ": 177.76236,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "The Magician · I",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 266301,
"SidewaysCard": false,
"CustomDeck": {
"2663": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1697276706767616930/9DB49D8C4BBF9C396AB364151195351559FD1B98/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1697276706767619573/BC43BD2A94446B804BE325C7255D8179DEB2ABE8/",
"NumWidth": 6,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "25ae32",
"Name": "Card",
"Transform": {
"posX": -13.790801,
"posY": 2.556725,
"posZ": 70.457756,
"rotX": 0.01758635,
"rotY": 269.9991,
"rotZ": 177.849152,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "The Tower · XVI",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 266316,
"SidewaysCard": false,
"CustomDeck": {
"2663": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1697276706767616930/9DB49D8C4BBF9C396AB364151195351559FD1B98/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1697276706767619573/BC43BD2A94446B804BE325C7255D8179DEB2ABE8/",
"NumWidth": 6,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "37c24c",
"Name": "Card",
"Transform": {
"posX": -13.7907906,
"posY": 4.151365,
"posZ": 52.2967949,
"rotX": 1.94427657,
"rotY": 359.9856,
"rotZ": 179.99852,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "The Moon · XVIII",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 266318,
"SidewaysCard": false,
"CustomDeck": {
"2663": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1697276706767616930/9DB49D8C4BBF9C396AB364151195351559FD1B98/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1697276706767619573/BC43BD2A94446B804BE325C7255D8179DEB2ABE8/",
"NumWidth": 6,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "a6d017",
"Name": "Card",
"Transform": {
"posX": -12.1127281,
"posY": 3.338664,
"posZ": 55.794548,
"rotX": 0.0208090283,
"rotY": 270.0,
"rotZ": 0.0167713743,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "The High Priestess · II",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 266302,
"SidewaysCard": false,
"CustomDeck": {
"2663": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1697276706767616930/9DB49D8C4BBF9C396AB364151195351559FD1B98/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1697276706767619573/BC43BD2A94446B804BE325C7255D8179DEB2ABE8/",
"NumWidth": 6,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "37153b",
"Name": "Card",
"Transform": {
"posX": -13.7907906,
"posY": 4.23553228,
"posZ": 51.28922,
"rotX": 1.94102693,
"rotY": 359.9856,
"rotZ": 179.99852,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "The Star · XVII",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 266317,
"SidewaysCard": false,
"CustomDeck": {
"2663": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1697276706767616930/9DB49D8C4BBF9C396AB364151195351559FD1B98/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1697276706767619573/BC43BD2A94446B804BE325C7255D8179DEB2ABE8/",
"NumWidth": 6,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "dacc75",
"Name": "Card",
"Transform": {
"posX": -13.7908211,
"posY": 2.644212,
"posZ": 69.45062,
"rotX": 0.0330472328,
"rotY": 269.9981,
"rotZ": 177.934387,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "The World · XXI",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 266321,
"SidewaysCard": false,
"CustomDeck": {
"2663": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1697276706767616930/9DB49D8C4BBF9C396AB364151195351559FD1B98/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1697276706767619573/BC43BD2A94446B804BE325C7255D8179DEB2ABE8/",
"NumWidth": 6,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "e5e392",
"Name": "Card",
"Transform": {
"posX": -13.7908068,
"posY": 3.074739,
"posZ": 64.4141541,
"rotX": 0.09126951,
"rotY": 269.988739,
"rotZ": 177.76236,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Judgement · XX",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 266320,
"SidewaysCard": false,
"CustomDeck": {
"2663": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1697276706767616930/9DB49D8C4BBF9C396AB364151195351559FD1B98/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1697276706767619573/BC43BD2A94446B804BE325C7255D8179DEB2ABE8/",
"NumWidth": 6,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "8be589",
"Name": "Card",
"Transform": {
"posX": -11.9741488,
"posY": 3.33860826,
"posZ": 57.3130074,
"rotX": 359.9792,
"rotY": 90.00143,
"rotZ": 359.983215,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "The Emperor · IV",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 266304,
"SidewaysCard": false,
"CustomDeck": {
"2663": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1697276706767616930/9DB49D8C4BBF9C396AB364151195351559FD1B98/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1697276706767619573/BC43BD2A94446B804BE325C7255D8179DEB2ABE8/",
"NumWidth": 6,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "01cd9f",
"Name": "Card",
"Transform": {
"posX": -13.7907915,
"posY": 3.56002617,
"posZ": 59.34966,
"rotX": 1.97519875,
"rotY": 359.985565,
"rotZ": 179.998489,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "The Fool · 0",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 266300,
"SidewaysCard": false,
"CustomDeck": {
"2663": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1697276706767616930/9DB49D8C4BBF9C396AB364151195351559FD1B98/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1697276706767619573/BC43BD2A94446B804BE325C7255D8179DEB2ABE8/",
"NumWidth": 6,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "65b6cb",
"Name": "Card",
"Transform": {
"posX": -13.7907906,
"posY": 3.89848471,
"posZ": 55.3194962,
"rotX": 1.95782125,
"rotY": 359.9856,
"rotZ": 179.9985,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "The Sun · XIX",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 266319,
"SidewaysCard": false,
"CustomDeck": {
"2663": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1697276706767616930/9DB49D8C4BBF9C396AB364151195351559FD1B98/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1697276706767619573/BC43BD2A94446B804BE325C7255D8179DEB2ABE8/",
"NumWidth": 6,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "a00798",
"Name": "Card",
"Transform": {
"posX": -12.3468027,
"posY": 3.34041977,
"posZ": 54.460907,
"rotX": 0.020808287,
"rotY": 270.0,
"rotZ": 0.0167706832,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Death · XIII",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 266313,
"SidewaysCard": false,
"CustomDeck": {
"2663": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1697276706767616930/9DB49D8C4BBF9C396AB364151195351559FD1B98/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1697276706767619573/BC43BD2A94446B804BE325C7255D8179DEB2ABE8/",
"NumWidth": 6,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "e0ad3b",
"Name": "Card",
"Transform": {
"posX": -12.3468046,
"posY": 3.33983612,
"posZ": 52.4609032,
"rotX": 0.0208086539,
"rotY": 270.0,
"rotZ": 0.0167710725,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Strength · VIII",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 266308,
"SidewaysCard": false,
"CustomDeck": {
"2663": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1697276706767616930/9DB49D8C4BBF9C396AB364151195351559FD1B98/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1697276706767619573/BC43BD2A94446B804BE325C7255D8179DEB2ABE8/",
"NumWidth": 6,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "ee4a47",
"Name": "Card",
"Transform": {
"posX": -12.3468027,
"posY": 3.33866358,
"posZ": 48.460907,
"rotX": 0.020808408,
"rotY": 270.0,
"rotZ": 0.0167706348,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "The Empress · III",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 266303,
"SidewaysCard": false,
"CustomDeck": {
"2663": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1697276706767616930/9DB49D8C4BBF9C396AB364151195351559FD1B98/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1697276706767619573/BC43BD2A94446B804BE325C7255D8179DEB2ABE8/",
"NumWidth": 6,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "8328fd",
"Name": "Card",
"Transform": {
"posX": -12.3468,
"posY": 3.585084,
"posZ": 46.460907,
"rotX": 1.85505428E-07,
"rotY": 270.0,
"rotZ": -9.659844E-06,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "The Devil · XV",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 266315,
"SidewaysCard": false,
"CustomDeck": {
"2663": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1697276706767616930/9DB49D8C4BBF9C396AB364151195351559FD1B98/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1697276706767619573/BC43BD2A94446B804BE325C7255D8179DEB2ABE8/",
"NumWidth": 6,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "c4282a",
"Name": "Card",
"Transform": {
"posX": 16.0347157,
"posY": 3.388479,
"posZ": 45.8518181,
"rotX": 1.01014149,
"rotY": 270.019318,
"rotZ": 0.9805266,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Justice · XI",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 266311,
"SidewaysCard": false,
"CustomDeck": {
"2663": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1697276706767616930/9DB49D8C4BBF9C396AB364151195351559FD1B98/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1697276706767619573/BC43BD2A94446B804BE325C7255D8179DEB2ABE8/",
"NumWidth": 6,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "00f067",
"Name": "Card",
"Transform": {
"posX": 19.6818657,
"posY": 3.29626346,
"posZ": 41.7726746,
"rotX": 359.920135,
"rotY": 270.0002,
"rotZ": 0.0168723166,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Wheel of Fortune · X",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 266310,
"SidewaysCard": false,
"CustomDeck": {
"2663": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1697276706767616930/9DB49D8C4BBF9C396AB364151195351559FD1B98/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1697276706767619573/BC43BD2A94446B804BE325C7255D8179DEB2ABE8/",
"NumWidth": 6,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "f633db",
"Name": "Card",
"Transform": {
"posX": 21.6525612,
"posY": 3.327994,
"posZ": 44.4937019,
"rotX": -3.63921026E-05,
"rotY": 270.0003,
"rotZ": 2.08326,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "The Chariot · VII",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 266307,
"SidewaysCard": false,
"CustomDeck": {
"2663": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1697276706767616930/9DB49D8C4BBF9C396AB364151195351559FD1B98/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1697276706767619573/BC43BD2A94446B804BE325C7255D8179DEB2ABE8/",
"NumWidth": 6,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "2f9064",
"Name": "Card",
"Transform": {
"posX": 17.9291573,
"posY": 3.32940745,
"posZ": 44.62986,
"rotX": -6.888091E-06,
"rotY": 270.000061,
"rotZ": -1.466137E-05,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "The Hierophant · V",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 266305,
"SidewaysCard": false,
"CustomDeck": {
"2663": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1697276706767616930/9DB49D8C4BBF9C396AB364151195351559FD1B98/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1697276706767619573/BC43BD2A94446B804BE325C7255D8179DEB2ABE8/",
"NumWidth": 6,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "522d77",
"Name": "Card",
"Transform": {
"posX": 20.9562721,
"posY": 3.20889449,
"posZ": 48.6526947,
"rotX": 0.01945622,
"rotY": 270.008881,
"rotZ": 352.695526,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "The Hanged Man · XII",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 266312,
"SidewaysCard": false,
"CustomDeck": {
"2663": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1697276706767616930/9DB49D8C4BBF9C396AB364151195351559FD1B98/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1697276706767619573/BC43BD2A94446B804BE325C7255D8179DEB2ABE8/",
"NumWidth": 6,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "e2e3a0",
"Name": "Card",
"Transform": {
"posX": 20.9477463,
"posY": 3.12539244,
"posZ": 50.1840858,
"rotX": 0.0209133457,
"rotY": 269.977448,
"rotZ": 358.2307,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "The Hermit · IX",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 266309,
"SidewaysCard": false,
"CustomDeck": {
"2663": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1697276706767616930/9DB49D8C4BBF9C396AB364151195351559FD1B98/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1697276706767619573/BC43BD2A94446B804BE325C7255D8179DEB2ABE8/",
"NumWidth": 6,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "ffb72a",
"Name": "Card",
"Transform": {
"posX": 17.1922817,
"posY": 3.15644288,
"posZ": 48.90824,
"rotX": 0.009006458,
"rotY": 270.008026,
"rotZ": 356.080444,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Temperance · XIV",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 266314,
"SidewaysCard": false,
"CustomDeck": {
"2663": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1697276706767616930/9DB49D8C4BBF9C396AB364151195351559FD1B98/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1697276706767619573/BC43BD2A94446B804BE325C7255D8179DEB2ABE8/",
"NumWidth": 6,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "d5d07a",
"Name": "Card",
"Transform": {
"posX": 17.6052246,
"posY": 3.35915375,
"posZ": 46.7104568,
"rotX": 359.348846,
"rotY": 270.000946,
"rotZ": 0.9955575,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "The Lovers · VI",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 266306,
"SidewaysCard": false,
"CustomDeck": {
"2663": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1697276706767616930/9DB49D8C4BBF9C396AB364151195351559FD1B98/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1697276706767619573/BC43BD2A94446B804BE325C7255D8179DEB2ABE8/",
"NumWidth": 6,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "aa8b38",
"Name": "Custom_Model_Bag",
"Transform": {
"posX": 30.3702068,
"posY": 1.47026253,
"posZ": -21.2453861,
"rotX": 359.917877,
"rotY": 269.9989,
"rotZ": 0.0165910162,
"scaleX": 0.67500025,
"scaleY": 0.67500025,
"scaleZ": 0.67500025
},
"Nickname": "Fan-Made Accessories",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.9999998,
"g": 0.992160261,
"b": 0.9999998
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": true,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"MaterialIndex": -1,
"MeshIndex": -1,
"CustomMesh": {
"MeshURL": "http://pastebin.com/U9C5Ymds",
"DiffuseURL": "http://i.imgur.com/ukWGram.png",
"NormalURL": "http://i.imgur.com/0qUEr3W.jpg",
"ColliderURL": "",
"Convex": true,
"MaterialIndex": 1,
"TypeIndex": 6,
"CustomShader": {
"SpecularColor": {
"r": 0.8745098,
"g": 0.8117647,
"b": 0.745098054
},
"SpecularIntensity": 0.08,
"SpecularSharpness": 5.0,
"FresnelStrength": 0.5
},
"CastShadows": true
},
"Bag": {
"Order": 0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "3da8b6",
"Name": "Custom_Model",
"Transform": {
"posX": 25.3855972,
"posY": 2.631005,
"posZ": -47.0030365,
"rotX": 359.9201,
"rotY": 270.023163,
"rotZ": 0.0168498158,
"scaleX": 0.725000262,
"scaleY": 0.725000262,
"scaleZ": 0.725000262
},
"Nickname": "Attachment/Facedown Helper",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.0,
"g": 0.0,
"b": 0.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,
"CustomMesh": {
"MeshURL": "http://cloud-3.steamusercontent.com/ugc/1754695414379239413/0B8E68F3B7311DCF2138FB701F78D1D93FBA4CAB/",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/1754695774481244354/E49F993A2E3D760FD030F3D2E5F6B2DD32FC6984/",
"NormalURL": "",
"ColliderURL": "http://cloud-3.steamusercontent.com/ugc/1754695414379239413/0B8E68F3B7311DCF2138FB701F78D1D93FBA4CAB/",
"Convex": true,
"MaterialIndex": 1,
"TypeIndex": 0,
"CastShadows": true
},
"LuaScript": "function onload(saved_data)\r\n generateText()\r\nend\r\n\r\nfunction generateText()\r\n local text = 'Attachment/\\nFacedown\\nHelper'\r\n\r\n self.createButton({\r\n label = text,\r\n click_function = 'nothing',\r\n function_owner = self,\r\n position = {0,0,-1.15},\r\n width = 0,\r\n height = 0,\r\n font_size = 175,\r\n font_color = {1,1,1}\r\n })\r\n\r\n text = 'State 1: Sefina Rousseau\\n\\nState 2: Diana Stanley\\n\\nState 3: Gloria Goldberg\\n\\nState 4: Crystallizer of Dreams\\n\\nState 5: Ancestral Knowledge\\n\\nState 6: Astronomical Atlas'\r\n\r\n self.createButton({\r\n label = text,\r\n click_function = 'nothing',\r\n function_owner = self,\r\n position = {0,0,0.5},\r\n width = 0,\r\n height = 0,\r\n font_size = 75,\r\n font_color = {1,1,1}\r\n })\r\nend\r\n\r\nfunction nothing()\r\nend",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"3": {
"GUID": "d866f5",
"Name": "Custom_Model_Bag",
"Transform": {
"posX": -18.641531,
"posY": 1.14969015,
"posZ": -28.045311,
"rotX": 1.46586046E-07,
"rotY": 179.993668,
"rotZ": 7.209918E-08,
"scaleX": 0.725000262,
"scaleY": 0.725000262,
"scaleZ": 0.725000262
},
"Nickname": "Gloria Goldberg Helper",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.364703774,
"g": 0.333331257,
"b": 0.576470554
},
"LayoutGroupSortIndex": 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,
"Number": 0,
"CustomMesh": {
"MeshURL": "http://cloud-3.steamusercontent.com/ugc/1754695414379239413/0B8E68F3B7311DCF2138FB701F78D1D93FBA4CAB/",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/1754695635919102502/453D4426118C8A6DE2EA281184716E26CA924C84/",
"NormalURL": "",
"ColliderURL": "http://cloud-3.steamusercontent.com/ugc/1754695414379239413/0B8E68F3B7311DCF2138FB701F78D1D93FBA4CAB/",
"Convex": true,
"MaterialIndex": 1,
"TypeIndex": 6,
"CastShadows": true
},
"Bag": {
"Order": 0
},
"LuaScript": "function onload(saved_data)\r\n cardsInBag = {}\r\n memoizedCards = {}\r\n searchUrl=\"https://arkhamdb.com/find?q=\"\r\nend\r\n\r\nfunction onObjectEnterContainer(container, object)\r\n if container == self then\r\n --use previously-found cards to prevent redundant ArkhamDB requests\r\n if memoizedCards[object.getName()] then\r\n table.insert(cardsInBag, {name = object.getName() .. memoizedCards[object.getName()], id = object.getGUID()})\r\n recreateButtons()\r\n else\r\n local formatCardName = string.gsub(string.lower(object.getName()), ' ', '+')\r\n\r\n WebRequest.get(searchUrl .. formatCardName, function(req)\r\n searchCallback(req, object)\r\n end)\r\n end\r\n end\r\nend\r\n\r\nfunction onObjectLeaveContainer(container, object)\r\n if container == self then\r\n removeCardByGUID(cardsInBag, object.getGUID())\r\n recreateButtons()\r\n end\r\nend\r\n\r\nfunction searchCallback(req, object)\r\n local traits = ''\r\n\r\n local traitsHtml = string.match(req.text, '[^%<]*')\r\n if traitsHtml != nil then\r\n traits = '\\n' .. string.sub(traitsHtml, 24)\r\n end\r\n\r\n --memoize result\r\n memoizedCards[object.getName()] = traits\r\n\r\n table.insert(cardsInBag, {name = object.getName() .. traits, id = object.getGUID()})\r\n recreateButtons()\r\nend\r\n\r\nfunction recreateButtons()\r\n self.clearButtons()\r\n verticalPosition = 1.5\r\n\r\n for _, card in ipairs(cardsInBag) do\r\n if _G['removeCard' .. card.id] == nil then\r\n _G['removeCard' .. card.id] = function()\r\n removeCard(card.id)\r\n end\r\n end\r\n\r\n self.createButton({\r\n label = card.name,\r\n click_function = \"removeCard\" .. card.id,\r\n function_owner = self,\r\n position = {0,0,verticalPosition},\r\n height = 225,\r\n width = 1200,\r\n font_size = 75,\r\n color = {1,1,1},\r\n font_color = {0,0,0}\r\n })\r\n\r\n verticalPosition = verticalPosition - 0.5\r\n end\r\n\r\n countLabel = #cardsInBag == 0 and '' or #cardsInBag\r\n\r\n self.createButton({\r\n label = countLabel,\r\n click_function = 'nothing',\r\n function_owner = self,\r\n position = {0,0,-1.25},\r\n width = 0,\r\n height = 0,\r\n font_size = 225,\r\n font_color = {1,1,1}\r\n })\r\nend\r\n\r\nfunction nothing()\r\nend\r\n\r\nfunction removeCard(cardGUID)\r\n self.takeObject({\r\n guid = cardGUID,\r\n rotation = self.getRotation(),\r\n position = self.getPosition() + Vector(0,0.5,0),\r\n callback_function = function(obj)\r\n obj.resting = true\r\n end\r\n })\r\nend\r\n\r\nfunction removeCardByGUID(bag, guid)\r\n local idx = nil\r\n\r\n for i, v in ipairs (bag) do\r\n if (v.id == guid) then\r\n idx = i\r\n end\r\n end\r\n\r\n if idx ~= nil then\r\n table.remove(cardsInBag, idx)\r\n end\r\nend",
"LuaScriptState": "",
"XmlUI": ""
},
"4": {
"GUID": "211ed4",
"Name": "Custom_Model_Bag",
"Transform": {
"posX": -16.14881,
"posY": 1.14969015,
"posZ": -28.0282116,
"rotX": -1.4373849E-07,
"rotY": 179.9988,
"rotZ": 5.079865E-07,
"scaleX": 0.725000262,
"scaleY": 0.725000262,
"scaleZ": 0.725000262
},
"Nickname": "Crystallizer of Dreams Helper",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.0627435744,
"g": 0.443135232,
"b": 0.0862728
},
"LayoutGroupSortIndex": 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,
"Number": 0,
"CustomMesh": {
"MeshURL": "http://cloud-3.steamusercontent.com/ugc/1754695414379239413/0B8E68F3B7311DCF2138FB701F78D1D93FBA4CAB/",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/1754695414379787654/F00A76F0DFB4B279F7A5647E1DD1BF730CFC7501/",
"NormalURL": "",
"ColliderURL": "http://cloud-3.steamusercontent.com/ugc/1754695414379239413/0B8E68F3B7311DCF2138FB701F78D1D93FBA4CAB/",
"Convex": true,
"MaterialIndex": 1,
"TypeIndex": 6,
"CastShadows": true
},
"Bag": {
"Order": 0
},
"LuaScript": "function onload(saved_data)\r\n cardsInBag = {}\r\n memoizedCards = {}\r\n cardJson = loadCards()\r\nend\r\n\r\nfunction onObjectEnterContainer(container, object)\r\n if container == self then\r\n --use previously-found cards for faster performace\r\n if memoizedCards[object.getName()] then\r\n table.insert(cardsInBag, {name = object.getName() .. memoizedCards[object.getName()], id = object.getGUID()})\r\n recreateButtons()\r\n else\r\n findCard(object)\r\n end\r\n end\r\nend\r\n\r\nfunction onObjectLeaveContainer(container, object)\r\n if container == self then\r\n removeCardByGUID(cardsInBag, object.getGUID())\r\n recreateButtons()\r\n end\r\nend\r\n\r\nfunction findCard(object)\r\n local icons = ''\r\n\r\n for _, card in pairs (cardJson) do\r\n if (card.name == object.getName()) then\r\n local skillIcons = getIcons(card.skillIcons)\r\n if skillIcons ~= '' then\r\n icons = '\\n' .. skillIcons\r\n end\r\n break\r\n end\r\n end\r\n\r\n --memoize result\r\n memoizedCards[object.getName()] = icons\r\n\r\n table.insert(cardsInBag, {name = object.getName() .. icons, id = object.getGUID()})\r\n recreateButtons()\r\nend\r\n\r\nfunction getIcons(skillIcons)\r\n local icons = ''\r\n\r\n for icon, value in pairs (skillIcons) do\r\n icons = icons .. icon .. ': ' .. value .. ' '\r\n end\r\n\r\n return icons\r\nend\r\n\r\nfunction recreateButtons()\r\n self.clearButtons()\r\n verticalPosition = 1.5\r\n\r\n for _, card in ipairs(cardsInBag) do\r\n if _G['removeCard' .. card.id] == nil then\r\n _G['removeCard' .. card.id] = function()\r\n removeCard(card.id)\r\n end\r\n end\r\n\r\n self.createButton({\r\n label = card.name,\r\n icon = 'combatIcon',\r\n click_function = \"removeCard\" .. card.id,\r\n function_owner = self,\r\n position = {0,0,verticalPosition},\r\n height = 225,\r\n width = 1200,\r\n font_size = 75,\r\n color = {1,1,1},\r\n font_color = {0,0,0}\r\n })\r\n\r\n verticalPosition = verticalPosition - 0.5\r\n end\r\n\r\n countLabel = #cardsInBag == 0 and '' or #cardsInBag\r\n\r\n self.createButton({\r\n label = countLabel,\r\n click_function = 'nothing',\r\n function_owner = self,\r\n position = {0,0,-1.25},\r\n width = 0,\r\n height = 0,\r\n font_size = 225,\r\n font_color = {1,1,1}\r\n })\r\nend\r\n\r\nfunction nothing()\r\nend\r\n\r\nfunction removeCard(cardGUID)\r\n self.takeObject({\r\n guid = cardGUID,\r\n rotation = self.getRotation(),\r\n position = self.getPosition() + Vector(0,0.5,0),\r\n callback_function = function(obj)\r\n obj.resting = true\r\n end\r\n })\r\nend\r\n\r\nfunction removeCardByGUID(bag, guid)\r\n local idx = nil\r\n\r\n for i, v in ipairs (bag) do\r\n if (v.id == guid) then\r\n idx = i\r\n end\r\n end\r\n\r\n if idx ~= nil then\r\n table.remove(cardsInBag, idx)\r\n end\r\nend\r\n\r\nfunction loadCards()\r\n return {{[\"name\"] = \"Random Basic Weakness\",[\"skillIcons\"] = {}},{[\"name\"] = \"Roland Banks\",[\"skillIcons\"] = {[\"Will\"] = 3,[\"Agility\"] = 2,[\"Combat\"] = 4,[\"Intellect\"] = 3}},{[\"name\"] = \"Daisy Walker\",[\"skillIcons\"] = {[\"Will\"] = 3,[\"Agility\"] = 2,[\"Combat\"] = 2,[\"Intellect\"] = 5}},{[\"name\"] = \"\\\"Skids\\\" O'Toole\",[\"skillIcons\"] = {[\"Will\"] = 2,[\"Agility\"] = 4,[\"Combat\"] = 3,[\"Intellect\"] = 3}},{[\"name\"] = \"Agnes Baker\",[\"skillIcons\"] = {[\"Will\"] = 5,[\"Agility\"] = 3,[\"Combat\"] = 2,[\"Intellect\"] = 2}},{[\"name\"] = \"Wendy Adams\",[\"skillIcons\"] = {[\"Will\"] = 4,[\"Agility\"] = 4,[\"Combat\"] = 1,[\"Intellect\"] = 3}},{[\"name\"] = \"Roland's .38 Special\",[\"skillIcons\"] = {[\"Wild\"] = 1,[\"Agility\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Cover Up\",[\"skillIcons\"] = {}},{[\"name\"] = \"Daisy's Tote Bag\",[\"skillIcons\"] = {[\"Wild\"] = 1,[\"Will\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"The Necronomicon\",[\"skillIcons\"] = {}},{[\"name\"] = \"On the Lam\",[\"skillIcons\"] = {[\"Wild\"] = 2,[\"Agility\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Hospital Debts\",[\"skillIcons\"] = {}},{[\"name\"] = \"Heirloom of Hyperborea\",[\"skillIcons\"] = {[\"Wild\"] = 1,[\"Will\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Dark Memory\",[\"skillIcons\"] = {}},{[\"name\"] = \"Wendy's Amulet\",[\"skillIcons\"] = {[\"Wild\"] = 2}},{[\"name\"] = \"Abandoned and Alone\",[\"skillIcons\"] = {}},{[\"name\"] = \".45 Automatic\",[\"skillIcons\"] = {[\"Agility\"] = 1}},{[\"name\"] = \"Physical Training\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Beat Cop\",[\"skillIcons\"] = {[\"Combat\"] = 1}},{[\"name\"] = \"First Aid\",[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Machete\",[\"skillIcons\"] = {[\"Combat\"] = 1}},{[\"name\"] = \"Guard Dog\",[\"skillIcons\"] = {[\"Combat\"] = 1}},{[\"name\"] = \"Evidence!\",[\"skillIcons\"] = {[\"Intellect\"] = 2}},{[\"name\"] = \"Dodge\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Agility\"] = 1}},{[\"name\"] = \"Dynamite Blast\",[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Vicious Blow\",[\"skillIcons\"] = {[\"Combat\"] = 1}},{[\"name\"] = \"Extra Ammunition (1)\",[\"skillIcons\"] = {[\"Intellect\"] = 1}},{[\"name\"] = \"Police Badge (2)\",[\"skillIcons\"] = {[\"Wild\"] = 1,[\"Will\"] = 1}},{[\"name\"] = \"Beat Cop (2)\",[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Shotgun (4)\",[\"skillIcons\"] = {[\"Combat\"] = 2}},{[\"name\"] = \"Magnifying Glass\",[\"skillIcons\"] = {[\"Intellect\"] = 1}},{[\"name\"] = \"Old Book of Lore\",[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Research Librarian\",[\"skillIcons\"] = {[\"Agility\"] = 1}},{[\"name\"] = \"Dr. Milan Christopher\",[\"skillIcons\"] = {[\"Intellect\"] = 1}},{[\"name\"] = \"Hyperawareness\",[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Medical Texts\",[\"skillIcons\"] = {[\"Combat\"] = 1}},{[\"name\"] = \"Mind over Matter\",[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Working a Hunch\",[\"skillIcons\"] = {[\"Intellect\"] = 2}},{[\"name\"] = \"Barricade\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Agility\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Deduction\",[\"skillIcons\"] = {[\"Intellect\"] = 1}},{[\"name\"] = \"Magnifying Glass (1)\",[\"skillIcons\"] = {[\"Intellect\"] = 1}},{[\"name\"] = \"Disc of Itzamna (2)\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Combat\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Encyclopedia (2)\",[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Cryptic Research (4)\",[\"skillIcons\"] = {}},{[\"name\"] = \"Switchblade\",[\"skillIcons\"] = {[\"Agility\"] = 1}},{[\"name\"] = \"Burglary\",[\"skillIcons\"] = {[\"Intellect\"] = 1}},{[\"name\"] = \"Pickpocketing\",[\"skillIcons\"] = {[\"Agility\"] = 1}},{[\"name\"] = \".41 Derringer\",[\"skillIcons\"] = {[\"Combat\"] = 1}},{[\"name\"] = \"Leo De Luca\",[\"skillIcons\"] = {[\"Intellect\"] = 1}},{[\"name\"] = \"Hard Knocks\",[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Elusive\",[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Backstab\",[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Sneak Attack\",[\"skillIcons\"] = {[\"Combat\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Opportunist\",[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Leo De Luca (1)\",[\"skillIcons\"] = {[\"Intellect\"] = 1}},{[\"name\"] = \"Cat Burglar (1)\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Agility\"] = 1}},{[\"name\"] = \"Sure Gamble (3)\",[\"skillIcons\"] = {}},{[\"name\"] = \"Hot Streak (4)\",[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Forbidden Knowledge\",[\"skillIcons\"] = {[\"Intellect\"] = 1}},{[\"name\"] = \"Holy Rosary\",[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Shrivelling\",[\"skillIcons\"] = {[\"Combat\"] = 1}},{[\"name\"] = \"Scrying\",[\"skillIcons\"] = {[\"Intellect\"] = 1}},{[\"name\"] = \"Arcane Studies\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Arcane Initiate\",[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Drawn to the Flame\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Ward of Protection\",[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Blinding Light\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Agility\"] = 1}},{[\"name\"] = \"Fearless\",[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Mind Wipe (1)\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Blinding Light (2)\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Agility\"] = 1}},{[\"name\"] = \"Book of Shadows (3)\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Grotesque Statue (4)\",[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Leather Coat\",[\"skillIcons\"] = {[\"Combat\"] = 1}},{[\"name\"] = \"Scavenging\",[\"skillIcons\"] = {[\"Intellect\"] = 1}},{[\"name\"] = \"Baseball Bat\",[\"skillIcons\"] = {[\"Combat\"] = 1}},{[\"name\"] = \"Rabbit's Foot\",[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Stray Cat\",[\"skillIcons\"] = {[\"Agility\"] = 1}},{[\"name\"] = \"Dig Deep\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Agility\"] = 1}},{[\"name\"] = \"Cunning Distraction\",[\"skillIcons\"] = {[\"Wild\"] = 1,[\"Will\"] = 1}},{[\"name\"] = \"\\\"Look what I found!\\\"\",[\"skillIcons\"] = {[\"Intellect\"] = 2}},{[\"name\"] = \"Lucky!\",[\"skillIcons\"] = {}},{[\"name\"] = \"Survival Instinct\",[\"skillIcons\"] = {[\"Agility\"] = 1}},{[\"name\"] = \"Aquinnah (1)\",[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Close Call (2)\",[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Lucky! (2)\",[\"skillIcons\"] = {}},{[\"name\"] = \"Will to Survive (3)\",[\"skillIcons\"] = {[\"Wild\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Knife\",[\"skillIcons\"] = {[\"Combat\"] = 1}},{[\"name\"] = \"Flashlight\",[\"skillIcons\"] = {[\"Intellect\"] = 1}},{[\"name\"] = \"Emergency Cache\",[\"skillIcons\"] = {}},{[\"name\"] = \"Guts\",[\"skillIcons\"] = {[\"Will\"] = 2}},{[\"name\"] = \"Perception\",[\"skillIcons\"] = {[\"Intellect\"] = 2}},{[\"name\"] = \"Overpower\",[\"skillIcons\"] = {[\"Combat\"] = 2}},{[\"name\"] = \"Manual Dexterity\",[\"skillIcons\"] = {[\"Agility\"] = 2}},{[\"name\"] = \"Unexpected Courage\",[\"skillIcons\"] = {[\"Wild\"] = 2}},{[\"name\"] = \"Bulletproof Vest (3)\",[\"skillIcons\"] = {[\"Wild\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Elder Sign Amulet (3)\",[\"skillIcons\"] = {[\"Wild\"] = 1,[\"Will\"] = 1}},{[\"name\"] = \"Amnesia\",[\"skillIcons\"] = {}},{[\"name\"] = \"Paranoia\",[\"skillIcons\"] = {}},{[\"name\"] = \"Haunted\",[\"skillIcons\"] = {}},{[\"name\"] = \"Psychosis\",[\"skillIcons\"] = {}},{[\"name\"] = \"Hypochondria\",[\"skillIcons\"] = {}},{[\"name\"] = \"Mob Enforcer\",[\"skillIcons\"] = {}},{[\"name\"] = \"Silver Twilight Acolyte\",[\"skillIcons\"] = {}},{[\"name\"] = \"Stubborn Detective\",[\"skillIcons\"] = {}},{[\"name\"] = \"Zoey Samaras\",[\"skillIcons\"] = {[\"Will\"] = 4,[\"Agility\"] = 2,[\"Combat\"] = 4,[\"Intellect\"] = 2}},{[\"name\"] = \"Rex Murphy\",[\"skillIcons\"] = {[\"Will\"] = 3,[\"Agility\"] = 3,[\"Combat\"] = 2,[\"Intellect\"] = 4}},{[\"name\"] = \"Jenny Barnes\",[\"skillIcons\"] = {[\"Will\"] = 3,[\"Agility\"] = 3,[\"Combat\"] = 3,[\"Intellect\"] = 3}},{[\"name\"] = \"Jim Culver\",[\"skillIcons\"] = {[\"Will\"] = 4,[\"Agility\"] = 2,[\"Combat\"] = 3,[\"Intellect\"] = 3}},{[\"name\"] = \"\\\"Ashcan\\\" Pete\",[\"skillIcons\"] = {[\"Will\"] = 4,[\"Agility\"] = 3,[\"Combat\"] = 2,[\"Intellect\"] = 2}},{[\"name\"] = \"Zoey's Cross\",[\"skillIcons\"] = {[\"Wild\"] = 1,[\"Combat\"] = 2}},{[\"name\"] = \"Smite the Wicked\",[\"skillIcons\"] = {}},{[\"name\"] = \"Search for the Truth\",[\"skillIcons\"] = {[\"Wild\"] = 1,[\"Intellect\"] = 2}},{[\"name\"] = \"Rex's Curse\",[\"skillIcons\"] = {}},{[\"name\"] = \"Jenny's Twin .45s\",[\"skillIcons\"] = {[\"Wild\"] = 1,[\"Agility\"] = 2}},{[\"name\"] = \"Searching for Izzie\",[\"skillIcons\"] = {}},{[\"name\"] = \"Jim's Trumpet\",[\"skillIcons\"] = {[\"Wild\"] = 1,[\"Will\"] = 2}},{[\"name\"] = \"Final Rhapsody\",[\"skillIcons\"] = {}},{[\"name\"] = \"Duke\",[\"skillIcons\"] = {}},{[\"name\"] = \"Wracked by Nightmares\",[\"skillIcons\"] = {}},{[\"name\"] = \"Blackjack\",[\"skillIcons\"] = {[\"Combat\"] = 1}},{[\"name\"] = \"Taunt\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Teamwork\",[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Taunt (2)\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Agility\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Laboratory Assistant\",[\"skillIcons\"] = {[\"Intellect\"] = 1}},{[\"name\"] = \"Strange Solution\",[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Shortcut\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Agility\"] = 1}},{[\"name\"] = \"Seeking Answers\",[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Liquid Courage\",[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Think on Your Feet\",[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Double or Nothing\",[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Hired Muscle (1)\",[\"skillIcons\"] = {[\"Combat\"] = 1}},{[\"name\"] = \"Rite of Seeking\",[\"skillIcons\"] = {[\"Intellect\"] = 1}},{[\"name\"] = \"Ritual Candles\",[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Clarity of Mind\",[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Bind Monster (2)\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Fire Axe\",[\"skillIcons\"] = {[\"Combat\"] = 1}},{[\"name\"] = \"Peter Sylvestre\",[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Bait and Switch\",[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Peter Sylvestre (2)\",[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Kukri\",[\"skillIcons\"] = {[\"Combat\"] = 1}},{[\"name\"] = \"Indebted\",[\"skillIcons\"] = {}},{[\"name\"] = \"Internal Injury\",[\"skillIcons\"] = {}},{[\"name\"] = \"Chronophobia\",[\"skillIcons\"] = {}},{[\"name\"] = \"Emergency Aid\",[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Brother Xavier (1)\",[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"\\\"I've got a plan!\\\"\",[\"skillIcons\"] = {[\"Combat\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Pathfinder (1)\",[\"skillIcons\"] = {[\"Agility\"] = 1}},{[\"name\"] = \"Contraband\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Adaptable (1)\",[\"skillIcons\"] = {}},{[\"name\"] = \"Delve Too Deep\",[\"skillIcons\"] = {}},{[\"name\"] = \"Song of the Dead (2)\",[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Oops!\",[\"skillIcons\"] = {[\"Combat\"] = 2}},{[\"name\"] = \"Fire Extinguisher (1)\",[\"skillIcons\"] = {[\"Agility\"] = 1}},{[\"name\"] = \"Flare (1)\",[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Smoking Pipe\",[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Painkillers\",[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Bandolier\",[\"skillIcons\"] = {[\"Combat\"] = 1}},{[\"name\"] = \"Stand Together (3)\",[\"skillIcons\"] = {[\"Will\"] = 2}},{[\"name\"] = \"Art Student\",[\"skillIcons\"] = {[\"Intellect\"] = 1}},{[\"name\"] = \"Deduction (2)\",[\"skillIcons\"] = {[\"Intellect\"] = 2}},{[\"name\"] = \"\\\"I'm outta here!\\\"\",[\"skillIcons\"] = {[\"Agility\"] = 2}},{[\"name\"] = \"Switchblade (2)\",[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Hypnotic Gaze\",[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Shrivelling (3)\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Newspaper\",[\"skillIcons\"] = {[\"Intellect\"] = 1}},{[\"name\"] = \"Lure (1)\",[\"skillIcons\"] = {[\"Agility\"] = 2}},{[\"name\"] = \"Relic Hunter (3)\",[\"skillIcons\"] = {}},{[\"name\"] = \"Charisma (3)\",[\"skillIcons\"] = {}},{[\"name\"] = \"Prepared for the Worst\",[\"skillIcons\"] = {[\"Combat\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Keen Eye (3)\",[\"skillIcons\"] = {}},{[\"name\"] = \"Preposterous Sketches\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Higher Education (3)\",[\"skillIcons\"] = {}},{[\"name\"] = \"Lone Wolf\",[\"skillIcons\"] = {[\"Agility\"] = 1}},{[\"name\"] = \"Streetwise (3)\",[\"skillIcons\"] = {}},{[\"name\"] = \"Defiance\",[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Blood Pact (3)\",[\"skillIcons\"] = {}},{[\"name\"] = \"Rise to the Occasion\",[\"skillIcons\"] = {[\"Wild\"] = 3}},{[\"name\"] = \"Scrapper (3)\",[\"skillIcons\"] = {}},{[\"name\"] = \"Emergency Cache (2)\",[\"skillIcons\"] = {}},{[\"name\"] = \"\\\"If it bleeds...\\\"\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Springfield M1903 (4)\",[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Inquiring Mind\",[\"skillIcons\"] = {[\"Wild\"] = 3}},{[\"name\"] = \"Expose Weakness (1)\",[\"skillIcons\"] = {[\"Combat\"] = 2,[\"Intellect\"] = 1}},{[\"name\"] = \"Quick Thinking\",[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Lucky Dice (2)\",[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Opportunist (2)\",[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Alyssa Graham\",[\"skillIcons\"] = {[\"Intellect\"] = 1}},{[\"name\"] = \"Rite of Seeking (4)\",[\"skillIcons\"] = {[\"Intellect\"] = 2}},{[\"name\"] = \"Dark Horse\",[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Survival Instinct (2)\",[\"skillIcons\"] = {[\"Agility\"] = 2}},{[\"name\"] = \"Leadership\",[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"\\\"I've had worse...\\\" (4)\",[\"skillIcons\"] = {[\"Will\"] = 2,[\"Agility\"] = 1}},{[\"name\"] = \"Strange Solution (4)\",[\"skillIcons\"] = {[\"Will\"] = 2}},{[\"name\"] = \"Strange Solution (4)\",[\"skillIcons\"] = {[\"Combat\"] = 2}},{[\"name\"] = \"Strange Solution (4)\",[\"skillIcons\"] = {[\"Agility\"] = 2}},{[\"name\"] = \"Joey \\\"The Rat\\\" Vigil\",[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Ace in the Hole (3)\",[\"skillIcons\"] = {}},{[\"name\"] = \"Moonlight Ritual\",[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Fearless (2)\",[\"skillIcons\"] = {[\"Will\"] = 2}},{[\"name\"] = \"Jewel of Aureolus (3)\",[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"A Chance Encounter\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Stroke of Luck (2)\",[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Fine Clothes\",[\"skillIcons\"] = {[\"Agility\"] = 1}},{[\"name\"] = \"Moment of Respite (3)\",[\"skillIcons\"] = {[\"Will\"] = 2}},{[\"name\"] = \"Vicious Blow (2)\",[\"skillIcons\"] = {[\"Combat\"] = 2}},{[\"name\"] = \"Monster Slayer (5)\",[\"skillIcons\"] = {[\"Wild\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Lightning Gun (5)\",[\"skillIcons\"] = {[\"Combat\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Dr. William T. Maleson\",[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Deciphered Reality (5)\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Intellect\"] = 2}},{[\"name\"] = \"Chicago Typewriter (4)\",[\"skillIcons\"] = {[\"Combat\"] = 2}},{[\"name\"] = \"The Gold Pocket Watch (4)\",[\"skillIcons\"] = {[\"Wild\"] = 1,[\"Will\"] = 1}},{[\"name\"] = \"Shrivelling (5)\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Combat\"] = 2}},{[\"name\"] = \"Ward of Protection (5)\",[\"skillIcons\"] = {[\"Wild\"] = 1,[\"Will\"] = 1}},{[\"name\"] = \"Aquinnah (3)\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Agility\"] = 1}},{[\"name\"] = \"Try and Try Again (3)\",[\"skillIcons\"] = {[\"Will\"] = 2}},{[\"name\"] = \"The Red-Gloved Man (5)\",[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Mark Harrigan\",[\"skillIcons\"] = {[\"Will\"] = 3,[\"Agility\"] = 3,[\"Combat\"] = 5,[\"Intellect\"] = 2}},{[\"name\"] = \"Minh Thi Phan\",[\"skillIcons\"] = {[\"Will\"] = 4,[\"Agility\"] = 2,[\"Combat\"] = 2,[\"Intellect\"] = 4}},{[\"name\"] = \"Sefina Rousseau\",[\"skillIcons\"] = {[\"Will\"] = 4,[\"Agility\"] = 4,[\"Combat\"] = 2,[\"Intellect\"] = 2}},{[\"name\"] = \"Akachi Onyele\",[\"skillIcons\"] = {[\"Will\"] = 5,[\"Agility\"] = 3,[\"Combat\"] = 3,[\"Intellect\"] = 2}},{[\"name\"] = \"William Yorick\",[\"skillIcons\"] = {[\"Will\"] = 3,[\"Agility\"] = 3,[\"Combat\"] = 4,[\"Intellect\"] = 2}},{[\"name\"] = \"Lola Hayes\",[\"skillIcons\"] = {[\"Will\"] = 3,[\"Agility\"] = 3,[\"Combat\"] = 3,[\"Intellect\"] = 3}},{[\"name\"] = \"The Home Front\",[\"skillIcons\"] = {[\"Combat\"] = 4}},{[\"name\"] = \"Shell Shock\",[\"skillIcons\"] = {}},{[\"name\"] = \"Sophie\",[\"skillIcons\"] = {}},{[\"name\"] = \"Sophie\",[\"skillIcons\"] = {}},{[\"name\"] = \"Analytical Mind\",[\"skillIcons\"] = {[\"Wild\"] = 2}},{[\"name\"] = \"The King in Yellow\",[\"skillIcons\"] = {}},{[\"name\"] = \"The Painted World\",[\"skillIcons\"] = {[\"Wild\"] = 1,[\"Will\"] = 1,[\"Agility\"] = 1}},{[\"name\"] = \"Stars of Hyades\",[\"skillIcons\"] = {}},{[\"name\"] = \"Spirit-Speaker\",[\"skillIcons\"] = {[\"Wild\"] = 1,[\"Will\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Angered Spirits\",[\"skillIcons\"] = {}},{[\"name\"] = \"Bury Them Deep\",[\"skillIcons\"] = {[\"Wild\"] = 1,[\"Will\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Graveyard Ghouls\",[\"skillIcons\"] = {}},{[\"name\"] = \"Improvisation\",[\"skillIcons\"] = {[\"Wild\"] = 2}},{[\"name\"] = \"Crisis of Identity\",[\"skillIcons\"] = {}},{[\"name\"] = \".32 Colt\",[\"skillIcons\"] = {[\"Combat\"] = 1}},{[\"name\"] = \"True Grit\",[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"\\\"Let me handle this!\\\"\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Ever Vigilant (1)\",[\"skillIcons\"] = {[\"Intellect\"] = 2}},{[\"name\"] = \"Fieldwork\",[\"skillIcons\"] = {[\"Agility\"] = 1}},{[\"name\"] = \"Archaic Glyphs\",[\"skillIcons\"] = {[\"Intellect\"] = 1}},{[\"name\"] = \"No Stone Unturned\",[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"In the Know (1)\",[\"skillIcons\"] = {[\"Intellect\"] = 1}},{[\"name\"] = \"Stealth\",[\"skillIcons\"] = {[\"Agility\"] = 1}},{[\"name\"] = \"Sleight of Hand\",[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Daring Maneuver\",[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Lockpicks (1)\",[\"skillIcons\"] = {[\"Intellect\"] = 1}},{[\"name\"] = \"Alchemical Transmutation\",[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Uncage the Soul\",[\"skillIcons\"] = {[\"Will\"] = 2}},{[\"name\"] = \"Astral Travel\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Agility\"] = 1}},{[\"name\"] = \"Spirit Athame (1)\",[\"skillIcons\"] = {[\"Combat\"] = 1}},{[\"name\"] = \"Lantern\",[\"skillIcons\"] = {[\"Intellect\"] = 1}},{[\"name\"] = \"Gravedigger's Shovel\",[\"skillIcons\"] = {[\"Combat\"] = 1}},{[\"name\"] = \"Hiding Spot\",[\"skillIcons\"] = {[\"Agility\"] = 2}},{[\"name\"] = \"Resourceful\",[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Combat\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Overzealous\",[\"skillIcons\"] = {}},{[\"name\"] = \"Drawing the Sign\",[\"skillIcons\"] = {}},{[\"name\"] = \"The Thing That Follows\",[\"skillIcons\"] = {}},{[\"name\"] = \"Constance Dumaine\",[\"skillIcons\"] = {}},{[\"name\"] = \"Jordan Perry\",[\"skillIcons\"] = {}},{[\"name\"] = \"Ishimaru Haruko\",[\"skillIcons\"] = {}},{[\"name\"] = \"Sebastien Moreau\",[\"skillIcons\"] = {}},{[\"name\"] = \"Ashleigh Clarke\",[\"skillIcons\"] = {}},{[\"name\"] = \"Engram's Oath\",[\"skillIcons\"] = {}},{[\"name\"] = \"L'agneau Perdu\",[\"skillIcons\"] = {}},{[\"name\"] = \"The Pattern\",[\"skillIcons\"] = {}},{[\"name\"] = \"The First Show\",[\"skillIcons\"] = {}},{[\"name\"] = \"Above and Below\",[\"skillIcons\"] = {}},{[\"name\"] = \"Heroic Rescue\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Combat Training (1)\",[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Anatomical Diagrams\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Scientific Theory (1)\",[\"skillIcons\"] = {[\"Combat\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Knuckleduster\",[\"skillIcons\"] = {[\"Combat\"] = 1}},{[\"name\"] = \"Moxie (1)\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Agility\"] = 1}},{[\"name\"] = \"David Renfield\",[\"skillIcons\"] = {[\"Intellect\"] = 1}},{[\"name\"] = \"Grounded (1)\",[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Cherished Keepsake\",[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Plucky (1)\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Say Your Prayers\",[\"skillIcons\"] = {[\"Will\"] = 4}},{[\"name\"] = \"Desperate Search\",[\"skillIcons\"] = {[\"Intellect\"] = 4}},{[\"name\"] = \"Reckless Assault\",[\"skillIcons\"] = {[\"Combat\"] = 4}},{[\"name\"] = \"Run For Your Life\",[\"skillIcons\"] = {[\"Agility\"] = 4}},{[\"name\"] = \"Trench Knife\",[\"skillIcons\"] = {[\"Combat\"] = 1}},{[\"name\"] = \"Ambush (1)\",[\"skillIcons\"] = {[\"Combat\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Charles Ross, Esq.\",[\"skillIcons\"] = {[\"Intellect\"] = 1}},{[\"name\"] = \"Forewarned (1)\",[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Dario El-Amin\",[\"skillIcons\"] = {[\"Intellect\"] = 1}},{[\"name\"] = \"Sneak Attack (2)\",[\"skillIcons\"] = {[\"Combat\"] = 2,[\"Intellect\"] = 1}},{[\"name\"] = \"Storm of Spirits\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Book of Shadows (1)\",[\"skillIcons\"] = {[\"Intellect\"] = 1}},{[\"name\"] = \"Fight or Flight\",[\"skillIcons\"] = {}},{[\"name\"] = \"A Test of Will (1)\",[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Devil's Luck (1)\",[\"skillIcons\"] = {[\"Agility\"] = 1}},{[\"name\"] = \"Calling in Favors\",[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"\\\"I'll see you in hell!\\\"\",[\"skillIcons\"] = {[\"Combat\"] = 2}},{[\"name\"] = \".45 Automatic (2)\",[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Logical Reasoning\",[\"skillIcons\"] = {[\"Will\"] = 2}},{[\"name\"] = \"Archaic Glyphs (3)\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Archaic Glyphs (3)\",[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Cheap Shot\",[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Pickpocketing (2)\",[\"skillIcons\"] = {[\"Agility\"] = 2}},{[\"name\"] = \"Quantum Flux\",[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Recharge (2)\",[\"skillIcons\"] = {[\"Will\"] = 2}},{[\"name\"] = \"Madame Labranche\",[\"skillIcons\"] = {[\"Intellect\"] = 1}},{[\"name\"] = \"Snare Trap (2)\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Agility\"] = 1}},{[\"name\"] = \"Inspiring Presence\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Combat\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Mano a Mano (1)\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"First Aid (3)\",[\"skillIcons\"] = {[\"Will\"] = 2}},{[\"name\"] = \"Eureka!\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Agility\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Shortcut (2)\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Agility\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"\\\"Watch this!\\\"\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Agility\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \".41 Derringer (2)\",[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Torrent of Power\",[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Scrying (3)\",[\"skillIcons\"] = {[\"Intellect\"] = 2}},{[\"name\"] = \"Waylay\",[\"skillIcons\"] = {[\"Agility\"] = 2}},{[\"name\"] = \"A Chance Encounter (2)\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Emergency Cache (3)\",[\"skillIcons\"] = {}},{[\"name\"] = \"On the Hunt\",[\"skillIcons\"] = {[\"Combat\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Stick to the Plan (3)\",[\"skillIcons\"] = {}},{[\"name\"] = \"Guidance\",[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Arcane Insight (4)\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Narrow Escape\",[\"skillIcons\"] = {[\"Agility\"] = 2}},{[\"name\"] = \"Suggestion (4)\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Agility\"] = 1}},{[\"name\"] = \"St. Hubert's Key\",[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Ward of Protection (2)\",[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Arcane Initiate (3)\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"\\\"Not without a fight!\\\"\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Agility\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"True Survivor (3)\",[\"skillIcons\"] = {}},{[\"name\"] = \"\\\"Eat lead!\\\" (2)\",[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Armor of Ardennes (5)\",[\"skillIcons\"] = {[\"Will\"] = 2,[\"Combat\"] = 2}},{[\"name\"] = \"Eidetic Memory (3)\",[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"No Stone Unturned (5)\",[\"skillIcons\"] = {[\"Wild\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Charon's Obol (1)\",[\"skillIcons\"] = {}},{[\"name\"] = \"Lupara (3)\",[\"skillIcons\"] = {[\"Combat\"] = 1}},{[\"name\"] = \"Cheat Death (5)\",[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Time Warp (2)\",[\"skillIcons\"] = {}},{[\"name\"] = \"Seal of the Elder Sign (5)\",[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Newspaper (2)\",[\"skillIcons\"] = {[\"Intellect\"] = 2}},{[\"name\"] = \"Infighting (3)\",[\"skillIcons\"] = {[\"Agility\"] = 2,[\"Intellect\"] = 2}},{[\"name\"] = \"Key of Ys (5)\",[\"skillIcons\"] = {[\"Wild\"] = 1,[\"Will\"] = 1}},{[\"name\"] = \"Songs That the Hyades Shall Sing\",[\"skillIcons\"] = {}},{[\"name\"] = \"Stars of Aldebaran\",[\"skillIcons\"] = {}},{[\"name\"] = \"Bleak Desolation\",[\"skillIcons\"] = {}},{[\"name\"] = \"Inhabitant of Carcosa\",[\"skillIcons\"] = {}},{[\"name\"] = \"A Moment's Rest\",[\"skillIcons\"] = {}},{[\"name\"] = \"The Coffin\",[\"skillIcons\"] = {}},{[\"name\"] = \"Mapping the Streets\",[\"skillIcons\"] = {}},{[\"name\"] = \"The King's Parade\",[\"skillIcons\"] = {}},{[\"name\"] = \"The Archway\",[\"skillIcons\"] = {}},{[\"name\"] = \"The Height of the Depths\",[\"skillIcons\"] = {}},{[\"name\"] = \"Steps of the Palace\",[\"skillIcons\"] = {}},{[\"name\"] = \"The Fall\",[\"skillIcons\"] = {}},{[\"name\"] = \"Hastur's End\",[\"skillIcons\"] = {}},{[\"name\"] = \"Leo Anderson\",[\"skillIcons\"] = {[\"Will\"] = 4,[\"Agility\"] = 1,[\"Combat\"] = 4,[\"Intellect\"] = 3}},{[\"name\"] = \"Ursula Downs\",[\"skillIcons\"] = {[\"Will\"] = 3,[\"Agility\"] = 4,[\"Combat\"] = 1,[\"Intellect\"] = 4}},{[\"name\"] = \"Finn Edwards\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Agility\"] = 4,[\"Combat\"] = 3,[\"Intellect\"] = 4}},{[\"name\"] = \"Father Mateo\",[\"skillIcons\"] = {[\"Will\"] = 4,[\"Agility\"] = 3,[\"Combat\"] = 2,[\"Intellect\"] = 3}},{[\"name\"] = \"Calvin Wright\",[\"skillIcons\"] = {[\"Will\"] = 0,[\"Agility\"] = 0,[\"Combat\"] = 0,[\"Intellect\"] = 0}},{[\"name\"] = \"Mitch Brown\",[\"skillIcons\"] = {[\"Wild\"] = 2}},{[\"name\"] = \"Bought in Blood\",[\"skillIcons\"] = {}},{[\"name\"] = \"Jake Williams\",[\"skillIcons\"] = {[\"Wild\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Call of the Unknown\",[\"skillIcons\"] = {}},{[\"name\"] = \"Smuggled Goods\",[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Finn's Trusty .38\",[\"skillIcons\"] = {[\"Wild\"] = 1,[\"Agility\"] = 1}},{[\"name\"] = \"Caught Red-Handed\",[\"skillIcons\"] = {}},{[\"name\"] = \"The Codex of Ages\",[\"skillIcons\"] = {[\"Wild\"] = 1,[\"Will\"] = 1}},{[\"name\"] = \"Serpents of Yig\",[\"skillIcons\"] = {}},{[\"name\"] = \"Until the End of Time\",[\"skillIcons\"] = {[\"Wild\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Voice of the Messenger\",[\"skillIcons\"] = {}},{[\"name\"] = \"Survival Knife\",[\"skillIcons\"] = {[\"Combat\"] = 1}},{[\"name\"] = \"Venturer\",[\"skillIcons\"] = {[\"Intellect\"] = 1}},{[\"name\"] = \"Trusted\",[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Reliable (1)\",[\"skillIcons\"] = {[\"Intellect\"] = 1}},{[\"name\"] = \"Dr. Elli Horowitz\",[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Ancient Stone (1)\",[\"skillIcons\"] = {[\"Intellect\"] = 1}},{[\"name\"] = \"Tooth of Eztli\",[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Unearth the Ancients\",[\"skillIcons\"] = {[\"Intellect\"] = 2}},{[\"name\"] = \"Treasure Hunter (1)\",[\"skillIcons\"] = {[\"Intellect\"] = 1}},{[\"name\"] = \"Decorated Skull\",[\"skillIcons\"] = {[\"Agility\"] = 1}},{[\"name\"] = \"Eavesdrop\",[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"\\\"You handle this one!\\\"\",[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Mists of R'lyeh\",[\"skillIcons\"] = {[\"Agility\"] = 1}},{[\"name\"] = \"The Chthonian Stone\",[\"skillIcons\"] = {[\"Intellect\"] = 1}},{[\"name\"] = \"Protective Incantation (1)\",[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Dark Prophecy\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Agility\"] = 1}},{[\"name\"] = \"Improvised Weapon\",[\"skillIcons\"] = {}},{[\"name\"] = \"Dumb Luck\",[\"skillIcons\"] = {[\"Agility\"] = 2}},{[\"name\"] = \"Yaotl (1)\",[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Last Chance\",[\"skillIcons\"] = {[\"Wild\"] = 5}},{[\"name\"] = \"Backpack\",[\"skillIcons\"] = {[\"Agility\"] = 1}},{[\"name\"] = \"Dark Pact\",[\"skillIcons\"] = {}},{[\"name\"] = \"The Price of Failure\",[\"skillIcons\"] = {}},{[\"name\"] = \"Doomed\",[\"skillIcons\"] = {}},{[\"name\"] = \"Accursed Fate\",[\"skillIcons\"] = {}},{[\"name\"] = \"The Bell Tolls\",[\"skillIcons\"] = {}},{[\"name\"] = \"Scene of the Crime\",[\"skillIcons\"] = {[\"Combat\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Marksmanship (1)\",[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Persuasion\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Shrewd Analysis\",[\"skillIcons\"] = {}},{[\"name\"] = \"Lucky Cigarette Case\",[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Fence (1)\",[\"skillIcons\"] = {[\"Agility\"] = 1}},{[\"name\"] = \"Arcane Research\",[\"skillIcons\"] = {}},{[\"name\"] = \"Counterspell (2)\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Perseverance\",[\"skillIcons\"] = {[\"Will\"] = 2}},{[\"name\"] = \"Stunning Blow\",[\"skillIcons\"] = {[\"Combat\"] = 1}},{[\"name\"] = \"Second Wind\",[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Take the Initiative\",[\"skillIcons\"] = {[\"Wild\"] = 3}},{[\"name\"] = \"Well Prepared (2)\",[\"skillIcons\"] = {}},{[\"name\"] = \"Truth from Fiction\",[\"skillIcons\"] = {[\"Intellect\"] = 2}},{[\"name\"] = \"True Understanding\",[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Quick Study (2)\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Agility\"] = 1}},{[\"name\"] = \"Hatchet Man\",[\"skillIcons\"] = {[\"Agility\"] = 1}},{[\"name\"] = \"High Roller (2)\",[\"skillIcons\"] = {[\"Combat\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Enraptured\",[\"skillIcons\"] = {[\"Intellect\"] = 1}},{[\"name\"] = \"Recall the Future (2)\",[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Try and Try Again (1)\",[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Cornered (2)\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Intrepid\",[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Custom Ammunition (3)\",[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Otherworldly Compass (2)\",[\"skillIcons\"] = {[\"Intellect\"] = 2}},{[\"name\"] = \"Expose Weakness (3)\",[\"skillIcons\"] = {[\"Wild\"] = 1,[\"Combat\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Lola Santiago (3)\",[\"skillIcons\"] = {[\"Intellect\"] = 2}},{[\"name\"] = \"Olive McBride\",[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Defiance (2)\",[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Premonition\",[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Live and Learn\",[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Take Heart\",[\"skillIcons\"] = {}},{[\"name\"] = \"Against All Odds (2)\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Agility\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Trench Coat\",[\"skillIcons\"] = {[\"Agility\"] = 1}},{[\"name\"] = \"Ornate Bow (3)\",[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"M1918 BAR (4)\",[\"skillIcons\"] = {[\"Combat\"] = 2}},{[\"name\"] = \"Ancient Stone (4)\",[\"skillIcons\"] = {[\"Intellect\"] = 2}},{[\"name\"] = \"Ancient Stone (4)\",[\"skillIcons\"] = {[\"Will\"] = 2}},{[\"name\"] = \"Slip Away\",[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Pay Day (1)\",[\"skillIcons\"] = {}},{[\"name\"] = \"Sacrifice (1)\",[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Crystalline Elder Sign (3)\",[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"On Your Own (3)\",[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Handcuffs\",[\"skillIcons\"] = {[\"Agility\"] = 1}},{[\"name\"] = \"Blood Eclipse (3)\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Feed the Mind (3)\",[\"skillIcons\"] = {[\"Intellect\"] = 1}},{[\"name\"] = \"Colt Vest Pocket\",[\"skillIcons\"] = {[\"Agility\"] = 1}},{[\"name\"] = \"Coup de Grâce\",[\"skillIcons\"] = {[\"Combat\"] = 2}},{[\"name\"] = \"The Skeleton Key (2)\",[\"skillIcons\"] = {[\"Intellect\"] = 2}},{[\"name\"] = \"Mists of R'lyeh (4)\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Agility\"] = 1}},{[\"name\"] = \"Winging It\",[\"skillIcons\"] = {}},{[\"name\"] = \"Old Hunting Rifle (3)\",[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Thermos\",[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Hemispheric Map (3)\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Timeworn Brand (5)\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Kerosene (1)\",[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Flamethrower (5)\",[\"skillIcons\"] = {[\"Wild\"] = 1,[\"Combat\"] = 2}},{[\"name\"] = \"Vantage Point\",[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Pnakotic Manuscripts (5)\",[\"skillIcons\"] = {[\"Wild\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Borrowed Time (3)\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Agility\"] = 1}},{[\"name\"] = \"All In (5)\",[\"skillIcons\"] = {[\"Wild\"] = 2}},{[\"name\"] = \"Shards of the Void (3)\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Seal of the Seventh Sign (5)\",[\"skillIcons\"] = {[\"Wild\"] = 1,[\"Will\"] = 1}},{[\"name\"] = \"Impromptu Barrier\",[\"skillIcons\"] = {}},{[\"name\"] = \"Alter Fate (3)\",[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Yig's Mercy\",[\"skillIcons\"] = {}},{[\"name\"] = \"Another Way\",[\"skillIcons\"] = {}},{[\"name\"] = \"Carolyn Fern\",[\"skillIcons\"] = {[\"Will\"] = 3,[\"Agility\"] = 2,[\"Combat\"] = 2,[\"Intellect\"] = 4}},{[\"name\"] = \"Joe Diamond\",[\"skillIcons\"] = {[\"Will\"] = 2,[\"Agility\"] = 2,[\"Combat\"] = 4,[\"Intellect\"] = 4}},{[\"name\"] = \"Preston Fairmont\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Agility\"] = 1,[\"Combat\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Diana Stanley\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Agility\"] = 3,[\"Combat\"] = 3,[\"Intellect\"] = 3}},{[\"name\"] = \"Rita Young\",[\"skillIcons\"] = {[\"Will\"] = 3,[\"Agility\"] = 5,[\"Combat\"] = 3,[\"Intellect\"] = 2}},{[\"name\"] = \"Marie Lambeau\",[\"skillIcons\"] = {[\"Will\"] = 4,[\"Agility\"] = 3,[\"Combat\"] = 1,[\"Intellect\"] = 4}},{[\"name\"] = \"Hypnotic Therapy\",[\"skillIcons\"] = {[\"Wild\"] = 1,[\"Will\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Rational Thought\",[\"skillIcons\"] = {}},{[\"name\"] = \"Detective's Colt 1911s\",[\"skillIcons\"] = {[\"Wild\"] = 1,[\"Combat\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Unsolved Case\",[\"skillIcons\"] = {}},{[\"name\"] = \"Family Inheritance\",[\"skillIcons\"] = {}},{[\"name\"] = \"Lodge \\\"Debts\\\"\",[\"skillIcons\"] = {}},{[\"name\"] = \"Twilight Blade\",[\"skillIcons\"] = {[\"Wild\"] = 1,[\"Will\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Dark Insight\",[\"skillIcons\"] = {}},{[\"name\"] = \"Terrible Secret\",[\"skillIcons\"] = {}},{[\"name\"] = \"\\\"I'm done runnin'!\\\"\",[\"skillIcons\"] = {[\"Wild\"] = 1,[\"Agility\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Hoods\",[\"skillIcons\"] = {}},{[\"name\"] = \"Mystifying Song\",[\"skillIcons\"] = {[\"Wild\"] = 2}},{[\"name\"] = \"Baron Samedi\",[\"skillIcons\"] = {}},{[\"name\"] = \"Interrogate\",[\"skillIcons\"] = {[\"Combat\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Delay the Inevitable\",[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Steadfast\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Ace of Swords (1)\",[\"skillIcons\"] = {}},{[\"name\"] = \"Fingerprint Kit\",[\"skillIcons\"] = {[\"Intellect\"] = 1}},{[\"name\"] = \"Connect the Dots\",[\"skillIcons\"] = {[\"Intellect\"] = 2}},{[\"name\"] = \"Curiosity\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Death • XIII (1)\",[\"skillIcons\"] = {}},{[\"name\"] = \"Well Connected\",[\"skillIcons\"] = {[\"Intellect\"] = 1}},{[\"name\"] = \"Money Talks\",[\"skillIcons\"] = {}},{[\"name\"] = \"Cunning\",[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"The Moon • XVIII (1)\",[\"skillIcons\"] = {}},{[\"name\"] = \"Deny Existence\",[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Eldritch Inspiration\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Prophesy\",[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Four of Cups (1)\",[\"skillIcons\"] = {}},{[\"name\"] = \"Track Shoes\",[\"skillIcons\"] = {[\"Agility\"] = 1}},{[\"name\"] = \"Act of Desperation\",[\"skillIcons\"] = {[\"Combat\"] = 2}},{[\"name\"] = \"Able Bodied\",[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Five of Pentacles (1)\",[\"skillIcons\"] = {}},{[\"name\"] = \"Ace of Rods (1)\",[\"skillIcons\"] = {}},{[\"name\"] = \"The 13th Vision\",[\"skillIcons\"] = {}},{[\"name\"] = \"The Tower • XVI\",[\"skillIcons\"] = {}},{[\"name\"] = \"Something Worth Fighting For\",[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Crack the Case\",[\"skillIcons\"] = {[\"Intellect\"] = 1}},{[\"name\"] = \"Intel Report\",[\"skillIcons\"] = {[\"Intellect\"] = 2}},{[\"name\"] = \"Sign Magick\",[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Banish (1)\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Agility\"] = 1}},{[\"name\"] = \"Meat Cleaver\",[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \".45 Thompson\",[\"skillIcons\"] = {[\"Combat\"] = 1}},{[\"name\"] = \"Scroll of Secrets\",[\"skillIcons\"] = {[\"Intellect\"] = 1}},{[\"name\"] = \"Tennessee Sour Mash\",[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Enchanted Blade\",[\"skillIcons\"] = {[\"Combat\"] = 1}},{[\"name\"] = \"Grisly Totem\",[\"skillIcons\"] = {[\"Agility\"] = 1}},{[\"name\"] = \"Alice Luxley\",[\"skillIcons\"] = {[\"Intellect\"] = 1}},{[\"name\"] = \"Well-Maintained (1)\",[\"skillIcons\"] = {[\"Agility\"] = 1}},{[\"name\"] = \"Mr. \\\"Rook\\\"\",[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Hawk-Eye Folding Camera\",[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Henry Wan\",[\"skillIcons\"] = {[\"Agility\"] = 1}},{[\"name\"] = \"Swift Reflexes\",[\"skillIcons\"] = {[\"Agility\"] = 2}},{[\"name\"] = \"Wither\",[\"skillIcons\"] = {[\"Combat\"] = 1}},{[\"name\"] = \"Sixth Sense\",[\"skillIcons\"] = {[\"Intellect\"] = 1}},{[\"name\"] = \"Drawing Thin\",[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Belly of the Beast\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Agility\"] = 1}},{[\"name\"] = \".45 Thompson (3)\",[\"skillIcons\"] = {[\"Combat\"] = 2}},{[\"name\"] = \".45 Thompson (3)\",[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Scroll of Secrets (3)\",[\"skillIcons\"] = {[\"Intellect\"] = 2}},{[\"name\"] = \"Scroll of Secrets (3)\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Tennessee Sour Mash (3)\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Tennessee Sour Mash (3)\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Agility\"] = 1}},{[\"name\"] = \"Enchanted Blade (3)\",[\"skillIcons\"] = {[\"Combat\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Enchanted Blade (3)\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Grisly Totem (3)\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Agility\"] = 1}},{[\"name\"] = \"Grisly Totem (3)\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Agility\"] = 1}},{[\"name\"] = \"The Council's Coffer (2)\",[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Warning Shot\",[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Telescopic Sight (3)\",[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Combat\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Knowledge is Power\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Esoteric Atlas (1)\",[\"skillIcons\"] = {[\"Agility\"] = 1}},{[\"name\"] = \"Investments\",[\"skillIcons\"] = {[\"Intellect\"] = 1}},{[\"name\"] = \"Decoy\",[\"skillIcons\"] = {[\"Agility\"] = 2}},{[\"name\"] = \"De Vermis Mysteriis (2)\",[\"skillIcons\"] = {[\"Intellect\"] = 1}},{[\"name\"] = \"Guiding Spirit (1)\",[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Fortune or Fate (2)\",[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Mk 1 Grenades (4)\",[\"skillIcons\"] = {[\"Combat\"] = 1}},{[\"name\"] = \"Agency Backup (5)\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Combat\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Ghastly Revelation\",[\"skillIcons\"] = {[\"Intellect\"] = 2}},{[\"name\"] = \"Studious (3)\",[\"skillIcons\"] = {}},{[\"name\"] = \"Small Favor\",[\"skillIcons\"] = {[\"Combat\"] = 2}},{[\"name\"] = \"Another Day, Another Dollar (3)\",[\"skillIcons\"] = {}},{[\"name\"] = \"Dayana Esperence (3)\",[\"skillIcons\"] = {[\"Will\"] = 2}},{[\"name\"] = \"Deny Existence (5)\",[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Trial by Fire\",[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Bait and Switch (3)\",[\"skillIcons\"] = {[\"Agility\"] = 2,[\"Intellect\"] = 1}},{[\"name\"] = \"Anna Kaslow (4)\",[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Hallowed Mirror\",[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Soothing Melody\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Agility\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"\\\"I've had worse...\\\" (2)\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Agility\"] = 1}},{[\"name\"] = \"Occult Lexicon\",[\"skillIcons\"] = {[\"Intellect\"] = 1}},{[\"name\"] = \"Blood-Rite\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Combat\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Glimpse the Unthinkable (5)\",[\"skillIcons\"] = {[\"Intellect\"] = 3}},{[\"name\"] = \"\\\"You owe me one!\\\"\",[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Combat\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Double, Double (4)\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Wither (4)\",[\"skillIcons\"] = {[\"Combat\"] = 2}},{[\"name\"] = \"Sixth Sense (4)\",[\"skillIcons\"] = {[\"Intellect\"] = 2}},{[\"name\"] = \"Lure (2)\",[\"skillIcons\"] = {[\"Agility\"] = 2}},{[\"name\"] = \"Eucatastrophe (3)\",[\"skillIcons\"] = {[\"Wild\"] = 2}},{[\"name\"] = \"Tommy Muldoon\",[\"skillIcons\"] = {[\"Will\"] = 3,[\"Agility\"] = 2,[\"Combat\"] = 4,[\"Intellect\"] = 3}},{[\"name\"] = \"Mandy Thompson\",[\"skillIcons\"] = {[\"Will\"] = 3,[\"Agility\"] = 3,[\"Combat\"] = 1,[\"Intellect\"] = 5}},{[\"name\"] = \"Tony Morgan\",[\"skillIcons\"] = {[\"Will\"] = 2,[\"Agility\"] = 2,[\"Combat\"] = 5,[\"Intellect\"] = 3}},{[\"name\"] = \"Luke Robinson\",[\"skillIcons\"] = {[\"Will\"] = 4,[\"Agility\"] = 3,[\"Combat\"] = 2,[\"Intellect\"] = 3}},{[\"name\"] = \"Patrice Hathaway\",[\"skillIcons\"] = {[\"Will\"] = 4,[\"Agility\"] = 2,[\"Combat\"] = 2,[\"Intellect\"] = 2}},{[\"name\"] = \"Becky\",[\"skillIcons\"] = {[\"Wild\"] = 1,[\"Agility\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Rookie Mistake\",[\"skillIcons\"] = {}},{[\"name\"] = \"Occult Evidence\",[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Shocking Discovery\",[\"skillIcons\"] = {}},{[\"name\"] = \"Bounty Contracts\",[\"skillIcons\"] = {}},{[\"name\"] = \"Tony's .38 Long Colt\",[\"skillIcons\"] = {[\"Wild\"] = 1,[\"Combat\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Tony's Quarry\",[\"skillIcons\"] = {}},{[\"name\"] = \"Gate Box\",[\"skillIcons\"] = {}},{[\"name\"] = \"Detached from Reality\",[\"skillIcons\"] = {}},{[\"name\"] = \"Dream-Gate\",[\"skillIcons\"] = {}},{[\"name\"] = \"Dream-Gate\",[\"skillIcons\"] = {}},{[\"name\"] = \"Patrice's Violin\",[\"skillIcons\"] = {[\"Wild\"] = 1,[\"Will\"] = 1,[\"Agility\"] = 1}},{[\"name\"] = \"Watcher from Another Dimension\",[\"skillIcons\"] = {}},{[\"name\"] = \"The Hungering Blade (1)\",[\"skillIcons\"] = {[\"Combat\"] = 1}},{[\"name\"] = \"Bloodlust\",[\"skillIcons\"] = {}},{[\"name\"] = \"Solemn Vow\",[\"skillIcons\"] = {[\"Will\"] = 2}},{[\"name\"] = \"Segment of Onyx (1)\",[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Pendant of the Queen\",[\"skillIcons\"] = {}},{[\"name\"] = \"Astounding Revelation\",[\"skillIcons\"] = {[\"Intellect\"] = 1}},{[\"name\"] = \"Crystallizer of Dreams\",[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Guardian of the Crystallizer\",[\"skillIcons\"] = {}},{[\"name\"] = \"Easy Mark (1)\",[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Stargazing (1)\",[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"The Stars Are Right\",[\"skillIcons\"] = {}},{[\"name\"] = \"Open Gate\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Agility\"] = 1}},{[\"name\"] = \"Miss Doyle (1)\",[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Hope\",[\"skillIcons\"] = {[\"Combat\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Zeal\",[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Augur\",[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Fortuitous Discovery\",[\"skillIcons\"] = {}},{[\"name\"] = \"Self-Centered\",[\"skillIcons\"] = {}},{[\"name\"] = \"Kleptomania\",[\"skillIcons\"] = {}},{[\"name\"] = \"Narcolepsy\",[\"skillIcons\"] = {}},{[\"name\"] = \"Your Worst Nightmare\",[\"skillIcons\"] = {}},{[\"name\"] = \"First Watch\",[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Daring\",[\"skillIcons\"] = {[\"Wild\"] = 3}},{[\"name\"] = \"Dream Diary\",[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Essence of the Dream\",[\"skillIcons\"] = {[\"Wild\"] = 2}},{[\"name\"] = \"Followed\",[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Momentum (1)\",[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Scroll of Prophecies\",[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Read the Signs\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Jessica Hyde (1)\",[\"skillIcons\"] = {[\"Combat\"] = 1}},{[\"name\"] = \"Cryptic Souls\",[\"skillIcons\"] = {}},{[\"name\"] = \"Dreamlike Horrors\",[\"skillIcons\"] = {}},{[\"name\"] = \"Endless Secrets\",[\"skillIcons\"] = {}},{[\"name\"] = \"Cylinders of Kadatheron\",[\"skillIcons\"] = {}},{[\"name\"] = \"The Doom of Sarnath\",[\"skillIcons\"] = {}},{[\"name\"] = \"Ghosts of the Dead\",[\"skillIcons\"] = {}},{[\"name\"] = \"The Palace of Rainbows\",[\"skillIcons\"] = {}},{[\"name\"] = \"A Shrine to the Gods\",[\"skillIcons\"] = {}},{[\"name\"] = \"The Crypt of Zulan-Thek\",[\"skillIcons\"] = {}},{[\"name\"] = \"Wares of Baharna\",[\"skillIcons\"] = {}},{[\"name\"] = \"The Likeness of Old\",[\"skillIcons\"] = {}},{[\"name\"] = \"What Remains of Tyrrhia\",[\"skillIcons\"] = {}},{[\"name\"] = \"Advice of the King\",[\"skillIcons\"] = {}},{[\"name\"] = \"Timeless Beauty\",[\"skillIcons\"] = {}},{[\"name\"] = \"Unattainable Desires\",[\"skillIcons\"] = {}},{[\"name\"] = \"The City Inside\",[\"skillIcons\"] = {}},{[\"name\"] = \"The Baleful Star\",[\"skillIcons\"] = {}},{[\"name\"] = \"Tetsuo Mori\",[\"skillIcons\"] = {[\"Intellect\"] = 1}},{[\"name\"] = \"\\\"Fool me once...\\\" (1)\",[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Self-Sacrifice\",[\"skillIcons\"] = {}},{[\"name\"] = \"Otherworld Codex (2)\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Dream-Enhancing Serum\",[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"\\\"Let God sort them out...\\\"\",[\"skillIcons\"] = {[\"Combat\"] = 1}},{[\"name\"] = \"Swift Reload (2)\",[\"skillIcons\"] = {[\"Agility\"] = 1}},{[\"name\"] = \"Gregory Gry\",[\"skillIcons\"] = {[\"Intellect\"] = 1}},{[\"name\"] = \"Healing Words\",[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Ethereal Form\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Agility\"] = 1}},{[\"name\"] = \"Scrounge for Supplies\",[\"skillIcons\"] = {}},{[\"name\"] = \"Brute Force (1)\",[\"skillIcons\"] = {[\"Combat\"] = 1}},{[\"name\"] = \"Versatile (2)\",[\"skillIcons\"] = {}},{[\"name\"] = \".35 Winchester\",[\"skillIcons\"] = {[\"Agility\"] = 1}},{[\"name\"] = \"Safeguard (2)\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Agility\"] = 1}},{[\"name\"] = \"Practice Makes Perfect\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Extensive Research (1)\",[\"skillIcons\"] = {[\"Intellect\"] = 2}},{[\"name\"] = \"Three Aces (1)\",[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Burglary (2)\",[\"skillIcons\"] = {[\"Intellect\"] = 2}},{[\"name\"] = \"Spectral Razor\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Word of Command (2)\",[\"skillIcons\"] = {}},{[\"name\"] = \"Moonstone\",[\"skillIcons\"] = {}},{[\"name\"] = \"Sharp Vision (1)\",[\"skillIcons\"] = {[\"Intellect\"] = 1}},{[\"name\"] = \"Lucid Dreaming (2)\",[\"skillIcons\"] = {}},{[\"name\"] = \"Off the Galley\",[\"skillIcons\"] = {}},{[\"name\"] = \"Heroic Rescue (2)\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Agility\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Leadership (2)\",[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Dream Diary (3)\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Agility\"] = 1}},{[\"name\"] = \"Dream Diary (3)\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Dream Diary (3)\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Haste (2)\",[\"skillIcons\"] = {[\"Agility\"] = 1}},{[\"name\"] = \"Daredevil (2)\",[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Empower Self (2)\",[\"skillIcons\"] = {[\"Combat\"] = 2}},{[\"name\"] = \"Empower Self (2)\",[\"skillIcons\"] = {[\"Agility\"] = 2}},{[\"name\"] = \"Empower Self (2)\",[\"skillIcons\"] = {[\"Intellect\"] = 2}},{[\"name\"] = \"Twila Katherine Price (3)\",[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"A Glimmer of Hope\",[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Expeditious Retreat (1)\",[\"skillIcons\"] = {[\"Agility\"] = 1}},{[\"name\"] = \"Ghastly Tunnels\",[\"skillIcons\"] = {}},{[\"name\"] = \"The Sentry\",[\"skillIcons\"] = {}},{[\"name\"] = \"Another Path\",[\"skillIcons\"] = {}},{[\"name\"] = \"A Strange Ghoul\",[\"skillIcons\"] = {}},{[\"name\"] = \"Scouting the Vale\",[\"skillIcons\"] = {}},{[\"name\"] = \"Something Below\",[\"skillIcons\"] = {}},{[\"name\"] = \"Inhabitants of the Vale\",[\"skillIcons\"] = {}},{[\"name\"] = \"The Way Out\",[\"skillIcons\"] = {}},{[\"name\"] = \"Spider-Infested Waters\",[\"skillIcons\"] = {}},{[\"name\"] = \"Still Surface\",[\"skillIcons\"] = {}},{[\"name\"] = \"Rolling Pits\",[\"skillIcons\"] = {}},{[\"name\"] = \"Center of the Sea\",[\"skillIcons\"] = {}},{[\"name\"] = \"Empty Vessel (4)\",[\"skillIcons\"] = {[\"Wild\"] = 1,[\"Will\"] = 1}},{[\"name\"] = \"Wish Eater\",[\"skillIcons\"] = {}},{[\"name\"] = \"Surprising Find (1)\",[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Old Book of Lore (3)\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Garrote Wire (2)\",[\"skillIcons\"] = {[\"Combat\"] = 1}},{[\"name\"] = \"Delilah O'Rourke (3)\",[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Summoned Hound (1)\",[\"skillIcons\"] = {[\"Combat\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Unbound Beast\",[\"skillIcons\"] = {}},{[\"name\"] = \"Nothing Left to Lose (3)\",[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"The Black Cat (5)\",[\"skillIcons\"] = {[\"Wild\"] = 2}},{[\"name\"] = \"Spiritual Resolve (5)\",[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Abigail Foreman (4)\",[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"The Eye of Truth (5)\",[\"skillIcons\"] = {[\"Wild\"] = 4}},{[\"name\"] = \"Joey \\\"The Rat\\\" Vigil (3)\",[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Sawed-Off Shotgun (5)\",[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Mind's Eye (2)\",[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Shining Trapezohedron (4)\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Agility\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Nightmare Bauble (3)\",[\"skillIcons\"] = {[\"Wild\"] = 1,[\"Will\"] = 1}},{[\"name\"] = \"Dream Parasite\",[\"skillIcons\"] = {[\"Wild\"] = 2}},{[\"name\"] = \"Scavenging (2)\",[\"skillIcons\"] = {[\"Intellect\"] = 2}},{[\"name\"] = \"Sister Mary\",[\"skillIcons\"] = {[\"Will\"] = 4,[\"Agility\"] = 3,[\"Combat\"] = 3,[\"Intellect\"] = 2}},{[\"name\"] = \"Amanda Sharpe\",[\"skillIcons\"] = {[\"Will\"] = 2,[\"Agility\"] = 2,[\"Combat\"] = 2,[\"Intellect\"] = 2}},{[\"name\"] = \"Trish Scarborough\",[\"skillIcons\"] = {[\"Will\"] = 2,[\"Agility\"] = 4,[\"Combat\"] = 2,[\"Intellect\"] = 4}},{[\"name\"] = \"Dexter Drake\",[\"skillIcons\"] = {[\"Will\"] = 5,[\"Agility\"] = 2,[\"Combat\"] = 3,[\"Intellect\"] = 2}},{[\"name\"] = \"Silas Marsh\",[\"skillIcons\"] = {[\"Will\"] = 2,[\"Agility\"] = 4,[\"Combat\"] = 4,[\"Intellect\"] = 2}},{[\"name\"] = \"Guardian Angel\",[\"skillIcons\"] = {[\"Wild\"] = 1,[\"Will\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Crisis of Faith\",[\"skillIcons\"] = {}},{[\"name\"] = \"Obscure Studies\",[\"skillIcons\"] = {[\"Wild\"] = 3}},{[\"name\"] = \"Whispers from the Deep\",[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"In the Shadows\",[\"skillIcons\"] = {[\"Wild\"] = 2,[\"Agility\"] = 2}},{[\"name\"] = \"Shadow Agents\",[\"skillIcons\"] = {}},{[\"name\"] = \"Showmanship\",[\"skillIcons\"] = {[\"Wild\"] = 1,[\"Agility\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Occult Scraps\",[\"skillIcons\"] = {}},{[\"name\"] = \"Sea Change Harpoon\",[\"skillIcons\"] = {[\"Wild\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Silas's Net\",[\"skillIcons\"] = {[\"Wild\"] = 1,[\"Agility\"] = 1}},{[\"name\"] = \"Siren Call\",[\"skillIcons\"] = {}},{[\"name\"] = \"Book of Psalms\",[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Blessed Blade\",[\"skillIcons\"] = {[\"Combat\"] = 1}},{[\"name\"] = \"Rite of Sanctification\",[\"skillIcons\"] = {[\"Intellect\"] = 1}},{[\"name\"] = \"Hand of Fate\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Cryptographic Cipher\",[\"skillIcons\"] = {[\"Intellect\"] = 1}},{[\"name\"] = \"Cryptic Grimoire\",[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Deep Knowledge\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Plan of Action\",[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \".25 Automatic\",[\"skillIcons\"] = {[\"Agility\"] = 1}},{[\"name\"] = \"Dark Ritual\",[\"skillIcons\"] = {[\"Intellect\"] = 1}},{[\"name\"] = \"Obfuscation\",[\"skillIcons\"] = {[\"Combat\"] = 1}},{[\"name\"] = \"Faustian Bargain\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Sword Cane\",[\"skillIcons\"] = {[\"Combat\"] = 1}},{[\"name\"] = \"Tides of Fate\",[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Ward of Radiance\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Agility\"] = 1}},{[\"name\"] = \"Promise of Power\",[\"skillIcons\"] = {[\"Wild\"] = 4}},{[\"name\"] = \"Token of Faith\",[\"skillIcons\"] = {[\"Intellect\"] = 1}},{[\"name\"] = \"Keep Faith\",[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Predestined\",[\"skillIcons\"] = {}},{[\"name\"] = \"Beloved\",[\"skillIcons\"] = {[\"Wild\"] = 1,[\"Will\"] = 1,[\"Agility\"] = 1}},{[\"name\"] = \"Tempt Fate\",[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Accursed Follower\",[\"skillIcons\"] = {}},{[\"name\"] = \"Dread Curse\",[\"skillIcons\"] = {}},{[\"name\"] = \"Day of Reckoning\",[\"skillIcons\"] = {}},{[\"name\"] = \"Riot Whistle\",[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Righteous Hunt (1)\",[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Sacred Covenant (2)\",[\"skillIcons\"] = {}},{[\"name\"] = \"Eldritch Sophist\",[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Stirring Up Trouble (1)\",[\"skillIcons\"] = {[\"Combat\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Blasphemous Covenant (2)\",[\"skillIcons\"] = {}},{[\"name\"] = \"Breaking and Entering\",[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Skeptic (1)\",[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"False Covenant (2)\",[\"skillIcons\"] = {}},{[\"name\"] = \"Armageddon\",[\"skillIcons\"] = {[\"Combat\"] = 1}},{[\"name\"] = \"Eye of Chaos\",[\"skillIcons\"] = {[\"Intellect\"] = 1}},{[\"name\"] = \"Shroud of Shadows\",[\"skillIcons\"] = {[\"Agility\"] = 1}},{[\"name\"] = \"Paradoxical Covenant (2)\",[\"skillIcons\"] = {}},{[\"name\"] = \"Mariner's Compass\",[\"skillIcons\"] = {[\"Intellect\"] = 1}},{[\"name\"] = \"Ancient Covenant (2)\",[\"skillIcons\"] = {}},{[\"name\"] = \"Keen Eye\",[\"skillIcons\"] = {[\"Combat\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Radiant Smite (1)\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"The Truth Beckons\",[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Gaze of Ouraxsh (2)\",[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Priest of Two Faiths (1)\",[\"skillIcons\"] = {[\"Agility\"] = 1}},{[\"name\"] = \"Under Surveillance (1)\",[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Blood Pact\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Abyssal Tome (2)\",[\"skillIcons\"] = {[\"Combat\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Butterfly Effect (1)\",[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Third Time's a Charm (2)\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Agility\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Manipulate Destiny (2)\",[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Enchanted Armor (2)\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Agility\"] = 1}},{[\"name\"] = \"Blessing of Isis (3)\",[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Cryptic Grimoire (4)\",[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Cryptic Grimoire (4)\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Ríastrad (1)\",[\"skillIcons\"] = {[\"Combat\"] = 2}},{[\"name\"] = \"Tristan Botley (2)\",[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Curse of Aeons (3)\",[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Unrelenting (1)\",[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Signum Crucis (2)\",[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Holy Rosary (2)\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Agility\"] = 1}},{[\"name\"] = \"Shield of Faith (2)\",[\"skillIcons\"] = {[\"Will\"] = 2}},{[\"name\"] = \"Fey (1)\",[\"skillIcons\"] = {[\"Wild\"] = 2,[\"Will\"] = 1}},{[\"name\"] = \"Guided by the Unseen (3)\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"\\\"Lucky\\\" Penny (2)\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Agility\"] = 1}},{[\"name\"] = \"Eye of the Djinn (2)\",[\"skillIcons\"] = {[\"Intellect\"] = 2}},{[\"name\"] = \"Armageddon (4)\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Eye of Chaos (4)\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Shroud of Shadows (4)\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Agility\"] = 1}},{[\"name\"] = \"Spirit of Humanity (2)\",[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Harmony Restored (2)\",[\"skillIcons\"] = {[\"Will\"] = 2}},{[\"name\"] = \"Enchant Weapon (3)\",[\"skillIcons\"] = {[\"Will\"] = 2,[\"Combat\"] = 1}},{[\"name\"] = \"Nephthys (4)\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Combat\"] = 2}},{[\"name\"] = \"The Stygian Eye (3)\",[\"skillIcons\"] = {[\"Will\"] = 3}},{[\"name\"] = \"Hyperawareness (4)\",[\"skillIcons\"] = {[\"Agility\"] = 2,[\"Intellect\"] = 2}},{[\"name\"] = \"Geas (2)\",[\"skillIcons\"] = {}},{[\"name\"] = \"Hard Knocks (4)\",[\"skillIcons\"] = {[\"Agility\"] = 2,[\"Combat\"] = 2}},{[\"name\"] = \"Ikiaq (3)\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Flute of the Outer Gods (4)\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Agility\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"A Watchful Peace (3)\",[\"skillIcons\"] = {[\"Will\"] = 2}},{[\"name\"] = \"Dig Deep (4)\",[\"skillIcons\"] = {[\"Will\"] = 2,[\"Agility\"] = 2}},{[\"name\"] = \"Favor of the Moon (1)\",[\"skillIcons\"] = {[\"Combat\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Favor of the Sun (1)\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Agility\"] = 1}},{[\"name\"] = \"Purifying Corruption (4)\",[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Hallow (3)\",[\"skillIcons\"] = {[\"Wild\"] = 1,[\"Will\"] = 1}},{[\"name\"] = \"Holy Spear (5)\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Combat\"] = 2}},{[\"name\"] = \"Ancestral Knowledge (3)\",[\"skillIcons\"] = {}},{[\"name\"] = \"Ariadne's Twine (3)\",[\"skillIcons\"] = {[\"Intellect\"] = 2}},{[\"name\"] = \".25 Automatic (2)\",[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Justify the Means (3)\",[\"skillIcons\"] = {}},{[\"name\"] = \"Lucky Dice (3)\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Agility\"] = 1}},{[\"name\"] = \"Rite of Equilibrium (5)\",[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Jacob Morrison (3)\",[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Shrine of the Moirai (3)\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Agility\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Sweeping Kick (1)\",[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Butterfly Swords (2)\",[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Written in the Stars\",[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Dragon Pole\",[\"skillIcons\"] = {[\"Combat\"] = 1}},{[\"name\"] = \"Astronomical Atlas (3)\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Intellect\"] = 2}},{[\"name\"] = \"Strength in Numbers (1)\",[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Medical Student\",[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Michael Leigh (5)\",[\"skillIcons\"] = {[\"Wild\"] = 1,[\"Combat\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Divination (1)\",[\"skillIcons\"] = {[\"Intellect\"] = 1}},{[\"name\"] = \"Blur (1)\",[\"skillIcons\"] = {[\"Agility\"] = 1}},{[\"name\"] = \"Physical Training (2)\",[\"skillIcons\"] = {[\"Will\"] = 2,[\"Combat\"] = 2}},{[\"name\"] = \"Dynamite Blast (2)\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Hyperawareness (2)\",[\"skillIcons\"] = {[\"Agility\"] = 2,[\"Intellect\"] = 2}},{[\"name\"] = \"Barricade (3)\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Agility\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Hard Knocks (2)\",[\"skillIcons\"] = {[\"Agility\"] = 2,[\"Combat\"] = 2}},{[\"name\"] = \"Hot Streak (2)\",[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Arcane Studies (2)\",[\"skillIcons\"] = {[\"Will\"] = 2,[\"Intellect\"] = 2}},{[\"name\"] = \"Mind Wipe (3)\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Dig Deep (2)\",[\"skillIcons\"] = {[\"Will\"] = 2,[\"Agility\"] = 2}},{[\"name\"] = \"Rabbit's Foot (3)\",[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Bandolier (2)\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Blackjack (2)\",[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Preposterous Sketches (2)\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Strange Solution (4)\",[\"skillIcons\"] = {[\"Intellect\"] = 2}},{[\"name\"] = \"Contraband (2)\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Intellect\"] = 2}},{[\"name\"] = \"Think on Your Feet (2)\",[\"skillIcons\"] = {[\"Agility\"] = 2,[\"Intellect\"] = 1}},{[\"name\"] = \"Rite of Seeking (2)\",[\"skillIcons\"] = {[\"Intellect\"] = 1}},{[\"name\"] = \"Clarity of Mind (3)\",[\"skillIcons\"] = {[\"Will\"] = 2}},{[\"name\"] = \"Oops! (2)\",[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Combat\"] = 2}},{[\"name\"] = \"Rise to the Occasion (3)\",[\"skillIcons\"] = {[\"Wild\"] = 2}},{[\"name\"] = \"Through the Gates\",[\"skillIcons\"] = {}},{[\"name\"] = \".32 Colt (2)\",[\"skillIcons\"] = {[\"Combat\"] = 2}},{[\"name\"] = \"\\\"Eat lead!\\\"\",[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Logical Reasoning (4)\",[\"skillIcons\"] = {[\"Will\"] = 3}},{[\"name\"] = \"Archaic Glyphs (3)\",[\"skillIcons\"] = {[\"Combat\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Stealth (3)\",[\"skillIcons\"] = {[\"Agility\"] = 2}},{[\"name\"] = \"Suggestion (1)\",[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Alchemical Transmutation (2)\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Storm of Spirits (3)\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Combat\"] = 2}},{[\"name\"] = \"Lantern (2)\",[\"skillIcons\"] = {[\"Intellect\"] = 2}},{[\"name\"] = \"Gravedigger's Shovel (2)\",[\"skillIcons\"] = {[\"Combat\"] = 2}},{[\"name\"] = \"Unspeakable Oath (Bloodthirst)\",[\"skillIcons\"] = {}},{[\"name\"] = \"Unspeakable Oath (Curiosity)\",[\"skillIcons\"] = {}},{[\"name\"] = \"Unspeakable Oath (Cowardice)\",[\"skillIcons\"] = {}},{[\"name\"] = \"Blood Eclipse (1)\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Survival Knife (2)\",[\"skillIcons\"] = {[\"Combat\"] = 2}},{[\"name\"] = \"Truth from Fiction (2)\",[\"skillIcons\"] = {[\"Intellect\"] = 3}},{[\"name\"] = \"Ancient Stone (4)\",[\"skillIcons\"] = {[\"Agility\"] = 2}},{[\"name\"] = \"Decorated Skull (3)\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Colt Vest Pocket (2)\",[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Mists of R'lyeh (2)\",[\"skillIcons\"] = {[\"Agility\"] = 1}},{[\"name\"] = \"The Chthonian Stone (3)\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Alter Fate (1)\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Agility\"] = 1}},{[\"name\"] = \"On Your Own (3)\",[\"skillIcons\"] = {}},{[\"name\"] = \"Backpack (2)\",[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Dendromorphosis\",[\"skillIcons\"] = {}},{[\"name\"] = \"Offer You Cannot Refuse\",[\"skillIcons\"] = {}},{[\"name\"] = \"Fine Print\",[\"skillIcons\"] = {}},{[\"name\"] = \"Sell Your Soul\",[\"skillIcons\"] = {}},{[\"name\"] = \"The Star • XVII (3)\",[\"skillIcons\"] = {}},{[\"name\"] = \"The Hierophant • V (3)\",[\"skillIcons\"] = {}},{[\"name\"] = \"Moon Pendant (2)\",[\"skillIcons\"] = {}},{[\"name\"] = \"Nathaniel Cho\",[\"skillIcons\"] = {[\"Will\"] = 3,[\"Agility\"] = 2,[\"Combat\"] = 5,[\"Intellect\"] = 2}},{[\"name\"] = \"Randall Cho\",[\"skillIcons\"] = {[\"Wild\"] = 1,[\"Will\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Tommy Malloy\",[\"skillIcons\"] = {}},{[\"name\"] = \"Self-Destructive\",[\"skillIcons\"] = {}},{[\"name\"] = \"Boxing Gloves\",[\"skillIcons\"] = {[\"Combat\"] = 1}},{[\"name\"] = \"Flesh Ward\",[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Grete Wagner\",[\"skillIcons\"] = {[\"Combat\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Physical Training\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Relentless\",[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Safeguard\",[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Clean Them Out\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Counterpunch\",[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Dodge\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Agility\"] = 1}},{[\"name\"] = \"\\\"Get over here!\\\"\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Glory\",[\"skillIcons\"] = {[\"Intellect\"] = 2}},{[\"name\"] = \"Monster Slayer\",[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"One-Two Punch\",[\"skillIcons\"] = {[\"Combat\"] = 1}},{[\"name\"] = \"Stand Together\",[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Vicious Blow\",[\"skillIcons\"] = {[\"Combat\"] = 1}},{[\"name\"] = \"Evidence! (1)\",[\"skillIcons\"] = {[\"Intellect\"] = 2}},{[\"name\"] = \"Galvanize (1)\",[\"skillIcons\"] = {[\"Will\"] = 2}},{[\"name\"] = \"Counterpunch (2)\",[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Combat\"] = 2}},{[\"name\"] = \"\\\"Get over here!\\\" (2)\",[\"skillIcons\"] = {[\"Will\"] = 2,[\"Combat\"] = 1}},{[\"name\"] = \"Lesson Learned (2)\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Intellect\"] = 2}},{[\"name\"] = \"Mano a Mano (2)\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Overpower (2)\",[\"skillIcons\"] = {[\"Combat\"] = 3}},{[\"name\"] = \"Boxing Gloves (3)\",[\"skillIcons\"] = {[\"Combat\"] = 2}},{[\"name\"] = \"Grete Wagner (3)\",[\"skillIcons\"] = {[\"Wild\"] = 1,[\"Combat\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Dynamite Blast (3)\",[\"skillIcons\"] = {[\"Will\"] = 2,[\"Combat\"] = 2}},{[\"name\"] = \"Taunt (3)\",[\"skillIcons\"] = {[\"Will\"] = 2,[\"Agility\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Physical Training (4)\",[\"skillIcons\"] = {[\"Will\"] = 2,[\"Combat\"] = 2}},{[\"name\"] = \"One-Two Punch (5)\",[\"skillIcons\"] = {[\"Combat\"] = 4}},{[\"name\"] = \"Harvey Walters\",[\"skillIcons\"] = {[\"Will\"] = 4,[\"Agility\"] = 2,[\"Combat\"] = 1,[\"Intellect\"] = 5}},{[\"name\"] = \"Vault of Knowledge\",[\"skillIcons\"] = {[\"Wild\"] = 1,[\"Will\"] = 1,[\"Agility\"] = 1}},{[\"name\"] = \"Thrice-Damned Curiosity\",[\"skillIcons\"] = {}},{[\"name\"] = \"Obsessive\",[\"skillIcons\"] = {}},{[\"name\"] = \"Arcane Enlightenment\",[\"skillIcons\"] = {[\"Will\"] = 2}},{[\"name\"] = \"Celaeno Fragments\",[\"skillIcons\"] = {[\"Intellect\"] = 1}},{[\"name\"] = \"Disc of Itzamna\",[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Encyclopedia\",[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Feed the Mind\",[\"skillIcons\"] = {[\"Intellect\"] = 1}},{[\"name\"] = \"Forbidden Tome\",[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Higher Education\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Laboratory Assistant\",[\"skillIcons\"] = {[\"Intellect\"] = 1}},{[\"name\"] = \"Whitton Greene\",[\"skillIcons\"] = {[\"Intellect\"] = 1}},{[\"name\"] = \"Burning the Midnight Oil\",[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Cryptic Writings\",[\"skillIcons\"] = {[\"Intellect\"] = 2}},{[\"name\"] = \"Extensive Research\",[\"skillIcons\"] = {[\"Intellect\"] = 2}},{[\"name\"] = \"Occult Invocation\",[\"skillIcons\"] = {[\"Combat\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Preposterous Sketches\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Deduction\",[\"skillIcons\"] = {[\"Intellect\"] = 1}},{[\"name\"] = \"Library Docent (1)\",[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Glimpse the Unthinkable (1)\",[\"skillIcons\"] = {[\"Intellect\"] = 2}},{[\"name\"] = \"Esoteric Atlas (2)\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Agility\"] = 1}},{[\"name\"] = \"Whitton Greene (2)\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Cryptic Writings (2)\",[\"skillIcons\"] = {[\"Wild\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"\\\"I've got a plan!\\\" (2)\",[\"skillIcons\"] = {[\"Combat\"] = 1,[\"Intellect\"] = 2}},{[\"name\"] = \"Mind over Matter (2)\",[\"skillIcons\"] = {[\"Wild\"] = 1,[\"Agility\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Seeking Answers (2)\",[\"skillIcons\"] = {[\"Agility\"] = 2,[\"Intellect\"] = 1}},{[\"name\"] = \"Perception (2)\",[\"skillIcons\"] = {[\"Intellect\"] = 3}},{[\"name\"] = \"Forbidden Tome (3)\",[\"skillIcons\"] = {[\"Wild\"] = 1,[\"Will\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Forbidden Tome (3)\",[\"skillIcons\"] = {[\"Wild\"] = 1,[\"Agility\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Farsight (4)\",[\"skillIcons\"] = {[\"Wild\"] = 1,[\"Will\"] = 1}},{[\"name\"] = \"Miskatonic Archaeology Funding (4)\",[\"skillIcons\"] = {}},{[\"name\"] = \"The Necronomicon (5)\",[\"skillIcons\"] = {[\"Intellect\"] = 5}},{[\"name\"] = \"Winifred Habbamock\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Agility\"] = 5,[\"Combat\"] = 3,[\"Intellect\"] = 3}},{[\"name\"] = \"Anything You Can Do, Better\",[\"skillIcons\"] = {[\"Wild\"] = 6}},{[\"name\"] = \"Arrogance\",[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Reckless\",[\"skillIcons\"] = {}},{[\"name\"] = \"Lockpicks\",[\"skillIcons\"] = {[\"Intellect\"] = 1}},{[\"name\"] = \"Mauser C96\",[\"skillIcons\"] = {[\"Agility\"] = 1}},{[\"name\"] = \"Switchblade\",[\"skillIcons\"] = {[\"Agility\"] = 1}},{[\"name\"] = \"Lucky Cigarette Case\",[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Lonnie Ritter\",[\"skillIcons\"] = {[\"Combat\"] = 1}},{[\"name\"] = \"Leather Jacket\",[\"skillIcons\"] = {[\"Combat\"] = 1}},{[\"name\"] = \"Streetwise\",[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Cheap Shot\",[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Daring Maneuver\",[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Slip Away\",[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Pilfer\",[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Sneak By\",[\"skillIcons\"] = {[\"Agility\"] = 2}},{[\"name\"] = \"Nimble\",[\"skillIcons\"] = {[\"Agility\"] = 1}},{[\"name\"] = \"Daredevil\",[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Opportunist\",[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Liquid Courage (1)\",[\"skillIcons\"] = {[\"Will\"] = 2}},{[\"name\"] = \"Mauser C96 (2)\",[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Daring Maneuver (2)\",[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Cheap Shot (2)\",[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Slip Away (2)\",[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Manual Dexterity (2)\",[\"skillIcons\"] = {[\"Agility\"] = 3}},{[\"name\"] = \"Lucky Cigarette Case (3)\",[\"skillIcons\"] = {[\"Will\"] = 2}},{[\"name\"] = \"Sharpshooter (3)\",[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Pilfer (3)\",[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Backstab (3)\",[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Copycat (3)\",[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Beretta M1918 (4)\",[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Combat\"] = 2}},{[\"name\"] = \"Chuck Fergus (5)\",[\"skillIcons\"] = {[\"Wild\"] = 1,[\"Agility\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Jacqueline Fine\",[\"skillIcons\"] = {[\"Will\"] = 5,[\"Agility\"] = 2,[\"Combat\"] = 2,[\"Intellect\"] = 3}},{[\"name\"] = \"Arbiter of Fates\",[\"skillIcons\"] = {[\"Wild\"] = 1,[\"Will\"] = 1,[\"Agility\"] = 1}},{[\"name\"] = \"Dark Future\",[\"skillIcons\"] = {}},{[\"name\"] = \"Nihilism\",[\"skillIcons\"] = {}},{[\"name\"] = \"Ritual Candles\",[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Scrying Mirror\",[\"skillIcons\"] = {[\"Intellect\"] = 1}},{[\"name\"] = \"Azure Flame\",[\"skillIcons\"] = {[\"Combat\"] = 1}},{[\"name\"] = \"Clairvoyance\",[\"skillIcons\"] = {[\"Intellect\"] = 1}},{[\"name\"] = \"Ineffable Truth\",[\"skillIcons\"] = {[\"Agility\"] = 1}},{[\"name\"] = \"Familiar Spirit\",[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Crystal Pendulum\",[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Robes of Endless Night\",[\"skillIcons\"] = {[\"Agility\"] = 1}},{[\"name\"] = \"Astral Travel\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Agility\"] = 1}},{[\"name\"] = \"Hypnotic Gaze\",[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Parallel Fates\",[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Voice of Ra\",[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Dark Prophecy\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Agility\"] = 1}},{[\"name\"] = \"Defiance\",[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Prescient\",[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Eldritch Inspiration (1)\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Intellect\"] = 2}},{[\"name\"] = \"Grotesque Statue (2)\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Agility\"] = 1}},{[\"name\"] = \"Robes of Endless Night (2)\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Agility\"] = 1}},{[\"name\"] = \"Hypnotic Gaze (2)\",[\"skillIcons\"] = {[\"Agility\"] = 2,[\"Combat\"] = 1}},{[\"name\"] = \"Guts (2)\",[\"skillIcons\"] = {[\"Will\"] = 3}},{[\"name\"] = \"Azure Flame (3)\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Clairvoyance (3)\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Ineffable Truth (3)\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Agility\"] = 1}},{[\"name\"] = \"Arcane Studies (4)\",[\"skillIcons\"] = {[\"Will\"] = 2,[\"Intellect\"] = 2}},{[\"name\"] = \"Recharge (4)\",[\"skillIcons\"] = {[\"Will\"] = 3}},{[\"name\"] = \"Azure Flame (5)\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Combat\"] = 2}},{[\"name\"] = \"Clairvoyance (5)\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Intellect\"] = 2}},{[\"name\"] = \"Ineffable Truth (5)\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Agility\"] = 2}},{[\"name\"] = \"Stella Clark\",[\"skillIcons\"] = {[\"Will\"] = 3,[\"Agility\"] = 4,[\"Combat\"] = 3,[\"Intellect\"] = 2}},{[\"name\"] = \"Neither Rain nor Snow\",[\"skillIcons\"] = {[\"Wild\"] = 3}},{[\"name\"] = \"Called by the Mists\",[\"skillIcons\"] = {}},{[\"name\"] = \"Atychiphobia\",[\"skillIcons\"] = {}},{[\"name\"] = \".18 Derringer\",[\"skillIcons\"] = {[\"Combat\"] = 1}},{[\"name\"] = \"Grimm's Fairy Tales\",[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Old Keyring\",[\"skillIcons\"] = {[\"Intellect\"] = 1}},{[\"name\"] = \"Granny Orne\",[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Mysterious Raven\",[\"skillIcons\"] = {[\"Intellect\"] = 1}},{[\"name\"] = \"Rabbit's Foot\",[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Scrapper\",[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Will to Survive\",[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"A Test of Will\",[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Dumb Luck\",[\"skillIcons\"] = {[\"Agility\"] = 2}},{[\"name\"] = \"Grit Your Teeth\",[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Live and Learn\",[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"\\\"Look what I found!\\\"\",[\"skillIcons\"] = {[\"Intellect\"] = 2}},{[\"name\"] = \"Oops!\",[\"skillIcons\"] = {[\"Combat\"] = 2}},{[\"name\"] = \"Take Heart\",[\"skillIcons\"] = {}},{[\"name\"] = \"Cherished Keepsake (1)\",[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Leather Coat (1)\",[\"skillIcons\"] = {[\"Combat\"] = 1}},{[\"name\"] = \".18 Derringer (2)\",[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"A Test of Will (2)\",[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"\\\"Look what I found!\\\" (2)\",[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Intellect\"] = 2}},{[\"name\"] = \"Dumb Luck (2)\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Agility\"] = 2}},{[\"name\"] = \"Unexpected Courage (2)\",[\"skillIcons\"] = {[\"Wild\"] = 2}},{[\"name\"] = \"Granny Orne (3)\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Lucky! (3)\",[\"skillIcons\"] = {}},{[\"name\"] = \"Chainsaw (4)\",[\"skillIcons\"] = {[\"Combat\"] = 3}},{[\"name\"] = \"Quick Learner (4)\",[\"skillIcons\"] = {}},{[\"name\"] = \"Déjà Vu (5)\",[\"skillIcons\"] = {}},{[\"name\"] = \"To the Dreamlands\",[\"skillIcons\"] = {}},{[\"name\"] = \"Fate of the Dreamers\",[\"skillIcons\"] = {}},{[\"name\"] = \"Prisoners of Conquest\",[\"skillIcons\"] = {}},{[\"name\"] = \"Ruins of Sarkomand\",[\"skillIcons\"] = {}},{[\"name\"] = \"Effigy of Nodens\",[\"skillIcons\"] = {}},{[\"name\"] = \"Usurp the Night\",[\"skillIcons\"] = {}},{[\"name\"] = \"The Translator's Evidence\",[\"skillIcons\"] = {}},{[\"name\"] = \"The Supplicant's Evidence\",[\"skillIcons\"] = {}},{[\"name\"] = \"The Priestess's Evidence\",[\"skillIcons\"] = {}},{[\"name\"] = \"The Salesman's Evidence\",[\"skillIcons\"] = {}},{[\"name\"] = \"The Assassin's Evidence\",[\"skillIcons\"] = {}},{[\"name\"] = \"The Professor's Evidence\",[\"skillIcons\"] = {}},{[\"name\"] = \"Daisy Walker\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Agility\"] = 2,[\"Combat\"] = 2,[\"Intellect\"] = 5}},{[\"name\"] = \"Daisy's Tote Bag\",[\"skillIcons\"] = {[\"Wild\"] = 2,[\"Will\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"The Necronomicon\",[\"skillIcons\"] = {}},{[\"name\"] = \"\\\"Skids\\\" O'Toole\",[\"skillIcons\"] = {[\"Will\"] = 2,[\"Agility\"] = 4,[\"Combat\"] = 3,[\"Intellect\"] = 3}},{[\"name\"] = \"On the Lam\",[\"skillIcons\"] = {[\"Wild\"] = 2,[\"Agility\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Hospital Debts\",[\"skillIcons\"] = {}},{[\"name\"] = \"Agnes Baker\",[\"skillIcons\"] = {[\"Will\"] = 5,[\"Agility\"] = 3,[\"Combat\"] = 2,[\"Intellect\"] = 2}},{[\"name\"] = \"Heirloom of Hyperborea\",[\"skillIcons\"] = {[\"Wild\"] = 2,[\"Will\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Dark Memory\",[\"skillIcons\"] = {}},{[\"name\"] = \"Triumph and Subjugation\",[\"skillIcons\"] = {}},{[\"name\"] = \"Jenny Barnes\",[\"skillIcons\"] = {[\"Will\"] = 3,[\"Agility\"] = 3,[\"Combat\"] = 3,[\"Intellect\"] = 3}},{[\"name\"] = \"Green Man Medallion\",[\"skillIcons\"] = {[\"Wild\"] = 2}},{[\"name\"] = \"Sacrificial Beast\",[\"skillIcons\"] = {}},{[\"name\"] = \"Roland Banks\",[\"skillIcons\"] = {[\"Will\"] = 3,[\"Agility\"] = 2,[\"Combat\"] = 4,[\"Intellect\"] = 3}},{[\"name\"] = \"Mysteries Remain\",[\"skillIcons\"] = {[\"Wild\"] = 1,[\"Combat\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"The Dirge of Reason\",[\"skillIcons\"] = {}},{[\"name\"] = \"Norman Withers\",[\"skillIcons\"] = {[\"Will\"] = 4,[\"Agility\"] = 1,[\"Combat\"] = 2,[\"Intellect\"] = 5}},{[\"name\"] = \"Split the Angle\",[\"skillIcons\"] = {[\"Wild\"] = 1,[\"Will\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Vengeful Hound\",[\"skillIcons\"] = {}},{[\"name\"] = \"Carolyn Fern\",[\"skillIcons\"] = {[\"Will\"] = 3,[\"Agility\"] = 2,[\"Combat\"] = 2,[\"Intellect\"] = 4}},{[\"name\"] = \"Foolishness\",[\"skillIcons\"] = {[\"Wild\"] = 2}},{[\"name\"] = \"To Fight the Black Wind\",[\"skillIcons\"] = {}},{[\"name\"] = \"Silas Marsh\",[\"skillIcons\"] = {[\"Will\"] = 2,[\"Agility\"] = 4,[\"Combat\"] = 4,[\"Intellect\"] = 2}},{[\"name\"] = \"Nautical Prowess\",[\"skillIcons\"] = {[\"Wild\"] = 1,[\"Will\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Dreams of the Deep\",[\"skillIcons\"] = {[\"Wild\"] = 2}},{[\"name\"] = \"Dexter Drake\",[\"skillIcons\"] = {[\"Will\"] = 5,[\"Agility\"] = 2,[\"Combat\"] = 3,[\"Intellect\"] = 2}},{[\"name\"] = \"Molly Maxwell\",[\"skillIcons\"] = {[\"Wild\"] = 1,[\"Will\"] = 1,[\"Agility\"] = 1}},{[\"name\"] = \"Yaztaroth\",[\"skillIcons\"] = {}},{[\"name\"] = \"Gloria Goldberg\",[\"skillIcons\"] = {[\"Will\"] = 5,[\"Agility\"] = 1,[\"Combat\"] = 2,[\"Intellect\"] = 4}},{[\"name\"] = \"Ruth Westmacott\",[\"skillIcons\"] = {[\"Wild\"] = 1,[\"Intellect\"] = 2}},{[\"name\"] = \"Liber Omnium Finium\",[\"skillIcons\"] = {}},{[\"name\"] = \"Marie Lambeau\",[\"skillIcons\"] = {[\"Will\"] = 4,[\"Agility\"] = 3,[\"Combat\"] = 1,[\"Intellect\"] = 4}},{[\"name\"] = \"Mystifying Song\",[\"skillIcons\"] = {[\"Wild\"] = 2}},{[\"name\"] = \"Baron Samedi\",[\"skillIcons\"] = {}}}\r\nend",
"LuaScriptState": "",
"XmlUI": "",
"CustomUIAssets": [
{
"Name": "combatIcon",
"URL": "http://cloud-3.steamusercontent.com/ugc/1754695581870520946/B61CD5BDAE28B1893809915C7C92A8B472BB65BB/"
}
]
},
"5": {
"GUID": "089f35",
"Name": "Custom_Model_Bag",
"Transform": {
"posX": -13.6800423,
"posY": 1.14969015,
"posZ": -28.0068569,
"rotX": 1.53124859E-07,
"rotY": 180.000031,
"rotZ": 3.39621323E-07,
"scaleX": 0.725000262,
"scaleY": 0.725000262,
"scaleZ": 0.725000262
},
"Nickname": "Ancestral Knowledge Helper",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 0.5607843,
"b": 0.247058153
},
"LayoutGroupSortIndex": 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,
"Number": 0,
"CustomMesh": {
"MeshURL": "http://cloud-3.steamusercontent.com/ugc/1754695414379239413/0B8E68F3B7311DCF2138FB701F78D1D93FBA4CAB/",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/1717542004667431170/D073271943724B10CAB5364F01E5E87D770F0FB8/",
"NormalURL": "",
"ColliderURL": "http://cloud-3.steamusercontent.com/ugc/1754695414379239413/0B8E68F3B7311DCF2138FB701F78D1D93FBA4CAB/",
"Convex": true,
"MaterialIndex": 1,
"TypeIndex": 6,
"CastShadows": true
},
"Bag": {
"Order": 0
},
"LuaScript": "function onload(saved_data)\r\n cardsInBag = {}\r\n skillCards = {}\r\n skillCount = 0\r\n cardJson = loadCards()\r\nend\r\n\r\nfunction onObjectEnterContainer(container, object)\r\n if container == self then\r\n if object.type == 'Card' then\r\n table.insert(cardsInBag, {name = object.getName(), id = object.getGUID()})\r\n recreateButtons()\r\n elseif object.type == 'Deck' and #cardsInBag == 0 then\r\n scanDeck(object)\r\n end\r\n end\r\nend\r\n\r\nfunction onObjectLeaveContainer(container, object)\r\n if container == self then\r\n removeCardByGUID(cardsInBag, object.getGUID())\r\n recreateButtons()\r\n end\r\nend\r\n\r\nfunction scanDeck(object)\r\n for _, containedObject in ipairs(object.getObjects()) do\r\n for _, card in pairs (cardJson) do\r\n if card.name == containedObject.name and card.type == 'skill' then\r\n skillCount = skillCount + 1\r\n table.insert(skillCards, {name = containedObject.name, id = containedObject.guid})\r\n break\r\n end\r\n end\r\n end\r\n\r\n if skillCount >= 10 then\r\n init(object)\r\n else\r\n broadcastToAll('Not enough skill cards in deck', Table)\r\n\r\n self.takeObject({\r\n guid = object.getGUID(),\r\n rotation = self.getRotation(),\r\n position = self.getPosition() + Vector(0,0.5,0),\r\n callback_function = function(obj)\r\n obj.resting = true\r\n end\r\n })\r\n end\r\nend\r\n\r\nfunction init(object)\r\n local randomSkills = {table.unpack(FYShuffle(skillCards), 1, 5)}\r\n height = 1\r\n\r\n self.takeObject({\r\n guid = object.getGUID(),\r\n rotation = self.getRotation(),\r\n position = self.getPosition() + Vector(0,0,-2.5),\r\n callback_function = function(obj)\r\n for _, skillCards in ipairs (randomSkills) do\r\n obj.takeObject({\r\n guid = skillCards.id,\r\n rotation = self.getRotation(),\r\n position = self.getPosition() + Vector(0,height,0)\r\n })\r\n\r\n height = height + 0.5\r\n end\r\n end\r\n })\r\nend\r\n\r\nfunction FYShuffle(tInput)\r\n local tReturn = {}\r\n math.randomseed(os.time())\r\n\r\n for i = #tInput, 1, -1 do\r\n local j = math.random(i)\r\n tInput[i], tInput[j] = tInput[j], tInput[i]\r\n table.insert(tReturn, tInput[i])\r\n end\r\n\r\n return tReturn\r\nend\r\n\r\nfunction recreateButtons()\r\n self.clearButtons()\r\n verticalPosition = 1.5\r\n\r\n for _, card in ipairs(cardsInBag) do\r\n if _G['removeCard' .. card.id] == nil then\r\n _G['removeCard' .. card.id] = function()\r\n removeCard(card.id)\r\n end\r\n end\r\n\r\n self.createButton({\r\n label = card.name,\r\n click_function = \"removeCard\" .. card.id,\r\n function_owner = self,\r\n position = {0,0,verticalPosition},\r\n height = 200,\r\n width = 1200,\r\n font_size = 75,\r\n color = {1,1,1},\r\n font_color = {0,0,0}\r\n })\r\n\r\n verticalPosition = verticalPosition - 0.5\r\n end\r\n\r\n countLabel = #cardsInBag == 0 and '' or #cardsInBag\r\n\r\n self.createButton({\r\n label = countLabel,\r\n click_function = 'nothing',\r\n function_owner = self,\r\n position = {0,0,-1.25},\r\n width = 0,\r\n height = 0,\r\n font_size = 225,\r\n font_color = {1,1,1}\r\n })\r\nend\r\n\r\nfunction nothing()\r\nend\r\n\r\nfunction removeCard(cardGUID)\r\n self.takeObject({\r\n guid = cardGUID,\r\n rotation = self.getRotation(),\r\n position = self.getPosition() + Vector(0,0.5,0),\r\n callback_function = function(obj)\r\n obj.resting = true\r\n end\r\n })\r\nend\r\n\r\nfunction removeCardByGUID(bag, guid)\r\n local idx = nil\r\n\r\n for i, v in ipairs (bag) do\r\n if (v.id == guid) then\r\n idx = i\r\n end\r\n end\r\n\r\n if idx ~= nil then\r\n table.remove(cardsInBag, idx)\r\n end\r\nend\r\n\r\nfunction loadCards()\r\n return {{[\"name\"] = \"Random Basic Weakness\",[\"type\"] = \"treachery\"},{[\"name\"] = \"Roland Banks\",[\"type\"] = \"investigator\"},{[\"name\"] = \"Daisy Walker\",[\"type\"] = \"investigator\"},{[\"name\"] = \"\\\"Skids\\\" O'Toole\",[\"type\"] = \"investigator\"},{[\"name\"] = \"Agnes Baker\",[\"type\"] = \"investigator\"},{[\"name\"] = \"Wendy Adams\",[\"type\"] = \"investigator\"},{[\"name\"] = \"Roland's .38 Special\",[\"type\"] = \"asset\"},{[\"name\"] = \"Cover Up\",[\"type\"] = \"treachery\"},{[\"name\"] = \"Daisy's Tote Bag\",[\"type\"] = \"asset\"},{[\"name\"] = \"The Necronomicon\",[\"type\"] = \"asset\"},{[\"name\"] = \"On the Lam\",[\"type\"] = \"event\"},{[\"name\"] = \"Hospital Debts\",[\"type\"] = \"treachery\"},{[\"name\"] = \"Heirloom of Hyperborea\",[\"type\"] = \"asset\"},{[\"name\"] = \"Dark Memory\",[\"type\"] = \"event\"},{[\"name\"] = \"Wendy's Amulet\",[\"type\"] = \"asset\"},{[\"name\"] = \"Abandoned and Alone\",[\"type\"] = \"treachery\"},{[\"name\"] = \".45 Automatic\",[\"type\"] = \"asset\"},{[\"name\"] = \"Physical Training\",[\"type\"] = \"asset\"},{[\"name\"] = \"Beat Cop\",[\"type\"] = \"asset\"},{[\"name\"] = \"First Aid\",[\"type\"] = \"asset\"},{[\"name\"] = \"Machete\",[\"type\"] = \"asset\"},{[\"name\"] = \"Guard Dog\",[\"type\"] = \"asset\"},{[\"name\"] = \"Evidence!\",[\"type\"] = \"event\"},{[\"name\"] = \"Dodge\",[\"type\"] = \"event\"},{[\"name\"] = \"Dynamite Blast\",[\"type\"] = \"event\"},{[\"name\"] = \"Vicious Blow\",[\"type\"] = \"skill\"},{[\"name\"] = \"Extra Ammunition (1)\",[\"type\"] = \"event\"},{[\"name\"] = \"Police Badge (2)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Beat Cop (2)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Shotgun (4)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Magnifying Glass\",[\"type\"] = \"asset\"},{[\"name\"] = \"Old Book of Lore\",[\"type\"] = \"asset\"},{[\"name\"] = \"Research Librarian\",[\"type\"] = \"asset\"},{[\"name\"] = \"Dr. Milan Christopher\",[\"type\"] = \"asset\"},{[\"name\"] = \"Hyperawareness\",[\"type\"] = \"asset\"},{[\"name\"] = \"Medical Texts\",[\"type\"] = \"asset\"},{[\"name\"] = \"Mind over Matter\",[\"type\"] = \"event\"},{[\"name\"] = \"Working a Hunch\",[\"type\"] = \"event\"},{[\"name\"] = \"Barricade\",[\"type\"] = \"event\"},{[\"name\"] = \"Deduction\",[\"type\"] = \"skill\"},{[\"name\"] = \"Magnifying Glass (1)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Disc of Itzamna (2)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Encyclopedia (2)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Cryptic Research (4)\",[\"type\"] = \"event\"},{[\"name\"] = \"Switchblade\",[\"type\"] = \"asset\"},{[\"name\"] = \"Burglary\",[\"type\"] = \"asset\"},{[\"name\"] = \"Pickpocketing\",[\"type\"] = \"asset\"},{[\"name\"] = \".41 Derringer\",[\"type\"] = \"asset\"},{[\"name\"] = \"Leo De Luca\",[\"type\"] = \"asset\"},{[\"name\"] = \"Hard Knocks\",[\"type\"] = \"asset\"},{[\"name\"] = \"Elusive\",[\"type\"] = \"event\"},{[\"name\"] = \"Backstab\",[\"type\"] = \"event\"},{[\"name\"] = \"Sneak Attack\",[\"type\"] = \"event\"},{[\"name\"] = \"Opportunist\",[\"type\"] = \"skill\"},{[\"name\"] = \"Leo De Luca (1)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Cat Burglar (1)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Sure Gamble (3)\",[\"type\"] = \"event\"},{[\"name\"] = \"Hot Streak (4)\",[\"type\"] = \"event\"},{[\"name\"] = \"Forbidden Knowledge\",[\"type\"] = \"asset\"},{[\"name\"] = \"Holy Rosary\",[\"type\"] = \"asset\"},{[\"name\"] = \"Shrivelling\",[\"type\"] = \"asset\"},{[\"name\"] = \"Scrying\",[\"type\"] = \"asset\"},{[\"name\"] = \"Arcane Studies\",[\"type\"] = \"asset\"},{[\"name\"] = \"Arcane Initiate\",[\"type\"] = \"asset\"},{[\"name\"] = \"Drawn to the Flame\",[\"type\"] = \"event\"},{[\"name\"] = \"Ward of Protection\",[\"type\"] = \"event\"},{[\"name\"] = \"Blinding Light\",[\"type\"] = \"event\"},{[\"name\"] = \"Fearless\",[\"type\"] = \"skill\"},{[\"name\"] = \"Mind Wipe (1)\",[\"type\"] = \"event\"},{[\"name\"] = \"Blinding Light (2)\",[\"type\"] = \"event\"},{[\"name\"] = \"Book of Shadows (3)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Grotesque Statue (4)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Leather Coat\",[\"type\"] = \"asset\"},{[\"name\"] = \"Scavenging\",[\"type\"] = \"asset\"},{[\"name\"] = \"Baseball Bat\",[\"type\"] = \"asset\"},{[\"name\"] = \"Rabbit's Foot\",[\"type\"] = \"asset\"},{[\"name\"] = \"Stray Cat\",[\"type\"] = \"asset\"},{[\"name\"] = \"Dig Deep\",[\"type\"] = \"asset\"},{[\"name\"] = \"Cunning Distraction\",[\"type\"] = \"event\"},{[\"name\"] = \"\\\"Look what I found!\\\"\",[\"type\"] = \"event\"},{[\"name\"] = \"Lucky!\",[\"type\"] = \"event\"},{[\"name\"] = \"Survival Instinct\",[\"type\"] = \"skill\"},{[\"name\"] = \"Aquinnah (1)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Close Call (2)\",[\"type\"] = \"event\"},{[\"name\"] = \"Lucky! (2)\",[\"type\"] = \"event\"},{[\"name\"] = \"Will to Survive (3)\",[\"type\"] = \"event\"},{[\"name\"] = \"Knife\",[\"type\"] = \"asset\"},{[\"name\"] = \"Flashlight\",[\"type\"] = \"asset\"},{[\"name\"] = \"Emergency Cache\",[\"type\"] = \"event\"},{[\"name\"] = \"Guts\",[\"type\"] = \"skill\"},{[\"name\"] = \"Perception\",[\"type\"] = \"skill\"},{[\"name\"] = \"Overpower\",[\"type\"] = \"skill\"},{[\"name\"] = \"Manual Dexterity\",[\"type\"] = \"skill\"},{[\"name\"] = \"Unexpected Courage\",[\"type\"] = \"skill\"},{[\"name\"] = \"Bulletproof Vest (3)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Elder Sign Amulet (3)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Amnesia\",[\"type\"] = \"treachery\"},{[\"name\"] = \"Paranoia\",[\"type\"] = \"treachery\"},{[\"name\"] = \"Haunted\",[\"type\"] = \"treachery\"},{[\"name\"] = \"Psychosis\",[\"type\"] = \"treachery\"},{[\"name\"] = \"Hypochondria\",[\"type\"] = \"treachery\"},{[\"name\"] = \"Mob Enforcer\",[\"type\"] = \"enemy\"},{[\"name\"] = \"Silver Twilight Acolyte\",[\"type\"] = \"enemy\"},{[\"name\"] = \"Stubborn Detective\",[\"type\"] = \"enemy\"},{[\"name\"] = \"Zoey Samaras\",[\"type\"] = \"investigator\"},{[\"name\"] = \"Rex Murphy\",[\"type\"] = \"investigator\"},{[\"name\"] = \"Jenny Barnes\",[\"type\"] = \"investigator\"},{[\"name\"] = \"Jim Culver\",[\"type\"] = \"investigator\"},{[\"name\"] = \"\\\"Ashcan\\\" Pete\",[\"type\"] = \"investigator\"},{[\"name\"] = \"Zoey's Cross\",[\"type\"] = \"asset\"},{[\"name\"] = \"Smite the Wicked\",[\"type\"] = \"treachery\"},{[\"name\"] = \"Search for the Truth\",[\"type\"] = \"event\"},{[\"name\"] = \"Rex's Curse\",[\"type\"] = \"treachery\"},{[\"name\"] = \"Jenny's Twin .45s\",[\"type\"] = \"asset\"},{[\"name\"] = \"Searching for Izzie\",[\"type\"] = \"treachery\"},{[\"name\"] = \"Jim's Trumpet\",[\"type\"] = \"asset\"},{[\"name\"] = \"Final Rhapsody\",[\"type\"] = \"treachery\"},{[\"name\"] = \"Duke\",[\"type\"] = \"asset\"},{[\"name\"] = \"Wracked by Nightmares\",[\"type\"] = \"treachery\"},{[\"name\"] = \"Blackjack\",[\"type\"] = \"asset\"},{[\"name\"] = \"Taunt\",[\"type\"] = \"event\"},{[\"name\"] = \"Teamwork\",[\"type\"] = \"event\"},{[\"name\"] = \"Taunt (2)\",[\"type\"] = \"event\"},{[\"name\"] = \"Laboratory Assistant\",[\"type\"] = \"asset\"},{[\"name\"] = \"Strange Solution\",[\"type\"] = \"asset\"},{[\"name\"] = \"Shortcut\",[\"type\"] = \"event\"},{[\"name\"] = \"Seeking Answers\",[\"type\"] = \"event\"},{[\"name\"] = \"Liquid Courage\",[\"type\"] = \"asset\"},{[\"name\"] = \"Think on Your Feet\",[\"type\"] = \"event\"},{[\"name\"] = \"Double or Nothing\",[\"type\"] = \"skill\"},{[\"name\"] = \"Hired Muscle (1)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Rite of Seeking\",[\"type\"] = \"asset\"},{[\"name\"] = \"Ritual Candles\",[\"type\"] = \"asset\"},{[\"name\"] = \"Clarity of Mind\",[\"type\"] = \"asset\"},{[\"name\"] = \"Bind Monster (2)\",[\"type\"] = \"event\"},{[\"name\"] = \"Fire Axe\",[\"type\"] = \"asset\"},{[\"name\"] = \"Peter Sylvestre\",[\"type\"] = \"asset\"},{[\"name\"] = \"Bait and Switch\",[\"type\"] = \"event\"},{[\"name\"] = \"Peter Sylvestre (2)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Kukri\",[\"type\"] = \"asset\"},{[\"name\"] = \"Indebted\",[\"type\"] = \"treachery\"},{[\"name\"] = \"Internal Injury\",[\"type\"] = \"treachery\"},{[\"name\"] = \"Chronophobia\",[\"type\"] = \"treachery\"},{[\"name\"] = \"Emergency Aid\",[\"type\"] = \"event\"},{[\"name\"] = \"Brother Xavier (1)\",[\"type\"] = \"asset\"},{[\"name\"] = \"\\\"I've got a plan!\\\"\",[\"type\"] = \"event\"},{[\"name\"] = \"Pathfinder (1)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Contraband\",[\"type\"] = \"event\"},{[\"name\"] = \"Adaptable (1)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Delve Too Deep\",[\"type\"] = \"event\"},{[\"name\"] = \"Song of the Dead (2)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Oops!\",[\"type\"] = \"event\"},{[\"name\"] = \"Fire Extinguisher (1)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Flare (1)\",[\"type\"] = \"event\"},{[\"name\"] = \"Smoking Pipe\",[\"type\"] = \"asset\"},{[\"name\"] = \"Painkillers\",[\"type\"] = \"asset\"},{[\"name\"] = \"Bandolier\",[\"type\"] = \"asset\"},{[\"name\"] = \"Stand Together (3)\",[\"type\"] = \"event\"},{[\"name\"] = \"Art Student\",[\"type\"] = \"asset\"},{[\"name\"] = \"Deduction (2)\",[\"type\"] = \"skill\"},{[\"name\"] = \"\\\"I'm outta here!\\\"\",[\"type\"] = \"event\"},{[\"name\"] = \"Switchblade (2)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Hypnotic Gaze\",[\"type\"] = \"event\"},{[\"name\"] = \"Shrivelling (3)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Newspaper\",[\"type\"] = \"asset\"},{[\"name\"] = \"Lure (1)\",[\"type\"] = \"event\"},{[\"name\"] = \"Relic Hunter (3)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Charisma (3)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Prepared for the Worst\",[\"type\"] = \"event\"},{[\"name\"] = \"Keen Eye (3)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Preposterous Sketches\",[\"type\"] = \"event\"},{[\"name\"] = \"Higher Education (3)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Lone Wolf\",[\"type\"] = \"asset\"},{[\"name\"] = \"Streetwise (3)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Defiance\",[\"type\"] = \"skill\"},{[\"name\"] = \"Blood Pact (3)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Rise to the Occasion\",[\"type\"] = \"skill\"},{[\"name\"] = \"Scrapper (3)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Emergency Cache (2)\",[\"type\"] = \"event\"},{[\"name\"] = \"\\\"If it bleeds...\\\"\",[\"type\"] = \"event\"},{[\"name\"] = \"Springfield M1903 (4)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Inquiring Mind\",[\"type\"] = \"skill\"},{[\"name\"] = \"Expose Weakness (1)\",[\"type\"] = \"event\"},{[\"name\"] = \"Quick Thinking\",[\"type\"] = \"skill\"},{[\"name\"] = \"Lucky Dice (2)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Opportunist (2)\",[\"type\"] = \"skill\"},{[\"name\"] = \"Alyssa Graham\",[\"type\"] = \"asset\"},{[\"name\"] = \"Rite of Seeking (4)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Dark Horse\",[\"type\"] = \"asset\"},{[\"name\"] = \"Survival Instinct (2)\",[\"type\"] = \"skill\"},{[\"name\"] = \"Leadership\",[\"type\"] = \"skill\"},{[\"name\"] = \"\\\"I've had worse...\\\" (4)\",[\"type\"] = \"event\"},{[\"name\"] = \"Strange Solution (4)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Strange Solution (4)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Strange Solution (4)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Joey \\\"The Rat\\\" Vigil\",[\"type\"] = \"asset\"},{[\"name\"] = \"Ace in the Hole (3)\",[\"type\"] = \"event\"},{[\"name\"] = \"Moonlight Ritual\",[\"type\"] = \"event\"},{[\"name\"] = \"Fearless (2)\",[\"type\"] = \"skill\"},{[\"name\"] = \"Jewel of Aureolus (3)\",[\"type\"] = \"asset\"},{[\"name\"] = \"A Chance Encounter\",[\"type\"] = \"event\"},{[\"name\"] = \"Stroke of Luck (2)\",[\"type\"] = \"skill\"},{[\"name\"] = \"Fine Clothes\",[\"type\"] = \"asset\"},{[\"name\"] = \"Moment of Respite (3)\",[\"type\"] = \"event\"},{[\"name\"] = \"Vicious Blow (2)\",[\"type\"] = \"skill\"},{[\"name\"] = \"Monster Slayer (5)\",[\"type\"] = \"event\"},{[\"name\"] = \"Lightning Gun (5)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Dr. William T. Maleson\",[\"type\"] = \"asset\"},{[\"name\"] = \"Deciphered Reality (5)\",[\"type\"] = \"event\"},{[\"name\"] = \"Chicago Typewriter (4)\",[\"type\"] = \"asset\"},{[\"name\"] = \"The Gold Pocket Watch (4)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Shrivelling (5)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Ward of Protection (5)\",[\"type\"] = \"event\"},{[\"name\"] = \"Aquinnah (3)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Try and Try Again (3)\",[\"type\"] = \"asset\"},{[\"name\"] = \"The Red-Gloved Man (5)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Mark Harrigan\",[\"type\"] = \"investigator\"},{[\"name\"] = \"Minh Thi Phan\",[\"type\"] = \"investigator\"},{[\"name\"] = \"Sefina Rousseau\",[\"type\"] = \"investigator\"},{[\"name\"] = \"Akachi Onyele\",[\"type\"] = \"investigator\"},{[\"name\"] = \"William Yorick\",[\"type\"] = \"investigator\"},{[\"name\"] = \"Lola Hayes\",[\"type\"] = \"investigator\"},{[\"name\"] = \"The Home Front\",[\"type\"] = \"skill\"},{[\"name\"] = \"Shell Shock\",[\"type\"] = \"treachery\"},{[\"name\"] = \"Sophie\",[\"type\"] = \"asset\"},{[\"name\"] = \"Sophie\",[\"type\"] = \"asset\"},{[\"name\"] = \"Analytical Mind\",[\"type\"] = \"asset\"},{[\"name\"] = \"The King in Yellow\",[\"type\"] = \"asset\"},{[\"name\"] = \"The Painted World\",[\"type\"] = \"event\"},{[\"name\"] = \"Stars of Hyades\",[\"type\"] = \"treachery\"},{[\"name\"] = \"Spirit-Speaker\",[\"type\"] = \"asset\"},{[\"name\"] = \"Angered Spirits\",[\"type\"] = \"treachery\"},{[\"name\"] = \"Bury Them Deep\",[\"type\"] = \"event\"},{[\"name\"] = \"Graveyard Ghouls\",[\"type\"] = \"enemy\"},{[\"name\"] = \"Improvisation\",[\"type\"] = \"event\"},{[\"name\"] = \"Crisis of Identity\",[\"type\"] = \"treachery\"},{[\"name\"] = \".32 Colt\",[\"type\"] = \"asset\"},{[\"name\"] = \"True Grit\",[\"type\"] = \"asset\"},{[\"name\"] = \"\\\"Let me handle this!\\\"\",[\"type\"] = \"event\"},{[\"name\"] = \"Ever Vigilant (1)\",[\"type\"] = \"event\"},{[\"name\"] = \"Fieldwork\",[\"type\"] = \"asset\"},{[\"name\"] = \"Archaic Glyphs\",[\"type\"] = \"asset\"},{[\"name\"] = \"No Stone Unturned\",[\"type\"] = \"event\"},{[\"name\"] = \"In the Know (1)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Stealth\",[\"type\"] = \"asset\"},{[\"name\"] = \"Sleight of Hand\",[\"type\"] = \"event\"},{[\"name\"] = \"Daring Maneuver\",[\"type\"] = \"event\"},{[\"name\"] = \"Lockpicks (1)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Alchemical Transmutation\",[\"type\"] = \"asset\"},{[\"name\"] = \"Uncage the Soul\",[\"type\"] = \"event\"},{[\"name\"] = \"Astral Travel\",[\"type\"] = \"event\"},{[\"name\"] = \"Spirit Athame (1)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Lantern\",[\"type\"] = \"asset\"},{[\"name\"] = \"Gravedigger's Shovel\",[\"type\"] = \"asset\"},{[\"name\"] = \"Hiding Spot\",[\"type\"] = \"event\"},{[\"name\"] = \"Resourceful\",[\"type\"] = \"skill\"},{[\"name\"] = \"Overzealous\",[\"type\"] = \"treachery\"},{[\"name\"] = \"Drawing the Sign\",[\"type\"] = \"treachery\"},{[\"name\"] = \"The Thing That Follows\",[\"type\"] = \"enemy\"},{[\"name\"] = \"Constance Dumaine\",[\"type\"] = \"enemy\"},{[\"name\"] = \"Jordan Perry\",[\"type\"] = \"enemy\"},{[\"name\"] = \"Ishimaru Haruko\",[\"type\"] = \"enemy\"},{[\"name\"] = \"Sebastien Moreau\",[\"type\"] = \"enemy\"},{[\"name\"] = \"Ashleigh Clarke\",[\"type\"] = \"enemy\"},{[\"name\"] = \"Engram's Oath\",[\"type\"] = \"story\"},{[\"name\"] = \"L'agneau Perdu\",[\"type\"] = \"story\"},{[\"name\"] = \"The Pattern\",[\"type\"] = \"story\"},{[\"name\"] = \"The First Show\",[\"type\"] = \"story\"},{[\"name\"] = \"Above and Below\",[\"type\"] = \"story\"},{[\"name\"] = \"Heroic Rescue\",[\"type\"] = \"event\"},{[\"name\"] = \"Combat Training (1)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Anatomical Diagrams\",[\"type\"] = \"event\"},{[\"name\"] = \"Scientific Theory (1)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Knuckleduster\",[\"type\"] = \"asset\"},{[\"name\"] = \"Moxie (1)\",[\"type\"] = \"asset\"},{[\"name\"] = \"David Renfield\",[\"type\"] = \"asset\"},{[\"name\"] = \"Grounded (1)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Cherished Keepsake\",[\"type\"] = \"asset\"},{[\"name\"] = \"Plucky (1)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Say Your Prayers\",[\"type\"] = \"skill\"},{[\"name\"] = \"Desperate Search\",[\"type\"] = \"skill\"},{[\"name\"] = \"Reckless Assault\",[\"type\"] = \"skill\"},{[\"name\"] = \"Run For Your Life\",[\"type\"] = \"skill\"},{[\"name\"] = \"Trench Knife\",[\"type\"] = \"asset\"},{[\"name\"] = \"Ambush (1)\",[\"type\"] = \"event\"},{[\"name\"] = \"Charles Ross, Esq.\",[\"type\"] = \"asset\"},{[\"name\"] = \"Forewarned (1)\",[\"type\"] = \"event\"},{[\"name\"] = \"Dario El-Amin\",[\"type\"] = \"asset\"},{[\"name\"] = \"Sneak Attack (2)\",[\"type\"] = \"event\"},{[\"name\"] = \"Storm of Spirits\",[\"type\"] = \"event\"},{[\"name\"] = \"Book of Shadows (1)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Fight or Flight\",[\"type\"] = \"event\"},{[\"name\"] = \"A Test of Will (1)\",[\"type\"] = \"event\"},{[\"name\"] = \"Devil's Luck (1)\",[\"type\"] = \"event\"},{[\"name\"] = \"Calling in Favors\",[\"type\"] = \"event\"},{[\"name\"] = \"\\\"I'll see you in hell!\\\"\",[\"type\"] = \"event\"},{[\"name\"] = \".45 Automatic (2)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Logical Reasoning\",[\"type\"] = \"event\"},{[\"name\"] = \"Archaic Glyphs (3)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Archaic Glyphs (3)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Cheap Shot\",[\"type\"] = \"event\"},{[\"name\"] = \"Pickpocketing (2)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Quantum Flux\",[\"type\"] = \"event\"},{[\"name\"] = \"Recharge (2)\",[\"type\"] = \"event\"},{[\"name\"] = \"Madame Labranche\",[\"type\"] = \"asset\"},{[\"name\"] = \"Snare Trap (2)\",[\"type\"] = \"event\"},{[\"name\"] = \"Inspiring Presence\",[\"type\"] = \"skill\"},{[\"name\"] = \"Mano a Mano (1)\",[\"type\"] = \"event\"},{[\"name\"] = \"First Aid (3)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Eureka!\",[\"type\"] = \"skill\"},{[\"name\"] = \"Shortcut (2)\",[\"type\"] = \"event\"},{[\"name\"] = \"\\\"Watch this!\\\"\",[\"type\"] = \"skill\"},{[\"name\"] = \".41 Derringer (2)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Torrent of Power\",[\"type\"] = \"skill\"},{[\"name\"] = \"Scrying (3)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Waylay\",[\"type\"] = \"event\"},{[\"name\"] = \"A Chance Encounter (2)\",[\"type\"] = \"event\"},{[\"name\"] = \"Emergency Cache (3)\",[\"type\"] = \"event\"},{[\"name\"] = \"On the Hunt\",[\"type\"] = \"event\"},{[\"name\"] = \"Stick to the Plan (3)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Guidance\",[\"type\"] = \"event\"},{[\"name\"] = \"Arcane Insight (4)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Narrow Escape\",[\"type\"] = \"event\"},{[\"name\"] = \"Suggestion (4)\",[\"type\"] = \"asset\"},{[\"name\"] = \"St. Hubert's Key\",[\"type\"] = \"asset\"},{[\"name\"] = \"Ward of Protection (2)\",[\"type\"] = \"event\"},{[\"name\"] = \"Arcane Initiate (3)\",[\"type\"] = \"asset\"},{[\"name\"] = \"\\\"Not without a fight!\\\"\",[\"type\"] = \"skill\"},{[\"name\"] = \"True Survivor (3)\",[\"type\"] = \"event\"},{[\"name\"] = \"\\\"Eat lead!\\\" (2)\",[\"type\"] = \"event\"},{[\"name\"] = \"Armor of Ardennes (5)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Eidetic Memory (3)\",[\"type\"] = \"event\"},{[\"name\"] = \"No Stone Unturned (5)\",[\"type\"] = \"event\"},{[\"name\"] = \"Charon's Obol (1)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Lupara (3)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Cheat Death (5)\",[\"type\"] = \"event\"},{[\"name\"] = \"Time Warp (2)\",[\"type\"] = \"event\"},{[\"name\"] = \"Seal of the Elder Sign (5)\",[\"type\"] = \"skill\"},{[\"name\"] = \"Newspaper (2)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Infighting (3)\",[\"type\"] = \"event\"},{[\"name\"] = \"Key of Ys (5)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Songs That the Hyades Shall Sing\",[\"type\"] = \"story\"},{[\"name\"] = \"Stars of Aldebaran\",[\"type\"] = \"story\"},{[\"name\"] = \"Bleak Desolation\",[\"type\"] = \"story\"},{[\"name\"] = \"Inhabitant of Carcosa\",[\"type\"] = \"story\"},{[\"name\"] = \"A Moment's Rest\",[\"type\"] = \"story\"},{[\"name\"] = \"The Coffin\",[\"type\"] = \"story\"},{[\"name\"] = \"Mapping the Streets\",[\"type\"] = \"story\"},{[\"name\"] = \"The King's Parade\",[\"type\"] = \"story\"},{[\"name\"] = \"The Archway\",[\"type\"] = \"story\"},{[\"name\"] = \"The Height of the Depths\",[\"type\"] = \"story\"},{[\"name\"] = \"Steps of the Palace\",[\"type\"] = \"story\"},{[\"name\"] = \"The Fall\",[\"type\"] = \"story\"},{[\"name\"] = \"Hastur's End\",[\"type\"] = \"story\"},{[\"name\"] = \"Leo Anderson\",[\"type\"] = \"investigator\"},{[\"name\"] = \"Ursula Downs\",[\"type\"] = \"investigator\"},{[\"name\"] = \"Finn Edwards\",[\"type\"] = \"investigator\"},{[\"name\"] = \"Father Mateo\",[\"type\"] = \"investigator\"},{[\"name\"] = \"Calvin Wright\",[\"type\"] = \"investigator\"},{[\"name\"] = \"Mitch Brown\",[\"type\"] = \"asset\"},{[\"name\"] = \"Bought in Blood\",[\"type\"] = \"treachery\"},{[\"name\"] = \"Jake Williams\",[\"type\"] = \"asset\"},{[\"name\"] = \"Call of the Unknown\",[\"type\"] = \"treachery\"},{[\"name\"] = \"Smuggled Goods\",[\"type\"] = \"event\"},{[\"name\"] = \"Finn's Trusty .38\",[\"type\"] = \"asset\"},{[\"name\"] = \"Caught Red-Handed\",[\"type\"] = \"treachery\"},{[\"name\"] = \"The Codex of Ages\",[\"type\"] = \"asset\"},{[\"name\"] = \"Serpents of Yig\",[\"type\"] = \"enemy\"},{[\"name\"] = \"Until the End of Time\",[\"type\"] = \"asset\"},{[\"name\"] = \"Voice of the Messenger\",[\"type\"] = \"treachery\"},{[\"name\"] = \"Survival Knife\",[\"type\"] = \"asset\"},{[\"name\"] = \"Venturer\",[\"type\"] = \"asset\"},{[\"name\"] = \"Trusted\",[\"type\"] = \"event\"},{[\"name\"] = \"Reliable (1)\",[\"type\"] = \"event\"},{[\"name\"] = \"Dr. Elli Horowitz\",[\"type\"] = \"asset\"},{[\"name\"] = \"Ancient Stone (1)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Tooth of Eztli\",[\"type\"] = \"asset\"},{[\"name\"] = \"Unearth the Ancients\",[\"type\"] = \"event\"},{[\"name\"] = \"Treasure Hunter (1)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Decorated Skull\",[\"type\"] = \"asset\"},{[\"name\"] = \"Eavesdrop\",[\"type\"] = \"event\"},{[\"name\"] = \"\\\"You handle this one!\\\"\",[\"type\"] = \"event\"},{[\"name\"] = \"Mists of R'lyeh\",[\"type\"] = \"asset\"},{[\"name\"] = \"The Chthonian Stone\",[\"type\"] = \"asset\"},{[\"name\"] = \"Protective Incantation (1)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Dark Prophecy\",[\"type\"] = \"event\"},{[\"name\"] = \"Improvised Weapon\",[\"type\"] = \"event\"},{[\"name\"] = \"Dumb Luck\",[\"type\"] = \"event\"},{[\"name\"] = \"Yaotl (1)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Last Chance\",[\"type\"] = \"skill\"},{[\"name\"] = \"Backpack\",[\"type\"] = \"asset\"},{[\"name\"] = \"Dark Pact\",[\"type\"] = \"event\"},{[\"name\"] = \"The Price of Failure\",[\"type\"] = \"treachery\"},{[\"name\"] = \"Doomed\",[\"type\"] = \"treachery\"},{[\"name\"] = \"Accursed Fate\",[\"type\"] = \"treachery\"},{[\"name\"] = \"The Bell Tolls\",[\"type\"] = \"treachery\"},{[\"name\"] = \"Scene of the Crime\",[\"type\"] = \"event\"},{[\"name\"] = \"Marksmanship (1)\",[\"type\"] = \"event\"},{[\"name\"] = \"Persuasion\",[\"type\"] = \"event\"},{[\"name\"] = \"Shrewd Analysis\",[\"type\"] = \"asset\"},{[\"name\"] = \"Lucky Cigarette Case\",[\"type\"] = \"asset\"},{[\"name\"] = \"Fence (1)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Arcane Research\",[\"type\"] = \"asset\"},{[\"name\"] = \"Counterspell (2)\",[\"type\"] = \"event\"},{[\"name\"] = \"Perseverance\",[\"type\"] = \"event\"},{[\"name\"] = \"Stunning Blow\",[\"type\"] = \"skill\"},{[\"name\"] = \"Second Wind\",[\"type\"] = \"event\"},{[\"name\"] = \"Take the Initiative\",[\"type\"] = \"skill\"},{[\"name\"] = \"Well Prepared (2)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Truth from Fiction\",[\"type\"] = \"event\"},{[\"name\"] = \"True Understanding\",[\"type\"] = \"skill\"},{[\"name\"] = \"Quick Study (2)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Hatchet Man\",[\"type\"] = \"skill\"},{[\"name\"] = \"High Roller (2)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Enraptured\",[\"type\"] = \"skill\"},{[\"name\"] = \"Recall the Future (2)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Try and Try Again (1)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Cornered (2)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Intrepid\",[\"type\"] = \"skill\"},{[\"name\"] = \"Custom Ammunition (3)\",[\"type\"] = \"event\"},{[\"name\"] = \"Otherworldly Compass (2)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Expose Weakness (3)\",[\"type\"] = \"event\"},{[\"name\"] = \"Lola Santiago (3)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Olive McBride\",[\"type\"] = \"asset\"},{[\"name\"] = \"Defiance (2)\",[\"type\"] = \"skill\"},{[\"name\"] = \"Premonition\",[\"type\"] = \"event\"},{[\"name\"] = \"Live and Learn\",[\"type\"] = \"event\"},{[\"name\"] = \"Take Heart\",[\"type\"] = \"skill\"},{[\"name\"] = \"Against All Odds (2)\",[\"type\"] = \"event\"},{[\"name\"] = \"Trench Coat\",[\"type\"] = \"asset\"},{[\"name\"] = \"Ornate Bow (3)\",[\"type\"] = \"asset\"},{[\"name\"] = \"M1918 BAR (4)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Ancient Stone (4)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Ancient Stone (4)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Slip Away\",[\"type\"] = \"event\"},{[\"name\"] = \"Pay Day (1)\",[\"type\"] = \"event\"},{[\"name\"] = \"Sacrifice (1)\",[\"type\"] = \"event\"},{[\"name\"] = \"Crystalline Elder Sign (3)\",[\"type\"] = \"asset\"},{[\"name\"] = \"On Your Own (3)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Handcuffs\",[\"type\"] = \"asset\"},{[\"name\"] = \"Blood Eclipse (3)\",[\"type\"] = \"event\"},{[\"name\"] = \"Feed the Mind (3)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Colt Vest Pocket\",[\"type\"] = \"asset\"},{[\"name\"] = \"Coup de Grâce\",[\"type\"] = \"event\"},{[\"name\"] = \"The Skeleton Key (2)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Mists of R'lyeh (4)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Winging It\",[\"type\"] = \"event\"},{[\"name\"] = \"Old Hunting Rifle (3)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Thermos\",[\"type\"] = \"asset\"},{[\"name\"] = \"Hemispheric Map (3)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Timeworn Brand (5)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Kerosene (1)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Flamethrower (5)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Vantage Point\",[\"type\"] = \"event\"},{[\"name\"] = \"Pnakotic Manuscripts (5)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Borrowed Time (3)\",[\"type\"] = \"asset\"},{[\"name\"] = \"All In (5)\",[\"type\"] = \"skill\"},{[\"name\"] = \"Shards of the Void (3)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Seal of the Seventh Sign (5)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Impromptu Barrier\",[\"type\"] = \"event\"},{[\"name\"] = \"Alter Fate (3)\",[\"type\"] = \"event\"},{[\"name\"] = \"Yig's Mercy\",[\"type\"] = \"story\"},{[\"name\"] = \"Another Way\",[\"type\"] = \"story\"},{[\"name\"] = \"Carolyn Fern\",[\"type\"] = \"investigator\"},{[\"name\"] = \"Joe Diamond\",[\"type\"] = \"investigator\"},{[\"name\"] = \"Preston Fairmont\",[\"type\"] = \"investigator\"},{[\"name\"] = \"Diana Stanley\",[\"type\"] = \"investigator\"},{[\"name\"] = \"Rita Young\",[\"type\"] = \"investigator\"},{[\"name\"] = \"Marie Lambeau\",[\"type\"] = \"investigator\"},{[\"name\"] = \"Hypnotic Therapy\",[\"type\"] = \"asset\"},{[\"name\"] = \"Rational Thought\",[\"type\"] = \"treachery\"},{[\"name\"] = \"Detective's Colt 1911s\",[\"type\"] = \"asset\"},{[\"name\"] = \"Unsolved Case\",[\"type\"] = \"event\"},{[\"name\"] = \"Family Inheritance\",[\"type\"] = \"asset\"},{[\"name\"] = \"Lodge \\\"Debts\\\"\",[\"type\"] = \"event\"},{[\"name\"] = \"Twilight Blade\",[\"type\"] = \"asset\"},{[\"name\"] = \"Dark Insight\",[\"type\"] = \"event\"},{[\"name\"] = \"Terrible Secret\",[\"type\"] = \"treachery\"},{[\"name\"] = \"\\\"I'm done runnin'!\\\"\",[\"type\"] = \"event\"},{[\"name\"] = \"Hoods\",[\"type\"] = \"enemy\"},{[\"name\"] = \"Mystifying Song\",[\"type\"] = \"event\"},{[\"name\"] = \"Baron Samedi\",[\"type\"] = \"asset\"},{[\"name\"] = \"Interrogate\",[\"type\"] = \"event\"},{[\"name\"] = \"Delay the Inevitable\",[\"type\"] = \"event\"},{[\"name\"] = \"Steadfast\",[\"type\"] = \"skill\"},{[\"name\"] = \"Ace of Swords (1)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Fingerprint Kit\",[\"type\"] = \"asset\"},{[\"name\"] = \"Connect the Dots\",[\"type\"] = \"event\"},{[\"name\"] = \"Curiosity\",[\"type\"] = \"skill\"},{[\"name\"] = \"Death • XIII (1)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Well Connected\",[\"type\"] = \"asset\"},{[\"name\"] = \"Money Talks\",[\"type\"] = \"event\"},{[\"name\"] = \"Cunning\",[\"type\"] = \"skill\"},{[\"name\"] = \"The Moon • XVIII (1)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Deny Existence\",[\"type\"] = \"event\"},{[\"name\"] = \"Eldritch Inspiration\",[\"type\"] = \"event\"},{[\"name\"] = \"Prophesy\",[\"type\"] = \"skill\"},{[\"name\"] = \"Four of Cups (1)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Track Shoes\",[\"type\"] = \"asset\"},{[\"name\"] = \"Act of Desperation\",[\"type\"] = \"event\"},{[\"name\"] = \"Able Bodied\",[\"type\"] = \"skill\"},{[\"name\"] = \"Five of Pentacles (1)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Ace of Rods (1)\",[\"type\"] = \"asset\"},{[\"name\"] = \"The 13th Vision\",[\"type\"] = \"treachery\"},{[\"name\"] = \"The Tower • XVI\",[\"type\"] = \"asset\"},{[\"name\"] = \"Something Worth Fighting For\",[\"type\"] = \"asset\"},{[\"name\"] = \"Crack the Case\",[\"type\"] = \"event\"},{[\"name\"] = \"Intel Report\",[\"type\"] = \"event\"},{[\"name\"] = \"Sign Magick\",[\"type\"] = \"asset\"},{[\"name\"] = \"Banish (1)\",[\"type\"] = \"event\"},{[\"name\"] = \"Meat Cleaver\",[\"type\"] = \"asset\"},{[\"name\"] = \".45 Thompson\",[\"type\"] = \"asset\"},{[\"name\"] = \"Scroll of Secrets\",[\"type\"] = \"asset\"},{[\"name\"] = \"Tennessee Sour Mash\",[\"type\"] = \"asset\"},{[\"name\"] = \"Enchanted Blade\",[\"type\"] = \"asset\"},{[\"name\"] = \"Grisly Totem\",[\"type\"] = \"asset\"},{[\"name\"] = \"Alice Luxley\",[\"type\"] = \"asset\"},{[\"name\"] = \"Well-Maintained (1)\",[\"type\"] = \"event\"},{[\"name\"] = \"Mr. \\\"Rook\\\"\",[\"type\"] = \"asset\"},{[\"name\"] = \"Hawk-Eye Folding Camera\",[\"type\"] = \"asset\"},{[\"name\"] = \"Henry Wan\",[\"type\"] = \"asset\"},{[\"name\"] = \"Swift Reflexes\",[\"type\"] = \"event\"},{[\"name\"] = \"Wither\",[\"type\"] = \"asset\"},{[\"name\"] = \"Sixth Sense\",[\"type\"] = \"asset\"},{[\"name\"] = \"Drawing Thin\",[\"type\"] = \"asset\"},{[\"name\"] = \"Belly of the Beast\",[\"type\"] = \"event\"},{[\"name\"] = \".45 Thompson (3)\",[\"type\"] = \"asset\"},{[\"name\"] = \".45 Thompson (3)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Scroll of Secrets (3)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Scroll of Secrets (3)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Tennessee Sour Mash (3)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Tennessee Sour Mash (3)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Enchanted Blade (3)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Enchanted Blade (3)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Grisly Totem (3)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Grisly Totem (3)\",[\"type\"] = \"asset\"},{[\"name\"] = \"The Council's Coffer (2)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Warning Shot\",[\"type\"] = \"event\"},{[\"name\"] = \"Telescopic Sight (3)\",[\"type\"] = \"event\"},{[\"name\"] = \"Knowledge is Power\",[\"type\"] = \"event\"},{[\"name\"] = \"Esoteric Atlas (1)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Investments\",[\"type\"] = \"asset\"},{[\"name\"] = \"Decoy\",[\"type\"] = \"event\"},{[\"name\"] = \"De Vermis Mysteriis (2)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Guiding Spirit (1)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Fortune or Fate (2)\",[\"type\"] = \"event\"},{[\"name\"] = \"Mk 1 Grenades (4)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Agency Backup (5)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Ghastly Revelation\",[\"type\"] = \"event\"},{[\"name\"] = \"Studious (3)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Small Favor\",[\"type\"] = \"event\"},{[\"name\"] = \"Another Day, Another Dollar (3)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Dayana Esperence (3)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Deny Existence (5)\",[\"type\"] = \"event\"},{[\"name\"] = \"Trial by Fire\",[\"type\"] = \"event\"},{[\"name\"] = \"Bait and Switch (3)\",[\"type\"] = \"event\"},{[\"name\"] = \"Anna Kaslow (4)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Hallowed Mirror\",[\"type\"] = \"asset\"},{[\"name\"] = \"Soothing Melody\",[\"type\"] = \"event\"},{[\"name\"] = \"\\\"I've had worse...\\\" (2)\",[\"type\"] = \"event\"},{[\"name\"] = \"Occult Lexicon\",[\"type\"] = \"asset\"},{[\"name\"] = \"Blood-Rite\",[\"type\"] = \"event\"},{[\"name\"] = \"Glimpse the Unthinkable (5)\",[\"type\"] = \"event\"},{[\"name\"] = \"\\\"You owe me one!\\\"\",[\"type\"] = \"event\"},{[\"name\"] = \"Double, Double (4)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Wither (4)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Sixth Sense (4)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Lure (2)\",[\"type\"] = \"event\"},{[\"name\"] = \"Eucatastrophe (3)\",[\"type\"] = \"event\"},{[\"name\"] = \"Tommy Muldoon\",[\"type\"] = \"investigator\"},{[\"name\"] = \"Mandy Thompson\",[\"type\"] = \"investigator\"},{[\"name\"] = \"Tony Morgan\",[\"type\"] = \"investigator\"},{[\"name\"] = \"Luke Robinson\",[\"type\"] = \"investigator\"},{[\"name\"] = \"Patrice Hathaway\",[\"type\"] = \"investigator\"},{[\"name\"] = \"Becky\",[\"type\"] = \"asset\"},{[\"name\"] = \"Rookie Mistake\",[\"type\"] = \"treachery\"},{[\"name\"] = \"Occult Evidence\",[\"type\"] = \"event\"},{[\"name\"] = \"Shocking Discovery\",[\"type\"] = \"treachery\"},{[\"name\"] = \"Bounty Contracts\",[\"type\"] = \"asset\"},{[\"name\"] = \"Tony's .38 Long Colt\",[\"type\"] = \"asset\"},{[\"name\"] = \"Tony's Quarry\",[\"type\"] = \"enemy\"},{[\"name\"] = \"Gate Box\",[\"type\"] = \"asset\"},{[\"name\"] = \"Detached from Reality\",[\"type\"] = \"treachery\"},{[\"name\"] = \"Dream-Gate\",[\"type\"] = \"location\"},{[\"name\"] = \"Dream-Gate\",[\"type\"] = \"location\"},{[\"name\"] = \"Patrice's Violin\",[\"type\"] = \"asset\"},{[\"name\"] = \"Watcher from Another Dimension\",[\"type\"] = \"enemy\"},{[\"name\"] = \"The Hungering Blade (1)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Bloodlust\",[\"type\"] = \"treachery\"},{[\"name\"] = \"Solemn Vow\",[\"type\"] = \"asset\"},{[\"name\"] = \"Segment of Onyx (1)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Pendant of the Queen\",[\"type\"] = \"asset\"},{[\"name\"] = \"Astounding Revelation\",[\"type\"] = \"event\"},{[\"name\"] = \"Crystallizer of Dreams\",[\"type\"] = \"asset\"},{[\"name\"] = \"Guardian of the Crystallizer\",[\"type\"] = \"enemy\"},{[\"name\"] = \"Easy Mark (1)\",[\"type\"] = \"event\"},{[\"name\"] = \"Stargazing (1)\",[\"type\"] = \"event\"},{[\"name\"] = \"The Stars Are Right\",[\"type\"] = \"event\"},{[\"name\"] = \"Open Gate\",[\"type\"] = \"event\"},{[\"name\"] = \"Miss Doyle (1)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Hope\",[\"type\"] = \"asset\"},{[\"name\"] = \"Zeal\",[\"type\"] = \"asset\"},{[\"name\"] = \"Augur\",[\"type\"] = \"asset\"},{[\"name\"] = \"Fortuitous Discovery\",[\"type\"] = \"event\"},{[\"name\"] = \"Self-Centered\",[\"type\"] = \"treachery\"},{[\"name\"] = \"Kleptomania\",[\"type\"] = \"asset\"},{[\"name\"] = \"Narcolepsy\",[\"type\"] = \"treachery\"},{[\"name\"] = \"Your Worst Nightmare\",[\"type\"] = \"enemy\"},{[\"name\"] = \"First Watch\",[\"type\"] = \"event\"},{[\"name\"] = \"Daring\",[\"type\"] = \"skill\"},{[\"name\"] = \"Dream Diary\",[\"type\"] = \"asset\"},{[\"name\"] = \"Essence of the Dream\",[\"type\"] = \"skill\"},{[\"name\"] = \"Followed\",[\"type\"] = \"event\"},{[\"name\"] = \"Momentum (1)\",[\"type\"] = \"skill\"},{[\"name\"] = \"Scroll of Prophecies\",[\"type\"] = \"asset\"},{[\"name\"] = \"Read the Signs\",[\"type\"] = \"event\"},{[\"name\"] = \"Jessica Hyde (1)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Cryptic Souls\",[\"type\"] = \"story\"},{[\"name\"] = \"Dreamlike Horrors\",[\"type\"] = \"story\"},{[\"name\"] = \"Endless Secrets\",[\"type\"] = \"story\"},{[\"name\"] = \"Cylinders of Kadatheron\",[\"type\"] = \"story\"},{[\"name\"] = \"The Doom of Sarnath\",[\"type\"] = \"story\"},{[\"name\"] = \"Ghosts of the Dead\",[\"type\"] = \"story\"},{[\"name\"] = \"The Palace of Rainbows\",[\"type\"] = \"story\"},{[\"name\"] = \"A Shrine to the Gods\",[\"type\"] = \"story\"},{[\"name\"] = \"The Crypt of Zulan-Thek\",[\"type\"] = \"story\"},{[\"name\"] = \"Wares of Baharna\",[\"type\"] = \"story\"},{[\"name\"] = \"The Likeness of Old\",[\"type\"] = \"story\"},{[\"name\"] = \"What Remains of Tyrrhia\",[\"type\"] = \"story\"},{[\"name\"] = \"Advice of the King\",[\"type\"] = \"story\"},{[\"name\"] = \"Timeless Beauty\",[\"type\"] = \"story\"},{[\"name\"] = \"Unattainable Desires\",[\"type\"] = \"story\"},{[\"name\"] = \"The City Inside\",[\"type\"] = \"story\"},{[\"name\"] = \"The Baleful Star\",[\"type\"] = \"story\"},{[\"name\"] = \"Tetsuo Mori\",[\"type\"] = \"asset\"},{[\"name\"] = \"\\\"Fool me once...\\\" (1)\",[\"type\"] = \"event\"},{[\"name\"] = \"Self-Sacrifice\",[\"type\"] = \"skill\"},{[\"name\"] = \"Otherworld Codex (2)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Dream-Enhancing Serum\",[\"type\"] = \"asset\"},{[\"name\"] = \"\\\"Let God sort them out...\\\"\",[\"type\"] = \"event\"},{[\"name\"] = \"Swift Reload (2)\",[\"type\"] = \"event\"},{[\"name\"] = \"Gregory Gry\",[\"type\"] = \"asset\"},{[\"name\"] = \"Healing Words\",[\"type\"] = \"asset\"},{[\"name\"] = \"Ethereal Form\",[\"type\"] = \"event\"},{[\"name\"] = \"Scrounge for Supplies\",[\"type\"] = \"event\"},{[\"name\"] = \"Brute Force (1)\",[\"type\"] = \"skill\"},{[\"name\"] = \"Versatile (2)\",[\"type\"] = \"asset\"},{[\"name\"] = \".35 Winchester\",[\"type\"] = \"asset\"},{[\"name\"] = \"Safeguard (2)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Practice Makes Perfect\",[\"type\"] = \"event\"},{[\"name\"] = \"Extensive Research (1)\",[\"type\"] = \"event\"},{[\"name\"] = \"Three Aces (1)\",[\"type\"] = \"skill\"},{[\"name\"] = \"Burglary (2)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Spectral Razor\",[\"type\"] = \"event\"},{[\"name\"] = \"Word of Command (2)\",[\"type\"] = \"event\"},{[\"name\"] = \"Moonstone\",[\"type\"] = \"asset\"},{[\"name\"] = \"Sharp Vision (1)\",[\"type\"] = \"skill\"},{[\"name\"] = \"Lucid Dreaming (2)\",[\"type\"] = \"event\"},{[\"name\"] = \"Off the Galley\",[\"type\"] = \"story\"},{[\"name\"] = \"Heroic Rescue (2)\",[\"type\"] = \"event\"},{[\"name\"] = \"Leadership (2)\",[\"type\"] = \"skill\"},{[\"name\"] = \"Dream Diary (3)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Dream Diary (3)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Dream Diary (3)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Haste (2)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Daredevil (2)\",[\"type\"] = \"skill\"},{[\"name\"] = \"Empower Self (2)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Empower Self (2)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Empower Self (2)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Twila Katherine Price (3)\",[\"type\"] = \"asset\"},{[\"name\"] = \"A Glimmer of Hope\",[\"type\"] = \"event\"},{[\"name\"] = \"Expeditious Retreat (1)\",[\"type\"] = \"skill\"},{[\"name\"] = \"Ghastly Tunnels\",[\"type\"] = \"story\"},{[\"name\"] = \"The Sentry\",[\"type\"] = \"story\"},{[\"name\"] = \"Another Path\",[\"type\"] = \"story\"},{[\"name\"] = \"A Strange Ghoul\",[\"type\"] = \"story\"},{[\"name\"] = \"Scouting the Vale\",[\"type\"] = \"story\"},{[\"name\"] = \"Something Below\",[\"type\"] = \"story\"},{[\"name\"] = \"Inhabitants of the Vale\",[\"type\"] = \"story\"},{[\"name\"] = \"The Way Out\",[\"type\"] = \"story\"},{[\"name\"] = \"Spider-Infested Waters\",[\"type\"] = \"story\"},{[\"name\"] = \"Still Surface\",[\"type\"] = \"story\"},{[\"name\"] = \"Rolling Pits\",[\"type\"] = \"story\"},{[\"name\"] = \"Center of the Sea\",[\"type\"] = \"story\"},{[\"name\"] = \"Empty Vessel (4)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Wish Eater\",[\"type\"] = \"asset\"},{[\"name\"] = \"Surprising Find (1)\",[\"type\"] = \"skill\"},{[\"name\"] = \"Old Book of Lore (3)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Garrote Wire (2)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Delilah O'Rourke (3)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Summoned Hound (1)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Unbound Beast\",[\"type\"] = \"enemy\"},{[\"name\"] = \"Nothing Left to Lose (3)\",[\"type\"] = \"event\"},{[\"name\"] = \"The Black Cat (5)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Spiritual Resolve (5)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Abigail Foreman (4)\",[\"type\"] = \"asset\"},{[\"name\"] = \"The Eye of Truth (5)\",[\"type\"] = \"skill\"},{[\"name\"] = \"Joey \\\"The Rat\\\" Vigil (3)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Sawed-Off Shotgun (5)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Mind's Eye (2)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Shining Trapezohedron (4)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Nightmare Bauble (3)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Dream Parasite\",[\"type\"] = \"skill\"},{[\"name\"] = \"Scavenging (2)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Sister Mary\",[\"type\"] = \"investigator\"},{[\"name\"] = \"Amanda Sharpe\",[\"type\"] = \"investigator\"},{[\"name\"] = \"Trish Scarborough\",[\"type\"] = \"investigator\"},{[\"name\"] = \"Dexter Drake\",[\"type\"] = \"investigator\"},{[\"name\"] = \"Silas Marsh\",[\"type\"] = \"investigator\"},{[\"name\"] = \"Guardian Angel\",[\"type\"] = \"asset\"},{[\"name\"] = \"Crisis of Faith\",[\"type\"] = \"treachery\"},{[\"name\"] = \"Obscure Studies\",[\"type\"] = \"event\"},{[\"name\"] = \"Whispers from the Deep\",[\"type\"] = \"skill\"},{[\"name\"] = \"In the Shadows\",[\"type\"] = \"event\"},{[\"name\"] = \"Shadow Agents\",[\"type\"] = \"enemy\"},{[\"name\"] = \"Showmanship\",[\"type\"] = \"asset\"},{[\"name\"] = \"Occult Scraps\",[\"type\"] = \"asset\"},{[\"name\"] = \"Sea Change Harpoon\",[\"type\"] = \"asset\"},{[\"name\"] = \"Silas's Net\",[\"type\"] = \"asset\"},{[\"name\"] = \"Siren Call\",[\"type\"] = \"treachery\"},{[\"name\"] = \"Book of Psalms\",[\"type\"] = \"asset\"},{[\"name\"] = \"Blessed Blade\",[\"type\"] = \"asset\"},{[\"name\"] = \"Rite of Sanctification\",[\"type\"] = \"asset\"},{[\"name\"] = \"Hand of Fate\",[\"type\"] = \"event\"},{[\"name\"] = \"Cryptographic Cipher\",[\"type\"] = \"asset\"},{[\"name\"] = \"Cryptic Grimoire\",[\"type\"] = \"asset\"},{[\"name\"] = \"Deep Knowledge\",[\"type\"] = \"event\"},{[\"name\"] = \"Plan of Action\",[\"type\"] = \"skill\"},{[\"name\"] = \".25 Automatic\",[\"type\"] = \"asset\"},{[\"name\"] = \"Dark Ritual\",[\"type\"] = \"asset\"},{[\"name\"] = \"Obfuscation\",[\"type\"] = \"asset\"},{[\"name\"] = \"Faustian Bargain\",[\"type\"] = \"event\"},{[\"name\"] = \"Sword Cane\",[\"type\"] = \"asset\"},{[\"name\"] = \"Tides of Fate\",[\"type\"] = \"event\"},{[\"name\"] = \"Ward of Radiance\",[\"type\"] = \"event\"},{[\"name\"] = \"Promise of Power\",[\"type\"] = \"skill\"},{[\"name\"] = \"Token of Faith\",[\"type\"] = \"asset\"},{[\"name\"] = \"Keep Faith\",[\"type\"] = \"event\"},{[\"name\"] = \"Predestined\",[\"type\"] = \"skill\"},{[\"name\"] = \"Beloved\",[\"type\"] = \"skill\"},{[\"name\"] = \"Tempt Fate\",[\"type\"] = \"event\"},{[\"name\"] = \"Accursed Follower\",[\"type\"] = \"enemy\"},{[\"name\"] = \"Dread Curse\",[\"type\"] = \"treachery\"},{[\"name\"] = \"Day of Reckoning\",[\"type\"] = \"treachery\"},{[\"name\"] = \"Riot Whistle\",[\"type\"] = \"asset\"},{[\"name\"] = \"Righteous Hunt (1)\",[\"type\"] = \"event\"},{[\"name\"] = \"Sacred Covenant (2)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Eldritch Sophist\",[\"type\"] = \"asset\"},{[\"name\"] = \"Stirring Up Trouble (1)\",[\"type\"] = \"event\"},{[\"name\"] = \"Blasphemous Covenant (2)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Breaking and Entering\",[\"type\"] = \"event\"},{[\"name\"] = \"Skeptic (1)\",[\"type\"] = \"skill\"},{[\"name\"] = \"False Covenant (2)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Armageddon\",[\"type\"] = \"asset\"},{[\"name\"] = \"Eye of Chaos\",[\"type\"] = \"asset\"},{[\"name\"] = \"Shroud of Shadows\",[\"type\"] = \"asset\"},{[\"name\"] = \"Paradoxical Covenant (2)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Mariner's Compass\",[\"type\"] = \"asset\"},{[\"name\"] = \"Ancient Covenant (2)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Keen Eye\",[\"type\"] = \"asset\"},{[\"name\"] = \"Radiant Smite (1)\",[\"type\"] = \"event\"},{[\"name\"] = \"The Truth Beckons\",[\"type\"] = \"event\"},{[\"name\"] = \"Gaze of Ouraxsh (2)\",[\"type\"] = \"event\"},{[\"name\"] = \"Priest of Two Faiths (1)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Under Surveillance (1)\",[\"type\"] = \"event\"},{[\"name\"] = \"Blood Pact\",[\"type\"] = \"asset\"},{[\"name\"] = \"Abyssal Tome (2)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Butterfly Effect (1)\",[\"type\"] = \"event\"},{[\"name\"] = \"Third Time's a Charm (2)\",[\"type\"] = \"event\"},{[\"name\"] = \"Manipulate Destiny (2)\",[\"type\"] = \"event\"},{[\"name\"] = \"Enchanted Armor (2)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Blessing of Isis (3)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Cryptic Grimoire (4)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Cryptic Grimoire (4)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Ríastrad (1)\",[\"type\"] = \"event\"},{[\"name\"] = \"Tristan Botley (2)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Curse of Aeons (3)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Unrelenting (1)\",[\"type\"] = \"skill\"},{[\"name\"] = \"Signum Crucis (2)\",[\"type\"] = \"skill\"},{[\"name\"] = \"Holy Rosary (2)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Shield of Faith (2)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Fey (1)\",[\"type\"] = \"skill\"},{[\"name\"] = \"Guided by the Unseen (3)\",[\"type\"] = \"asset\"},{[\"name\"] = \"\\\"Lucky\\\" Penny (2)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Eye of the Djinn (2)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Armageddon (4)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Eye of Chaos (4)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Shroud of Shadows (4)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Spirit of Humanity (2)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Harmony Restored (2)\",[\"type\"] = \"event\"},{[\"name\"] = \"Enchant Weapon (3)\",[\"type\"] = \"event\"},{[\"name\"] = \"Nephthys (4)\",[\"type\"] = \"asset\"},{[\"name\"] = \"The Stygian Eye (3)\",[\"type\"] = \"event\"},{[\"name\"] = \"Hyperawareness (4)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Geas (2)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Hard Knocks (4)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Ikiaq (3)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Flute of the Outer Gods (4)\",[\"type\"] = \"asset\"},{[\"name\"] = \"A Watchful Peace (3)\",[\"type\"] = \"event\"},{[\"name\"] = \"Dig Deep (4)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Favor of the Moon (1)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Favor of the Sun (1)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Purifying Corruption (4)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Hallow (3)\",[\"type\"] = \"event\"},{[\"name\"] = \"Holy Spear (5)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Ancestral Knowledge (3)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Ariadne's Twine (3)\",[\"type\"] = \"asset\"},{[\"name\"] = \".25 Automatic (2)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Justify the Means (3)\",[\"type\"] = \"skill\"},{[\"name\"] = \"Lucky Dice (3)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Rite of Equilibrium (5)\",[\"type\"] = \"event\"},{[\"name\"] = \"Jacob Morrison (3)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Shrine of the Moirai (3)\",[\"type\"] = \"event\"},{[\"name\"] = \"Sweeping Kick (1)\",[\"type\"] = \"event\"},{[\"name\"] = \"Butterfly Swords (2)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Written in the Stars\",[\"type\"] = \"event\"},{[\"name\"] = \"Dragon Pole\",[\"type\"] = \"asset\"},{[\"name\"] = \"Astronomical Atlas (3)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Strength in Numbers (1)\",[\"type\"] = \"skill\"},{[\"name\"] = \"Medical Student\",[\"type\"] = \"asset\"},{[\"name\"] = \"Michael Leigh (5)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Divination (1)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Blur (1)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Physical Training (2)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Dynamite Blast (2)\",[\"type\"] = \"event\"},{[\"name\"] = \"Hyperawareness (2)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Barricade (3)\",[\"type\"] = \"event\"},{[\"name\"] = \"Hard Knocks (2)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Hot Streak (2)\",[\"type\"] = \"event\"},{[\"name\"] = \"Arcane Studies (2)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Mind Wipe (3)\",[\"type\"] = \"event\"},{[\"name\"] = \"Dig Deep (2)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Rabbit's Foot (3)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Bandolier (2)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Blackjack (2)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Preposterous Sketches (2)\",[\"type\"] = \"event\"},{[\"name\"] = \"Strange Solution (4)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Contraband (2)\",[\"type\"] = \"event\"},{[\"name\"] = \"Think on Your Feet (2)\",[\"type\"] = \"event\"},{[\"name\"] = \"Rite of Seeking (2)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Clarity of Mind (3)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Oops! (2)\",[\"type\"] = \"event\"},{[\"name\"] = \"Rise to the Occasion (3)\",[\"type\"] = \"skill\"},{[\"name\"] = \"Through the Gates\",[\"type\"] = \"treachery\"},{[\"name\"] = \".32 Colt (2)\",[\"type\"] = \"asset\"},{[\"name\"] = \"\\\"Eat lead!\\\"\",[\"type\"] = \"event\"},{[\"name\"] = \"Logical Reasoning (4)\",[\"type\"] = \"event\"},{[\"name\"] = \"Archaic Glyphs (3)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Stealth (3)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Suggestion (1)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Alchemical Transmutation (2)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Storm of Spirits (3)\",[\"type\"] = \"event\"},{[\"name\"] = \"Lantern (2)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Gravedigger's Shovel (2)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Unspeakable Oath (Bloodthirst)\",[\"type\"] = \"treachery\"},{[\"name\"] = \"Unspeakable Oath (Curiosity)\",[\"type\"] = \"treachery\"},{[\"name\"] = \"Unspeakable Oath (Cowardice)\",[\"type\"] = \"treachery\"},{[\"name\"] = \"Blood Eclipse (1)\",[\"type\"] = \"event\"},{[\"name\"] = \"Survival Knife (2)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Truth from Fiction (2)\",[\"type\"] = \"event\"},{[\"name\"] = \"Ancient Stone (4)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Decorated Skull (3)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Colt Vest Pocket (2)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Mists of R'lyeh (2)\",[\"type\"] = \"asset\"},{[\"name\"] = \"The Chthonian Stone (3)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Alter Fate (1)\",[\"type\"] = \"event\"},{[\"name\"] = \"On Your Own (3)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Backpack (2)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Dendromorphosis\",[\"type\"] = \"asset\"},{[\"name\"] = \"Offer You Cannot Refuse\",[\"type\"] = \"treachery\"},{[\"name\"] = \"Fine Print\",[\"type\"] = \"treachery\"},{[\"name\"] = \"Sell Your Soul\",[\"type\"] = \"treachery\"},{[\"name\"] = \"The Star • XVII (3)\",[\"type\"] = \"asset\"},{[\"name\"] = \"The Hierophant • V (3)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Moon Pendant (2)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Nathaniel Cho\",[\"type\"] = \"investigator\"},{[\"name\"] = \"Randall Cho\",[\"type\"] = \"asset\"},{[\"name\"] = \"Tommy Malloy\",[\"type\"] = \"enemy\"},{[\"name\"] = \"Self-Destructive\",[\"type\"] = \"treachery\"},{[\"name\"] = \"Boxing Gloves\",[\"type\"] = \"asset\"},{[\"name\"] = \"Flesh Ward\",[\"type\"] = \"asset\"},{[\"name\"] = \"Grete Wagner\",[\"type\"] = \"asset\"},{[\"name\"] = \"Physical Training\",[\"type\"] = \"asset\"},{[\"name\"] = \"Relentless\",[\"type\"] = \"asset\"},{[\"name\"] = \"Safeguard\",[\"type\"] = \"asset\"},{[\"name\"] = \"Clean Them Out\",[\"type\"] = \"event\"},{[\"name\"] = \"Counterpunch\",[\"type\"] = \"event\"},{[\"name\"] = \"Dodge\",[\"type\"] = \"event\"},{[\"name\"] = \"\\\"Get over here!\\\"\",[\"type\"] = \"event\"},{[\"name\"] = \"Glory\",[\"type\"] = \"event\"},{[\"name\"] = \"Monster Slayer\",[\"type\"] = \"event\"},{[\"name\"] = \"One-Two Punch\",[\"type\"] = \"event\"},{[\"name\"] = \"Stand Together\",[\"type\"] = \"event\"},{[\"name\"] = \"Vicious Blow\",[\"type\"] = \"skill\"},{[\"name\"] = \"Evidence! (1)\",[\"type\"] = \"event\"},{[\"name\"] = \"Galvanize (1)\",[\"type\"] = \"event\"},{[\"name\"] = \"Counterpunch (2)\",[\"type\"] = \"event\"},{[\"name\"] = \"\\\"Get over here!\\\" (2)\",[\"type\"] = \"event\"},{[\"name\"] = \"Lesson Learned (2)\",[\"type\"] = \"event\"},{[\"name\"] = \"Mano a Mano (2)\",[\"type\"] = \"event\"},{[\"name\"] = \"Overpower (2)\",[\"type\"] = \"skill\"},{[\"name\"] = \"Boxing Gloves (3)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Grete Wagner (3)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Dynamite Blast (3)\",[\"type\"] = \"event\"},{[\"name\"] = \"Taunt (3)\",[\"type\"] = \"event\"},{[\"name\"] = \"Physical Training (4)\",[\"type\"] = \"asset\"},{[\"name\"] = \"One-Two Punch (5)\",[\"type\"] = \"event\"},{[\"name\"] = \"Harvey Walters\",[\"type\"] = \"investigator\"},{[\"name\"] = \"Vault of Knowledge\",[\"type\"] = \"asset\"},{[\"name\"] = \"Thrice-Damned Curiosity\",[\"type\"] = \"treachery\"},{[\"name\"] = \"Obsessive\",[\"type\"] = \"treachery\"},{[\"name\"] = \"Arcane Enlightenment\",[\"type\"] = \"asset\"},{[\"name\"] = \"Celaeno Fragments\",[\"type\"] = \"asset\"},{[\"name\"] = \"Disc of Itzamna\",[\"type\"] = \"asset\"},{[\"name\"] = \"Encyclopedia\",[\"type\"] = \"asset\"},{[\"name\"] = \"Feed the Mind\",[\"type\"] = \"asset\"},{[\"name\"] = \"Forbidden Tome\",[\"type\"] = \"asset\"},{[\"name\"] = \"Higher Education\",[\"type\"] = \"asset\"},{[\"name\"] = \"Laboratory Assistant\",[\"type\"] = \"asset\"},{[\"name\"] = \"Whitton Greene\",[\"type\"] = \"asset\"},{[\"name\"] = \"Burning the Midnight Oil\",[\"type\"] = \"event\"},{[\"name\"] = \"Cryptic Writings\",[\"type\"] = \"event\"},{[\"name\"] = \"Extensive Research\",[\"type\"] = \"event\"},{[\"name\"] = \"Occult Invocation\",[\"type\"] = \"event\"},{[\"name\"] = \"Preposterous Sketches\",[\"type\"] = \"event\"},{[\"name\"] = \"Deduction\",[\"type\"] = \"skill\"},{[\"name\"] = \"Library Docent (1)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Glimpse the Unthinkable (1)\",[\"type\"] = \"event\"},{[\"name\"] = \"Esoteric Atlas (2)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Whitton Greene (2)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Cryptic Writings (2)\",[\"type\"] = \"event\"},{[\"name\"] = \"\\\"I've got a plan!\\\" (2)\",[\"type\"] = \"event\"},{[\"name\"] = \"Mind over Matter (2)\",[\"type\"] = \"event\"},{[\"name\"] = \"Seeking Answers (2)\",[\"type\"] = \"event\"},{[\"name\"] = \"Perception (2)\",[\"type\"] = \"skill\"},{[\"name\"] = \"Forbidden Tome (3)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Forbidden Tome (3)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Farsight (4)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Miskatonic Archaeology Funding (4)\",[\"type\"] = \"asset\"},{[\"name\"] = \"The Necronomicon (5)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Winifred Habbamock\",[\"type\"] = \"investigator\"},{[\"name\"] = \"Anything You Can Do, Better\",[\"type\"] = \"skill\"},{[\"name\"] = \"Arrogance\",[\"type\"] = \"skill\"},{[\"name\"] = \"Reckless\",[\"type\"] = \"skill\"},{[\"name\"] = \"Lockpicks\",[\"type\"] = \"asset\"},{[\"name\"] = \"Mauser C96\",[\"type\"] = \"asset\"},{[\"name\"] = \"Switchblade\",[\"type\"] = \"asset\"},{[\"name\"] = \"Lucky Cigarette Case\",[\"type\"] = \"asset\"},{[\"name\"] = \"Lonnie Ritter\",[\"type\"] = \"asset\"},{[\"name\"] = \"Leather Jacket\",[\"type\"] = \"asset\"},{[\"name\"] = \"Streetwise\",[\"type\"] = \"asset\"},{[\"name\"] = \"Cheap Shot\",[\"type\"] = \"event\"},{[\"name\"] = \"Daring Maneuver\",[\"type\"] = \"event\"},{[\"name\"] = \"Slip Away\",[\"type\"] = \"event\"},{[\"name\"] = \"Pilfer\",[\"type\"] = \"event\"},{[\"name\"] = \"Sneak By\",[\"type\"] = \"event\"},{[\"name\"] = \"Nimble\",[\"type\"] = \"skill\"},{[\"name\"] = \"Daredevil\",[\"type\"] = \"skill\"},{[\"name\"] = \"Opportunist\",[\"type\"] = \"skill\"},{[\"name\"] = \"Liquid Courage (1)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Mauser C96 (2)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Daring Maneuver (2)\",[\"type\"] = \"event\"},{[\"name\"] = \"Cheap Shot (2)\",[\"type\"] = \"event\"},{[\"name\"] = \"Slip Away (2)\",[\"type\"] = \"event\"},{[\"name\"] = \"Manual Dexterity (2)\",[\"type\"] = \"skill\"},{[\"name\"] = \"Lucky Cigarette Case (3)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Sharpshooter (3)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Pilfer (3)\",[\"type\"] = \"event\"},{[\"name\"] = \"Backstab (3)\",[\"type\"] = \"event\"},{[\"name\"] = \"Copycat (3)\",[\"type\"] = \"skill\"},{[\"name\"] = \"Beretta M1918 (4)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Chuck Fergus (5)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Jacqueline Fine\",[\"type\"] = \"investigator\"},{[\"name\"] = \"Arbiter of Fates\",[\"type\"] = \"asset\"},{[\"name\"] = \"Dark Future\",[\"type\"] = \"treachery\"},{[\"name\"] = \"Nihilism\",[\"type\"] = \"treachery\"},{[\"name\"] = \"Ritual Candles\",[\"type\"] = \"asset\"},{[\"name\"] = \"Scrying Mirror\",[\"type\"] = \"asset\"},{[\"name\"] = \"Azure Flame\",[\"type\"] = \"asset\"},{[\"name\"] = \"Clairvoyance\",[\"type\"] = \"asset\"},{[\"name\"] = \"Ineffable Truth\",[\"type\"] = \"asset\"},{[\"name\"] = \"Familiar Spirit\",[\"type\"] = \"asset\"},{[\"name\"] = \"Crystal Pendulum\",[\"type\"] = \"asset\"},{[\"name\"] = \"Robes of Endless Night\",[\"type\"] = \"asset\"},{[\"name\"] = \"Astral Travel\",[\"type\"] = \"event\"},{[\"name\"] = \"Hypnotic Gaze\",[\"type\"] = \"event\"},{[\"name\"] = \"Parallel Fates\",[\"type\"] = \"event\"},{[\"name\"] = \"Voice of Ra\",[\"type\"] = \"event\"},{[\"name\"] = \"Dark Prophecy\",[\"type\"] = \"event\"},{[\"name\"] = \"Defiance\",[\"type\"] = \"skill\"},{[\"name\"] = \"Prescient\",[\"type\"] = \"skill\"},{[\"name\"] = \"Eldritch Inspiration (1)\",[\"type\"] = \"event\"},{[\"name\"] = \"Grotesque Statue (2)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Robes of Endless Night (2)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Hypnotic Gaze (2)\",[\"type\"] = \"event\"},{[\"name\"] = \"Guts (2)\",[\"type\"] = \"skill\"},{[\"name\"] = \"Azure Flame (3)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Clairvoyance (3)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Ineffable Truth (3)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Arcane Studies (4)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Recharge (4)\",[\"type\"] = \"event\"},{[\"name\"] = \"Azure Flame (5)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Clairvoyance (5)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Ineffable Truth (5)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Stella Clark\",[\"type\"] = \"investigator\"},{[\"name\"] = \"Neither Rain nor Snow\",[\"type\"] = \"skill\"},{[\"name\"] = \"Called by the Mists\",[\"type\"] = \"treachery\"},{[\"name\"] = \"Atychiphobia\",[\"type\"] = \"treachery\"},{[\"name\"] = \".18 Derringer\",[\"type\"] = \"asset\"},{[\"name\"] = \"Grimm's Fairy Tales\",[\"type\"] = \"asset\"},{[\"name\"] = \"Old Keyring\",[\"type\"] = \"asset\"},{[\"name\"] = \"Granny Orne\",[\"type\"] = \"asset\"},{[\"name\"] = \"Mysterious Raven\",[\"type\"] = \"asset\"},{[\"name\"] = \"Rabbit's Foot\",[\"type\"] = \"asset\"},{[\"name\"] = \"Scrapper\",[\"type\"] = \"asset\"},{[\"name\"] = \"Will to Survive\",[\"type\"] = \"event\"},{[\"name\"] = \"A Test of Will\",[\"type\"] = \"event\"},{[\"name\"] = \"Dumb Luck\",[\"type\"] = \"event\"},{[\"name\"] = \"Grit Your Teeth\",[\"type\"] = \"event\"},{[\"name\"] = \"Live and Learn\",[\"type\"] = \"event\"},{[\"name\"] = \"\\\"Look what I found!\\\"\",[\"type\"] = \"event\"},{[\"name\"] = \"Oops!\",[\"type\"] = \"event\"},{[\"name\"] = \"Take Heart\",[\"type\"] = \"skill\"},{[\"name\"] = \"Cherished Keepsake (1)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Leather Coat (1)\",[\"type\"] = \"asset\"},{[\"name\"] = \".18 Derringer (2)\",[\"type\"] = \"asset\"},{[\"name\"] = \"A Test of Will (2)\",[\"type\"] = \"event\"},{[\"name\"] = \"\\\"Look what I found!\\\" (2)\",[\"type\"] = \"event\"},{[\"name\"] = \"Dumb Luck (2)\",[\"type\"] = \"event\"},{[\"name\"] = \"Unexpected Courage (2)\",[\"type\"] = \"skill\"},{[\"name\"] = \"Granny Orne (3)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Lucky! (3)\",[\"type\"] = \"event\"},{[\"name\"] = \"Chainsaw (4)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Quick Learner (4)\",[\"type\"] = \"asset\"},{[\"name\"] = \"Déjà Vu (5)\",[\"type\"] = \"asset\"},{[\"name\"] = \"To the Dreamlands\",[\"type\"] = \"story\"},{[\"name\"] = \"Fate of the Dreamers\",[\"type\"] = \"story\"},{[\"name\"] = \"Prisoners of Conquest\",[\"type\"] = \"story\"},{[\"name\"] = \"Ruins of Sarkomand\",[\"type\"] = \"story\"},{[\"name\"] = \"Effigy of Nodens\",[\"type\"] = \"story\"},{[\"name\"] = \"Usurp the Night\",[\"type\"] = \"story\"},{[\"name\"] = \"The Translator's Evidence\",[\"type\"] = \"story\"},{[\"name\"] = \"The Supplicant's Evidence\",[\"type\"] = \"story\"},{[\"name\"] = \"The Priestess's Evidence\",[\"type\"] = \"story\"},{[\"name\"] = \"The Salesman's Evidence\",[\"type\"] = \"story\"},{[\"name\"] = \"The Assassin's Evidence\",[\"type\"] = \"story\"},{[\"name\"] = \"The Professor's Evidence\",[\"type\"] = \"story\"},{[\"name\"] = \"Daisy Walker\",[\"type\"] = \"investigator\"},{[\"name\"] = \"Daisy's Tote Bag\",[\"type\"] = \"asset\"},{[\"name\"] = \"The Necronomicon\",[\"type\"] = \"asset\"},{[\"name\"] = \"\\\"Skids\\\" O'Toole\",[\"type\"] = \"investigator\"},{[\"name\"] = \"On the Lam\",[\"type\"] = \"event\"},{[\"name\"] = \"Hospital Debts\",[\"type\"] = \"treachery\"},{[\"name\"] = \"Agnes Baker\",[\"type\"] = \"investigator\"},{[\"name\"] = \"Heirloom of Hyperborea\",[\"type\"] = \"asset\"},{[\"name\"] = \"Dark Memory\",[\"type\"] = \"event\"},{[\"name\"] = \"Triumph and Subjugation\",[\"type\"] = \"story\"},{[\"name\"] = \"Jenny Barnes\",[\"type\"] = \"investigator\"},{[\"name\"] = \"Green Man Medallion\",[\"type\"] = \"asset\"},{[\"name\"] = \"Sacrificial Beast\",[\"type\"] = \"enemy\"},{[\"name\"] = \"Roland Banks\",[\"type\"] = \"investigator\"},{[\"name\"] = \"Mysteries Remain\",[\"type\"] = \"event\"},{[\"name\"] = \"The Dirge of Reason\",[\"type\"] = \"treachery\"},{[\"name\"] = \"Norman Withers\",[\"type\"] = \"investigator\"},{[\"name\"] = \"Split the Angle\",[\"type\"] = \"asset\"},{[\"name\"] = \"Vengeful Hound\",[\"type\"] = \"enemy\"},{[\"name\"] = \"Carolyn Fern\",[\"type\"] = \"investigator\"},{[\"name\"] = \"Foolishness\",[\"type\"] = \"asset\"},{[\"name\"] = \"To Fight the Black Wind\",[\"type\"] = \"treachery\"},{[\"name\"] = \"Silas Marsh\",[\"type\"] = \"investigator\"},{[\"name\"] = \"Nautical Prowess\",[\"type\"] = \"skill\"},{[\"name\"] = \"Dreams of the Deep\",[\"type\"] = \"skill\"},{[\"name\"] = \"Dexter Drake\",[\"type\"] = \"investigator\"},{[\"name\"] = \"Molly Maxwell\",[\"type\"] = \"asset\"},{[\"name\"] = \"Yaztaroth\",[\"type\"] = \"treachery\"},{[\"name\"] = \"Gloria Goldberg\",[\"type\"] = \"investigator\"},{[\"name\"] = \"Ruth Westmacott\",[\"type\"] = \"asset\"},{[\"name\"] = \"Liber Omnium Finium\",[\"type\"] = \"treachery\"},{[\"name\"] = \"Marie Lambeau\",[\"type\"] = \"investigator\"},{[\"name\"] = \"Mystifying Song\",[\"type\"] = \"event\"},{[\"name\"] = \"Baron Samedi\",[\"type\"] = \"asset\"}}\r\nend",
"LuaScriptState": "",
"XmlUI": ""
},
"6": {
"GUID": "13f090",
"Name": "Custom_Model_Bag",
"Transform": {
"posX": -10.9693146,
"posY": 1.14969015,
"posZ": -27.9869823,
"rotX": -1.80075276E-07,
"rotY": 180.001556,
"rotZ": -2.26067669E-07,
"scaleX": 0.725000262,
"scaleY": 0.725000262,
"scaleZ": 0.725000262
},
"Nickname": "Astronomical Atlas Helper",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.3647048,
"g": 0.333332241,
"b": 0.576470554
},
"LayoutGroupSortIndex": 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,
"Number": 0,
"CustomMesh": {
"MeshURL": "http://cloud-3.steamusercontent.com/ugc/1754695414379239413/0B8E68F3B7311DCF2138FB701F78D1D93FBA4CAB/",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/1754695853007989004/9153BC204FC707AE564ECFAC063A11CB8C2B5D1E/",
"NormalURL": "",
"ColliderURL": "http://cloud-3.steamusercontent.com/ugc/1754695414379239413/0B8E68F3B7311DCF2138FB701F78D1D93FBA4CAB/",
"Convex": true,
"MaterialIndex": 1,
"TypeIndex": 6,
"CastShadows": true
},
"Bag": {
"Order": 0
},
"LuaScript": "function onload(saved_data)\r\n cardsInBag = {}\r\n memoizedCards = {}\r\n cardJson = loadCards()\r\nend\r\n\r\nfunction onObjectEnterContainer(container, object)\r\n if container == self then\r\n --use previously-found cards for faster performace\r\n if memoizedCards[object.getName()] then\r\n table.insert(cardsInBag, {name = object.getName() .. memoizedCards[object.getName()], id = object.getGUID()})\r\n recreateButtons()\r\n else\r\n findCard(object)\r\n end\r\n end\r\nend\r\n\r\nfunction onObjectLeaveContainer(container, object)\r\n if container == self then\r\n removeCardByGUID(cardsInBag, object.getGUID())\r\n recreateButtons()\r\n end\r\nend\r\n\r\nfunction findCard(object)\r\n local icons = ''\r\n\r\n for _, card in pairs (cardJson) do\r\n if (card.name == object.getName()) then\r\n local skillIcons = getIcons(card.skillIcons)\r\n if skillIcons ~= '' then\r\n icons = '\\n' .. skillIcons\r\n end\r\n break\r\n end\r\n end\r\n\r\n --memoize result\r\n memoizedCards[object.getName()] = icons\r\n\r\n table.insert(cardsInBag, {name = object.getName() .. icons, id = object.getGUID()})\r\n recreateButtons()\r\nend\r\n\r\nfunction getIcons(skillIcons)\r\n local icons = ''\r\n\r\n for icon, value in pairs (skillIcons) do\r\n icons = icons .. icon .. ': ' .. value .. ' '\r\n end\r\n\r\n return icons\r\nend\r\n\r\nfunction recreateButtons()\r\n self.clearButtons()\r\n verticalPosition = 1.5\r\n\r\n for _, card in ipairs(cardsInBag) do\r\n if _G['removeCard' .. card.id] == nil then\r\n _G['removeCard' .. card.id] = function()\r\n removeCard(card.id)\r\n end\r\n end\r\n\r\n self.createButton({\r\n label = card.name,\r\n icon = 'combatIcon',\r\n click_function = \"removeCard\" .. card.id,\r\n function_owner = self,\r\n position = {0,0,verticalPosition},\r\n height = 225,\r\n width = 1200,\r\n font_size = 75,\r\n color = {1,1,1},\r\n font_color = {0,0,0}\r\n })\r\n\r\n verticalPosition = verticalPosition - 0.5\r\n end\r\n\r\n countLabel = #cardsInBag == 0 and '' or #cardsInBag\r\n\r\n self.createButton({\r\n label = countLabel,\r\n click_function = 'nothing',\r\n function_owner = self,\r\n position = {0,0,-1.25},\r\n width = 0,\r\n height = 0,\r\n font_size = 225,\r\n font_color = {1,1,1}\r\n })\r\nend\r\n\r\nfunction nothing()\r\nend\r\n\r\nfunction removeCard(cardGUID)\r\n self.takeObject({\r\n guid = cardGUID,\r\n rotation = self.getRotation(),\r\n position = self.getPosition() + Vector(0,0.5,0),\r\n callback_function = function(obj)\r\n obj.resting = true\r\n end\r\n })\r\nend\r\n\r\nfunction removeCardByGUID(bag, guid)\r\n local idx = nil\r\n\r\n for i, v in ipairs (bag) do\r\n if (v.id == guid) then\r\n idx = i\r\n end\r\n end\r\n\r\n if idx ~= nil then\r\n table.remove(cardsInBag, idx)\r\n end\r\nend\r\n\r\nfunction loadCards()\r\n return {{[\"name\"] = \"Random Basic Weakness\",[\"skillIcons\"] = {}},{[\"name\"] = \"Roland Banks\",[\"skillIcons\"] = {[\"Will\"] = 3,[\"Agility\"] = 2,[\"Combat\"] = 4,[\"Intellect\"] = 3}},{[\"name\"] = \"Daisy Walker\",[\"skillIcons\"] = {[\"Will\"] = 3,[\"Agility\"] = 2,[\"Combat\"] = 2,[\"Intellect\"] = 5}},{[\"name\"] = \"\\\"Skids\\\" O'Toole\",[\"skillIcons\"] = {[\"Will\"] = 2,[\"Agility\"] = 4,[\"Combat\"] = 3,[\"Intellect\"] = 3}},{[\"name\"] = \"Agnes Baker\",[\"skillIcons\"] = {[\"Will\"] = 5,[\"Agility\"] = 3,[\"Combat\"] = 2,[\"Intellect\"] = 2}},{[\"name\"] = \"Wendy Adams\",[\"skillIcons\"] = {[\"Will\"] = 4,[\"Agility\"] = 4,[\"Combat\"] = 1,[\"Intellect\"] = 3}},{[\"name\"] = \"Roland's .38 Special\",[\"skillIcons\"] = {[\"Wild\"] = 1,[\"Agility\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Cover Up\",[\"skillIcons\"] = {}},{[\"name\"] = \"Daisy's Tote Bag\",[\"skillIcons\"] = {[\"Wild\"] = 1,[\"Will\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"The Necronomicon\",[\"skillIcons\"] = {}},{[\"name\"] = \"On the Lam\",[\"skillIcons\"] = {[\"Wild\"] = 2,[\"Agility\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Hospital Debts\",[\"skillIcons\"] = {}},{[\"name\"] = \"Heirloom of Hyperborea\",[\"skillIcons\"] = {[\"Wild\"] = 1,[\"Will\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Dark Memory\",[\"skillIcons\"] = {}},{[\"name\"] = \"Wendy's Amulet\",[\"skillIcons\"] = {[\"Wild\"] = 2}},{[\"name\"] = \"Abandoned and Alone\",[\"skillIcons\"] = {}},{[\"name\"] = \".45 Automatic\",[\"skillIcons\"] = {[\"Agility\"] = 1}},{[\"name\"] = \"Physical Training\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Beat Cop\",[\"skillIcons\"] = {[\"Combat\"] = 1}},{[\"name\"] = \"First Aid\",[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Machete\",[\"skillIcons\"] = {[\"Combat\"] = 1}},{[\"name\"] = \"Guard Dog\",[\"skillIcons\"] = {[\"Combat\"] = 1}},{[\"name\"] = \"Evidence!\",[\"skillIcons\"] = {[\"Intellect\"] = 2}},{[\"name\"] = \"Dodge\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Agility\"] = 1}},{[\"name\"] = \"Dynamite Blast\",[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Vicious Blow\",[\"skillIcons\"] = {[\"Combat\"] = 1}},{[\"name\"] = \"Extra Ammunition (1)\",[\"skillIcons\"] = {[\"Intellect\"] = 1}},{[\"name\"] = \"Police Badge (2)\",[\"skillIcons\"] = {[\"Wild\"] = 1,[\"Will\"] = 1}},{[\"name\"] = \"Beat Cop (2)\",[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Shotgun (4)\",[\"skillIcons\"] = {[\"Combat\"] = 2}},{[\"name\"] = \"Magnifying Glass\",[\"skillIcons\"] = {[\"Intellect\"] = 1}},{[\"name\"] = \"Old Book of Lore\",[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Research Librarian\",[\"skillIcons\"] = {[\"Agility\"] = 1}},{[\"name\"] = \"Dr. Milan Christopher\",[\"skillIcons\"] = {[\"Intellect\"] = 1}},{[\"name\"] = \"Hyperawareness\",[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Medical Texts\",[\"skillIcons\"] = {[\"Combat\"] = 1}},{[\"name\"] = \"Mind over Matter\",[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Working a Hunch\",[\"skillIcons\"] = {[\"Intellect\"] = 2}},{[\"name\"] = \"Barricade\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Agility\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Deduction\",[\"skillIcons\"] = {[\"Intellect\"] = 1}},{[\"name\"] = \"Magnifying Glass (1)\",[\"skillIcons\"] = {[\"Intellect\"] = 1}},{[\"name\"] = \"Disc of Itzamna (2)\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Combat\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Encyclopedia (2)\",[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Cryptic Research (4)\",[\"skillIcons\"] = {}},{[\"name\"] = \"Switchblade\",[\"skillIcons\"] = {[\"Agility\"] = 1}},{[\"name\"] = \"Burglary\",[\"skillIcons\"] = {[\"Intellect\"] = 1}},{[\"name\"] = \"Pickpocketing\",[\"skillIcons\"] = {[\"Agility\"] = 1}},{[\"name\"] = \".41 Derringer\",[\"skillIcons\"] = {[\"Combat\"] = 1}},{[\"name\"] = \"Leo De Luca\",[\"skillIcons\"] = {[\"Intellect\"] = 1}},{[\"name\"] = \"Hard Knocks\",[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Elusive\",[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Backstab\",[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Sneak Attack\",[\"skillIcons\"] = {[\"Combat\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Opportunist\",[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Leo De Luca (1)\",[\"skillIcons\"] = {[\"Intellect\"] = 1}},{[\"name\"] = \"Cat Burglar (1)\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Agility\"] = 1}},{[\"name\"] = \"Sure Gamble (3)\",[\"skillIcons\"] = {}},{[\"name\"] = \"Hot Streak (4)\",[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Forbidden Knowledge\",[\"skillIcons\"] = {[\"Intellect\"] = 1}},{[\"name\"] = \"Holy Rosary\",[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Shrivelling\",[\"skillIcons\"] = {[\"Combat\"] = 1}},{[\"name\"] = \"Scrying\",[\"skillIcons\"] = {[\"Intellect\"] = 1}},{[\"name\"] = \"Arcane Studies\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Arcane Initiate\",[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Drawn to the Flame\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Ward of Protection\",[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Blinding Light\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Agility\"] = 1}},{[\"name\"] = \"Fearless\",[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Mind Wipe (1)\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Blinding Light (2)\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Agility\"] = 1}},{[\"name\"] = \"Book of Shadows (3)\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Grotesque Statue (4)\",[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Leather Coat\",[\"skillIcons\"] = {[\"Combat\"] = 1}},{[\"name\"] = \"Scavenging\",[\"skillIcons\"] = {[\"Intellect\"] = 1}},{[\"name\"] = \"Baseball Bat\",[\"skillIcons\"] = {[\"Combat\"] = 1}},{[\"name\"] = \"Rabbit's Foot\",[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Stray Cat\",[\"skillIcons\"] = {[\"Agility\"] = 1}},{[\"name\"] = \"Dig Deep\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Agility\"] = 1}},{[\"name\"] = \"Cunning Distraction\",[\"skillIcons\"] = {[\"Wild\"] = 1,[\"Will\"] = 1}},{[\"name\"] = \"\\\"Look what I found!\\\"\",[\"skillIcons\"] = {[\"Intellect\"] = 2}},{[\"name\"] = \"Lucky!\",[\"skillIcons\"] = {}},{[\"name\"] = \"Survival Instinct\",[\"skillIcons\"] = {[\"Agility\"] = 1}},{[\"name\"] = \"Aquinnah (1)\",[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Close Call (2)\",[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Lucky! (2)\",[\"skillIcons\"] = {}},{[\"name\"] = \"Will to Survive (3)\",[\"skillIcons\"] = {[\"Wild\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Knife\",[\"skillIcons\"] = {[\"Combat\"] = 1}},{[\"name\"] = \"Flashlight\",[\"skillIcons\"] = {[\"Intellect\"] = 1}},{[\"name\"] = \"Emergency Cache\",[\"skillIcons\"] = {}},{[\"name\"] = \"Guts\",[\"skillIcons\"] = {[\"Will\"] = 2}},{[\"name\"] = \"Perception\",[\"skillIcons\"] = {[\"Intellect\"] = 2}},{[\"name\"] = \"Overpower\",[\"skillIcons\"] = {[\"Combat\"] = 2}},{[\"name\"] = \"Manual Dexterity\",[\"skillIcons\"] = {[\"Agility\"] = 2}},{[\"name\"] = \"Unexpected Courage\",[\"skillIcons\"] = {[\"Wild\"] = 2}},{[\"name\"] = \"Bulletproof Vest (3)\",[\"skillIcons\"] = {[\"Wild\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Elder Sign Amulet (3)\",[\"skillIcons\"] = {[\"Wild\"] = 1,[\"Will\"] = 1}},{[\"name\"] = \"Amnesia\",[\"skillIcons\"] = {}},{[\"name\"] = \"Paranoia\",[\"skillIcons\"] = {}},{[\"name\"] = \"Haunted\",[\"skillIcons\"] = {}},{[\"name\"] = \"Psychosis\",[\"skillIcons\"] = {}},{[\"name\"] = \"Hypochondria\",[\"skillIcons\"] = {}},{[\"name\"] = \"Mob Enforcer\",[\"skillIcons\"] = {}},{[\"name\"] = \"Silver Twilight Acolyte\",[\"skillIcons\"] = {}},{[\"name\"] = \"Stubborn Detective\",[\"skillIcons\"] = {}},{[\"name\"] = \"Zoey Samaras\",[\"skillIcons\"] = {[\"Will\"] = 4,[\"Agility\"] = 2,[\"Combat\"] = 4,[\"Intellect\"] = 2}},{[\"name\"] = \"Rex Murphy\",[\"skillIcons\"] = {[\"Will\"] = 3,[\"Agility\"] = 3,[\"Combat\"] = 2,[\"Intellect\"] = 4}},{[\"name\"] = \"Jenny Barnes\",[\"skillIcons\"] = {[\"Will\"] = 3,[\"Agility\"] = 3,[\"Combat\"] = 3,[\"Intellect\"] = 3}},{[\"name\"] = \"Jim Culver\",[\"skillIcons\"] = {[\"Will\"] = 4,[\"Agility\"] = 2,[\"Combat\"] = 3,[\"Intellect\"] = 3}},{[\"name\"] = \"\\\"Ashcan\\\" Pete\",[\"skillIcons\"] = {[\"Will\"] = 4,[\"Agility\"] = 3,[\"Combat\"] = 2,[\"Intellect\"] = 2}},{[\"name\"] = \"Zoey's Cross\",[\"skillIcons\"] = {[\"Wild\"] = 1,[\"Combat\"] = 2}},{[\"name\"] = \"Smite the Wicked\",[\"skillIcons\"] = {}},{[\"name\"] = \"Search for the Truth\",[\"skillIcons\"] = {[\"Wild\"] = 1,[\"Intellect\"] = 2}},{[\"name\"] = \"Rex's Curse\",[\"skillIcons\"] = {}},{[\"name\"] = \"Jenny's Twin .45s\",[\"skillIcons\"] = {[\"Wild\"] = 1,[\"Agility\"] = 2}},{[\"name\"] = \"Searching for Izzie\",[\"skillIcons\"] = {}},{[\"name\"] = \"Jim's Trumpet\",[\"skillIcons\"] = {[\"Wild\"] = 1,[\"Will\"] = 2}},{[\"name\"] = \"Final Rhapsody\",[\"skillIcons\"] = {}},{[\"name\"] = \"Duke\",[\"skillIcons\"] = {}},{[\"name\"] = \"Wracked by Nightmares\",[\"skillIcons\"] = {}},{[\"name\"] = \"Blackjack\",[\"skillIcons\"] = {[\"Combat\"] = 1}},{[\"name\"] = \"Taunt\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Teamwork\",[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Taunt (2)\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Agility\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Laboratory Assistant\",[\"skillIcons\"] = {[\"Intellect\"] = 1}},{[\"name\"] = \"Strange Solution\",[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Shortcut\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Agility\"] = 1}},{[\"name\"] = \"Seeking Answers\",[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Liquid Courage\",[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Think on Your Feet\",[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Double or Nothing\",[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Hired Muscle (1)\",[\"skillIcons\"] = {[\"Combat\"] = 1}},{[\"name\"] = \"Rite of Seeking\",[\"skillIcons\"] = {[\"Intellect\"] = 1}},{[\"name\"] = \"Ritual Candles\",[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Clarity of Mind\",[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Bind Monster (2)\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Fire Axe\",[\"skillIcons\"] = {[\"Combat\"] = 1}},{[\"name\"] = \"Peter Sylvestre\",[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Bait and Switch\",[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Peter Sylvestre (2)\",[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Kukri\",[\"skillIcons\"] = {[\"Combat\"] = 1}},{[\"name\"] = \"Indebted\",[\"skillIcons\"] = {}},{[\"name\"] = \"Internal Injury\",[\"skillIcons\"] = {}},{[\"name\"] = \"Chronophobia\",[\"skillIcons\"] = {}},{[\"name\"] = \"Emergency Aid\",[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Brother Xavier (1)\",[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"\\\"I've got a plan!\\\"\",[\"skillIcons\"] = {[\"Combat\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Pathfinder (1)\",[\"skillIcons\"] = {[\"Agility\"] = 1}},{[\"name\"] = \"Contraband\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Adaptable (1)\",[\"skillIcons\"] = {}},{[\"name\"] = \"Delve Too Deep\",[\"skillIcons\"] = {}},{[\"name\"] = \"Song of the Dead (2)\",[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Oops!\",[\"skillIcons\"] = {[\"Combat\"] = 2}},{[\"name\"] = \"Fire Extinguisher (1)\",[\"skillIcons\"] = {[\"Agility\"] = 1}},{[\"name\"] = \"Flare (1)\",[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Smoking Pipe\",[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Painkillers\",[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Bandolier\",[\"skillIcons\"] = {[\"Combat\"] = 1}},{[\"name\"] = \"Stand Together (3)\",[\"skillIcons\"] = {[\"Will\"] = 2}},{[\"name\"] = \"Art Student\",[\"skillIcons\"] = {[\"Intellect\"] = 1}},{[\"name\"] = \"Deduction (2)\",[\"skillIcons\"] = {[\"Intellect\"] = 2}},{[\"name\"] = \"\\\"I'm outta here!\\\"\",[\"skillIcons\"] = {[\"Agility\"] = 2}},{[\"name\"] = \"Switchblade (2)\",[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Hypnotic Gaze\",[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Shrivelling (3)\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Newspaper\",[\"skillIcons\"] = {[\"Intellect\"] = 1}},{[\"name\"] = \"Lure (1)\",[\"skillIcons\"] = {[\"Agility\"] = 2}},{[\"name\"] = \"Relic Hunter (3)\",[\"skillIcons\"] = {}},{[\"name\"] = \"Charisma (3)\",[\"skillIcons\"] = {}},{[\"name\"] = \"Prepared for the Worst\",[\"skillIcons\"] = {[\"Combat\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Keen Eye (3)\",[\"skillIcons\"] = {}},{[\"name\"] = \"Preposterous Sketches\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Higher Education (3)\",[\"skillIcons\"] = {}},{[\"name\"] = \"Lone Wolf\",[\"skillIcons\"] = {[\"Agility\"] = 1}},{[\"name\"] = \"Streetwise (3)\",[\"skillIcons\"] = {}},{[\"name\"] = \"Defiance\",[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Blood Pact (3)\",[\"skillIcons\"] = {}},{[\"name\"] = \"Rise to the Occasion\",[\"skillIcons\"] = {[\"Wild\"] = 3}},{[\"name\"] = \"Scrapper (3)\",[\"skillIcons\"] = {}},{[\"name\"] = \"Emergency Cache (2)\",[\"skillIcons\"] = {}},{[\"name\"] = \"\\\"If it bleeds...\\\"\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Springfield M1903 (4)\",[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Inquiring Mind\",[\"skillIcons\"] = {[\"Wild\"] = 3}},{[\"name\"] = \"Expose Weakness (1)\",[\"skillIcons\"] = {[\"Combat\"] = 2,[\"Intellect\"] = 1}},{[\"name\"] = \"Quick Thinking\",[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Lucky Dice (2)\",[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Opportunist (2)\",[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Alyssa Graham\",[\"skillIcons\"] = {[\"Intellect\"] = 1}},{[\"name\"] = \"Rite of Seeking (4)\",[\"skillIcons\"] = {[\"Intellect\"] = 2}},{[\"name\"] = \"Dark Horse\",[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Survival Instinct (2)\",[\"skillIcons\"] = {[\"Agility\"] = 2}},{[\"name\"] = \"Leadership\",[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"\\\"I've had worse...\\\" (4)\",[\"skillIcons\"] = {[\"Will\"] = 2,[\"Agility\"] = 1}},{[\"name\"] = \"Strange Solution (4)\",[\"skillIcons\"] = {[\"Will\"] = 2}},{[\"name\"] = \"Strange Solution (4)\",[\"skillIcons\"] = {[\"Combat\"] = 2}},{[\"name\"] = \"Strange Solution (4)\",[\"skillIcons\"] = {[\"Agility\"] = 2}},{[\"name\"] = \"Joey \\\"The Rat\\\" Vigil\",[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Ace in the Hole (3)\",[\"skillIcons\"] = {}},{[\"name\"] = \"Moonlight Ritual\",[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Fearless (2)\",[\"skillIcons\"] = {[\"Will\"] = 2}},{[\"name\"] = \"Jewel of Aureolus (3)\",[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"A Chance Encounter\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Stroke of Luck (2)\",[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Fine Clothes\",[\"skillIcons\"] = {[\"Agility\"] = 1}},{[\"name\"] = \"Moment of Respite (3)\",[\"skillIcons\"] = {[\"Will\"] = 2}},{[\"name\"] = \"Vicious Blow (2)\",[\"skillIcons\"] = {[\"Combat\"] = 2}},{[\"name\"] = \"Monster Slayer (5)\",[\"skillIcons\"] = {[\"Wild\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Lightning Gun (5)\",[\"skillIcons\"] = {[\"Combat\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Dr. William T. Maleson\",[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Deciphered Reality (5)\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Intellect\"] = 2}},{[\"name\"] = \"Chicago Typewriter (4)\",[\"skillIcons\"] = {[\"Combat\"] = 2}},{[\"name\"] = \"The Gold Pocket Watch (4)\",[\"skillIcons\"] = {[\"Wild\"] = 1,[\"Will\"] = 1}},{[\"name\"] = \"Shrivelling (5)\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Combat\"] = 2}},{[\"name\"] = \"Ward of Protection (5)\",[\"skillIcons\"] = {[\"Wild\"] = 1,[\"Will\"] = 1}},{[\"name\"] = \"Aquinnah (3)\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Agility\"] = 1}},{[\"name\"] = \"Try and Try Again (3)\",[\"skillIcons\"] = {[\"Will\"] = 2}},{[\"name\"] = \"The Red-Gloved Man (5)\",[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Mark Harrigan\",[\"skillIcons\"] = {[\"Will\"] = 3,[\"Agility\"] = 3,[\"Combat\"] = 5,[\"Intellect\"] = 2}},{[\"name\"] = \"Minh Thi Phan\",[\"skillIcons\"] = {[\"Will\"] = 4,[\"Agility\"] = 2,[\"Combat\"] = 2,[\"Intellect\"] = 4}},{[\"name\"] = \"Sefina Rousseau\",[\"skillIcons\"] = {[\"Will\"] = 4,[\"Agility\"] = 4,[\"Combat\"] = 2,[\"Intellect\"] = 2}},{[\"name\"] = \"Akachi Onyele\",[\"skillIcons\"] = {[\"Will\"] = 5,[\"Agility\"] = 3,[\"Combat\"] = 3,[\"Intellect\"] = 2}},{[\"name\"] = \"William Yorick\",[\"skillIcons\"] = {[\"Will\"] = 3,[\"Agility\"] = 3,[\"Combat\"] = 4,[\"Intellect\"] = 2}},{[\"name\"] = \"Lola Hayes\",[\"skillIcons\"] = {[\"Will\"] = 3,[\"Agility\"] = 3,[\"Combat\"] = 3,[\"Intellect\"] = 3}},{[\"name\"] = \"The Home Front\",[\"skillIcons\"] = {[\"Combat\"] = 4}},{[\"name\"] = \"Shell Shock\",[\"skillIcons\"] = {}},{[\"name\"] = \"Sophie\",[\"skillIcons\"] = {}},{[\"name\"] = \"Sophie\",[\"skillIcons\"] = {}},{[\"name\"] = \"Analytical Mind\",[\"skillIcons\"] = {[\"Wild\"] = 2}},{[\"name\"] = \"The King in Yellow\",[\"skillIcons\"] = {}},{[\"name\"] = \"The Painted World\",[\"skillIcons\"] = {[\"Wild\"] = 1,[\"Will\"] = 1,[\"Agility\"] = 1}},{[\"name\"] = \"Stars of Hyades\",[\"skillIcons\"] = {}},{[\"name\"] = \"Spirit-Speaker\",[\"skillIcons\"] = {[\"Wild\"] = 1,[\"Will\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Angered Spirits\",[\"skillIcons\"] = {}},{[\"name\"] = \"Bury Them Deep\",[\"skillIcons\"] = {[\"Wild\"] = 1,[\"Will\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Graveyard Ghouls\",[\"skillIcons\"] = {}},{[\"name\"] = \"Improvisation\",[\"skillIcons\"] = {[\"Wild\"] = 2}},{[\"name\"] = \"Crisis of Identity\",[\"skillIcons\"] = {}},{[\"name\"] = \".32 Colt\",[\"skillIcons\"] = {[\"Combat\"] = 1}},{[\"name\"] = \"True Grit\",[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"\\\"Let me handle this!\\\"\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Ever Vigilant (1)\",[\"skillIcons\"] = {[\"Intellect\"] = 2}},{[\"name\"] = \"Fieldwork\",[\"skillIcons\"] = {[\"Agility\"] = 1}},{[\"name\"] = \"Archaic Glyphs\",[\"skillIcons\"] = {[\"Intellect\"] = 1}},{[\"name\"] = \"No Stone Unturned\",[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"In the Know (1)\",[\"skillIcons\"] = {[\"Intellect\"] = 1}},{[\"name\"] = \"Stealth\",[\"skillIcons\"] = {[\"Agility\"] = 1}},{[\"name\"] = \"Sleight of Hand\",[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Daring Maneuver\",[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Lockpicks (1)\",[\"skillIcons\"] = {[\"Intellect\"] = 1}},{[\"name\"] = \"Alchemical Transmutation\",[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Uncage the Soul\",[\"skillIcons\"] = {[\"Will\"] = 2}},{[\"name\"] = \"Astral Travel\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Agility\"] = 1}},{[\"name\"] = \"Spirit Athame (1)\",[\"skillIcons\"] = {[\"Combat\"] = 1}},{[\"name\"] = \"Lantern\",[\"skillIcons\"] = {[\"Intellect\"] = 1}},{[\"name\"] = \"Gravedigger's Shovel\",[\"skillIcons\"] = {[\"Combat\"] = 1}},{[\"name\"] = \"Hiding Spot\",[\"skillIcons\"] = {[\"Agility\"] = 2}},{[\"name\"] = \"Resourceful\",[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Combat\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Overzealous\",[\"skillIcons\"] = {}},{[\"name\"] = \"Drawing the Sign\",[\"skillIcons\"] = {}},{[\"name\"] = \"The Thing That Follows\",[\"skillIcons\"] = {}},{[\"name\"] = \"Constance Dumaine\",[\"skillIcons\"] = {}},{[\"name\"] = \"Jordan Perry\",[\"skillIcons\"] = {}},{[\"name\"] = \"Ishimaru Haruko\",[\"skillIcons\"] = {}},{[\"name\"] = \"Sebastien Moreau\",[\"skillIcons\"] = {}},{[\"name\"] = \"Ashleigh Clarke\",[\"skillIcons\"] = {}},{[\"name\"] = \"Engram's Oath\",[\"skillIcons\"] = {}},{[\"name\"] = \"L'agneau Perdu\",[\"skillIcons\"] = {}},{[\"name\"] = \"The Pattern\",[\"skillIcons\"] = {}},{[\"name\"] = \"The First Show\",[\"skillIcons\"] = {}},{[\"name\"] = \"Above and Below\",[\"skillIcons\"] = {}},{[\"name\"] = \"Heroic Rescue\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Combat Training (1)\",[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Anatomical Diagrams\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Scientific Theory (1)\",[\"skillIcons\"] = {[\"Combat\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Knuckleduster\",[\"skillIcons\"] = {[\"Combat\"] = 1}},{[\"name\"] = \"Moxie (1)\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Agility\"] = 1}},{[\"name\"] = \"David Renfield\",[\"skillIcons\"] = {[\"Intellect\"] = 1}},{[\"name\"] = \"Grounded (1)\",[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Cherished Keepsake\",[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Plucky (1)\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Say Your Prayers\",[\"skillIcons\"] = {[\"Will\"] = 4}},{[\"name\"] = \"Desperate Search\",[\"skillIcons\"] = {[\"Intellect\"] = 4}},{[\"name\"] = \"Reckless Assault\",[\"skillIcons\"] = {[\"Combat\"] = 4}},{[\"name\"] = \"Run For Your Life\",[\"skillIcons\"] = {[\"Agility\"] = 4}},{[\"name\"] = \"Trench Knife\",[\"skillIcons\"] = {[\"Combat\"] = 1}},{[\"name\"] = \"Ambush (1)\",[\"skillIcons\"] = {[\"Combat\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Charles Ross, Esq.\",[\"skillIcons\"] = {[\"Intellect\"] = 1}},{[\"name\"] = \"Forewarned (1)\",[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Dario El-Amin\",[\"skillIcons\"] = {[\"Intellect\"] = 1}},{[\"name\"] = \"Sneak Attack (2)\",[\"skillIcons\"] = {[\"Combat\"] = 2,[\"Intellect\"] = 1}},{[\"name\"] = \"Storm of Spirits\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Book of Shadows (1)\",[\"skillIcons\"] = {[\"Intellect\"] = 1}},{[\"name\"] = \"Fight or Flight\",[\"skillIcons\"] = {}},{[\"name\"] = \"A Test of Will (1)\",[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Devil's Luck (1)\",[\"skillIcons\"] = {[\"Agility\"] = 1}},{[\"name\"] = \"Calling in Favors\",[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"\\\"I'll see you in hell!\\\"\",[\"skillIcons\"] = {[\"Combat\"] = 2}},{[\"name\"] = \".45 Automatic (2)\",[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Logical Reasoning\",[\"skillIcons\"] = {[\"Will\"] = 2}},{[\"name\"] = \"Archaic Glyphs (3)\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Archaic Glyphs (3)\",[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Cheap Shot\",[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Pickpocketing (2)\",[\"skillIcons\"] = {[\"Agility\"] = 2}},{[\"name\"] = \"Quantum Flux\",[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Recharge (2)\",[\"skillIcons\"] = {[\"Will\"] = 2}},{[\"name\"] = \"Madame Labranche\",[\"skillIcons\"] = {[\"Intellect\"] = 1}},{[\"name\"] = \"Snare Trap (2)\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Agility\"] = 1}},{[\"name\"] = \"Inspiring Presence\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Combat\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Mano a Mano (1)\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"First Aid (3)\",[\"skillIcons\"] = {[\"Will\"] = 2}},{[\"name\"] = \"Eureka!\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Agility\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Shortcut (2)\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Agility\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"\\\"Watch this!\\\"\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Agility\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \".41 Derringer (2)\",[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Torrent of Power\",[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Scrying (3)\",[\"skillIcons\"] = {[\"Intellect\"] = 2}},{[\"name\"] = \"Waylay\",[\"skillIcons\"] = {[\"Agility\"] = 2}},{[\"name\"] = \"A Chance Encounter (2)\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Emergency Cache (3)\",[\"skillIcons\"] = {}},{[\"name\"] = \"On the Hunt\",[\"skillIcons\"] = {[\"Combat\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Stick to the Plan (3)\",[\"skillIcons\"] = {}},{[\"name\"] = \"Guidance\",[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Arcane Insight (4)\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Narrow Escape\",[\"skillIcons\"] = {[\"Agility\"] = 2}},{[\"name\"] = \"Suggestion (4)\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Agility\"] = 1}},{[\"name\"] = \"St. Hubert's Key\",[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Ward of Protection (2)\",[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Arcane Initiate (3)\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"\\\"Not without a fight!\\\"\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Agility\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"True Survivor (3)\",[\"skillIcons\"] = {}},{[\"name\"] = \"\\\"Eat lead!\\\" (2)\",[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Armor of Ardennes (5)\",[\"skillIcons\"] = {[\"Will\"] = 2,[\"Combat\"] = 2}},{[\"name\"] = \"Eidetic Memory (3)\",[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"No Stone Unturned (5)\",[\"skillIcons\"] = {[\"Wild\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Charon's Obol (1)\",[\"skillIcons\"] = {}},{[\"name\"] = \"Lupara (3)\",[\"skillIcons\"] = {[\"Combat\"] = 1}},{[\"name\"] = \"Cheat Death (5)\",[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Time Warp (2)\",[\"skillIcons\"] = {}},{[\"name\"] = \"Seal of the Elder Sign (5)\",[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Newspaper (2)\",[\"skillIcons\"] = {[\"Intellect\"] = 2}},{[\"name\"] = \"Infighting (3)\",[\"skillIcons\"] = {[\"Agility\"] = 2,[\"Intellect\"] = 2}},{[\"name\"] = \"Key of Ys (5)\",[\"skillIcons\"] = {[\"Wild\"] = 1,[\"Will\"] = 1}},{[\"name\"] = \"Songs That the Hyades Shall Sing\",[\"skillIcons\"] = {}},{[\"name\"] = \"Stars of Aldebaran\",[\"skillIcons\"] = {}},{[\"name\"] = \"Bleak Desolation\",[\"skillIcons\"] = {}},{[\"name\"] = \"Inhabitant of Carcosa\",[\"skillIcons\"] = {}},{[\"name\"] = \"A Moment's Rest\",[\"skillIcons\"] = {}},{[\"name\"] = \"The Coffin\",[\"skillIcons\"] = {}},{[\"name\"] = \"Mapping the Streets\",[\"skillIcons\"] = {}},{[\"name\"] = \"The King's Parade\",[\"skillIcons\"] = {}},{[\"name\"] = \"The Archway\",[\"skillIcons\"] = {}},{[\"name\"] = \"The Height of the Depths\",[\"skillIcons\"] = {}},{[\"name\"] = \"Steps of the Palace\",[\"skillIcons\"] = {}},{[\"name\"] = \"The Fall\",[\"skillIcons\"] = {}},{[\"name\"] = \"Hastur's End\",[\"skillIcons\"] = {}},{[\"name\"] = \"Leo Anderson\",[\"skillIcons\"] = {[\"Will\"] = 4,[\"Agility\"] = 1,[\"Combat\"] = 4,[\"Intellect\"] = 3}},{[\"name\"] = \"Ursula Downs\",[\"skillIcons\"] = {[\"Will\"] = 3,[\"Agility\"] = 4,[\"Combat\"] = 1,[\"Intellect\"] = 4}},{[\"name\"] = \"Finn Edwards\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Agility\"] = 4,[\"Combat\"] = 3,[\"Intellect\"] = 4}},{[\"name\"] = \"Father Mateo\",[\"skillIcons\"] = {[\"Will\"] = 4,[\"Agility\"] = 3,[\"Combat\"] = 2,[\"Intellect\"] = 3}},{[\"name\"] = \"Calvin Wright\",[\"skillIcons\"] = {[\"Will\"] = 0,[\"Agility\"] = 0,[\"Combat\"] = 0,[\"Intellect\"] = 0}},{[\"name\"] = \"Mitch Brown\",[\"skillIcons\"] = {[\"Wild\"] = 2}},{[\"name\"] = \"Bought in Blood\",[\"skillIcons\"] = {}},{[\"name\"] = \"Jake Williams\",[\"skillIcons\"] = {[\"Wild\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Call of the Unknown\",[\"skillIcons\"] = {}},{[\"name\"] = \"Smuggled Goods\",[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Finn's Trusty .38\",[\"skillIcons\"] = {[\"Wild\"] = 1,[\"Agility\"] = 1}},{[\"name\"] = \"Caught Red-Handed\",[\"skillIcons\"] = {}},{[\"name\"] = \"The Codex of Ages\",[\"skillIcons\"] = {[\"Wild\"] = 1,[\"Will\"] = 1}},{[\"name\"] = \"Serpents of Yig\",[\"skillIcons\"] = {}},{[\"name\"] = \"Until the End of Time\",[\"skillIcons\"] = {[\"Wild\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Voice of the Messenger\",[\"skillIcons\"] = {}},{[\"name\"] = \"Survival Knife\",[\"skillIcons\"] = {[\"Combat\"] = 1}},{[\"name\"] = \"Venturer\",[\"skillIcons\"] = {[\"Intellect\"] = 1}},{[\"name\"] = \"Trusted\",[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Reliable (1)\",[\"skillIcons\"] = {[\"Intellect\"] = 1}},{[\"name\"] = \"Dr. Elli Horowitz\",[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Ancient Stone (1)\",[\"skillIcons\"] = {[\"Intellect\"] = 1}},{[\"name\"] = \"Tooth of Eztli\",[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Unearth the Ancients\",[\"skillIcons\"] = {[\"Intellect\"] = 2}},{[\"name\"] = \"Treasure Hunter (1)\",[\"skillIcons\"] = {[\"Intellect\"] = 1}},{[\"name\"] = \"Decorated Skull\",[\"skillIcons\"] = {[\"Agility\"] = 1}},{[\"name\"] = \"Eavesdrop\",[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"\\\"You handle this one!\\\"\",[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Mists of R'lyeh\",[\"skillIcons\"] = {[\"Agility\"] = 1}},{[\"name\"] = \"The Chthonian Stone\",[\"skillIcons\"] = {[\"Intellect\"] = 1}},{[\"name\"] = \"Protective Incantation (1)\",[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Dark Prophecy\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Agility\"] = 1}},{[\"name\"] = \"Improvised Weapon\",[\"skillIcons\"] = {}},{[\"name\"] = \"Dumb Luck\",[\"skillIcons\"] = {[\"Agility\"] = 2}},{[\"name\"] = \"Yaotl (1)\",[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Last Chance\",[\"skillIcons\"] = {[\"Wild\"] = 5}},{[\"name\"] = \"Backpack\",[\"skillIcons\"] = {[\"Agility\"] = 1}},{[\"name\"] = \"Dark Pact\",[\"skillIcons\"] = {}},{[\"name\"] = \"The Price of Failure\",[\"skillIcons\"] = {}},{[\"name\"] = \"Doomed\",[\"skillIcons\"] = {}},{[\"name\"] = \"Accursed Fate\",[\"skillIcons\"] = {}},{[\"name\"] = \"The Bell Tolls\",[\"skillIcons\"] = {}},{[\"name\"] = \"Scene of the Crime\",[\"skillIcons\"] = {[\"Combat\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Marksmanship (1)\",[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Persuasion\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Shrewd Analysis\",[\"skillIcons\"] = {}},{[\"name\"] = \"Lucky Cigarette Case\",[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Fence (1)\",[\"skillIcons\"] = {[\"Agility\"] = 1}},{[\"name\"] = \"Arcane Research\",[\"skillIcons\"] = {}},{[\"name\"] = \"Counterspell (2)\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Perseverance\",[\"skillIcons\"] = {[\"Will\"] = 2}},{[\"name\"] = \"Stunning Blow\",[\"skillIcons\"] = {[\"Combat\"] = 1}},{[\"name\"] = \"Second Wind\",[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Take the Initiative\",[\"skillIcons\"] = {[\"Wild\"] = 3}},{[\"name\"] = \"Well Prepared (2)\",[\"skillIcons\"] = {}},{[\"name\"] = \"Truth from Fiction\",[\"skillIcons\"] = {[\"Intellect\"] = 2}},{[\"name\"] = \"True Understanding\",[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Quick Study (2)\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Agility\"] = 1}},{[\"name\"] = \"Hatchet Man\",[\"skillIcons\"] = {[\"Agility\"] = 1}},{[\"name\"] = \"High Roller (2)\",[\"skillIcons\"] = {[\"Combat\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Enraptured\",[\"skillIcons\"] = {[\"Intellect\"] = 1}},{[\"name\"] = \"Recall the Future (2)\",[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Try and Try Again (1)\",[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Cornered (2)\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Intrepid\",[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Custom Ammunition (3)\",[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Otherworldly Compass (2)\",[\"skillIcons\"] = {[\"Intellect\"] = 2}},{[\"name\"] = \"Expose Weakness (3)\",[\"skillIcons\"] = {[\"Wild\"] = 1,[\"Combat\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Lola Santiago (3)\",[\"skillIcons\"] = {[\"Intellect\"] = 2}},{[\"name\"] = \"Olive McBride\",[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Defiance (2)\",[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Premonition\",[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Live and Learn\",[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Take Heart\",[\"skillIcons\"] = {}},{[\"name\"] = \"Against All Odds (2)\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Agility\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Trench Coat\",[\"skillIcons\"] = {[\"Agility\"] = 1}},{[\"name\"] = \"Ornate Bow (3)\",[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"M1918 BAR (4)\",[\"skillIcons\"] = {[\"Combat\"] = 2}},{[\"name\"] = \"Ancient Stone (4)\",[\"skillIcons\"] = {[\"Intellect\"] = 2}},{[\"name\"] = \"Ancient Stone (4)\",[\"skillIcons\"] = {[\"Will\"] = 2}},{[\"name\"] = \"Slip Away\",[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Pay Day (1)\",[\"skillIcons\"] = {}},{[\"name\"] = \"Sacrifice (1)\",[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Crystalline Elder Sign (3)\",[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"On Your Own (3)\",[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Handcuffs\",[\"skillIcons\"] = {[\"Agility\"] = 1}},{[\"name\"] = \"Blood Eclipse (3)\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Feed the Mind (3)\",[\"skillIcons\"] = {[\"Intellect\"] = 1}},{[\"name\"] = \"Colt Vest Pocket\",[\"skillIcons\"] = {[\"Agility\"] = 1}},{[\"name\"] = \"Coup de Grâce\",[\"skillIcons\"] = {[\"Combat\"] = 2}},{[\"name\"] = \"The Skeleton Key (2)\",[\"skillIcons\"] = {[\"Intellect\"] = 2}},{[\"name\"] = \"Mists of R'lyeh (4)\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Agility\"] = 1}},{[\"name\"] = \"Winging It\",[\"skillIcons\"] = {}},{[\"name\"] = \"Old Hunting Rifle (3)\",[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Thermos\",[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Hemispheric Map (3)\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Timeworn Brand (5)\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Kerosene (1)\",[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Flamethrower (5)\",[\"skillIcons\"] = {[\"Wild\"] = 1,[\"Combat\"] = 2}},{[\"name\"] = \"Vantage Point\",[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Pnakotic Manuscripts (5)\",[\"skillIcons\"] = {[\"Wild\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Borrowed Time (3)\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Agility\"] = 1}},{[\"name\"] = \"All In (5)\",[\"skillIcons\"] = {[\"Wild\"] = 2}},{[\"name\"] = \"Shards of the Void (3)\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Seal of the Seventh Sign (5)\",[\"skillIcons\"] = {[\"Wild\"] = 1,[\"Will\"] = 1}},{[\"name\"] = \"Impromptu Barrier\",[\"skillIcons\"] = {}},{[\"name\"] = \"Alter Fate (3)\",[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Yig's Mercy\",[\"skillIcons\"] = {}},{[\"name\"] = \"Another Way\",[\"skillIcons\"] = {}},{[\"name\"] = \"Carolyn Fern\",[\"skillIcons\"] = {[\"Will\"] = 3,[\"Agility\"] = 2,[\"Combat\"] = 2,[\"Intellect\"] = 4}},{[\"name\"] = \"Joe Diamond\",[\"skillIcons\"] = {[\"Will\"] = 2,[\"Agility\"] = 2,[\"Combat\"] = 4,[\"Intellect\"] = 4}},{[\"name\"] = \"Preston Fairmont\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Agility\"] = 1,[\"Combat\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Diana Stanley\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Agility\"] = 3,[\"Combat\"] = 3,[\"Intellect\"] = 3}},{[\"name\"] = \"Rita Young\",[\"skillIcons\"] = {[\"Will\"] = 3,[\"Agility\"] = 5,[\"Combat\"] = 3,[\"Intellect\"] = 2}},{[\"name\"] = \"Marie Lambeau\",[\"skillIcons\"] = {[\"Will\"] = 4,[\"Agility\"] = 3,[\"Combat\"] = 1,[\"Intellect\"] = 4}},{[\"name\"] = \"Hypnotic Therapy\",[\"skillIcons\"] = {[\"Wild\"] = 1,[\"Will\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Rational Thought\",[\"skillIcons\"] = {}},{[\"name\"] = \"Detective's Colt 1911s\",[\"skillIcons\"] = {[\"Wild\"] = 1,[\"Combat\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Unsolved Case\",[\"skillIcons\"] = {}},{[\"name\"] = \"Family Inheritance\",[\"skillIcons\"] = {}},{[\"name\"] = \"Lodge \\\"Debts\\\"\",[\"skillIcons\"] = {}},{[\"name\"] = \"Twilight Blade\",[\"skillIcons\"] = {[\"Wild\"] = 1,[\"Will\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Dark Insight\",[\"skillIcons\"] = {}},{[\"name\"] = \"Terrible Secret\",[\"skillIcons\"] = {}},{[\"name\"] = \"\\\"I'm done runnin'!\\\"\",[\"skillIcons\"] = {[\"Wild\"] = 1,[\"Agility\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Hoods\",[\"skillIcons\"] = {}},{[\"name\"] = \"Mystifying Song\",[\"skillIcons\"] = {[\"Wild\"] = 2}},{[\"name\"] = \"Baron Samedi\",[\"skillIcons\"] = {}},{[\"name\"] = \"Interrogate\",[\"skillIcons\"] = {[\"Combat\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Delay the Inevitable\",[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Steadfast\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Ace of Swords (1)\",[\"skillIcons\"] = {}},{[\"name\"] = \"Fingerprint Kit\",[\"skillIcons\"] = {[\"Intellect\"] = 1}},{[\"name\"] = \"Connect the Dots\",[\"skillIcons\"] = {[\"Intellect\"] = 2}},{[\"name\"] = \"Curiosity\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Death • XIII (1)\",[\"skillIcons\"] = {}},{[\"name\"] = \"Well Connected\",[\"skillIcons\"] = {[\"Intellect\"] = 1}},{[\"name\"] = \"Money Talks\",[\"skillIcons\"] = {}},{[\"name\"] = \"Cunning\",[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"The Moon • XVIII (1)\",[\"skillIcons\"] = {}},{[\"name\"] = \"Deny Existence\",[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Eldritch Inspiration\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Prophesy\",[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Four of Cups (1)\",[\"skillIcons\"] = {}},{[\"name\"] = \"Track Shoes\",[\"skillIcons\"] = {[\"Agility\"] = 1}},{[\"name\"] = \"Act of Desperation\",[\"skillIcons\"] = {[\"Combat\"] = 2}},{[\"name\"] = \"Able Bodied\",[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Five of Pentacles (1)\",[\"skillIcons\"] = {}},{[\"name\"] = \"Ace of Rods (1)\",[\"skillIcons\"] = {}},{[\"name\"] = \"The 13th Vision\",[\"skillIcons\"] = {}},{[\"name\"] = \"The Tower • XVI\",[\"skillIcons\"] = {}},{[\"name\"] = \"Something Worth Fighting For\",[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Crack the Case\",[\"skillIcons\"] = {[\"Intellect\"] = 1}},{[\"name\"] = \"Intel Report\",[\"skillIcons\"] = {[\"Intellect\"] = 2}},{[\"name\"] = \"Sign Magick\",[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Banish (1)\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Agility\"] = 1}},{[\"name\"] = \"Meat Cleaver\",[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \".45 Thompson\",[\"skillIcons\"] = {[\"Combat\"] = 1}},{[\"name\"] = \"Scroll of Secrets\",[\"skillIcons\"] = {[\"Intellect\"] = 1}},{[\"name\"] = \"Tennessee Sour Mash\",[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Enchanted Blade\",[\"skillIcons\"] = {[\"Combat\"] = 1}},{[\"name\"] = \"Grisly Totem\",[\"skillIcons\"] = {[\"Agility\"] = 1}},{[\"name\"] = \"Alice Luxley\",[\"skillIcons\"] = {[\"Intellect\"] = 1}},{[\"name\"] = \"Well-Maintained (1)\",[\"skillIcons\"] = {[\"Agility\"] = 1}},{[\"name\"] = \"Mr. \\\"Rook\\\"\",[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Hawk-Eye Folding Camera\",[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Henry Wan\",[\"skillIcons\"] = {[\"Agility\"] = 1}},{[\"name\"] = \"Swift Reflexes\",[\"skillIcons\"] = {[\"Agility\"] = 2}},{[\"name\"] = \"Wither\",[\"skillIcons\"] = {[\"Combat\"] = 1}},{[\"name\"] = \"Sixth Sense\",[\"skillIcons\"] = {[\"Intellect\"] = 1}},{[\"name\"] = \"Drawing Thin\",[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Belly of the Beast\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Agility\"] = 1}},{[\"name\"] = \".45 Thompson (3)\",[\"skillIcons\"] = {[\"Combat\"] = 2}},{[\"name\"] = \".45 Thompson (3)\",[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Scroll of Secrets (3)\",[\"skillIcons\"] = {[\"Intellect\"] = 2}},{[\"name\"] = \"Scroll of Secrets (3)\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Tennessee Sour Mash (3)\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Tennessee Sour Mash (3)\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Agility\"] = 1}},{[\"name\"] = \"Enchanted Blade (3)\",[\"skillIcons\"] = {[\"Combat\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Enchanted Blade (3)\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Grisly Totem (3)\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Agility\"] = 1}},{[\"name\"] = \"Grisly Totem (3)\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Agility\"] = 1}},{[\"name\"] = \"The Council's Coffer (2)\",[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Warning Shot\",[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Telescopic Sight (3)\",[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Combat\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Knowledge is Power\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Esoteric Atlas (1)\",[\"skillIcons\"] = {[\"Agility\"] = 1}},{[\"name\"] = \"Investments\",[\"skillIcons\"] = {[\"Intellect\"] = 1}},{[\"name\"] = \"Decoy\",[\"skillIcons\"] = {[\"Agility\"] = 2}},{[\"name\"] = \"De Vermis Mysteriis (2)\",[\"skillIcons\"] = {[\"Intellect\"] = 1}},{[\"name\"] = \"Guiding Spirit (1)\",[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Fortune or Fate (2)\",[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Mk 1 Grenades (4)\",[\"skillIcons\"] = {[\"Combat\"] = 1}},{[\"name\"] = \"Agency Backup (5)\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Combat\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Ghastly Revelation\",[\"skillIcons\"] = {[\"Intellect\"] = 2}},{[\"name\"] = \"Studious (3)\",[\"skillIcons\"] = {}},{[\"name\"] = \"Small Favor\",[\"skillIcons\"] = {[\"Combat\"] = 2}},{[\"name\"] = \"Another Day, Another Dollar (3)\",[\"skillIcons\"] = {}},{[\"name\"] = \"Dayana Esperence (3)\",[\"skillIcons\"] = {[\"Will\"] = 2}},{[\"name\"] = \"Deny Existence (5)\",[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Trial by Fire\",[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Bait and Switch (3)\",[\"skillIcons\"] = {[\"Agility\"] = 2,[\"Intellect\"] = 1}},{[\"name\"] = \"Anna Kaslow (4)\",[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Hallowed Mirror\",[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Soothing Melody\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Agility\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"\\\"I've had worse...\\\" (2)\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Agility\"] = 1}},{[\"name\"] = \"Occult Lexicon\",[\"skillIcons\"] = {[\"Intellect\"] = 1}},{[\"name\"] = \"Blood-Rite\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Combat\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Glimpse the Unthinkable (5)\",[\"skillIcons\"] = {[\"Intellect\"] = 3}},{[\"name\"] = \"\\\"You owe me one!\\\"\",[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Combat\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Double, Double (4)\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Wither (4)\",[\"skillIcons\"] = {[\"Combat\"] = 2}},{[\"name\"] = \"Sixth Sense (4)\",[\"skillIcons\"] = {[\"Intellect\"] = 2}},{[\"name\"] = \"Lure (2)\",[\"skillIcons\"] = {[\"Agility\"] = 2}},{[\"name\"] = \"Eucatastrophe (3)\",[\"skillIcons\"] = {[\"Wild\"] = 2}},{[\"name\"] = \"Tommy Muldoon\",[\"skillIcons\"] = {[\"Will\"] = 3,[\"Agility\"] = 2,[\"Combat\"] = 4,[\"Intellect\"] = 3}},{[\"name\"] = \"Mandy Thompson\",[\"skillIcons\"] = {[\"Will\"] = 3,[\"Agility\"] = 3,[\"Combat\"] = 1,[\"Intellect\"] = 5}},{[\"name\"] = \"Tony Morgan\",[\"skillIcons\"] = {[\"Will\"] = 2,[\"Agility\"] = 2,[\"Combat\"] = 5,[\"Intellect\"] = 3}},{[\"name\"] = \"Luke Robinson\",[\"skillIcons\"] = {[\"Will\"] = 4,[\"Agility\"] = 3,[\"Combat\"] = 2,[\"Intellect\"] = 3}},{[\"name\"] = \"Patrice Hathaway\",[\"skillIcons\"] = {[\"Will\"] = 4,[\"Agility\"] = 2,[\"Combat\"] = 2,[\"Intellect\"] = 2}},{[\"name\"] = \"Becky\",[\"skillIcons\"] = {[\"Wild\"] = 1,[\"Agility\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Rookie Mistake\",[\"skillIcons\"] = {}},{[\"name\"] = \"Occult Evidence\",[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Shocking Discovery\",[\"skillIcons\"] = {}},{[\"name\"] = \"Bounty Contracts\",[\"skillIcons\"] = {}},{[\"name\"] = \"Tony's .38 Long Colt\",[\"skillIcons\"] = {[\"Wild\"] = 1,[\"Combat\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Tony's Quarry\",[\"skillIcons\"] = {}},{[\"name\"] = \"Gate Box\",[\"skillIcons\"] = {}},{[\"name\"] = \"Detached from Reality\",[\"skillIcons\"] = {}},{[\"name\"] = \"Dream-Gate\",[\"skillIcons\"] = {}},{[\"name\"] = \"Dream-Gate\",[\"skillIcons\"] = {}},{[\"name\"] = \"Patrice's Violin\",[\"skillIcons\"] = {[\"Wild\"] = 1,[\"Will\"] = 1,[\"Agility\"] = 1}},{[\"name\"] = \"Watcher from Another Dimension\",[\"skillIcons\"] = {}},{[\"name\"] = \"The Hungering Blade (1)\",[\"skillIcons\"] = {[\"Combat\"] = 1}},{[\"name\"] = \"Bloodlust\",[\"skillIcons\"] = {}},{[\"name\"] = \"Solemn Vow\",[\"skillIcons\"] = {[\"Will\"] = 2}},{[\"name\"] = \"Segment of Onyx (1)\",[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Pendant of the Queen\",[\"skillIcons\"] = {}},{[\"name\"] = \"Astounding Revelation\",[\"skillIcons\"] = {[\"Intellect\"] = 1}},{[\"name\"] = \"Crystallizer of Dreams\",[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Guardian of the Crystallizer\",[\"skillIcons\"] = {}},{[\"name\"] = \"Easy Mark (1)\",[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Stargazing (1)\",[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"The Stars Are Right\",[\"skillIcons\"] = {}},{[\"name\"] = \"Open Gate\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Agility\"] = 1}},{[\"name\"] = \"Miss Doyle (1)\",[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Hope\",[\"skillIcons\"] = {[\"Combat\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Zeal\",[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Augur\",[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Fortuitous Discovery\",[\"skillIcons\"] = {}},{[\"name\"] = \"Self-Centered\",[\"skillIcons\"] = {}},{[\"name\"] = \"Kleptomania\",[\"skillIcons\"] = {}},{[\"name\"] = \"Narcolepsy\",[\"skillIcons\"] = {}},{[\"name\"] = \"Your Worst Nightmare\",[\"skillIcons\"] = {}},{[\"name\"] = \"First Watch\",[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Daring\",[\"skillIcons\"] = {[\"Wild\"] = 3}},{[\"name\"] = \"Dream Diary\",[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Essence of the Dream\",[\"skillIcons\"] = {[\"Wild\"] = 2}},{[\"name\"] = \"Followed\",[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Momentum (1)\",[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Scroll of Prophecies\",[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Read the Signs\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Jessica Hyde (1)\",[\"skillIcons\"] = {[\"Combat\"] = 1}},{[\"name\"] = \"Cryptic Souls\",[\"skillIcons\"] = {}},{[\"name\"] = \"Dreamlike Horrors\",[\"skillIcons\"] = {}},{[\"name\"] = \"Endless Secrets\",[\"skillIcons\"] = {}},{[\"name\"] = \"Cylinders of Kadatheron\",[\"skillIcons\"] = {}},{[\"name\"] = \"The Doom of Sarnath\",[\"skillIcons\"] = {}},{[\"name\"] = \"Ghosts of the Dead\",[\"skillIcons\"] = {}},{[\"name\"] = \"The Palace of Rainbows\",[\"skillIcons\"] = {}},{[\"name\"] = \"A Shrine to the Gods\",[\"skillIcons\"] = {}},{[\"name\"] = \"The Crypt of Zulan-Thek\",[\"skillIcons\"] = {}},{[\"name\"] = \"Wares of Baharna\",[\"skillIcons\"] = {}},{[\"name\"] = \"The Likeness of Old\",[\"skillIcons\"] = {}},{[\"name\"] = \"What Remains of Tyrrhia\",[\"skillIcons\"] = {}},{[\"name\"] = \"Advice of the King\",[\"skillIcons\"] = {}},{[\"name\"] = \"Timeless Beauty\",[\"skillIcons\"] = {}},{[\"name\"] = \"Unattainable Desires\",[\"skillIcons\"] = {}},{[\"name\"] = \"The City Inside\",[\"skillIcons\"] = {}},{[\"name\"] = \"The Baleful Star\",[\"skillIcons\"] = {}},{[\"name\"] = \"Tetsuo Mori\",[\"skillIcons\"] = {[\"Intellect\"] = 1}},{[\"name\"] = \"\\\"Fool me once...\\\" (1)\",[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Self-Sacrifice\",[\"skillIcons\"] = {}},{[\"name\"] = \"Otherworld Codex (2)\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Dream-Enhancing Serum\",[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"\\\"Let God sort them out...\\\"\",[\"skillIcons\"] = {[\"Combat\"] = 1}},{[\"name\"] = \"Swift Reload (2)\",[\"skillIcons\"] = {[\"Agility\"] = 1}},{[\"name\"] = \"Gregory Gry\",[\"skillIcons\"] = {[\"Intellect\"] = 1}},{[\"name\"] = \"Healing Words\",[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Ethereal Form\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Agility\"] = 1}},{[\"name\"] = \"Scrounge for Supplies\",[\"skillIcons\"] = {}},{[\"name\"] = \"Brute Force (1)\",[\"skillIcons\"] = {[\"Combat\"] = 1}},{[\"name\"] = \"Versatile (2)\",[\"skillIcons\"] = {}},{[\"name\"] = \".35 Winchester\",[\"skillIcons\"] = {[\"Agility\"] = 1}},{[\"name\"] = \"Safeguard (2)\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Agility\"] = 1}},{[\"name\"] = \"Practice Makes Perfect\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Extensive Research (1)\",[\"skillIcons\"] = {[\"Intellect\"] = 2}},{[\"name\"] = \"Three Aces (1)\",[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Burglary (2)\",[\"skillIcons\"] = {[\"Intellect\"] = 2}},{[\"name\"] = \"Spectral Razor\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Word of Command (2)\",[\"skillIcons\"] = {}},{[\"name\"] = \"Moonstone\",[\"skillIcons\"] = {}},{[\"name\"] = \"Sharp Vision (1)\",[\"skillIcons\"] = {[\"Intellect\"] = 1}},{[\"name\"] = \"Lucid Dreaming (2)\",[\"skillIcons\"] = {}},{[\"name\"] = \"Off the Galley\",[\"skillIcons\"] = {}},{[\"name\"] = \"Heroic Rescue (2)\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Agility\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Leadership (2)\",[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Dream Diary (3)\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Agility\"] = 1}},{[\"name\"] = \"Dream Diary (3)\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Dream Diary (3)\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Haste (2)\",[\"skillIcons\"] = {[\"Agility\"] = 1}},{[\"name\"] = \"Daredevil (2)\",[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Empower Self (2)\",[\"skillIcons\"] = {[\"Combat\"] = 2}},{[\"name\"] = \"Empower Self (2)\",[\"skillIcons\"] = {[\"Agility\"] = 2}},{[\"name\"] = \"Empower Self (2)\",[\"skillIcons\"] = {[\"Intellect\"] = 2}},{[\"name\"] = \"Twila Katherine Price (3)\",[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"A Glimmer of Hope\",[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Expeditious Retreat (1)\",[\"skillIcons\"] = {[\"Agility\"] = 1}},{[\"name\"] = \"Ghastly Tunnels\",[\"skillIcons\"] = {}},{[\"name\"] = \"The Sentry\",[\"skillIcons\"] = {}},{[\"name\"] = \"Another Path\",[\"skillIcons\"] = {}},{[\"name\"] = \"A Strange Ghoul\",[\"skillIcons\"] = {}},{[\"name\"] = \"Scouting the Vale\",[\"skillIcons\"] = {}},{[\"name\"] = \"Something Below\",[\"skillIcons\"] = {}},{[\"name\"] = \"Inhabitants of the Vale\",[\"skillIcons\"] = {}},{[\"name\"] = \"The Way Out\",[\"skillIcons\"] = {}},{[\"name\"] = \"Spider-Infested Waters\",[\"skillIcons\"] = {}},{[\"name\"] = \"Still Surface\",[\"skillIcons\"] = {}},{[\"name\"] = \"Rolling Pits\",[\"skillIcons\"] = {}},{[\"name\"] = \"Center of the Sea\",[\"skillIcons\"] = {}},{[\"name\"] = \"Empty Vessel (4)\",[\"skillIcons\"] = {[\"Wild\"] = 1,[\"Will\"] = 1}},{[\"name\"] = \"Wish Eater\",[\"skillIcons\"] = {}},{[\"name\"] = \"Surprising Find (1)\",[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Old Book of Lore (3)\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Garrote Wire (2)\",[\"skillIcons\"] = {[\"Combat\"] = 1}},{[\"name\"] = \"Delilah O'Rourke (3)\",[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Summoned Hound (1)\",[\"skillIcons\"] = {[\"Combat\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Unbound Beast\",[\"skillIcons\"] = {}},{[\"name\"] = \"Nothing Left to Lose (3)\",[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"The Black Cat (5)\",[\"skillIcons\"] = {[\"Wild\"] = 2}},{[\"name\"] = \"Spiritual Resolve (5)\",[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Abigail Foreman (4)\",[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"The Eye of Truth (5)\",[\"skillIcons\"] = {[\"Wild\"] = 4}},{[\"name\"] = \"Joey \\\"The Rat\\\" Vigil (3)\",[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Sawed-Off Shotgun (5)\",[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Mind's Eye (2)\",[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Shining Trapezohedron (4)\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Agility\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Nightmare Bauble (3)\",[\"skillIcons\"] = {[\"Wild\"] = 1,[\"Will\"] = 1}},{[\"name\"] = \"Dream Parasite\",[\"skillIcons\"] = {[\"Wild\"] = 2}},{[\"name\"] = \"Scavenging (2)\",[\"skillIcons\"] = {[\"Intellect\"] = 2}},{[\"name\"] = \"Sister Mary\",[\"skillIcons\"] = {[\"Will\"] = 4,[\"Agility\"] = 3,[\"Combat\"] = 3,[\"Intellect\"] = 2}},{[\"name\"] = \"Amanda Sharpe\",[\"skillIcons\"] = {[\"Will\"] = 2,[\"Agility\"] = 2,[\"Combat\"] = 2,[\"Intellect\"] = 2}},{[\"name\"] = \"Trish Scarborough\",[\"skillIcons\"] = {[\"Will\"] = 2,[\"Agility\"] = 4,[\"Combat\"] = 2,[\"Intellect\"] = 4}},{[\"name\"] = \"Dexter Drake\",[\"skillIcons\"] = {[\"Will\"] = 5,[\"Agility\"] = 2,[\"Combat\"] = 3,[\"Intellect\"] = 2}},{[\"name\"] = \"Silas Marsh\",[\"skillIcons\"] = {[\"Will\"] = 2,[\"Agility\"] = 4,[\"Combat\"] = 4,[\"Intellect\"] = 2}},{[\"name\"] = \"Guardian Angel\",[\"skillIcons\"] = {[\"Wild\"] = 1,[\"Will\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Crisis of Faith\",[\"skillIcons\"] = {}},{[\"name\"] = \"Obscure Studies\",[\"skillIcons\"] = {[\"Wild\"] = 3}},{[\"name\"] = \"Whispers from the Deep\",[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"In the Shadows\",[\"skillIcons\"] = {[\"Wild\"] = 2,[\"Agility\"] = 2}},{[\"name\"] = \"Shadow Agents\",[\"skillIcons\"] = {}},{[\"name\"] = \"Showmanship\",[\"skillIcons\"] = {[\"Wild\"] = 1,[\"Agility\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Occult Scraps\",[\"skillIcons\"] = {}},{[\"name\"] = \"Sea Change Harpoon\",[\"skillIcons\"] = {[\"Wild\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Silas's Net\",[\"skillIcons\"] = {[\"Wild\"] = 1,[\"Agility\"] = 1}},{[\"name\"] = \"Siren Call\",[\"skillIcons\"] = {}},{[\"name\"] = \"Book of Psalms\",[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Blessed Blade\",[\"skillIcons\"] = {[\"Combat\"] = 1}},{[\"name\"] = \"Rite of Sanctification\",[\"skillIcons\"] = {[\"Intellect\"] = 1}},{[\"name\"] = \"Hand of Fate\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Cryptographic Cipher\",[\"skillIcons\"] = {[\"Intellect\"] = 1}},{[\"name\"] = \"Cryptic Grimoire\",[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Deep Knowledge\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Plan of Action\",[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \".25 Automatic\",[\"skillIcons\"] = {[\"Agility\"] = 1}},{[\"name\"] = \"Dark Ritual\",[\"skillIcons\"] = {[\"Intellect\"] = 1}},{[\"name\"] = \"Obfuscation\",[\"skillIcons\"] = {[\"Combat\"] = 1}},{[\"name\"] = \"Faustian Bargain\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Sword Cane\",[\"skillIcons\"] = {[\"Combat\"] = 1}},{[\"name\"] = \"Tides of Fate\",[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Ward of Radiance\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Agility\"] = 1}},{[\"name\"] = \"Promise of Power\",[\"skillIcons\"] = {[\"Wild\"] = 4}},{[\"name\"] = \"Token of Faith\",[\"skillIcons\"] = {[\"Intellect\"] = 1}},{[\"name\"] = \"Keep Faith\",[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Predestined\",[\"skillIcons\"] = {}},{[\"name\"] = \"Beloved\",[\"skillIcons\"] = {[\"Wild\"] = 1,[\"Will\"] = 1,[\"Agility\"] = 1}},{[\"name\"] = \"Tempt Fate\",[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Accursed Follower\",[\"skillIcons\"] = {}},{[\"name\"] = \"Dread Curse\",[\"skillIcons\"] = {}},{[\"name\"] = \"Day of Reckoning\",[\"skillIcons\"] = {}},{[\"name\"] = \"Riot Whistle\",[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Righteous Hunt (1)\",[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Sacred Covenant (2)\",[\"skillIcons\"] = {}},{[\"name\"] = \"Eldritch Sophist\",[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Stirring Up Trouble (1)\",[\"skillIcons\"] = {[\"Combat\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Blasphemous Covenant (2)\",[\"skillIcons\"] = {}},{[\"name\"] = \"Breaking and Entering\",[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Skeptic (1)\",[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"False Covenant (2)\",[\"skillIcons\"] = {}},{[\"name\"] = \"Armageddon\",[\"skillIcons\"] = {[\"Combat\"] = 1}},{[\"name\"] = \"Eye of Chaos\",[\"skillIcons\"] = {[\"Intellect\"] = 1}},{[\"name\"] = \"Shroud of Shadows\",[\"skillIcons\"] = {[\"Agility\"] = 1}},{[\"name\"] = \"Paradoxical Covenant (2)\",[\"skillIcons\"] = {}},{[\"name\"] = \"Mariner's Compass\",[\"skillIcons\"] = {[\"Intellect\"] = 1}},{[\"name\"] = \"Ancient Covenant (2)\",[\"skillIcons\"] = {}},{[\"name\"] = \"Keen Eye\",[\"skillIcons\"] = {[\"Combat\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Radiant Smite (1)\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"The Truth Beckons\",[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Gaze of Ouraxsh (2)\",[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Priest of Two Faiths (1)\",[\"skillIcons\"] = {[\"Agility\"] = 1}},{[\"name\"] = \"Under Surveillance (1)\",[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Blood Pact\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Abyssal Tome (2)\",[\"skillIcons\"] = {[\"Combat\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Butterfly Effect (1)\",[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Third Time's a Charm (2)\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Agility\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Manipulate Destiny (2)\",[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Enchanted Armor (2)\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Agility\"] = 1}},{[\"name\"] = \"Blessing of Isis (3)\",[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Cryptic Grimoire (4)\",[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Cryptic Grimoire (4)\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Ríastrad (1)\",[\"skillIcons\"] = {[\"Combat\"] = 2}},{[\"name\"] = \"Tristan Botley (2)\",[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Curse of Aeons (3)\",[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Unrelenting (1)\",[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Signum Crucis (2)\",[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Holy Rosary (2)\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Agility\"] = 1}},{[\"name\"] = \"Shield of Faith (2)\",[\"skillIcons\"] = {[\"Will\"] = 2}},{[\"name\"] = \"Fey (1)\",[\"skillIcons\"] = {[\"Wild\"] = 2,[\"Will\"] = 1}},{[\"name\"] = \"Guided by the Unseen (3)\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"\\\"Lucky\\\" Penny (2)\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Agility\"] = 1}},{[\"name\"] = \"Eye of the Djinn (2)\",[\"skillIcons\"] = {[\"Intellect\"] = 2}},{[\"name\"] = \"Armageddon (4)\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Eye of Chaos (4)\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Shroud of Shadows (4)\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Agility\"] = 1}},{[\"name\"] = \"Spirit of Humanity (2)\",[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Harmony Restored (2)\",[\"skillIcons\"] = {[\"Will\"] = 2}},{[\"name\"] = \"Enchant Weapon (3)\",[\"skillIcons\"] = {[\"Will\"] = 2,[\"Combat\"] = 1}},{[\"name\"] = \"Nephthys (4)\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Combat\"] = 2}},{[\"name\"] = \"The Stygian Eye (3)\",[\"skillIcons\"] = {[\"Will\"] = 3}},{[\"name\"] = \"Hyperawareness (4)\",[\"skillIcons\"] = {[\"Agility\"] = 2,[\"Intellect\"] = 2}},{[\"name\"] = \"Geas (2)\",[\"skillIcons\"] = {}},{[\"name\"] = \"Hard Knocks (4)\",[\"skillIcons\"] = {[\"Agility\"] = 2,[\"Combat\"] = 2}},{[\"name\"] = \"Ikiaq (3)\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Flute of the Outer Gods (4)\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Agility\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"A Watchful Peace (3)\",[\"skillIcons\"] = {[\"Will\"] = 2}},{[\"name\"] = \"Dig Deep (4)\",[\"skillIcons\"] = {[\"Will\"] = 2,[\"Agility\"] = 2}},{[\"name\"] = \"Favor of the Moon (1)\",[\"skillIcons\"] = {[\"Combat\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Favor of the Sun (1)\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Agility\"] = 1}},{[\"name\"] = \"Purifying Corruption (4)\",[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Hallow (3)\",[\"skillIcons\"] = {[\"Wild\"] = 1,[\"Will\"] = 1}},{[\"name\"] = \"Holy Spear (5)\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Combat\"] = 2}},{[\"name\"] = \"Ancestral Knowledge (3)\",[\"skillIcons\"] = {}},{[\"name\"] = \"Ariadne's Twine (3)\",[\"skillIcons\"] = {[\"Intellect\"] = 2}},{[\"name\"] = \".25 Automatic (2)\",[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Justify the Means (3)\",[\"skillIcons\"] = {}},{[\"name\"] = \"Lucky Dice (3)\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Agility\"] = 1}},{[\"name\"] = \"Rite of Equilibrium (5)\",[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Jacob Morrison (3)\",[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Shrine of the Moirai (3)\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Agility\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Sweeping Kick (1)\",[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Butterfly Swords (2)\",[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Written in the Stars\",[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Dragon Pole\",[\"skillIcons\"] = {[\"Combat\"] = 1}},{[\"name\"] = \"Astronomical Atlas (3)\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Intellect\"] = 2}},{[\"name\"] = \"Strength in Numbers (1)\",[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Medical Student\",[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Michael Leigh (5)\",[\"skillIcons\"] = {[\"Wild\"] = 1,[\"Combat\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Divination (1)\",[\"skillIcons\"] = {[\"Intellect\"] = 1}},{[\"name\"] = \"Blur (1)\",[\"skillIcons\"] = {[\"Agility\"] = 1}},{[\"name\"] = \"Physical Training (2)\",[\"skillIcons\"] = {[\"Will\"] = 2,[\"Combat\"] = 2}},{[\"name\"] = \"Dynamite Blast (2)\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Hyperawareness (2)\",[\"skillIcons\"] = {[\"Agility\"] = 2,[\"Intellect\"] = 2}},{[\"name\"] = \"Barricade (3)\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Agility\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Hard Knocks (2)\",[\"skillIcons\"] = {[\"Agility\"] = 2,[\"Combat\"] = 2}},{[\"name\"] = \"Hot Streak (2)\",[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Arcane Studies (2)\",[\"skillIcons\"] = {[\"Will\"] = 2,[\"Intellect\"] = 2}},{[\"name\"] = \"Mind Wipe (3)\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Dig Deep (2)\",[\"skillIcons\"] = {[\"Will\"] = 2,[\"Agility\"] = 2}},{[\"name\"] = \"Rabbit's Foot (3)\",[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Bandolier (2)\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Blackjack (2)\",[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Preposterous Sketches (2)\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Strange Solution (4)\",[\"skillIcons\"] = {[\"Intellect\"] = 2}},{[\"name\"] = \"Contraband (2)\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Intellect\"] = 2}},{[\"name\"] = \"Think on Your Feet (2)\",[\"skillIcons\"] = {[\"Agility\"] = 2,[\"Intellect\"] = 1}},{[\"name\"] = \"Rite of Seeking (2)\",[\"skillIcons\"] = {[\"Intellect\"] = 1}},{[\"name\"] = \"Clarity of Mind (3)\",[\"skillIcons\"] = {[\"Will\"] = 2}},{[\"name\"] = \"Oops! (2)\",[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Combat\"] = 2}},{[\"name\"] = \"Rise to the Occasion (3)\",[\"skillIcons\"] = {[\"Wild\"] = 2}},{[\"name\"] = \"Through the Gates\",[\"skillIcons\"] = {}},{[\"name\"] = \".32 Colt (2)\",[\"skillIcons\"] = {[\"Combat\"] = 2}},{[\"name\"] = \"\\\"Eat lead!\\\"\",[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Logical Reasoning (4)\",[\"skillIcons\"] = {[\"Will\"] = 3}},{[\"name\"] = \"Archaic Glyphs (3)\",[\"skillIcons\"] = {[\"Combat\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Stealth (3)\",[\"skillIcons\"] = {[\"Agility\"] = 2}},{[\"name\"] = \"Suggestion (1)\",[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Alchemical Transmutation (2)\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Storm of Spirits (3)\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Combat\"] = 2}},{[\"name\"] = \"Lantern (2)\",[\"skillIcons\"] = {[\"Intellect\"] = 2}},{[\"name\"] = \"Gravedigger's Shovel (2)\",[\"skillIcons\"] = {[\"Combat\"] = 2}},{[\"name\"] = \"Unspeakable Oath (Bloodthirst)\",[\"skillIcons\"] = {}},{[\"name\"] = \"Unspeakable Oath (Curiosity)\",[\"skillIcons\"] = {}},{[\"name\"] = \"Unspeakable Oath (Cowardice)\",[\"skillIcons\"] = {}},{[\"name\"] = \"Blood Eclipse (1)\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Survival Knife (2)\",[\"skillIcons\"] = {[\"Combat\"] = 2}},{[\"name\"] = \"Truth from Fiction (2)\",[\"skillIcons\"] = {[\"Intellect\"] = 3}},{[\"name\"] = \"Ancient Stone (4)\",[\"skillIcons\"] = {[\"Agility\"] = 2}},{[\"name\"] = \"Decorated Skull (3)\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Colt Vest Pocket (2)\",[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Mists of R'lyeh (2)\",[\"skillIcons\"] = {[\"Agility\"] = 1}},{[\"name\"] = \"The Chthonian Stone (3)\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Alter Fate (1)\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Agility\"] = 1}},{[\"name\"] = \"On Your Own (3)\",[\"skillIcons\"] = {}},{[\"name\"] = \"Backpack (2)\",[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Dendromorphosis\",[\"skillIcons\"] = {}},{[\"name\"] = \"Offer You Cannot Refuse\",[\"skillIcons\"] = {}},{[\"name\"] = \"Fine Print\",[\"skillIcons\"] = {}},{[\"name\"] = \"Sell Your Soul\",[\"skillIcons\"] = {}},{[\"name\"] = \"The Star • XVII (3)\",[\"skillIcons\"] = {}},{[\"name\"] = \"The Hierophant • V (3)\",[\"skillIcons\"] = {}},{[\"name\"] = \"Moon Pendant (2)\",[\"skillIcons\"] = {}},{[\"name\"] = \"Nathaniel Cho\",[\"skillIcons\"] = {[\"Will\"] = 3,[\"Agility\"] = 2,[\"Combat\"] = 5,[\"Intellect\"] = 2}},{[\"name\"] = \"Randall Cho\",[\"skillIcons\"] = {[\"Wild\"] = 1,[\"Will\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Tommy Malloy\",[\"skillIcons\"] = {}},{[\"name\"] = \"Self-Destructive\",[\"skillIcons\"] = {}},{[\"name\"] = \"Boxing Gloves\",[\"skillIcons\"] = {[\"Combat\"] = 1}},{[\"name\"] = \"Flesh Ward\",[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Grete Wagner\",[\"skillIcons\"] = {[\"Combat\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Physical Training\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Relentless\",[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Safeguard\",[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Clean Them Out\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Counterpunch\",[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Dodge\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Agility\"] = 1}},{[\"name\"] = \"\\\"Get over here!\\\"\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Glory\",[\"skillIcons\"] = {[\"Intellect\"] = 2}},{[\"name\"] = \"Monster Slayer\",[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"One-Two Punch\",[\"skillIcons\"] = {[\"Combat\"] = 1}},{[\"name\"] = \"Stand Together\",[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Vicious Blow\",[\"skillIcons\"] = {[\"Combat\"] = 1}},{[\"name\"] = \"Evidence! (1)\",[\"skillIcons\"] = {[\"Intellect\"] = 2}},{[\"name\"] = \"Galvanize (1)\",[\"skillIcons\"] = {[\"Will\"] = 2}},{[\"name\"] = \"Counterpunch (2)\",[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Combat\"] = 2}},{[\"name\"] = \"\\\"Get over here!\\\" (2)\",[\"skillIcons\"] = {[\"Will\"] = 2,[\"Combat\"] = 1}},{[\"name\"] = \"Lesson Learned (2)\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Intellect\"] = 2}},{[\"name\"] = \"Mano a Mano (2)\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Overpower (2)\",[\"skillIcons\"] = {[\"Combat\"] = 3}},{[\"name\"] = \"Boxing Gloves (3)\",[\"skillIcons\"] = {[\"Combat\"] = 2}},{[\"name\"] = \"Grete Wagner (3)\",[\"skillIcons\"] = {[\"Wild\"] = 1,[\"Combat\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Dynamite Blast (3)\",[\"skillIcons\"] = {[\"Will\"] = 2,[\"Combat\"] = 2}},{[\"name\"] = \"Taunt (3)\",[\"skillIcons\"] = {[\"Will\"] = 2,[\"Agility\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Physical Training (4)\",[\"skillIcons\"] = {[\"Will\"] = 2,[\"Combat\"] = 2}},{[\"name\"] = \"One-Two Punch (5)\",[\"skillIcons\"] = {[\"Combat\"] = 4}},{[\"name\"] = \"Harvey Walters\",[\"skillIcons\"] = {[\"Will\"] = 4,[\"Agility\"] = 2,[\"Combat\"] = 1,[\"Intellect\"] = 5}},{[\"name\"] = \"Vault of Knowledge\",[\"skillIcons\"] = {[\"Wild\"] = 1,[\"Will\"] = 1,[\"Agility\"] = 1}},{[\"name\"] = \"Thrice-Damned Curiosity\",[\"skillIcons\"] = {}},{[\"name\"] = \"Obsessive\",[\"skillIcons\"] = {}},{[\"name\"] = \"Arcane Enlightenment\",[\"skillIcons\"] = {[\"Will\"] = 2}},{[\"name\"] = \"Celaeno Fragments\",[\"skillIcons\"] = {[\"Intellect\"] = 1}},{[\"name\"] = \"Disc of Itzamna\",[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Encyclopedia\",[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Feed the Mind\",[\"skillIcons\"] = {[\"Intellect\"] = 1}},{[\"name\"] = \"Forbidden Tome\",[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Higher Education\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Laboratory Assistant\",[\"skillIcons\"] = {[\"Intellect\"] = 1}},{[\"name\"] = \"Whitton Greene\",[\"skillIcons\"] = {[\"Intellect\"] = 1}},{[\"name\"] = \"Burning the Midnight Oil\",[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Cryptic Writings\",[\"skillIcons\"] = {[\"Intellect\"] = 2}},{[\"name\"] = \"Extensive Research\",[\"skillIcons\"] = {[\"Intellect\"] = 2}},{[\"name\"] = \"Occult Invocation\",[\"skillIcons\"] = {[\"Combat\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Preposterous Sketches\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Deduction\",[\"skillIcons\"] = {[\"Intellect\"] = 1}},{[\"name\"] = \"Library Docent (1)\",[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Glimpse the Unthinkable (1)\",[\"skillIcons\"] = {[\"Intellect\"] = 2}},{[\"name\"] = \"Esoteric Atlas (2)\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Agility\"] = 1}},{[\"name\"] = \"Whitton Greene (2)\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Cryptic Writings (2)\",[\"skillIcons\"] = {[\"Wild\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"\\\"I've got a plan!\\\" (2)\",[\"skillIcons\"] = {[\"Combat\"] = 1,[\"Intellect\"] = 2}},{[\"name\"] = \"Mind over Matter (2)\",[\"skillIcons\"] = {[\"Wild\"] = 1,[\"Agility\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Seeking Answers (2)\",[\"skillIcons\"] = {[\"Agility\"] = 2,[\"Intellect\"] = 1}},{[\"name\"] = \"Perception (2)\",[\"skillIcons\"] = {[\"Intellect\"] = 3}},{[\"name\"] = \"Forbidden Tome (3)\",[\"skillIcons\"] = {[\"Wild\"] = 1,[\"Will\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Forbidden Tome (3)\",[\"skillIcons\"] = {[\"Wild\"] = 1,[\"Agility\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Farsight (4)\",[\"skillIcons\"] = {[\"Wild\"] = 1,[\"Will\"] = 1}},{[\"name\"] = \"Miskatonic Archaeology Funding (4)\",[\"skillIcons\"] = {}},{[\"name\"] = \"The Necronomicon (5)\",[\"skillIcons\"] = {[\"Intellect\"] = 5}},{[\"name\"] = \"Winifred Habbamock\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Agility\"] = 5,[\"Combat\"] = 3,[\"Intellect\"] = 3}},{[\"name\"] = \"Anything You Can Do, Better\",[\"skillIcons\"] = {[\"Wild\"] = 6}},{[\"name\"] = \"Arrogance\",[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Reckless\",[\"skillIcons\"] = {}},{[\"name\"] = \"Lockpicks\",[\"skillIcons\"] = {[\"Intellect\"] = 1}},{[\"name\"] = \"Mauser C96\",[\"skillIcons\"] = {[\"Agility\"] = 1}},{[\"name\"] = \"Switchblade\",[\"skillIcons\"] = {[\"Agility\"] = 1}},{[\"name\"] = \"Lucky Cigarette Case\",[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Lonnie Ritter\",[\"skillIcons\"] = {[\"Combat\"] = 1}},{[\"name\"] = \"Leather Jacket\",[\"skillIcons\"] = {[\"Combat\"] = 1}},{[\"name\"] = \"Streetwise\",[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Cheap Shot\",[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Daring Maneuver\",[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Slip Away\",[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Pilfer\",[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Sneak By\",[\"skillIcons\"] = {[\"Agility\"] = 2}},{[\"name\"] = \"Nimble\",[\"skillIcons\"] = {[\"Agility\"] = 1}},{[\"name\"] = \"Daredevil\",[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Opportunist\",[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Liquid Courage (1)\",[\"skillIcons\"] = {[\"Will\"] = 2}},{[\"name\"] = \"Mauser C96 (2)\",[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Daring Maneuver (2)\",[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Cheap Shot (2)\",[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Slip Away (2)\",[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Manual Dexterity (2)\",[\"skillIcons\"] = {[\"Agility\"] = 3}},{[\"name\"] = \"Lucky Cigarette Case (3)\",[\"skillIcons\"] = {[\"Will\"] = 2}},{[\"name\"] = \"Sharpshooter (3)\",[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Pilfer (3)\",[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Backstab (3)\",[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Copycat (3)\",[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Beretta M1918 (4)\",[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Combat\"] = 2}},{[\"name\"] = \"Chuck Fergus (5)\",[\"skillIcons\"] = {[\"Wild\"] = 1,[\"Agility\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Jacqueline Fine\",[\"skillIcons\"] = {[\"Will\"] = 5,[\"Agility\"] = 2,[\"Combat\"] = 2,[\"Intellect\"] = 3}},{[\"name\"] = \"Arbiter of Fates\",[\"skillIcons\"] = {[\"Wild\"] = 1,[\"Will\"] = 1,[\"Agility\"] = 1}},{[\"name\"] = \"Dark Future\",[\"skillIcons\"] = {}},{[\"name\"] = \"Nihilism\",[\"skillIcons\"] = {}},{[\"name\"] = \"Ritual Candles\",[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Scrying Mirror\",[\"skillIcons\"] = {[\"Intellect\"] = 1}},{[\"name\"] = \"Azure Flame\",[\"skillIcons\"] = {[\"Combat\"] = 1}},{[\"name\"] = \"Clairvoyance\",[\"skillIcons\"] = {[\"Intellect\"] = 1}},{[\"name\"] = \"Ineffable Truth\",[\"skillIcons\"] = {[\"Agility\"] = 1}},{[\"name\"] = \"Familiar Spirit\",[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Crystal Pendulum\",[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Robes of Endless Night\",[\"skillIcons\"] = {[\"Agility\"] = 1}},{[\"name\"] = \"Astral Travel\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Agility\"] = 1}},{[\"name\"] = \"Hypnotic Gaze\",[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Parallel Fates\",[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Voice of Ra\",[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Dark Prophecy\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Agility\"] = 1}},{[\"name\"] = \"Defiance\",[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Prescient\",[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Eldritch Inspiration (1)\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Intellect\"] = 2}},{[\"name\"] = \"Grotesque Statue (2)\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Agility\"] = 1}},{[\"name\"] = \"Robes of Endless Night (2)\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Agility\"] = 1}},{[\"name\"] = \"Hypnotic Gaze (2)\",[\"skillIcons\"] = {[\"Agility\"] = 2,[\"Combat\"] = 1}},{[\"name\"] = \"Guts (2)\",[\"skillIcons\"] = {[\"Will\"] = 3}},{[\"name\"] = \"Azure Flame (3)\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Clairvoyance (3)\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Ineffable Truth (3)\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Agility\"] = 1}},{[\"name\"] = \"Arcane Studies (4)\",[\"skillIcons\"] = {[\"Will\"] = 2,[\"Intellect\"] = 2}},{[\"name\"] = \"Recharge (4)\",[\"skillIcons\"] = {[\"Will\"] = 3}},{[\"name\"] = \"Azure Flame (5)\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Combat\"] = 2}},{[\"name\"] = \"Clairvoyance (5)\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Intellect\"] = 2}},{[\"name\"] = \"Ineffable Truth (5)\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Agility\"] = 2}},{[\"name\"] = \"Stella Clark\",[\"skillIcons\"] = {[\"Will\"] = 3,[\"Agility\"] = 4,[\"Combat\"] = 3,[\"Intellect\"] = 2}},{[\"name\"] = \"Neither Rain nor Snow\",[\"skillIcons\"] = {[\"Wild\"] = 3}},{[\"name\"] = \"Called by the Mists\",[\"skillIcons\"] = {}},{[\"name\"] = \"Atychiphobia\",[\"skillIcons\"] = {}},{[\"name\"] = \".18 Derringer\",[\"skillIcons\"] = {[\"Combat\"] = 1}},{[\"name\"] = \"Grimm's Fairy Tales\",[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Old Keyring\",[\"skillIcons\"] = {[\"Intellect\"] = 1}},{[\"name\"] = \"Granny Orne\",[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Mysterious Raven\",[\"skillIcons\"] = {[\"Intellect\"] = 1}},{[\"name\"] = \"Rabbit's Foot\",[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Scrapper\",[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Will to Survive\",[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"A Test of Will\",[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Dumb Luck\",[\"skillIcons\"] = {[\"Agility\"] = 2}},{[\"name\"] = \"Grit Your Teeth\",[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Live and Learn\",[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"\\\"Look what I found!\\\"\",[\"skillIcons\"] = {[\"Intellect\"] = 2}},{[\"name\"] = \"Oops!\",[\"skillIcons\"] = {[\"Combat\"] = 2}},{[\"name\"] = \"Take Heart\",[\"skillIcons\"] = {}},{[\"name\"] = \"Cherished Keepsake (1)\",[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Leather Coat (1)\",[\"skillIcons\"] = {[\"Combat\"] = 1}},{[\"name\"] = \".18 Derringer (2)\",[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"A Test of Will (2)\",[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"\\\"Look what I found!\\\" (2)\",[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Intellect\"] = 2}},{[\"name\"] = \"Dumb Luck (2)\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Agility\"] = 2}},{[\"name\"] = \"Unexpected Courage (2)\",[\"skillIcons\"] = {[\"Wild\"] = 2}},{[\"name\"] = \"Granny Orne (3)\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Lucky! (3)\",[\"skillIcons\"] = {}},{[\"name\"] = \"Chainsaw (4)\",[\"skillIcons\"] = {[\"Combat\"] = 3}},{[\"name\"] = \"Quick Learner (4)\",[\"skillIcons\"] = {}},{[\"name\"] = \"Déjà Vu (5)\",[\"skillIcons\"] = {}},{[\"name\"] = \"To the Dreamlands\",[\"skillIcons\"] = {}},{[\"name\"] = \"Fate of the Dreamers\",[\"skillIcons\"] = {}},{[\"name\"] = \"Prisoners of Conquest\",[\"skillIcons\"] = {}},{[\"name\"] = \"Ruins of Sarkomand\",[\"skillIcons\"] = {}},{[\"name\"] = \"Effigy of Nodens\",[\"skillIcons\"] = {}},{[\"name\"] = \"Usurp the Night\",[\"skillIcons\"] = {}},{[\"name\"] = \"The Translator's Evidence\",[\"skillIcons\"] = {}},{[\"name\"] = \"The Supplicant's Evidence\",[\"skillIcons\"] = {}},{[\"name\"] = \"The Priestess's Evidence\",[\"skillIcons\"] = {}},{[\"name\"] = \"The Salesman's Evidence\",[\"skillIcons\"] = {}},{[\"name\"] = \"The Assassin's Evidence\",[\"skillIcons\"] = {}},{[\"name\"] = \"The Professor's Evidence\",[\"skillIcons\"] = {}},{[\"name\"] = \"Daisy Walker\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Agility\"] = 2,[\"Combat\"] = 2,[\"Intellect\"] = 5}},{[\"name\"] = \"Daisy's Tote Bag\",[\"skillIcons\"] = {[\"Wild\"] = 2,[\"Will\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"The Necronomicon\",[\"skillIcons\"] = {}},{[\"name\"] = \"\\\"Skids\\\" O'Toole\",[\"skillIcons\"] = {[\"Will\"] = 2,[\"Agility\"] = 4,[\"Combat\"] = 3,[\"Intellect\"] = 3}},{[\"name\"] = \"On the Lam\",[\"skillIcons\"] = {[\"Wild\"] = 2,[\"Agility\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Hospital Debts\",[\"skillIcons\"] = {}},{[\"name\"] = \"Agnes Baker\",[\"skillIcons\"] = {[\"Will\"] = 5,[\"Agility\"] = 3,[\"Combat\"] = 2,[\"Intellect\"] = 2}},{[\"name\"] = \"Heirloom of Hyperborea\",[\"skillIcons\"] = {[\"Wild\"] = 2,[\"Will\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Dark Memory\",[\"skillIcons\"] = {}},{[\"name\"] = \"Triumph and Subjugation\",[\"skillIcons\"] = {}},{[\"name\"] = \"Jenny Barnes\",[\"skillIcons\"] = {[\"Will\"] = 3,[\"Agility\"] = 3,[\"Combat\"] = 3,[\"Intellect\"] = 3}},{[\"name\"] = \"Green Man Medallion\",[\"skillIcons\"] = {[\"Wild\"] = 2}},{[\"name\"] = \"Sacrificial Beast\",[\"skillIcons\"] = {}},{[\"name\"] = \"Roland Banks\",[\"skillIcons\"] = {[\"Will\"] = 3,[\"Agility\"] = 2,[\"Combat\"] = 4,[\"Intellect\"] = 3}},{[\"name\"] = \"Mysteries Remain\",[\"skillIcons\"] = {[\"Wild\"] = 1,[\"Combat\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"The Dirge of Reason\",[\"skillIcons\"] = {}},{[\"name\"] = \"Norman Withers\",[\"skillIcons\"] = {[\"Will\"] = 4,[\"Agility\"] = 1,[\"Combat\"] = 2,[\"Intellect\"] = 5}},{[\"name\"] = \"Split the Angle\",[\"skillIcons\"] = {[\"Wild\"] = 1,[\"Will\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Vengeful Hound\",[\"skillIcons\"] = {}},{[\"name\"] = \"Carolyn Fern\",[\"skillIcons\"] = {[\"Will\"] = 3,[\"Agility\"] = 2,[\"Combat\"] = 2,[\"Intellect\"] = 4}},{[\"name\"] = \"Foolishness\",[\"skillIcons\"] = {[\"Wild\"] = 2}},{[\"name\"] = \"To Fight the Black Wind\",[\"skillIcons\"] = {}},{[\"name\"] = \"Silas Marsh\",[\"skillIcons\"] = {[\"Will\"] = 2,[\"Agility\"] = 4,[\"Combat\"] = 4,[\"Intellect\"] = 2}},{[\"name\"] = \"Nautical Prowess\",[\"skillIcons\"] = {[\"Wild\"] = 1,[\"Will\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Dreams of the Deep\",[\"skillIcons\"] = {[\"Wild\"] = 2}},{[\"name\"] = \"Dexter Drake\",[\"skillIcons\"] = {[\"Will\"] = 5,[\"Agility\"] = 2,[\"Combat\"] = 3,[\"Intellect\"] = 2}},{[\"name\"] = \"Molly Maxwell\",[\"skillIcons\"] = {[\"Wild\"] = 1,[\"Will\"] = 1,[\"Agility\"] = 1}},{[\"name\"] = \"Yaztaroth\",[\"skillIcons\"] = {}},{[\"name\"] = \"Gloria Goldberg\",[\"skillIcons\"] = {[\"Will\"] = 5,[\"Agility\"] = 1,[\"Combat\"] = 2,[\"Intellect\"] = 4}},{[\"name\"] = \"Ruth Westmacott\",[\"skillIcons\"] = {[\"Wild\"] = 1,[\"Intellect\"] = 2}},{[\"name\"] = \"Liber Omnium Finium\",[\"skillIcons\"] = {}},{[\"name\"] = \"Marie Lambeau\",[\"skillIcons\"] = {[\"Will\"] = 4,[\"Agility\"] = 3,[\"Combat\"] = 1,[\"Intellect\"] = 4}},{[\"name\"] = \"Mystifying Song\",[\"skillIcons\"] = {[\"Wild\"] = 2}},{[\"name\"] = \"Baron Samedi\",[\"skillIcons\"] = {}}}\r\nend",
"LuaScriptState": "",
"XmlUI": ""
},
"2": {
"GUID": "1e28aa",
"Name": "Custom_Model_Bag",
"Transform": {
"posX": 12.5691156,
"posY": 1.65270829,
"posZ": 1.17885256,
"rotX": 359.915863,
"rotY": 269.993134,
"rotZ": 0.0214566234,
"scaleX": 0.725000262,
"scaleY": 0.725000262,
"scaleZ": 0.725000262
},
"Nickname": "Diana Stanley Helper",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.3647037,
"g": 0.3333312,
"b": 0.576470554
},
"LayoutGroupSortIndex": 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,
"Number": 0,
"CustomMesh": {
"MeshURL": "http://cloud-3.steamusercontent.com/ugc/1754695414379239413/0B8E68F3B7311DCF2138FB701F78D1D93FBA4CAB/",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/1754695635919071208/1AB7222850201630826BFFBA8F2BD0065E2D572F/",
"NormalURL": "",
"ColliderURL": "http://cloud-3.steamusercontent.com/ugc/1754695414379239413/0B8E68F3B7311DCF2138FB701F78D1D93FBA4CAB/",
"Convex": true,
"MaterialIndex": 1,
"TypeIndex": 6,
"CastShadows": true
},
"Bag": {
"Order": 0
},
"LuaScript": "function onload(saved_data)\r\n cardsInBag = {}\r\n memoizedCards = {}\r\n cardJson = loadCards()\r\nend\r\n\r\nfunction onObjectEnterContainer(container, object)\r\n if container == self then\r\n --use previously-found cards for faster performace\r\n if memoizedCards[object.getName()] then\r\n table.insert(cardsInBag, {name = object.getName() .. memoizedCards[object.getName()], id = object.getGUID()})\r\n recreateButtons()\r\n else\r\n findCard(object)\r\n end\r\n end\r\nend\r\n\r\nfunction onObjectLeaveContainer(container, object)\r\n if container == self then\r\n removeCardByGUID(cardsInBag, object.getGUID())\r\n recreateButtons()\r\n end\r\nend\r\n\r\nfunction findCard(object)\r\n local icons = ''\r\n local cost = ''\r\n\r\n for _, card in pairs (cardJson) do\r\n if (card.name == object.getName()) then\r\n local skillIcons = getIcons(card.skillIcons)\r\n if skillIcons ~= '' then\r\n icons = '\\n' .. skillIcons\r\n end\r\n if card.cost ~= nil then\r\n cost = '[' .. card.cost .. '] '\r\n end\r\n break\r\n end\r\n end\r\n\r\n --memoize result\r\n memoizedCards[object.getName()] = icons\r\n\r\n table.insert(cardsInBag, {name = cost .. object.getName() .. icons, id = object.getGUID()})\r\n recreateButtons()\r\nend\r\n\r\nfunction getIcons(skillIcons)\r\n local icons = ''\r\n\r\n for icon, value in pairs (skillIcons) do\r\n icons = icons .. icon .. ': ' .. value .. ' '\r\n end\r\n\r\n return icons\r\nend\r\n\r\nfunction recreateButtons()\r\n self.clearButtons()\r\n verticalPosition = 1.5\r\n\r\n for _, card in ipairs(cardsInBag) do\r\n if _G['removeCard' .. card.id] == nil then\r\n _G['removeCard' .. card.id] = function()\r\n removeCard(card.id)\r\n end\r\n end\r\n\r\n self.createButton({\r\n label = card.name,\r\n click_function = \"removeCard\" .. card.id,\r\n function_owner = self,\r\n position = {0,0,verticalPosition},\r\n height = 225,\r\n width = 1200,\r\n font_size = 75,\r\n color = {1,1,1},\r\n font_color = {0,0,0}\r\n })\r\n\r\n verticalPosition = verticalPosition - 0.55\r\n end\r\n\r\n countLabel = #cardsInBag == 0 and '' or #cardsInBag\r\n\r\n self.createButton({\r\n label = countLabel,\r\n click_function = 'nothing',\r\n function_owner = self,\r\n position = {0,0,-1.25},\r\n width = 0,\r\n height = 0,\r\n font_size = 225,\r\n font_color = {1,1,1}\r\n })\r\nend\r\n\r\nfunction nothing()\r\nend\r\n\r\nfunction removeCard(cardGUID)\r\n self.takeObject({\r\n guid = cardGUID,\r\n rotation = self.getRotation(),\r\n position = self.getPosition() + Vector(0,0.5,0),\r\n callback_function = function(obj)\r\n obj.resting = true\r\n end\r\n })\r\nend\r\n\r\nfunction removeCardByGUID(bag, guid)\r\n local idx = nil\r\n\r\n for i, v in ipairs (bag) do\r\n if (v.id == guid) then\r\n idx = i\r\n end\r\n end\r\n\r\n if idx ~= nil then\r\n table.remove(cardsInBag, idx)\r\n end\r\nend\r\n\r\nfunction loadCards()\r\n return {{[\"name\"] = \"Random Basic Weakness\",[\"skillIcons\"] = {}},{[\"name\"] = \"Roland Banks\",[\"skillIcons\"] = {[\"Will\"] = 3,[\"Agility\"] = 2,[\"Combat\"] = 4,[\"Intellect\"] = 3}},{[\"name\"] = \"Daisy Walker\",[\"skillIcons\"] = {[\"Will\"] = 3,[\"Agility\"] = 2,[\"Combat\"] = 2,[\"Intellect\"] = 5}},{[\"name\"] = \"\\\"Skids\\\" O'Toole\",[\"skillIcons\"] = {[\"Will\"] = 2,[\"Agility\"] = 4,[\"Combat\"] = 3,[\"Intellect\"] = 3}},{[\"name\"] = \"Agnes Baker\",[\"skillIcons\"] = {[\"Will\"] = 5,[\"Agility\"] = 3,[\"Combat\"] = 2,[\"Intellect\"] = 2}},{[\"name\"] = \"Wendy Adams\",[\"skillIcons\"] = {[\"Will\"] = 4,[\"Agility\"] = 4,[\"Combat\"] = 1,[\"Intellect\"] = 3}},{[\"name\"] = \"Roland's .38 Special\",[\"cost\"] = 3,[\"skillIcons\"] = {[\"Wild\"] = 1,[\"Agility\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Cover Up\",[\"skillIcons\"] = {}},{[\"name\"] = \"Daisy's Tote Bag\",[\"cost\"] = 2,[\"skillIcons\"] = {[\"Wild\"] = 1,[\"Will\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"The Necronomicon\",[\"skillIcons\"] = {}},{[\"name\"] = \"On the Lam\",[\"cost\"] = 1,[\"skillIcons\"] = {[\"Wild\"] = 2,[\"Agility\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Hospital Debts\",[\"skillIcons\"] = {}},{[\"name\"] = \"Heirloom of Hyperborea\",[\"cost\"] = 3,[\"skillIcons\"] = {[\"Wild\"] = 1,[\"Will\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Dark Memory\",[\"cost\"] = 2,[\"skillIcons\"] = {}},{[\"name\"] = \"Wendy's Amulet\",[\"cost\"] = 2,[\"skillIcons\"] = {[\"Wild\"] = 2}},{[\"name\"] = \"Abandoned and Alone\",[\"skillIcons\"] = {}},{[\"name\"] = \".45 Automatic\",[\"cost\"] = 4,[\"skillIcons\"] = {[\"Agility\"] = 1}},{[\"name\"] = \"Physical Training\",[\"cost\"] = 2,[\"skillIcons\"] = {[\"Will\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Beat Cop\",[\"cost\"] = 4,[\"skillIcons\"] = {[\"Combat\"] = 1}},{[\"name\"] = \"First Aid\",[\"cost\"] = 2,[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Machete\",[\"cost\"] = 3,[\"skillIcons\"] = {[\"Combat\"] = 1}},{[\"name\"] = \"Guard Dog\",[\"cost\"] = 3,[\"skillIcons\"] = {[\"Combat\"] = 1}},{[\"name\"] = \"Evidence!\",[\"cost\"] = 1,[\"skillIcons\"] = {[\"Intellect\"] = 2}},{[\"name\"] = \"Dodge\",[\"cost\"] = 1,[\"skillIcons\"] = {[\"Will\"] = 1,[\"Agility\"] = 1}},{[\"name\"] = \"Dynamite Blast\",[\"cost\"] = 5,[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Vicious Blow\",[\"skillIcons\"] = {[\"Combat\"] = 1}},{[\"name\"] = \"Extra Ammunition (1)\",[\"cost\"] = 2,[\"skillIcons\"] = {[\"Intellect\"] = 1}},{[\"name\"] = \"Police Badge (2)\",[\"cost\"] = 3,[\"skillIcons\"] = {[\"Wild\"] = 1,[\"Will\"] = 1}},{[\"name\"] = \"Beat Cop (2)\",[\"cost\"] = 4,[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Shotgun (4)\",[\"cost\"] = 5,[\"skillIcons\"] = {[\"Combat\"] = 2}},{[\"name\"] = \"Magnifying Glass\",[\"cost\"] = 1,[\"skillIcons\"] = {[\"Intellect\"] = 1}},{[\"name\"] = \"Old Book of Lore\",[\"cost\"] = 3,[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Research Librarian\",[\"cost\"] = 2,[\"skillIcons\"] = {[\"Agility\"] = 1}},{[\"name\"] = \"Dr. Milan Christopher\",[\"cost\"] = 4,[\"skillIcons\"] = {[\"Intellect\"] = 1}},{[\"name\"] = \"Hyperawareness\",[\"cost\"] = 2,[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Medical Texts\",[\"cost\"] = 2,[\"skillIcons\"] = {[\"Combat\"] = 1}},{[\"name\"] = \"Mind over Matter\",[\"cost\"] = 1,[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Working a Hunch\",[\"cost\"] = 2,[\"skillIcons\"] = {[\"Intellect\"] = 2}},{[\"name\"] = \"Barricade\",[\"cost\"] = 0,[\"skillIcons\"] = {[\"Will\"] = 1,[\"Agility\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Deduction\",[\"skillIcons\"] = {[\"Intellect\"] = 1}},{[\"name\"] = \"Magnifying Glass (1)\",[\"cost\"] = 0,[\"skillIcons\"] = {[\"Intellect\"] = 1}},{[\"name\"] = \"Disc of Itzamna (2)\",[\"cost\"] = 3,[\"skillIcons\"] = {[\"Will\"] = 1,[\"Combat\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Encyclopedia (2)\",[\"cost\"] = 2,[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Cryptic Research (4)\",[\"cost\"] = 0,[\"skillIcons\"] = {}},{[\"name\"] = \"Switchblade\",[\"cost\"] = 1,[\"skillIcons\"] = {[\"Agility\"] = 1}},{[\"name\"] = \"Burglary\",[\"cost\"] = 1,[\"skillIcons\"] = {[\"Intellect\"] = 1}},{[\"name\"] = \"Pickpocketing\",[\"cost\"] = 2,[\"skillIcons\"] = {[\"Agility\"] = 1}},{[\"name\"] = \".41 Derringer\",[\"cost\"] = 3,[\"skillIcons\"] = {[\"Combat\"] = 1}},{[\"name\"] = \"Leo De Luca\",[\"cost\"] = 6,[\"skillIcons\"] = {[\"Intellect\"] = 1}},{[\"name\"] = \"Hard Knocks\",[\"cost\"] = 2,[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Elusive\",[\"cost\"] = 2,[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Backstab\",[\"cost\"] = 3,[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Sneak Attack\",[\"cost\"] = 2,[\"skillIcons\"] = {[\"Combat\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Opportunist\",[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Leo De Luca (1)\",[\"cost\"] = 5,[\"skillIcons\"] = {[\"Intellect\"] = 1}},{[\"name\"] = \"Cat Burglar (1)\",[\"cost\"] = 4,[\"skillIcons\"] = {[\"Will\"] = 1,[\"Agility\"] = 1}},{[\"name\"] = \"Sure Gamble (3)\",[\"cost\"] = 2,[\"skillIcons\"] = {}},{[\"name\"] = \"Hot Streak (4)\",[\"cost\"] = 3,[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Forbidden Knowledge\",[\"cost\"] = 0,[\"skillIcons\"] = {[\"Intellect\"] = 1}},{[\"name\"] = \"Holy Rosary\",[\"cost\"] = 2,[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Shrivelling\",[\"cost\"] = 3,[\"skillIcons\"] = {[\"Combat\"] = 1}},{[\"name\"] = \"Scrying\",[\"cost\"] = 1,[\"skillIcons\"] = {[\"Intellect\"] = 1}},{[\"name\"] = \"Arcane Studies\",[\"cost\"] = 2,[\"skillIcons\"] = {[\"Will\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Arcane Initiate\",[\"cost\"] = 1,[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Drawn to the Flame\",[\"cost\"] = 0,[\"skillIcons\"] = {[\"Will\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Ward of Protection\",[\"cost\"] = 1,[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Blinding Light\",[\"cost\"] = 2,[\"skillIcons\"] = {[\"Will\"] = 1,[\"Agility\"] = 1}},{[\"name\"] = \"Fearless\",[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Mind Wipe (1)\",[\"cost\"] = 1,[\"skillIcons\"] = {[\"Will\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Blinding Light (2)\",[\"cost\"] = 1,[\"skillIcons\"] = {[\"Will\"] = 1,[\"Agility\"] = 1}},{[\"name\"] = \"Book of Shadows (3)\",[\"cost\"] = 4,[\"skillIcons\"] = {[\"Will\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Grotesque Statue (4)\",[\"cost\"] = 2,[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Leather Coat\",[\"cost\"] = 0,[\"skillIcons\"] = {[\"Combat\"] = 1}},{[\"name\"] = \"Scavenging\",[\"cost\"] = 1,[\"skillIcons\"] = {[\"Intellect\"] = 1}},{[\"name\"] = \"Baseball Bat\",[\"cost\"] = 2,[\"skillIcons\"] = {[\"Combat\"] = 1}},{[\"name\"] = \"Rabbit's Foot\",[\"cost\"] = 1,[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Stray Cat\",[\"cost\"] = 1,[\"skillIcons\"] = {[\"Agility\"] = 1}},{[\"name\"] = \"Dig Deep\",[\"cost\"] = 2,[\"skillIcons\"] = {[\"Will\"] = 1,[\"Agility\"] = 1}},{[\"name\"] = \"Cunning Distraction\",[\"cost\"] = 5,[\"skillIcons\"] = {[\"Wild\"] = 1,[\"Will\"] = 1}},{[\"name\"] = \"\\\"Look what I found!\\\"\",[\"cost\"] = 2,[\"skillIcons\"] = {[\"Intellect\"] = 2}},{[\"name\"] = \"Lucky!\",[\"cost\"] = 1,[\"skillIcons\"] = {}},{[\"name\"] = \"Survival Instinct\",[\"skillIcons\"] = {[\"Agility\"] = 1}},{[\"name\"] = \"Aquinnah (1)\",[\"cost\"] = 5,[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Close Call (2)\",[\"cost\"] = 2,[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Lucky! (2)\",[\"cost\"] = 1,[\"skillIcons\"] = {}},{[\"name\"] = \"Will to Survive (3)\",[\"cost\"] = 4,[\"skillIcons\"] = {[\"Wild\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Knife\",[\"cost\"] = 1,[\"skillIcons\"] = {[\"Combat\"] = 1}},{[\"name\"] = \"Flashlight\",[\"cost\"] = 2,[\"skillIcons\"] = {[\"Intellect\"] = 1}},{[\"name\"] = \"Emergency Cache\",[\"cost\"] = 0,[\"skillIcons\"] = {}},{[\"name\"] = \"Guts\",[\"skillIcons\"] = {[\"Will\"] = 2}},{[\"name\"] = \"Perception\",[\"skillIcons\"] = {[\"Intellect\"] = 2}},{[\"name\"] = \"Overpower\",[\"skillIcons\"] = {[\"Combat\"] = 2}},{[\"name\"] = \"Manual Dexterity\",[\"skillIcons\"] = {[\"Agility\"] = 2}},{[\"name\"] = \"Unexpected Courage\",[\"skillIcons\"] = {[\"Wild\"] = 2}},{[\"name\"] = \"Bulletproof Vest (3)\",[\"cost\"] = 2,[\"skillIcons\"] = {[\"Wild\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Elder Sign Amulet (3)\",[\"cost\"] = 2,[\"skillIcons\"] = {[\"Wild\"] = 1,[\"Will\"] = 1}},{[\"name\"] = \"Amnesia\",[\"skillIcons\"] = {}},{[\"name\"] = \"Paranoia\",[\"skillIcons\"] = {}},{[\"name\"] = \"Haunted\",[\"skillIcons\"] = {}},{[\"name\"] = \"Psychosis\",[\"skillIcons\"] = {}},{[\"name\"] = \"Hypochondria\",[\"skillIcons\"] = {}},{[\"name\"] = \"Mob Enforcer\",[\"skillIcons\"] = {}},{[\"name\"] = \"Silver Twilight Acolyte\",[\"skillIcons\"] = {}},{[\"name\"] = \"Stubborn Detective\",[\"skillIcons\"] = {}},{[\"name\"] = \"Zoey Samaras\",[\"skillIcons\"] = {[\"Will\"] = 4,[\"Agility\"] = 2,[\"Combat\"] = 4,[\"Intellect\"] = 2}},{[\"name\"] = \"Rex Murphy\",[\"skillIcons\"] = {[\"Will\"] = 3,[\"Agility\"] = 3,[\"Combat\"] = 2,[\"Intellect\"] = 4}},{[\"name\"] = \"Jenny Barnes\",[\"skillIcons\"] = {[\"Will\"] = 3,[\"Agility\"] = 3,[\"Combat\"] = 3,[\"Intellect\"] = 3}},{[\"name\"] = \"Jim Culver\",[\"skillIcons\"] = {[\"Will\"] = 4,[\"Agility\"] = 2,[\"Combat\"] = 3,[\"Intellect\"] = 3}},{[\"name\"] = \"\\\"Ashcan\\\" Pete\",[\"skillIcons\"] = {[\"Will\"] = 4,[\"Agility\"] = 3,[\"Combat\"] = 2,[\"Intellect\"] = 2}},{[\"name\"] = \"Zoey's Cross\",[\"cost\"] = 1,[\"skillIcons\"] = {[\"Wild\"] = 1,[\"Combat\"] = 2}},{[\"name\"] = \"Smite the Wicked\",[\"skillIcons\"] = {}},{[\"name\"] = \"Search for the Truth\",[\"cost\"] = 1,[\"skillIcons\"] = {[\"Wild\"] = 1,[\"Intellect\"] = 2}},{[\"name\"] = \"Rex's Curse\",[\"skillIcons\"] = {}},{[\"name\"] = \"Jenny's Twin .45s\",[\"cost\"] = -2,[\"skillIcons\"] = {[\"Wild\"] = 1,[\"Agility\"] = 2}},{[\"name\"] = \"Searching for Izzie\",[\"skillIcons\"] = {}},{[\"name\"] = \"Jim's Trumpet\",[\"cost\"] = 2,[\"skillIcons\"] = {[\"Wild\"] = 1,[\"Will\"] = 2}},{[\"name\"] = \"Final Rhapsody\",[\"skillIcons\"] = {}},{[\"name\"] = \"Duke\",[\"cost\"] = 2,[\"skillIcons\"] = {}},{[\"name\"] = \"Wracked by Nightmares\",[\"skillIcons\"] = {}},{[\"name\"] = \"Blackjack\",[\"cost\"] = 1,[\"skillIcons\"] = {[\"Combat\"] = 1}},{[\"name\"] = \"Taunt\",[\"cost\"] = 1,[\"skillIcons\"] = {[\"Will\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Teamwork\",[\"cost\"] = 0,[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Taunt (2)\",[\"cost\"] = 1,[\"skillIcons\"] = {[\"Will\"] = 1,[\"Agility\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Laboratory Assistant\",[\"cost\"] = 2,[\"skillIcons\"] = {[\"Intellect\"] = 1}},{[\"name\"] = \"Strange Solution\",[\"cost\"] = 1,[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Shortcut\",[\"cost\"] = 0,[\"skillIcons\"] = {[\"Will\"] = 1,[\"Agility\"] = 1}},{[\"name\"] = \"Seeking Answers\",[\"cost\"] = 1,[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Liquid Courage\",[\"cost\"] = 1,[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Think on Your Feet\",[\"cost\"] = 1,[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Double or Nothing\",[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Hired Muscle (1)\",[\"cost\"] = 1,[\"skillIcons\"] = {[\"Combat\"] = 1}},{[\"name\"] = \"Rite of Seeking\",[\"cost\"] = 4,[\"skillIcons\"] = {[\"Intellect\"] = 1}},{[\"name\"] = \"Ritual Candles\",[\"cost\"] = 1,[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Clarity of Mind\",[\"cost\"] = 2,[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Bind Monster (2)\",[\"cost\"] = 3,[\"skillIcons\"] = {[\"Will\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Fire Axe\",[\"cost\"] = 1,[\"skillIcons\"] = {[\"Combat\"] = 1}},{[\"name\"] = \"Peter Sylvestre\",[\"cost\"] = 3,[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Bait and Switch\",[\"cost\"] = 1,[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Peter Sylvestre (2)\",[\"cost\"] = 3,[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Kukri\",[\"cost\"] = 2,[\"skillIcons\"] = {[\"Combat\"] = 1}},{[\"name\"] = \"Indebted\",[\"skillIcons\"] = {}},{[\"name\"] = \"Internal Injury\",[\"skillIcons\"] = {}},{[\"name\"] = \"Chronophobia\",[\"skillIcons\"] = {}},{[\"name\"] = \"Emergency Aid\",[\"cost\"] = 2,[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Brother Xavier (1)\",[\"cost\"] = 5,[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"\\\"I've got a plan!\\\"\",[\"cost\"] = 3,[\"skillIcons\"] = {[\"Combat\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Pathfinder (1)\",[\"cost\"] = 3,[\"skillIcons\"] = {[\"Agility\"] = 1}},{[\"name\"] = \"Contraband\",[\"cost\"] = 4,[\"skillIcons\"] = {[\"Will\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Adaptable (1)\",[\"skillIcons\"] = {}},{[\"name\"] = \"Delve Too Deep\",[\"cost\"] = 1,[\"skillIcons\"] = {}},{[\"name\"] = \"Song of the Dead (2)\",[\"cost\"] = 2,[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Oops!\",[\"cost\"] = 2,[\"skillIcons\"] = {[\"Combat\"] = 2}},{[\"name\"] = \"Fire Extinguisher (1)\",[\"cost\"] = 2,[\"skillIcons\"] = {[\"Agility\"] = 1}},{[\"name\"] = \"Flare (1)\",[\"cost\"] = 2,[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Smoking Pipe\",[\"cost\"] = 1,[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Painkillers\",[\"cost\"] = 1,[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Bandolier\",[\"cost\"] = 2,[\"skillIcons\"] = {[\"Combat\"] = 1}},{[\"name\"] = \"Stand Together (3)\",[\"cost\"] = 0,[\"skillIcons\"] = {[\"Will\"] = 2}},{[\"name\"] = \"Art Student\",[\"cost\"] = 2,[\"skillIcons\"] = {[\"Intellect\"] = 1}},{[\"name\"] = \"Deduction (2)\",[\"skillIcons\"] = {[\"Intellect\"] = 2}},{[\"name\"] = \"\\\"I'm outta here!\\\"\",[\"cost\"] = 0,[\"skillIcons\"] = {[\"Agility\"] = 2}},{[\"name\"] = \"Switchblade (2)\",[\"cost\"] = 1,[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Hypnotic Gaze\",[\"cost\"] = 3,[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Shrivelling (3)\",[\"cost\"] = 3,[\"skillIcons\"] = {[\"Will\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Newspaper\",[\"cost\"] = 1,[\"skillIcons\"] = {[\"Intellect\"] = 1}},{[\"name\"] = \"Lure (1)\",[\"cost\"] = 1,[\"skillIcons\"] = {[\"Agility\"] = 2}},{[\"name\"] = \"Relic Hunter (3)\",[\"skillIcons\"] = {}},{[\"name\"] = \"Charisma (3)\",[\"skillIcons\"] = {}},{[\"name\"] = \"Prepared for the Worst\",[\"cost\"] = 1,[\"skillIcons\"] = {[\"Combat\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Keen Eye (3)\",[\"skillIcons\"] = {}},{[\"name\"] = \"Preposterous Sketches\",[\"cost\"] = 2,[\"skillIcons\"] = {[\"Will\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Higher Education (3)\",[\"skillIcons\"] = {}},{[\"name\"] = \"Lone Wolf\",[\"cost\"] = 1,[\"skillIcons\"] = {[\"Agility\"] = 1}},{[\"name\"] = \"Streetwise (3)\",[\"skillIcons\"] = {}},{[\"name\"] = \"Defiance\",[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Blood Pact (3)\",[\"skillIcons\"] = {}},{[\"name\"] = \"Rise to the Occasion\",[\"skillIcons\"] = {[\"Wild\"] = 3}},{[\"name\"] = \"Scrapper (3)\",[\"skillIcons\"] = {}},{[\"name\"] = \"Emergency Cache (2)\",[\"cost\"] = 0,[\"skillIcons\"] = {}},{[\"name\"] = \"\\\"If it bleeds...\\\"\",[\"cost\"] = 1,[\"skillIcons\"] = {[\"Will\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Springfield M1903 (4)\",[\"cost\"] = 4,[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Inquiring Mind\",[\"skillIcons\"] = {[\"Wild\"] = 3}},{[\"name\"] = \"Expose Weakness (1)\",[\"cost\"] = 0,[\"skillIcons\"] = {[\"Combat\"] = 2,[\"Intellect\"] = 1}},{[\"name\"] = \"Quick Thinking\",[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Lucky Dice (2)\",[\"cost\"] = 2,[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Opportunist (2)\",[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Alyssa Graham\",[\"cost\"] = 4,[\"skillIcons\"] = {[\"Intellect\"] = 1}},{[\"name\"] = \"Rite of Seeking (4)\",[\"cost\"] = 5,[\"skillIcons\"] = {[\"Intellect\"] = 2}},{[\"name\"] = \"Dark Horse\",[\"cost\"] = 3,[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Survival Instinct (2)\",[\"skillIcons\"] = {[\"Agility\"] = 2}},{[\"name\"] = \"Leadership\",[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"\\\"I've had worse...\\\" (4)\",[\"cost\"] = 0,[\"skillIcons\"] = {[\"Will\"] = 2,[\"Agility\"] = 1}},{[\"name\"] = \"Strange Solution (4)\",[\"cost\"] = 1,[\"skillIcons\"] = {[\"Will\"] = 2}},{[\"name\"] = \"Strange Solution (4)\",[\"cost\"] = 1,[\"skillIcons\"] = {[\"Combat\"] = 2}},{[\"name\"] = \"Strange Solution (4)\",[\"cost\"] = 1,[\"skillIcons\"] = {[\"Agility\"] = 2}},{[\"name\"] = \"Joey \\\"The Rat\\\" Vigil\",[\"cost\"] = 4,[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Ace in the Hole (3)\",[\"cost\"] = 0,[\"skillIcons\"] = {}},{[\"name\"] = \"Moonlight Ritual\",[\"cost\"] = 0,[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Fearless (2)\",[\"skillIcons\"] = {[\"Will\"] = 2}},{[\"name\"] = \"Jewel of Aureolus (3)\",[\"cost\"] = 3,[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"A Chance Encounter\",[\"cost\"] = 1,[\"skillIcons\"] = {[\"Will\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Stroke of Luck (2)\",[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Fine Clothes\",[\"cost\"] = 1,[\"skillIcons\"] = {[\"Agility\"] = 1}},{[\"name\"] = \"Moment of Respite (3)\",[\"cost\"] = 3,[\"skillIcons\"] = {[\"Will\"] = 2}},{[\"name\"] = \"Vicious Blow (2)\",[\"skillIcons\"] = {[\"Combat\"] = 2}},{[\"name\"] = \"Monster Slayer (5)\",[\"cost\"] = 1,[\"skillIcons\"] = {[\"Wild\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Lightning Gun (5)\",[\"cost\"] = 6,[\"skillIcons\"] = {[\"Combat\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Dr. William T. Maleson\",[\"cost\"] = 1,[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Deciphered Reality (5)\",[\"cost\"] = 4,[\"skillIcons\"] = {[\"Will\"] = 1,[\"Intellect\"] = 2}},{[\"name\"] = \"Chicago Typewriter (4)\",[\"cost\"] = 5,[\"skillIcons\"] = {[\"Combat\"] = 2}},{[\"name\"] = \"The Gold Pocket Watch (4)\",[\"cost\"] = 2,[\"skillIcons\"] = {[\"Wild\"] = 1,[\"Will\"] = 1}},{[\"name\"] = \"Shrivelling (5)\",[\"cost\"] = 3,[\"skillIcons\"] = {[\"Will\"] = 1,[\"Combat\"] = 2}},{[\"name\"] = \"Ward of Protection (5)\",[\"cost\"] = 1,[\"skillIcons\"] = {[\"Wild\"] = 1,[\"Will\"] = 1}},{[\"name\"] = \"Aquinnah (3)\",[\"cost\"] = 4,[\"skillIcons\"] = {[\"Will\"] = 1,[\"Agility\"] = 1}},{[\"name\"] = \"Try and Try Again (3)\",[\"cost\"] = 2,[\"skillIcons\"] = {[\"Will\"] = 2}},{[\"name\"] = \"The Red-Gloved Man (5)\",[\"cost\"] = 2,[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Mark Harrigan\",[\"skillIcons\"] = {[\"Will\"] = 3,[\"Agility\"] = 3,[\"Combat\"] = 5,[\"Intellect\"] = 2}},{[\"name\"] = \"Minh Thi Phan\",[\"skillIcons\"] = {[\"Will\"] = 4,[\"Agility\"] = 2,[\"Combat\"] = 2,[\"Intellect\"] = 4}},{[\"name\"] = \"Sefina Rousseau\",[\"skillIcons\"] = {[\"Will\"] = 4,[\"Agility\"] = 4,[\"Combat\"] = 2,[\"Intellect\"] = 2}},{[\"name\"] = \"Akachi Onyele\",[\"skillIcons\"] = {[\"Will\"] = 5,[\"Agility\"] = 3,[\"Combat\"] = 3,[\"Intellect\"] = 2}},{[\"name\"] = \"William Yorick\",[\"skillIcons\"] = {[\"Will\"] = 3,[\"Agility\"] = 3,[\"Combat\"] = 4,[\"Intellect\"] = 2}},{[\"name\"] = \"Lola Hayes\",[\"skillIcons\"] = {[\"Will\"] = 3,[\"Agility\"] = 3,[\"Combat\"] = 3,[\"Intellect\"] = 3}},{[\"name\"] = \"The Home Front\",[\"skillIcons\"] = {[\"Combat\"] = 4}},{[\"name\"] = \"Shell Shock\",[\"skillIcons\"] = {}},{[\"name\"] = \"Sophie\",[\"skillIcons\"] = {}},{[\"name\"] = \"Sophie\",[\"skillIcons\"] = {}},{[\"name\"] = \"Analytical Mind\",[\"cost\"] = 3,[\"skillIcons\"] = {[\"Wild\"] = 2}},{[\"name\"] = \"The King in Yellow\",[\"skillIcons\"] = {}},{[\"name\"] = \"The Painted World\",[\"skillIcons\"] = {[\"Wild\"] = 1,[\"Will\"] = 1,[\"Agility\"] = 1}},{[\"name\"] = \"Stars of Hyades\",[\"skillIcons\"] = {}},{[\"name\"] = \"Spirit-Speaker\",[\"cost\"] = 2,[\"skillIcons\"] = {[\"Wild\"] = 1,[\"Will\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Angered Spirits\",[\"skillIcons\"] = {}},{[\"name\"] = \"Bury Them Deep\",[\"cost\"] = 0,[\"skillIcons\"] = {[\"Wild\"] = 1,[\"Will\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Graveyard Ghouls\",[\"skillIcons\"] = {}},{[\"name\"] = \"Improvisation\",[\"cost\"] = 0,[\"skillIcons\"] = {[\"Wild\"] = 2}},{[\"name\"] = \"Crisis of Identity\",[\"skillIcons\"] = {}},{[\"name\"] = \".32 Colt\",[\"cost\"] = 3,[\"skillIcons\"] = {[\"Combat\"] = 1}},{[\"name\"] = \"True Grit\",[\"cost\"] = 3,[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"\\\"Let me handle this!\\\"\",[\"cost\"] = 0,[\"skillIcons\"] = {[\"Will\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Ever Vigilant (1)\",[\"cost\"] = 0,[\"skillIcons\"] = {[\"Intellect\"] = 2}},{[\"name\"] = \"Fieldwork\",[\"cost\"] = 2,[\"skillIcons\"] = {[\"Agility\"] = 1}},{[\"name\"] = \"Archaic Glyphs\",[\"cost\"] = 0,[\"skillIcons\"] = {[\"Intellect\"] = 1}},{[\"name\"] = \"No Stone Unturned\",[\"cost\"] = 2,[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"In the Know (1)\",[\"cost\"] = 3,[\"skillIcons\"] = {[\"Intellect\"] = 1}},{[\"name\"] = \"Stealth\",[\"cost\"] = 2,[\"skillIcons\"] = {[\"Agility\"] = 1}},{[\"name\"] = \"Sleight of Hand\",[\"cost\"] = 1,[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Daring Maneuver\",[\"cost\"] = 0,[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Lockpicks (1)\",[\"cost\"] = 3,[\"skillIcons\"] = {[\"Intellect\"] = 1}},{[\"name\"] = \"Alchemical Transmutation\",[\"cost\"] = 1,[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Uncage the Soul\",[\"cost\"] = 0,[\"skillIcons\"] = {[\"Will\"] = 2}},{[\"name\"] = \"Astral Travel\",[\"cost\"] = 3,[\"skillIcons\"] = {[\"Will\"] = 1,[\"Agility\"] = 1}},{[\"name\"] = \"Spirit Athame (1)\",[\"cost\"] = 3,[\"skillIcons\"] = {[\"Combat\"] = 1}},{[\"name\"] = \"Lantern\",[\"cost\"] = 2,[\"skillIcons\"] = {[\"Intellect\"] = 1}},{[\"name\"] = \"Gravedigger's Shovel\",[\"cost\"] = 2,[\"skillIcons\"] = {[\"Combat\"] = 1}},{[\"name\"] = \"Hiding Spot\",[\"cost\"] = 1,[\"skillIcons\"] = {[\"Agility\"] = 2}},{[\"name\"] = \"Resourceful\",[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Combat\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Overzealous\",[\"skillIcons\"] = {}},{[\"name\"] = \"Drawing the Sign\",[\"skillIcons\"] = {}},{[\"name\"] = \"The Thing That Follows\",[\"skillIcons\"] = {}},{[\"name\"] = \"Constance Dumaine\",[\"skillIcons\"] = {}},{[\"name\"] = \"Jordan Perry\",[\"skillIcons\"] = {}},{[\"name\"] = \"Ishimaru Haruko\",[\"skillIcons\"] = {}},{[\"name\"] = \"Sebastien Moreau\",[\"skillIcons\"] = {}},{[\"name\"] = \"Ashleigh Clarke\",[\"skillIcons\"] = {}},{[\"name\"] = \"Engram's Oath\",[\"skillIcons\"] = {}},{[\"name\"] = \"L'agneau Perdu\",[\"skillIcons\"] = {}},{[\"name\"] = \"The Pattern\",[\"skillIcons\"] = {}},{[\"name\"] = \"The First Show\",[\"skillIcons\"] = {}},{[\"name\"] = \"Above and Below\",[\"skillIcons\"] = {}},{[\"name\"] = \"Heroic Rescue\",[\"cost\"] = 1,[\"skillIcons\"] = {[\"Will\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Combat Training (1)\",[\"cost\"] = 1,[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Anatomical Diagrams\",[\"cost\"] = 1,[\"skillIcons\"] = {[\"Will\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Scientific Theory (1)\",[\"cost\"] = 1,[\"skillIcons\"] = {[\"Combat\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Knuckleduster\",[\"cost\"] = 2,[\"skillIcons\"] = {[\"Combat\"] = 1}},{[\"name\"] = \"Moxie (1)\",[\"cost\"] = 1,[\"skillIcons\"] = {[\"Will\"] = 1,[\"Agility\"] = 1}},{[\"name\"] = \"David Renfield\",[\"cost\"] = 2,[\"skillIcons\"] = {[\"Intellect\"] = 1}},{[\"name\"] = \"Grounded (1)\",[\"cost\"] = 1,[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Cherished Keepsake\",[\"cost\"] = 0,[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Plucky (1)\",[\"cost\"] = 1,[\"skillIcons\"] = {[\"Will\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Say Your Prayers\",[\"skillIcons\"] = {[\"Will\"] = 4}},{[\"name\"] = \"Desperate Search\",[\"skillIcons\"] = {[\"Intellect\"] = 4}},{[\"name\"] = \"Reckless Assault\",[\"skillIcons\"] = {[\"Combat\"] = 4}},{[\"name\"] = \"Run For Your Life\",[\"skillIcons\"] = {[\"Agility\"] = 4}},{[\"name\"] = \"Trench Knife\",[\"cost\"] = 1,[\"skillIcons\"] = {[\"Combat\"] = 1}},{[\"name\"] = \"Ambush (1)\",[\"cost\"] = 2,[\"skillIcons\"] = {[\"Combat\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Charles Ross, Esq.\",[\"cost\"] = 2,[\"skillIcons\"] = {[\"Intellect\"] = 1}},{[\"name\"] = \"Forewarned (1)\",[\"cost\"] = 0,[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Dario El-Amin\",[\"cost\"] = 4,[\"skillIcons\"] = {[\"Intellect\"] = 1}},{[\"name\"] = \"Sneak Attack (2)\",[\"cost\"] = 2,[\"skillIcons\"] = {[\"Combat\"] = 2,[\"Intellect\"] = 1}},{[\"name\"] = \"Storm of Spirits\",[\"cost\"] = 3,[\"skillIcons\"] = {[\"Will\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Book of Shadows (1)\",[\"cost\"] = 3,[\"skillIcons\"] = {[\"Intellect\"] = 1}},{[\"name\"] = \"Fight or Flight\",[\"cost\"] = 1,[\"skillIcons\"] = {}},{[\"name\"] = \"A Test of Will (1)\",[\"cost\"] = 1,[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Devil's Luck (1)\",[\"cost\"] = 1,[\"skillIcons\"] = {[\"Agility\"] = 1}},{[\"name\"] = \"Calling in Favors\",[\"cost\"] = 1,[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"\\\"I'll see you in hell!\\\"\",[\"cost\"] = 0,[\"skillIcons\"] = {[\"Combat\"] = 2}},{[\"name\"] = \".45 Automatic (2)\",[\"cost\"] = 4,[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Logical Reasoning\",[\"cost\"] = 2,[\"skillIcons\"] = {[\"Will\"] = 2}},{[\"name\"] = \"Archaic Glyphs (3)\",[\"cost\"] = 2,[\"skillIcons\"] = {[\"Will\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Archaic Glyphs (3)\",[\"cost\"] = 2,[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Cheap Shot\",[\"cost\"] = 2,[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Pickpocketing (2)\",[\"cost\"] = 2,[\"skillIcons\"] = {[\"Agility\"] = 2}},{[\"name\"] = \"Quantum Flux\",[\"cost\"] = 1,[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Recharge (2)\",[\"cost\"] = 0,[\"skillIcons\"] = {[\"Will\"] = 2}},{[\"name\"] = \"Madame Labranche\",[\"cost\"] = 2,[\"skillIcons\"] = {[\"Intellect\"] = 1}},{[\"name\"] = \"Snare Trap (2)\",[\"cost\"] = 2,[\"skillIcons\"] = {[\"Will\"] = 1,[\"Agility\"] = 1}},{[\"name\"] = \"Inspiring Presence\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Combat\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Mano a Mano (1)\",[\"cost\"] = 0,[\"skillIcons\"] = {[\"Will\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"First Aid (3)\",[\"cost\"] = 2,[\"skillIcons\"] = {[\"Will\"] = 2}},{[\"name\"] = \"Eureka!\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Agility\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Shortcut (2)\",[\"cost\"] = 1,[\"skillIcons\"] = {[\"Will\"] = 1,[\"Agility\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"\\\"Watch this!\\\"\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Agility\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \".41 Derringer (2)\",[\"cost\"] = 3,[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Torrent of Power\",[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Scrying (3)\",[\"cost\"] = 1,[\"skillIcons\"] = {[\"Intellect\"] = 2}},{[\"name\"] = \"Waylay\",[\"cost\"] = 3,[\"skillIcons\"] = {[\"Agility\"] = 2}},{[\"name\"] = \"A Chance Encounter (2)\",[\"cost\"] = -2,[\"skillIcons\"] = {[\"Will\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Emergency Cache (3)\",[\"cost\"] = 0,[\"skillIcons\"] = {}},{[\"name\"] = \"On the Hunt\",[\"cost\"] = 1,[\"skillIcons\"] = {[\"Combat\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Stick to the Plan (3)\",[\"skillIcons\"] = {}},{[\"name\"] = \"Guidance\",[\"cost\"] = 0,[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Arcane Insight (4)\",[\"cost\"] = 3,[\"skillIcons\"] = {[\"Will\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Narrow Escape\",[\"cost\"] = 0,[\"skillIcons\"] = {[\"Agility\"] = 2}},{[\"name\"] = \"Suggestion (4)\",[\"cost\"] = 3,[\"skillIcons\"] = {[\"Will\"] = 1,[\"Agility\"] = 1}},{[\"name\"] = \"St. Hubert's Key\",[\"cost\"] = 4,[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Ward of Protection (2)\",[\"cost\"] = 1,[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Arcane Initiate (3)\",[\"cost\"] = 0,[\"skillIcons\"] = {[\"Will\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"\\\"Not without a fight!\\\"\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Agility\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"True Survivor (3)\",[\"cost\"] = 3,[\"skillIcons\"] = {}},{[\"name\"] = \"\\\"Eat lead!\\\" (2)\",[\"cost\"] = 0,[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Armor of Ardennes (5)\",[\"cost\"] = 4,[\"skillIcons\"] = {[\"Will\"] = 2,[\"Combat\"] = 2}},{[\"name\"] = \"Eidetic Memory (3)\",[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"No Stone Unturned (5)\",[\"cost\"] = 2,[\"skillIcons\"] = {[\"Wild\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Charon's Obol (1)\",[\"skillIcons\"] = {}},{[\"name\"] = \"Lupara (3)\",[\"cost\"] = 3,[\"skillIcons\"] = {[\"Combat\"] = 1}},{[\"name\"] = \"Cheat Death (5)\",[\"cost\"] = 1,[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Time Warp (2)\",[\"cost\"] = 1,[\"skillIcons\"] = {}},{[\"name\"] = \"Seal of the Elder Sign (5)\",[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Newspaper (2)\",[\"cost\"] = 1,[\"skillIcons\"] = {[\"Intellect\"] = 2}},{[\"name\"] = \"Infighting (3)\",[\"cost\"] = 1,[\"skillIcons\"] = {[\"Agility\"] = 2,[\"Intellect\"] = 2}},{[\"name\"] = \"Key of Ys (5)\",[\"cost\"] = 3,[\"skillIcons\"] = {[\"Wild\"] = 1,[\"Will\"] = 1}},{[\"name\"] = \"Songs That the Hyades Shall Sing\",[\"skillIcons\"] = {}},{[\"name\"] = \"Stars of Aldebaran\",[\"skillIcons\"] = {}},{[\"name\"] = \"Bleak Desolation\",[\"skillIcons\"] = {}},{[\"name\"] = \"Inhabitant of Carcosa\",[\"skillIcons\"] = {}},{[\"name\"] = \"A Moment's Rest\",[\"skillIcons\"] = {}},{[\"name\"] = \"The Coffin\",[\"skillIcons\"] = {}},{[\"name\"] = \"Mapping the Streets\",[\"skillIcons\"] = {}},{[\"name\"] = \"The King's Parade\",[\"skillIcons\"] = {}},{[\"name\"] = \"The Archway\",[\"skillIcons\"] = {}},{[\"name\"] = \"The Height of the Depths\",[\"skillIcons\"] = {}},{[\"name\"] = \"Steps of the Palace\",[\"skillIcons\"] = {}},{[\"name\"] = \"The Fall\",[\"skillIcons\"] = {}},{[\"name\"] = \"Hastur's End\",[\"skillIcons\"] = {}},{[\"name\"] = \"Leo Anderson\",[\"skillIcons\"] = {[\"Will\"] = 4,[\"Agility\"] = 1,[\"Combat\"] = 4,[\"Intellect\"] = 3}},{[\"name\"] = \"Ursula Downs\",[\"skillIcons\"] = {[\"Will\"] = 3,[\"Agility\"] = 4,[\"Combat\"] = 1,[\"Intellect\"] = 4}},{[\"name\"] = \"Finn Edwards\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Agility\"] = 4,[\"Combat\"] = 3,[\"Intellect\"] = 4}},{[\"name\"] = \"Father Mateo\",[\"skillIcons\"] = {[\"Will\"] = 4,[\"Agility\"] = 3,[\"Combat\"] = 2,[\"Intellect\"] = 3}},{[\"name\"] = \"Calvin Wright\",[\"skillIcons\"] = {[\"Will\"] = 0,[\"Agility\"] = 0,[\"Combat\"] = 0,[\"Intellect\"] = 0}},{[\"name\"] = \"Mitch Brown\",[\"cost\"] = 3,[\"skillIcons\"] = {[\"Wild\"] = 2}},{[\"name\"] = \"Bought in Blood\",[\"skillIcons\"] = {}},{[\"name\"] = \"Jake Williams\",[\"cost\"] = 3,[\"skillIcons\"] = {[\"Wild\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Call of the Unknown\",[\"skillIcons\"] = {}},{[\"name\"] = \"Smuggled Goods\",[\"cost\"] = 0,[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Finn's Trusty .38\",[\"cost\"] = 2,[\"skillIcons\"] = {[\"Wild\"] = 1,[\"Agility\"] = 1}},{[\"name\"] = \"Caught Red-Handed\",[\"skillIcons\"] = {}},{[\"name\"] = \"The Codex of Ages\",[\"cost\"] = 2,[\"skillIcons\"] = {[\"Wild\"] = 1,[\"Will\"] = 1}},{[\"name\"] = \"Serpents of Yig\",[\"skillIcons\"] = {}},{[\"name\"] = \"Until the End of Time\",[\"cost\"] = 1,[\"skillIcons\"] = {[\"Wild\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Voice of the Messenger\",[\"skillIcons\"] = {}},{[\"name\"] = \"Survival Knife\",[\"cost\"] = 2,[\"skillIcons\"] = {[\"Combat\"] = 1}},{[\"name\"] = \"Venturer\",[\"cost\"] = 4,[\"skillIcons\"] = {[\"Intellect\"] = 1}},{[\"name\"] = \"Trusted\",[\"cost\"] = 1,[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Reliable (1)\",[\"cost\"] = 1,[\"skillIcons\"] = {[\"Intellect\"] = 1}},{[\"name\"] = \"Dr. Elli Horowitz\",[\"cost\"] = 3,[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Ancient Stone (1)\",[\"cost\"] = 1,[\"skillIcons\"] = {[\"Intellect\"] = 1}},{[\"name\"] = \"Tooth of Eztli\",[\"cost\"] = 3,[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Unearth the Ancients\",[\"cost\"] = 1,[\"skillIcons\"] = {[\"Intellect\"] = 2}},{[\"name\"] = \"Treasure Hunter (1)\",[\"cost\"] = 1,[\"skillIcons\"] = {[\"Intellect\"] = 1}},{[\"name\"] = \"Decorated Skull\",[\"cost\"] = 0,[\"skillIcons\"] = {[\"Agility\"] = 1}},{[\"name\"] = \"Eavesdrop\",[\"cost\"] = 1,[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"\\\"You handle this one!\\\"\",[\"cost\"] = 0,[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Mists of R'lyeh\",[\"cost\"] = 2,[\"skillIcons\"] = {[\"Agility\"] = 1}},{[\"name\"] = \"The Chthonian Stone\",[\"cost\"] = 3,[\"skillIcons\"] = {[\"Intellect\"] = 1}},{[\"name\"] = \"Protective Incantation (1)\",[\"cost\"] = 1,[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Dark Prophecy\",[\"cost\"] = 1,[\"skillIcons\"] = {[\"Will\"] = 1,[\"Agility\"] = 1}},{[\"name\"] = \"Improvised Weapon\",[\"cost\"] = 1,[\"skillIcons\"] = {}},{[\"name\"] = \"Dumb Luck\",[\"cost\"] = 2,[\"skillIcons\"] = {[\"Agility\"] = 2}},{[\"name\"] = \"Yaotl (1)\",[\"cost\"] = 3,[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Last Chance\",[\"skillIcons\"] = {[\"Wild\"] = 5}},{[\"name\"] = \"Backpack\",[\"cost\"] = 2,[\"skillIcons\"] = {[\"Agility\"] = 1}},{[\"name\"] = \"Dark Pact\",[\"cost\"] = 2,[\"skillIcons\"] = {}},{[\"name\"] = \"The Price of Failure\",[\"skillIcons\"] = {}},{[\"name\"] = \"Doomed\",[\"skillIcons\"] = {}},{[\"name\"] = \"Accursed Fate\",[\"skillIcons\"] = {}},{[\"name\"] = \"The Bell Tolls\",[\"skillIcons\"] = {}},{[\"name\"] = \"Scene of the Crime\",[\"cost\"] = 2,[\"skillIcons\"] = {[\"Combat\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Marksmanship (1)\",[\"cost\"] = 2,[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Persuasion\",[\"cost\"] = 2,[\"skillIcons\"] = {[\"Will\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Shrewd Analysis\",[\"skillIcons\"] = {}},{[\"name\"] = \"Lucky Cigarette Case\",[\"cost\"] = 2,[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Fence (1)\",[\"cost\"] = 3,[\"skillIcons\"] = {[\"Agility\"] = 1}},{[\"name\"] = \"Arcane Research\",[\"skillIcons\"] = {}},{[\"name\"] = \"Counterspell (2)\",[\"cost\"] = 2,[\"skillIcons\"] = {[\"Will\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Perseverance\",[\"cost\"] = 2,[\"skillIcons\"] = {[\"Will\"] = 2}},{[\"name\"] = \"Stunning Blow\",[\"skillIcons\"] = {[\"Combat\"] = 1}},{[\"name\"] = \"Second Wind\",[\"cost\"] = 1,[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Take the Initiative\",[\"skillIcons\"] = {[\"Wild\"] = 3}},{[\"name\"] = \"Well Prepared (2)\",[\"cost\"] = 2,[\"skillIcons\"] = {}},{[\"name\"] = \"Truth from Fiction\",[\"cost\"] = 2,[\"skillIcons\"] = {[\"Intellect\"] = 2}},{[\"name\"] = \"True Understanding\",[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Quick Study (2)\",[\"cost\"] = 2,[\"skillIcons\"] = {[\"Will\"] = 1,[\"Agility\"] = 1}},{[\"name\"] = \"Hatchet Man\",[\"skillIcons\"] = {[\"Agility\"] = 1}},{[\"name\"] = \"High Roller (2)\",[\"cost\"] = 2,[\"skillIcons\"] = {[\"Combat\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Enraptured\",[\"skillIcons\"] = {[\"Intellect\"] = 1}},{[\"name\"] = \"Recall the Future (2)\",[\"cost\"] = 2,[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Try and Try Again (1)\",[\"cost\"] = 2,[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Cornered (2)\",[\"cost\"] = 2,[\"skillIcons\"] = {[\"Will\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Intrepid\",[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Custom Ammunition (3)\",[\"cost\"] = 3,[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Otherworldly Compass (2)\",[\"cost\"] = 2,[\"skillIcons\"] = {[\"Intellect\"] = 2}},{[\"name\"] = \"Expose Weakness (3)\",[\"cost\"] = 0,[\"skillIcons\"] = {[\"Wild\"] = 1,[\"Combat\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Lola Santiago (3)\",[\"cost\"] = 3,[\"skillIcons\"] = {[\"Intellect\"] = 2}},{[\"name\"] = \"Olive McBride\",[\"cost\"] = 2,[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Defiance (2)\",[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Premonition\",[\"cost\"] = 0,[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Live and Learn\",[\"cost\"] = 0,[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Take Heart\",[\"skillIcons\"] = {}},{[\"name\"] = \"Against All Odds (2)\",[\"cost\"] = 2,[\"skillIcons\"] = {[\"Will\"] = 1,[\"Agility\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Trench Coat\",[\"cost\"] = 3,[\"skillIcons\"] = {[\"Agility\"] = 1}},{[\"name\"] = \"Ornate Bow (3)\",[\"cost\"] = 4,[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"M1918 BAR (4)\",[\"cost\"] = 5,[\"skillIcons\"] = {[\"Combat\"] = 2}},{[\"name\"] = \"Ancient Stone (4)\",[\"cost\"] = 2,[\"skillIcons\"] = {[\"Intellect\"] = 2}},{[\"name\"] = \"Ancient Stone (4)\",[\"cost\"] = 2,[\"skillIcons\"] = {[\"Will\"] = 2}},{[\"name\"] = \"Slip Away\",[\"cost\"] = 2,[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Pay Day (1)\",[\"cost\"] = 0,[\"skillIcons\"] = {}},{[\"name\"] = \"Sacrifice (1)\",[\"cost\"] = 0,[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Crystalline Elder Sign (3)\",[\"cost\"] = 3,[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"On Your Own (3)\",[\"cost\"] = 2,[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Handcuffs\",[\"cost\"] = 2,[\"skillIcons\"] = {[\"Agility\"] = 1}},{[\"name\"] = \"Blood Eclipse (3)\",[\"cost\"] = 1,[\"skillIcons\"] = {[\"Will\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Feed the Mind (3)\",[\"cost\"] = 2,[\"skillIcons\"] = {[\"Intellect\"] = 1}},{[\"name\"] = \"Colt Vest Pocket\",[\"cost\"] = 2,[\"skillIcons\"] = {[\"Agility\"] = 1}},{[\"name\"] = \"Coup de Grâce\",[\"cost\"] = 2,[\"skillIcons\"] = {[\"Combat\"] = 2}},{[\"name\"] = \"The Skeleton Key (2)\",[\"cost\"] = 3,[\"skillIcons\"] = {[\"Intellect\"] = 2}},{[\"name\"] = \"Mists of R'lyeh (4)\",[\"cost\"] = 2,[\"skillIcons\"] = {[\"Will\"] = 1,[\"Agility\"] = 1}},{[\"name\"] = \"Winging It\",[\"cost\"] = 1,[\"skillIcons\"] = {}},{[\"name\"] = \"Old Hunting Rifle (3)\",[\"cost\"] = 3,[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Thermos\",[\"cost\"] = 4,[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Hemispheric Map (3)\",[\"cost\"] = 2,[\"skillIcons\"] = {[\"Will\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Timeworn Brand (5)\",[\"cost\"] = 5,[\"skillIcons\"] = {[\"Will\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Kerosene (1)\",[\"cost\"] = 3,[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Flamethrower (5)\",[\"cost\"] = 4,[\"skillIcons\"] = {[\"Wild\"] = 1,[\"Combat\"] = 2}},{[\"name\"] = \"Vantage Point\",[\"cost\"] = 1,[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Pnakotic Manuscripts (5)\",[\"cost\"] = 5,[\"skillIcons\"] = {[\"Wild\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Borrowed Time (3)\",[\"cost\"] = 1,[\"skillIcons\"] = {[\"Will\"] = 1,[\"Agility\"] = 1}},{[\"name\"] = \"All In (5)\",[\"skillIcons\"] = {[\"Wild\"] = 2}},{[\"name\"] = \"Shards of the Void (3)\",[\"cost\"] = 3,[\"skillIcons\"] = {[\"Will\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Seal of the Seventh Sign (5)\",[\"cost\"] = 4,[\"skillIcons\"] = {[\"Wild\"] = 1,[\"Will\"] = 1}},{[\"name\"] = \"Impromptu Barrier\",[\"cost\"] = 1,[\"skillIcons\"] = {}},{[\"name\"] = \"Alter Fate (3)\",[\"cost\"] = 1,[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Yig's Mercy\",[\"skillIcons\"] = {}},{[\"name\"] = \"Another Way\",[\"skillIcons\"] = {}},{[\"name\"] = \"Carolyn Fern\",[\"skillIcons\"] = {[\"Will\"] = 3,[\"Agility\"] = 2,[\"Combat\"] = 2,[\"Intellect\"] = 4}},{[\"name\"] = \"Joe Diamond\",[\"skillIcons\"] = {[\"Will\"] = 2,[\"Agility\"] = 2,[\"Combat\"] = 4,[\"Intellect\"] = 4}},{[\"name\"] = \"Preston Fairmont\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Agility\"] = 1,[\"Combat\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Diana Stanley\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Agility\"] = 3,[\"Combat\"] = 3,[\"Intellect\"] = 3}},{[\"name\"] = \"Rita Young\",[\"skillIcons\"] = {[\"Will\"] = 3,[\"Agility\"] = 5,[\"Combat\"] = 3,[\"Intellect\"] = 2}},{[\"name\"] = \"Marie Lambeau\",[\"skillIcons\"] = {[\"Will\"] = 4,[\"Agility\"] = 3,[\"Combat\"] = 1,[\"Intellect\"] = 4}},{[\"name\"] = \"Hypnotic Therapy\",[\"cost\"] = 2,[\"skillIcons\"] = {[\"Wild\"] = 1,[\"Will\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Rational Thought\",[\"skillIcons\"] = {}},{[\"name\"] = \"Detective's Colt 1911s\",[\"cost\"] = 4,[\"skillIcons\"] = {[\"Wild\"] = 1,[\"Combat\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Unsolved Case\",[\"cost\"] = 4,[\"skillIcons\"] = {}},{[\"name\"] = \"Family Inheritance\",[\"skillIcons\"] = {}},{[\"name\"] = \"Lodge \\\"Debts\\\"\",[\"cost\"] = 10,[\"skillIcons\"] = {}},{[\"name\"] = \"Twilight Blade\",[\"cost\"] = 3,[\"skillIcons\"] = {[\"Wild\"] = 1,[\"Will\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Dark Insight\",[\"cost\"] = 2,[\"skillIcons\"] = {}},{[\"name\"] = \"Terrible Secret\",[\"skillIcons\"] = {}},{[\"name\"] = \"\\\"I'm done runnin'!\\\"\",[\"cost\"] = 0,[\"skillIcons\"] = {[\"Wild\"] = 1,[\"Agility\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Hoods\",[\"skillIcons\"] = {}},{[\"name\"] = \"Mystifying Song\",[\"cost\"] = 3,[\"skillIcons\"] = {[\"Wild\"] = 2}},{[\"name\"] = \"Baron Samedi\",[\"skillIcons\"] = {}},{[\"name\"] = \"Interrogate\",[\"cost\"] = 2,[\"skillIcons\"] = {[\"Combat\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Delay the Inevitable\",[\"cost\"] = 2,[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Steadfast\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Ace of Swords (1)\",[\"cost\"] = 3,[\"skillIcons\"] = {}},{[\"name\"] = \"Fingerprint Kit\",[\"cost\"] = 4,[\"skillIcons\"] = {[\"Intellect\"] = 1}},{[\"name\"] = \"Connect the Dots\",[\"cost\"] = 4,[\"skillIcons\"] = {[\"Intellect\"] = 2}},{[\"name\"] = \"Curiosity\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Death • XIII (1)\",[\"cost\"] = 3,[\"skillIcons\"] = {}},{[\"name\"] = \"Well Connected\",[\"cost\"] = 2,[\"skillIcons\"] = {[\"Intellect\"] = 1}},{[\"name\"] = \"Money Talks\",[\"cost\"] = 0,[\"skillIcons\"] = {}},{[\"name\"] = \"Cunning\",[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"The Moon • XVIII (1)\",[\"cost\"] = 3,[\"skillIcons\"] = {}},{[\"name\"] = \"Deny Existence\",[\"cost\"] = 0,[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Eldritch Inspiration\",[\"cost\"] = 0,[\"skillIcons\"] = {[\"Will\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Prophesy\",[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Four of Cups (1)\",[\"cost\"] = 3,[\"skillIcons\"] = {}},{[\"name\"] = \"Track Shoes\",[\"cost\"] = 3,[\"skillIcons\"] = {[\"Agility\"] = 1}},{[\"name\"] = \"Act of Desperation\",[\"cost\"] = 0,[\"skillIcons\"] = {[\"Combat\"] = 2}},{[\"name\"] = \"Able Bodied\",[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Five of Pentacles (1)\",[\"cost\"] = 3,[\"skillIcons\"] = {}},{[\"name\"] = \"Ace of Rods (1)\",[\"cost\"] = 3,[\"skillIcons\"] = {}},{[\"name\"] = \"The 13th Vision\",[\"skillIcons\"] = {}},{[\"name\"] = \"The Tower • XVI\",[\"cost\"] = 4,[\"skillIcons\"] = {}},{[\"name\"] = \"Something Worth Fighting For\",[\"cost\"] = 3,[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Crack the Case\",[\"cost\"] = 0,[\"skillIcons\"] = {[\"Intellect\"] = 1}},{[\"name\"] = \"Intel Report\",[\"cost\"] = 2,[\"skillIcons\"] = {[\"Intellect\"] = 2}},{[\"name\"] = \"Sign Magick\",[\"cost\"] = 3,[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Banish (1)\",[\"cost\"] = 2,[\"skillIcons\"] = {[\"Will\"] = 1,[\"Agility\"] = 1}},{[\"name\"] = \"Meat Cleaver\",[\"cost\"] = 3,[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \".45 Thompson\",[\"cost\"] = 6,[\"skillIcons\"] = {[\"Combat\"] = 1}},{[\"name\"] = \"Scroll of Secrets\",[\"cost\"] = 1,[\"skillIcons\"] = {[\"Intellect\"] = 1}},{[\"name\"] = \"Tennessee Sour Mash\",[\"cost\"] = 3,[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Enchanted Blade\",[\"cost\"] = 3,[\"skillIcons\"] = {[\"Combat\"] = 1}},{[\"name\"] = \"Grisly Totem\",[\"cost\"] = 3,[\"skillIcons\"] = {[\"Agility\"] = 1}},{[\"name\"] = \"Alice Luxley\",[\"cost\"] = 4,[\"skillIcons\"] = {[\"Intellect\"] = 1}},{[\"name\"] = \"Well-Maintained (1)\",[\"cost\"] = 0,[\"skillIcons\"] = {[\"Agility\"] = 1}},{[\"name\"] = \"Mr. \\\"Rook\\\"\",[\"cost\"] = 3,[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Hawk-Eye Folding Camera\",[\"cost\"] = 2,[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Henry Wan\",[\"cost\"] = 3,[\"skillIcons\"] = {[\"Agility\"] = 1}},{[\"name\"] = \"Swift Reflexes\",[\"cost\"] = 2,[\"skillIcons\"] = {[\"Agility\"] = 2}},{[\"name\"] = \"Wither\",[\"cost\"] = 2,[\"skillIcons\"] = {[\"Combat\"] = 1}},{[\"name\"] = \"Sixth Sense\",[\"cost\"] = 3,[\"skillIcons\"] = {[\"Intellect\"] = 1}},{[\"name\"] = \"Drawing Thin\",[\"cost\"] = 0,[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Belly of the Beast\",[\"cost\"] = 1,[\"skillIcons\"] = {[\"Will\"] = 1,[\"Agility\"] = 1}},{[\"name\"] = \".45 Thompson (3)\",[\"cost\"] = 6,[\"skillIcons\"] = {[\"Combat\"] = 2}},{[\"name\"] = \".45 Thompson (3)\",[\"cost\"] = 5,[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Scroll of Secrets (3)\",[\"cost\"] = 1,[\"skillIcons\"] = {[\"Intellect\"] = 2}},{[\"name\"] = \"Scroll of Secrets (3)\",[\"cost\"] = 1,[\"skillIcons\"] = {[\"Will\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Tennessee Sour Mash (3)\",[\"cost\"] = 3,[\"skillIcons\"] = {[\"Will\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Tennessee Sour Mash (3)\",[\"cost\"] = 2,[\"skillIcons\"] = {[\"Will\"] = 1,[\"Agility\"] = 1}},{[\"name\"] = \"Enchanted Blade (3)\",[\"cost\"] = 3,[\"skillIcons\"] = {[\"Combat\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Enchanted Blade (3)\",[\"cost\"] = 3,[\"skillIcons\"] = {[\"Will\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Grisly Totem (3)\",[\"cost\"] = 3,[\"skillIcons\"] = {[\"Will\"] = 1,[\"Agility\"] = 1}},{[\"name\"] = \"Grisly Totem (3)\",[\"cost\"] = 2,[\"skillIcons\"] = {[\"Will\"] = 1,[\"Agility\"] = 1}},{[\"name\"] = \"The Council's Coffer (2)\",[\"cost\"] = 0,[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Warning Shot\",[\"cost\"] = 2,[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Telescopic Sight (3)\",[\"cost\"] = 3,[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Combat\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Knowledge is Power\",[\"cost\"] = 0,[\"skillIcons\"] = {[\"Will\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Esoteric Atlas (1)\",[\"cost\"] = 3,[\"skillIcons\"] = {[\"Agility\"] = 1}},{[\"name\"] = \"Investments\",[\"cost\"] = 1,[\"skillIcons\"] = {[\"Intellect\"] = 1}},{[\"name\"] = \"Decoy\",[\"cost\"] = 2,[\"skillIcons\"] = {[\"Agility\"] = 2}},{[\"name\"] = \"De Vermis Mysteriis (2)\",[\"cost\"] = 2,[\"skillIcons\"] = {[\"Intellect\"] = 1}},{[\"name\"] = \"Guiding Spirit (1)\",[\"cost\"] = 1,[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Fortune or Fate (2)\",[\"cost\"] = 2,[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Mk 1 Grenades (4)\",[\"cost\"] = 3,[\"skillIcons\"] = {[\"Combat\"] = 1}},{[\"name\"] = \"Agency Backup (5)\",[\"cost\"] = 7,[\"skillIcons\"] = {[\"Will\"] = 1,[\"Combat\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Ghastly Revelation\",[\"cost\"] = 0,[\"skillIcons\"] = {[\"Intellect\"] = 2}},{[\"name\"] = \"Studious (3)\",[\"skillIcons\"] = {}},{[\"name\"] = \"Small Favor\",[\"cost\"] = 2,[\"skillIcons\"] = {[\"Combat\"] = 2}},{[\"name\"] = \"Another Day, Another Dollar (3)\",[\"skillIcons\"] = {}},{[\"name\"] = \"Dayana Esperence (3)\",[\"cost\"] = 4,[\"skillIcons\"] = {[\"Will\"] = 2}},{[\"name\"] = \"Deny Existence (5)\",[\"cost\"] = 0,[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Trial by Fire\",[\"cost\"] = 3,[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Bait and Switch (3)\",[\"cost\"] = 1,[\"skillIcons\"] = {[\"Agility\"] = 2,[\"Intellect\"] = 1}},{[\"name\"] = \"Anna Kaslow (4)\",[\"cost\"] = 3,[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Hallowed Mirror\",[\"cost\"] = 2,[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Soothing Melody\",[\"cost\"] = 0,[\"skillIcons\"] = {[\"Will\"] = 1,[\"Agility\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"\\\"I've had worse...\\\" (2)\",[\"cost\"] = 0,[\"skillIcons\"] = {[\"Will\"] = 1,[\"Agility\"] = 1}},{[\"name\"] = \"Occult Lexicon\",[\"cost\"] = 2,[\"skillIcons\"] = {[\"Intellect\"] = 1}},{[\"name\"] = \"Blood-Rite\",[\"cost\"] = 0,[\"skillIcons\"] = {[\"Will\"] = 1,[\"Combat\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Glimpse the Unthinkable (5)\",[\"cost\"] = 1,[\"skillIcons\"] = {[\"Intellect\"] = 3}},{[\"name\"] = \"\\\"You owe me one!\\\"\",[\"cost\"] = 0,[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Combat\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Double, Double (4)\",[\"cost\"] = 4,[\"skillIcons\"] = {[\"Will\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Wither (4)\",[\"cost\"] = 2,[\"skillIcons\"] = {[\"Combat\"] = 2}},{[\"name\"] = \"Sixth Sense (4)\",[\"cost\"] = 3,[\"skillIcons\"] = {[\"Intellect\"] = 2}},{[\"name\"] = \"Lure (2)\",[\"cost\"] = 1,[\"skillIcons\"] = {[\"Agility\"] = 2}},{[\"name\"] = \"Eucatastrophe (3)\",[\"cost\"] = 2,[\"skillIcons\"] = {[\"Wild\"] = 2}},{[\"name\"] = \"Tommy Muldoon\",[\"skillIcons\"] = {[\"Will\"] = 3,[\"Agility\"] = 2,[\"Combat\"] = 4,[\"Intellect\"] = 3}},{[\"name\"] = \"Mandy Thompson\",[\"skillIcons\"] = {[\"Will\"] = 3,[\"Agility\"] = 3,[\"Combat\"] = 1,[\"Intellect\"] = 5}},{[\"name\"] = \"Tony Morgan\",[\"skillIcons\"] = {[\"Will\"] = 2,[\"Agility\"] = 2,[\"Combat\"] = 5,[\"Intellect\"] = 3}},{[\"name\"] = \"Luke Robinson\",[\"skillIcons\"] = {[\"Will\"] = 4,[\"Agility\"] = 3,[\"Combat\"] = 2,[\"Intellect\"] = 3}},{[\"name\"] = \"Patrice Hathaway\",[\"skillIcons\"] = {[\"Will\"] = 4,[\"Agility\"] = 2,[\"Combat\"] = 2,[\"Intellect\"] = 2}},{[\"name\"] = \"Becky\",[\"cost\"] = 2,[\"skillIcons\"] = {[\"Wild\"] = 1,[\"Agility\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Rookie Mistake\",[\"skillIcons\"] = {}},{[\"name\"] = \"Occult Evidence\",[\"cost\"] = 0,[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Shocking Discovery\",[\"skillIcons\"] = {}},{[\"name\"] = \"Bounty Contracts\",[\"skillIcons\"] = {}},{[\"name\"] = \"Tony's .38 Long Colt\",[\"cost\"] = 3,[\"skillIcons\"] = {[\"Wild\"] = 1,[\"Combat\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Tony's Quarry\",[\"skillIcons\"] = {}},{[\"name\"] = \"Gate Box\",[\"cost\"] = 3,[\"skillIcons\"] = {}},{[\"name\"] = \"Detached from Reality\",[\"skillIcons\"] = {}},{[\"name\"] = \"Dream-Gate\",[\"skillIcons\"] = {}},{[\"name\"] = \"Dream-Gate\",[\"skillIcons\"] = {}},{[\"name\"] = \"Patrice's Violin\",[\"cost\"] = 2,[\"skillIcons\"] = {[\"Wild\"] = 1,[\"Will\"] = 1,[\"Agility\"] = 1}},{[\"name\"] = \"Watcher from Another Dimension\",[\"skillIcons\"] = {}},{[\"name\"] = \"The Hungering Blade (1)\",[\"cost\"] = 3,[\"skillIcons\"] = {[\"Combat\"] = 1}},{[\"name\"] = \"Bloodlust\",[\"skillIcons\"] = {}},{[\"name\"] = \"Solemn Vow\",[\"cost\"] = 0,[\"skillIcons\"] = {[\"Will\"] = 2}},{[\"name\"] = \"Segment of Onyx (1)\",[\"cost\"] = 1,[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Pendant of the Queen\",[\"skillIcons\"] = {}},{[\"name\"] = \"Astounding Revelation\",[\"skillIcons\"] = {[\"Intellect\"] = 1}},{[\"name\"] = \"Crystallizer of Dreams\",[\"cost\"] = 1,[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Guardian of the Crystallizer\",[\"skillIcons\"] = {}},{[\"name\"] = \"Easy Mark (1)\",[\"cost\"] = 0,[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Stargazing (1)\",[\"cost\"] = 0,[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"The Stars Are Right\",[\"skillIcons\"] = {}},{[\"name\"] = \"Open Gate\",[\"cost\"] = 1,[\"skillIcons\"] = {[\"Will\"] = 1,[\"Agility\"] = 1}},{[\"name\"] = \"Miss Doyle (1)\",[\"cost\"] = 3,[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Hope\",[\"cost\"] = 1,[\"skillIcons\"] = {[\"Combat\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Zeal\",[\"cost\"] = 1,[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Augur\",[\"cost\"] = 1,[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Fortuitous Discovery\",[\"cost\"] = -2,[\"skillIcons\"] = {}},{[\"name\"] = \"Self-Centered\",[\"skillIcons\"] = {}},{[\"name\"] = \"Kleptomania\",[\"skillIcons\"] = {}},{[\"name\"] = \"Narcolepsy\",[\"skillIcons\"] = {}},{[\"name\"] = \"Your Worst Nightmare\",[\"skillIcons\"] = {}},{[\"name\"] = \"First Watch\",[\"cost\"] = 1,[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Daring\",[\"skillIcons\"] = {[\"Wild\"] = 3}},{[\"name\"] = \"Dream Diary\",[\"cost\"] = 2,[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Essence of the Dream\",[\"skillIcons\"] = {[\"Wild\"] = 2}},{[\"name\"] = \"Followed\",[\"cost\"] = 2,[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Momentum (1)\",[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Scroll of Prophecies\",[\"cost\"] = 3,[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Read the Signs\",[\"cost\"] = 2,[\"skillIcons\"] = {[\"Will\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Jessica Hyde (1)\",[\"cost\"] = 3,[\"skillIcons\"] = {[\"Combat\"] = 1}},{[\"name\"] = \"Cryptic Souls\",[\"skillIcons\"] = {}},{[\"name\"] = \"Dreamlike Horrors\",[\"skillIcons\"] = {}},{[\"name\"] = \"Endless Secrets\",[\"skillIcons\"] = {}},{[\"name\"] = \"Cylinders of Kadatheron\",[\"skillIcons\"] = {}},{[\"name\"] = \"The Doom of Sarnath\",[\"skillIcons\"] = {}},{[\"name\"] = \"Ghosts of the Dead\",[\"skillIcons\"] = {}},{[\"name\"] = \"The Palace of Rainbows\",[\"skillIcons\"] = {}},{[\"name\"] = \"A Shrine to the Gods\",[\"skillIcons\"] = {}},{[\"name\"] = \"The Crypt of Zulan-Thek\",[\"skillIcons\"] = {}},{[\"name\"] = \"Wares of Baharna\",[\"skillIcons\"] = {}},{[\"name\"] = \"The Likeness of Old\",[\"skillIcons\"] = {}},{[\"name\"] = \"What Remains of Tyrrhia\",[\"skillIcons\"] = {}},{[\"name\"] = \"Advice of the King\",[\"skillIcons\"] = {}},{[\"name\"] = \"Timeless Beauty\",[\"skillIcons\"] = {}},{[\"name\"] = \"Unattainable Desires\",[\"skillIcons\"] = {}},{[\"name\"] = \"The City Inside\",[\"skillIcons\"] = {}},{[\"name\"] = \"The Baleful Star\",[\"skillIcons\"] = {}},{[\"name\"] = \"Tetsuo Mori\",[\"cost\"] = 3,[\"skillIcons\"] = {[\"Intellect\"] = 1}},{[\"name\"] = \"\\\"Fool me once...\\\" (1)\",[\"cost\"] = 1,[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Self-Sacrifice\",[\"skillIcons\"] = {}},{[\"name\"] = \"Otherworld Codex (2)\",[\"cost\"] = 3,[\"skillIcons\"] = {[\"Will\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Dream-Enhancing Serum\",[\"cost\"] = 3,[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"\\\"Let God sort them out...\\\"\",[\"cost\"] = 0,[\"skillIcons\"] = {[\"Combat\"] = 1}},{[\"name\"] = \"Swift Reload (2)\",[\"cost\"] = 3,[\"skillIcons\"] = {[\"Agility\"] = 1}},{[\"name\"] = \"Gregory Gry\",[\"cost\"] = 3,[\"skillIcons\"] = {[\"Intellect\"] = 1}},{[\"name\"] = \"Healing Words\",[\"cost\"] = 2,[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Ethereal Form\",[\"cost\"] = 2,[\"skillIcons\"] = {[\"Will\"] = 1,[\"Agility\"] = 1}},{[\"name\"] = \"Scrounge for Supplies\",[\"cost\"] = 0,[\"skillIcons\"] = {}},{[\"name\"] = \"Brute Force (1)\",[\"skillIcons\"] = {[\"Combat\"] = 1}},{[\"name\"] = \"Versatile (2)\",[\"skillIcons\"] = {}},{[\"name\"] = \".35 Winchester\",[\"cost\"] = 4,[\"skillIcons\"] = {[\"Agility\"] = 1}},{[\"name\"] = \"Safeguard (2)\",[\"cost\"] = 2,[\"skillIcons\"] = {[\"Will\"] = 1,[\"Agility\"] = 1}},{[\"name\"] = \"Practice Makes Perfect\",[\"cost\"] = 1,[\"skillIcons\"] = {[\"Will\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Extensive Research (1)\",[\"cost\"] = 10,[\"skillIcons\"] = {[\"Intellect\"] = 2}},{[\"name\"] = \"Three Aces (1)\",[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Burglary (2)\",[\"cost\"] = 1,[\"skillIcons\"] = {[\"Intellect\"] = 2}},{[\"name\"] = \"Spectral Razor\",[\"cost\"] = 2,[\"skillIcons\"] = {[\"Will\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Word of Command (2)\",[\"cost\"] = 2,[\"skillIcons\"] = {}},{[\"name\"] = \"Moonstone\",[\"cost\"] = 3,[\"skillIcons\"] = {}},{[\"name\"] = \"Sharp Vision (1)\",[\"skillIcons\"] = {[\"Intellect\"] = 1}},{[\"name\"] = \"Lucid Dreaming (2)\",[\"cost\"] = 1,[\"skillIcons\"] = {}},{[\"name\"] = \"Off the Galley\",[\"skillIcons\"] = {}},{[\"name\"] = \"Heroic Rescue (2)\",[\"cost\"] = 0,[\"skillIcons\"] = {[\"Will\"] = 1,[\"Agility\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Leadership (2)\",[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Dream Diary (3)\",[\"cost\"] = 2,[\"skillIcons\"] = {[\"Will\"] = 1,[\"Agility\"] = 1}},{[\"name\"] = \"Dream Diary (3)\",[\"cost\"] = 2,[\"skillIcons\"] = {[\"Will\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Dream Diary (3)\",[\"cost\"] = 2,[\"skillIcons\"] = {[\"Will\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Haste (2)\",[\"cost\"] = 3,[\"skillIcons\"] = {[\"Agility\"] = 1}},{[\"name\"] = \"Daredevil (2)\",[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Empower Self (2)\",[\"cost\"] = 3,[\"skillIcons\"] = {[\"Combat\"] = 2}},{[\"name\"] = \"Empower Self (2)\",[\"cost\"] = 3,[\"skillIcons\"] = {[\"Agility\"] = 2}},{[\"name\"] = \"Empower Self (2)\",[\"cost\"] = 3,[\"skillIcons\"] = {[\"Intellect\"] = 2}},{[\"name\"] = \"Twila Katherine Price (3)\",[\"cost\"] = 3,[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"A Glimmer of Hope\",[\"cost\"] = 1,[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Expeditious Retreat (1)\",[\"skillIcons\"] = {[\"Agility\"] = 1}},{[\"name\"] = \"Ghastly Tunnels\",[\"skillIcons\"] = {}},{[\"name\"] = \"The Sentry\",[\"skillIcons\"] = {}},{[\"name\"] = \"Another Path\",[\"skillIcons\"] = {}},{[\"name\"] = \"A Strange Ghoul\",[\"skillIcons\"] = {}},{[\"name\"] = \"Scouting the Vale\",[\"skillIcons\"] = {}},{[\"name\"] = \"Something Below\",[\"skillIcons\"] = {}},{[\"name\"] = \"Inhabitants of the Vale\",[\"skillIcons\"] = {}},{[\"name\"] = \"The Way Out\",[\"skillIcons\"] = {}},{[\"name\"] = \"Spider-Infested Waters\",[\"skillIcons\"] = {}},{[\"name\"] = \"Still Surface\",[\"skillIcons\"] = {}},{[\"name\"] = \"Rolling Pits\",[\"skillIcons\"] = {}},{[\"name\"] = \"Center of the Sea\",[\"skillIcons\"] = {}},{[\"name\"] = \"Empty Vessel (4)\",[\"cost\"] = 1,[\"skillIcons\"] = {[\"Wild\"] = 1,[\"Will\"] = 1}},{[\"name\"] = \"Wish Eater\",[\"skillIcons\"] = {}},{[\"name\"] = \"Surprising Find (1)\",[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Old Book of Lore (3)\",[\"cost\"] = 2,[\"skillIcons\"] = {[\"Will\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Garrote Wire (2)\",[\"cost\"] = 2,[\"skillIcons\"] = {[\"Combat\"] = 1}},{[\"name\"] = \"Delilah O'Rourke (3)\",[\"cost\"] = 3,[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Summoned Hound (1)\",[\"cost\"] = 3,[\"skillIcons\"] = {[\"Combat\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Unbound Beast\",[\"skillIcons\"] = {}},{[\"name\"] = \"Nothing Left to Lose (3)\",[\"cost\"] = 0,[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"The Black Cat (5)\",[\"cost\"] = 2,[\"skillIcons\"] = {[\"Wild\"] = 2}},{[\"name\"] = \"Spiritual Resolve (5)\",[\"cost\"] = 3,[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Abigail Foreman (4)\",[\"cost\"] = 3,[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"The Eye of Truth (5)\",[\"skillIcons\"] = {[\"Wild\"] = 4}},{[\"name\"] = \"Joey \\\"The Rat\\\" Vigil (3)\",[\"cost\"] = 2,[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Sawed-Off Shotgun (5)\",[\"cost\"] = 3,[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Mind's Eye (2)\",[\"cost\"] = 3,[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Shining Trapezohedron (4)\",[\"cost\"] = 1,[\"skillIcons\"] = {[\"Will\"] = 1,[\"Agility\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Nightmare Bauble (3)\",[\"cost\"] = 1,[\"skillIcons\"] = {[\"Wild\"] = 1,[\"Will\"] = 1}},{[\"name\"] = \"Dream Parasite\",[\"skillIcons\"] = {[\"Wild\"] = 2}},{[\"name\"] = \"Scavenging (2)\",[\"cost\"] = 1,[\"skillIcons\"] = {[\"Intellect\"] = 2}},{[\"name\"] = \"Sister Mary\",[\"skillIcons\"] = {[\"Will\"] = 4,[\"Agility\"] = 3,[\"Combat\"] = 3,[\"Intellect\"] = 2}},{[\"name\"] = \"Amanda Sharpe\",[\"skillIcons\"] = {[\"Will\"] = 2,[\"Agility\"] = 2,[\"Combat\"] = 2,[\"Intellect\"] = 2}},{[\"name\"] = \"Trish Scarborough\",[\"skillIcons\"] = {[\"Will\"] = 2,[\"Agility\"] = 4,[\"Combat\"] = 2,[\"Intellect\"] = 4}},{[\"name\"] = \"Dexter Drake\",[\"skillIcons\"] = {[\"Will\"] = 5,[\"Agility\"] = 2,[\"Combat\"] = 3,[\"Intellect\"] = 2}},{[\"name\"] = \"Silas Marsh\",[\"skillIcons\"] = {[\"Will\"] = 2,[\"Agility\"] = 4,[\"Combat\"] = 4,[\"Intellect\"] = 2}},{[\"name\"] = \"Guardian Angel\",[\"cost\"] = 2,[\"skillIcons\"] = {[\"Wild\"] = 1,[\"Will\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Crisis of Faith\",[\"skillIcons\"] = {}},{[\"name\"] = \"Obscure Studies\",[\"cost\"] = 0,[\"skillIcons\"] = {[\"Wild\"] = 3}},{[\"name\"] = \"Whispers from the Deep\",[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"In the Shadows\",[\"cost\"] = 0,[\"skillIcons\"] = {[\"Wild\"] = 2,[\"Agility\"] = 2}},{[\"name\"] = \"Shadow Agents\",[\"skillIcons\"] = {}},{[\"name\"] = \"Showmanship\",[\"cost\"] = 1,[\"skillIcons\"] = {[\"Wild\"] = 1,[\"Agility\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Occult Scraps\",[\"cost\"] = 0,[\"skillIcons\"] = {}},{[\"name\"] = \"Sea Change Harpoon\",[\"cost\"] = 3,[\"skillIcons\"] = {[\"Wild\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Silas's Net\",[\"cost\"] = 2,[\"skillIcons\"] = {[\"Wild\"] = 1,[\"Agility\"] = 1}},{[\"name\"] = \"Siren Call\",[\"skillIcons\"] = {}},{[\"name\"] = \"Book of Psalms\",[\"cost\"] = 3,[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Blessed Blade\",[\"cost\"] = 3,[\"skillIcons\"] = {[\"Combat\"] = 1}},{[\"name\"] = \"Rite of Sanctification\",[\"cost\"] = 0,[\"skillIcons\"] = {[\"Intellect\"] = 1}},{[\"name\"] = \"Hand of Fate\",[\"cost\"] = 3,[\"skillIcons\"] = {[\"Will\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Cryptographic Cipher\",[\"cost\"] = 3,[\"skillIcons\"] = {[\"Intellect\"] = 1}},{[\"name\"] = \"Cryptic Grimoire\",[\"cost\"] = 3,[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Deep Knowledge\",[\"cost\"] = 0,[\"skillIcons\"] = {[\"Will\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Plan of Action\",[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \".25 Automatic\",[\"cost\"] = 4,[\"skillIcons\"] = {[\"Agility\"] = 1}},{[\"name\"] = \"Dark Ritual\",[\"cost\"] = 1,[\"skillIcons\"] = {[\"Intellect\"] = 1}},{[\"name\"] = \"Obfuscation\",[\"cost\"] = 2,[\"skillIcons\"] = {[\"Combat\"] = 1}},{[\"name\"] = \"Faustian Bargain\",[\"cost\"] = 0,[\"skillIcons\"] = {[\"Will\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Sword Cane\",[\"cost\"] = 2,[\"skillIcons\"] = {[\"Combat\"] = 1}},{[\"name\"] = \"Tides of Fate\",[\"cost\"] = 1,[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Ward of Radiance\",[\"cost\"] = 0,[\"skillIcons\"] = {[\"Will\"] = 1,[\"Agility\"] = 1}},{[\"name\"] = \"Promise of Power\",[\"skillIcons\"] = {[\"Wild\"] = 4}},{[\"name\"] = \"Token of Faith\",[\"cost\"] = 2,[\"skillIcons\"] = {[\"Intellect\"] = 1}},{[\"name\"] = \"Keep Faith\",[\"cost\"] = 2,[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Predestined\",[\"skillIcons\"] = {}},{[\"name\"] = \"Beloved\",[\"skillIcons\"] = {[\"Wild\"] = 1,[\"Will\"] = 1,[\"Agility\"] = 1}},{[\"name\"] = \"Tempt Fate\",[\"cost\"] = 0,[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Accursed Follower\",[\"skillIcons\"] = {}},{[\"name\"] = \"Dread Curse\",[\"skillIcons\"] = {}},{[\"name\"] = \"Day of Reckoning\",[\"skillIcons\"] = {}},{[\"name\"] = \"Riot Whistle\",[\"cost\"] = 2,[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Righteous Hunt (1)\",[\"cost\"] = 1,[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Sacred Covenant (2)\",[\"skillIcons\"] = {}},{[\"name\"] = \"Eldritch Sophist\",[\"cost\"] = 4,[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Stirring Up Trouble (1)\",[\"cost\"] = 0,[\"skillIcons\"] = {[\"Combat\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Blasphemous Covenant (2)\",[\"skillIcons\"] = {}},{[\"name\"] = \"Breaking and Entering\",[\"cost\"] = 2,[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Skeptic (1)\",[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"False Covenant (2)\",[\"skillIcons\"] = {}},{[\"name\"] = \"Armageddon\",[\"cost\"] = 4,[\"skillIcons\"] = {[\"Combat\"] = 1}},{[\"name\"] = \"Eye of Chaos\",[\"cost\"] = 5,[\"skillIcons\"] = {[\"Intellect\"] = 1}},{[\"name\"] = \"Shroud of Shadows\",[\"cost\"] = 3,[\"skillIcons\"] = {[\"Agility\"] = 1}},{[\"name\"] = \"Paradoxical Covenant (2)\",[\"skillIcons\"] = {}},{[\"name\"] = \"Mariner's Compass\",[\"cost\"] = 3,[\"skillIcons\"] = {[\"Intellect\"] = 1}},{[\"name\"] = \"Ancient Covenant (2)\",[\"skillIcons\"] = {}},{[\"name\"] = \"Keen Eye\",[\"cost\"] = 2,[\"skillIcons\"] = {[\"Combat\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Radiant Smite (1)\",[\"cost\"] = 1,[\"skillIcons\"] = {[\"Will\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"The Truth Beckons\",[\"cost\"] = 1,[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Gaze of Ouraxsh (2)\",[\"cost\"] = 2,[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Priest of Two Faiths (1)\",[\"cost\"] = 1,[\"skillIcons\"] = {[\"Agility\"] = 1}},{[\"name\"] = \"Under Surveillance (1)\",[\"cost\"] = 3,[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Blood Pact\",[\"cost\"] = 2,[\"skillIcons\"] = {[\"Will\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Abyssal Tome (2)\",[\"cost\"] = 2,[\"skillIcons\"] = {[\"Combat\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Butterfly Effect (1)\",[\"cost\"] = 0,[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Third Time's a Charm (2)\",[\"cost\"] = 1,[\"skillIcons\"] = {[\"Will\"] = 1,[\"Agility\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Manipulate Destiny (2)\",[\"cost\"] = 1,[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Enchanted Armor (2)\",[\"cost\"] = 1,[\"skillIcons\"] = {[\"Will\"] = 1,[\"Agility\"] = 1}},{[\"name\"] = \"Blessing of Isis (3)\",[\"cost\"] = 2,[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Cryptic Grimoire (4)\",[\"cost\"] = 3,[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Cryptic Grimoire (4)\",[\"cost\"] = 3,[\"skillIcons\"] = {[\"Will\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Ríastrad (1)\",[\"cost\"] = 0,[\"skillIcons\"] = {[\"Combat\"] = 2}},{[\"name\"] = \"Tristan Botley (2)\",[\"cost\"] = 5,[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Curse of Aeons (3)\",[\"cost\"] = 2,[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Unrelenting (1)\",[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Signum Crucis (2)\",[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Holy Rosary (2)\",[\"cost\"] = 2,[\"skillIcons\"] = {[\"Will\"] = 1,[\"Agility\"] = 1}},{[\"name\"] = \"Shield of Faith (2)\",[\"cost\"] = 2,[\"skillIcons\"] = {[\"Will\"] = 2}},{[\"name\"] = \"Fey (1)\",[\"skillIcons\"] = {[\"Wild\"] = 2,[\"Will\"] = 1}},{[\"name\"] = \"Guided by the Unseen (3)\",[\"cost\"] = 2,[\"skillIcons\"] = {[\"Will\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"\\\"Lucky\\\" Penny (2)\",[\"cost\"] = 2,[\"skillIcons\"] = {[\"Will\"] = 1,[\"Agility\"] = 1}},{[\"name\"] = \"Eye of the Djinn (2)\",[\"cost\"] = 2,[\"skillIcons\"] = {[\"Intellect\"] = 2}},{[\"name\"] = \"Armageddon (4)\",[\"cost\"] = 4,[\"skillIcons\"] = {[\"Will\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Eye of Chaos (4)\",[\"cost\"] = 5,[\"skillIcons\"] = {[\"Will\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Shroud of Shadows (4)\",[\"cost\"] = 3,[\"skillIcons\"] = {[\"Will\"] = 1,[\"Agility\"] = 1}},{[\"name\"] = \"Spirit of Humanity (2)\",[\"cost\"] = 2,[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Harmony Restored (2)\",[\"cost\"] = 3,[\"skillIcons\"] = {[\"Will\"] = 2}},{[\"name\"] = \"Enchant Weapon (3)\",[\"cost\"] = 3,[\"skillIcons\"] = {[\"Will\"] = 2,[\"Combat\"] = 1}},{[\"name\"] = \"Nephthys (4)\",[\"cost\"] = 3,[\"skillIcons\"] = {[\"Will\"] = 1,[\"Combat\"] = 2}},{[\"name\"] = \"The Stygian Eye (3)\",[\"cost\"] = 10,[\"skillIcons\"] = {[\"Will\"] = 3}},{[\"name\"] = \"Hyperawareness (4)\",[\"cost\"] = 2,[\"skillIcons\"] = {[\"Agility\"] = 2,[\"Intellect\"] = 2}},{[\"name\"] = \"Geas (2)\",[\"cost\"] = 2,[\"skillIcons\"] = {}},{[\"name\"] = \"Hard Knocks (4)\",[\"cost\"] = 2,[\"skillIcons\"] = {[\"Agility\"] = 2,[\"Combat\"] = 2}},{[\"name\"] = \"Ikiaq (3)\",[\"cost\"] = 3,[\"skillIcons\"] = {[\"Will\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Flute of the Outer Gods (4)\",[\"cost\"] = -2,[\"skillIcons\"] = {[\"Will\"] = 1,[\"Agility\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"A Watchful Peace (3)\",[\"cost\"] = 1,[\"skillIcons\"] = {[\"Will\"] = 2}},{[\"name\"] = \"Dig Deep (4)\",[\"cost\"] = 2,[\"skillIcons\"] = {[\"Will\"] = 2,[\"Agility\"] = 2}},{[\"name\"] = \"Favor of the Moon (1)\",[\"cost\"] = 1,[\"skillIcons\"] = {[\"Combat\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Favor of the Sun (1)\",[\"cost\"] = 2,[\"skillIcons\"] = {[\"Will\"] = 1,[\"Agility\"] = 1}},{[\"name\"] = \"Purifying Corruption (4)\",[\"cost\"] = 4,[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Hallow (3)\",[\"cost\"] = 3,[\"skillIcons\"] = {[\"Wild\"] = 1,[\"Will\"] = 1}},{[\"name\"] = \"Holy Spear (5)\",[\"cost\"] = 4,[\"skillIcons\"] = {[\"Will\"] = 1,[\"Combat\"] = 2}},{[\"name\"] = \"Ancestral Knowledge (3)\",[\"skillIcons\"] = {}},{[\"name\"] = \"Ariadne's Twine (3)\",[\"cost\"] = 0,[\"skillIcons\"] = {[\"Intellect\"] = 2}},{[\"name\"] = \".25 Automatic (2)\",[\"cost\"] = 4,[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Justify the Means (3)\",[\"skillIcons\"] = {}},{[\"name\"] = \"Lucky Dice (3)\",[\"cost\"] = 2,[\"skillIcons\"] = {[\"Will\"] = 1,[\"Agility\"] = 1}},{[\"name\"] = \"Rite of Equilibrium (5)\",[\"cost\"] = 0,[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Jacob Morrison (3)\",[\"cost\"] = 3,[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Shrine of the Moirai (3)\",[\"cost\"] = 1,[\"skillIcons\"] = {[\"Will\"] = 1,[\"Agility\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Sweeping Kick (1)\",[\"cost\"] = 1,[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Butterfly Swords (2)\",[\"cost\"] = 3,[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Written in the Stars\",[\"cost\"] = 1,[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Dragon Pole\",[\"cost\"] = 3,[\"skillIcons\"] = {[\"Combat\"] = 1}},{[\"name\"] = \"Astronomical Atlas (3)\",[\"cost\"] = 3,[\"skillIcons\"] = {[\"Will\"] = 1,[\"Intellect\"] = 2}},{[\"name\"] = \"Strength in Numbers (1)\",[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Medical Student\",[\"cost\"] = 2,[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Michael Leigh (5)\",[\"cost\"] = 4,[\"skillIcons\"] = {[\"Wild\"] = 1,[\"Combat\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Divination (1)\",[\"cost\"] = 3,[\"skillIcons\"] = {[\"Intellect\"] = 1}},{[\"name\"] = \"Blur (1)\",[\"cost\"] = 2,[\"skillIcons\"] = {[\"Agility\"] = 1}},{[\"name\"] = \"Physical Training (2)\",[\"cost\"] = 0,[\"skillIcons\"] = {[\"Will\"] = 2,[\"Combat\"] = 2}},{[\"name\"] = \"Dynamite Blast (2)\",[\"cost\"] = 4,[\"skillIcons\"] = {[\"Will\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Hyperawareness (2)\",[\"cost\"] = 0,[\"skillIcons\"] = {[\"Agility\"] = 2,[\"Intellect\"] = 2}},{[\"name\"] = \"Barricade (3)\",[\"cost\"] = 0,[\"skillIcons\"] = {[\"Will\"] = 1,[\"Agility\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Hard Knocks (2)\",[\"cost\"] = 0,[\"skillIcons\"] = {[\"Agility\"] = 2,[\"Combat\"] = 2}},{[\"name\"] = \"Hot Streak (2)\",[\"cost\"] = 5,[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Arcane Studies (2)\",[\"cost\"] = 0,[\"skillIcons\"] = {[\"Will\"] = 2,[\"Intellect\"] = 2}},{[\"name\"] = \"Mind Wipe (3)\",[\"cost\"] = 1,[\"skillIcons\"] = {[\"Will\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Dig Deep (2)\",[\"cost\"] = 0,[\"skillIcons\"] = {[\"Will\"] = 2,[\"Agility\"] = 2}},{[\"name\"] = \"Rabbit's Foot (3)\",[\"cost\"] = 1,[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Bandolier (2)\",[\"cost\"] = 2,[\"skillIcons\"] = {[\"Will\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Blackjack (2)\",[\"cost\"] = 2,[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Preposterous Sketches (2)\",[\"cost\"] = 0,[\"skillIcons\"] = {[\"Will\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Strange Solution (4)\",[\"cost\"] = 1,[\"skillIcons\"] = {[\"Intellect\"] = 2}},{[\"name\"] = \"Contraband (2)\",[\"cost\"] = 3,[\"skillIcons\"] = {[\"Will\"] = 1,[\"Intellect\"] = 2}},{[\"name\"] = \"Think on Your Feet (2)\",[\"cost\"] = 0,[\"skillIcons\"] = {[\"Agility\"] = 2,[\"Intellect\"] = 1}},{[\"name\"] = \"Rite of Seeking (2)\",[\"cost\"] = 4,[\"skillIcons\"] = {[\"Intellect\"] = 1}},{[\"name\"] = \"Clarity of Mind (3)\",[\"cost\"] = 2,[\"skillIcons\"] = {[\"Will\"] = 2}},{[\"name\"] = \"Oops! (2)\",[\"cost\"] = 2,[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Combat\"] = 2}},{[\"name\"] = \"Rise to the Occasion (3)\",[\"skillIcons\"] = {[\"Wild\"] = 2}},{[\"name\"] = \"Through the Gates\",[\"skillIcons\"] = {}},{[\"name\"] = \".32 Colt (2)\",[\"cost\"] = 2,[\"skillIcons\"] = {[\"Combat\"] = 2}},{[\"name\"] = \"\\\"Eat lead!\\\"\",[\"cost\"] = 1,[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Logical Reasoning (4)\",[\"cost\"] = 2,[\"skillIcons\"] = {[\"Will\"] = 3}},{[\"name\"] = \"Archaic Glyphs (3)\",[\"cost\"] = 2,[\"skillIcons\"] = {[\"Combat\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Stealth (3)\",[\"cost\"] = 2,[\"skillIcons\"] = {[\"Agility\"] = 2}},{[\"name\"] = \"Suggestion (1)\",[\"cost\"] = 3,[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Alchemical Transmutation (2)\",[\"cost\"] = 0,[\"skillIcons\"] = {[\"Will\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Storm of Spirits (3)\",[\"cost\"] = 3,[\"skillIcons\"] = {[\"Will\"] = 1,[\"Combat\"] = 2}},{[\"name\"] = \"Lantern (2)\",[\"cost\"] = 1,[\"skillIcons\"] = {[\"Intellect\"] = 2}},{[\"name\"] = \"Gravedigger's Shovel (2)\",[\"cost\"] = 1,[\"skillIcons\"] = {[\"Combat\"] = 2}},{[\"name\"] = \"Unspeakable Oath (Bloodthirst)\",[\"skillIcons\"] = {}},{[\"name\"] = \"Unspeakable Oath (Curiosity)\",[\"skillIcons\"] = {}},{[\"name\"] = \"Unspeakable Oath (Cowardice)\",[\"skillIcons\"] = {}},{[\"name\"] = \"Blood Eclipse (1)\",[\"cost\"] = 1,[\"skillIcons\"] = {[\"Will\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Survival Knife (2)\",[\"cost\"] = 2,[\"skillIcons\"] = {[\"Combat\"] = 2}},{[\"name\"] = \"Truth from Fiction (2)\",[\"cost\"] = 1,[\"skillIcons\"] = {[\"Intellect\"] = 3}},{[\"name\"] = \"Ancient Stone (4)\",[\"cost\"] = 2,[\"skillIcons\"] = {[\"Agility\"] = 2}},{[\"name\"] = \"Decorated Skull (3)\",[\"cost\"] = 0,[\"skillIcons\"] = {[\"Will\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Colt Vest Pocket (2)\",[\"cost\"] = 2,[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Mists of R'lyeh (2)\",[\"cost\"] = 2,[\"skillIcons\"] = {[\"Agility\"] = 1}},{[\"name\"] = \"The Chthonian Stone (3)\",[\"cost\"] = 2,[\"skillIcons\"] = {[\"Will\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Alter Fate (1)\",[\"cost\"] = 3,[\"skillIcons\"] = {[\"Will\"] = 1,[\"Agility\"] = 1}},{[\"name\"] = \"On Your Own (3)\",[\"skillIcons\"] = {}},{[\"name\"] = \"Backpack (2)\",[\"cost\"] = 1,[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Dendromorphosis\",[\"skillIcons\"] = {}},{[\"name\"] = \"Offer You Cannot Refuse\",[\"skillIcons\"] = {}},{[\"name\"] = \"Fine Print\",[\"skillIcons\"] = {}},{[\"name\"] = \"Sell Your Soul\",[\"skillIcons\"] = {}},{[\"name\"] = \"The Star • XVII (3)\",[\"cost\"] = 3,[\"skillIcons\"] = {}},{[\"name\"] = \"The Hierophant • V (3)\",[\"cost\"] = 3,[\"skillIcons\"] = {}},{[\"name\"] = \"Moon Pendant (2)\",[\"cost\"] = 2,[\"skillIcons\"] = {}},{[\"name\"] = \"Nathaniel Cho\",[\"skillIcons\"] = {[\"Will\"] = 3,[\"Agility\"] = 2,[\"Combat\"] = 5,[\"Intellect\"] = 2}},{[\"name\"] = \"Randall Cho\",[\"cost\"] = 2,[\"skillIcons\"] = {[\"Wild\"] = 1,[\"Will\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Tommy Malloy\",[\"skillIcons\"] = {}},{[\"name\"] = \"Self-Destructive\",[\"skillIcons\"] = {}},{[\"name\"] = \"Boxing Gloves\",[\"cost\"] = 3,[\"skillIcons\"] = {[\"Combat\"] = 1}},{[\"name\"] = \"Flesh Ward\",[\"cost\"] = 3,[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Grete Wagner\",[\"cost\"] = 5,[\"skillIcons\"] = {[\"Combat\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Physical Training\",[\"cost\"] = 2,[\"skillIcons\"] = {[\"Will\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Relentless\",[\"cost\"] = 0,[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Safeguard\",[\"cost\"] = 2,[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Clean Them Out\",[\"cost\"] = 0,[\"skillIcons\"] = {[\"Will\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Counterpunch\",[\"cost\"] = 0,[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Dodge\",[\"cost\"] = 1,[\"skillIcons\"] = {[\"Will\"] = 1,[\"Agility\"] = 1}},{[\"name\"] = \"\\\"Get over here!\\\"\",[\"cost\"] = 2,[\"skillIcons\"] = {[\"Will\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Glory\",[\"cost\"] = 1,[\"skillIcons\"] = {[\"Intellect\"] = 2}},{[\"name\"] = \"Monster Slayer\",[\"cost\"] = 0,[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"One-Two Punch\",[\"cost\"] = 2,[\"skillIcons\"] = {[\"Combat\"] = 1}},{[\"name\"] = \"Stand Together\",[\"cost\"] = 0,[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Vicious Blow\",[\"skillIcons\"] = {[\"Combat\"] = 1}},{[\"name\"] = \"Evidence! (1)\",[\"cost\"] = 1,[\"skillIcons\"] = {[\"Intellect\"] = 2}},{[\"name\"] = \"Galvanize (1)\",[\"cost\"] = 2,[\"skillIcons\"] = {[\"Will\"] = 2}},{[\"name\"] = \"Counterpunch (2)\",[\"cost\"] = 0,[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Combat\"] = 2}},{[\"name\"] = \"\\\"Get over here!\\\" (2)\",[\"cost\"] = 2,[\"skillIcons\"] = {[\"Will\"] = 2,[\"Combat\"] = 1}},{[\"name\"] = \"Lesson Learned (2)\",[\"cost\"] = 1,[\"skillIcons\"] = {[\"Will\"] = 1,[\"Intellect\"] = 2}},{[\"name\"] = \"Mano a Mano (2)\",[\"cost\"] = 0,[\"skillIcons\"] = {[\"Will\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Overpower (2)\",[\"skillIcons\"] = {[\"Combat\"] = 3}},{[\"name\"] = \"Boxing Gloves (3)\",[\"cost\"] = 2,[\"skillIcons\"] = {[\"Combat\"] = 2}},{[\"name\"] = \"Grete Wagner (3)\",[\"cost\"] = 5,[\"skillIcons\"] = {[\"Wild\"] = 1,[\"Combat\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Dynamite Blast (3)\",[\"cost\"] = 4,[\"skillIcons\"] = {[\"Will\"] = 2,[\"Combat\"] = 2}},{[\"name\"] = \"Taunt (3)\",[\"cost\"] = 1,[\"skillIcons\"] = {[\"Will\"] = 2,[\"Agility\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Physical Training (4)\",[\"cost\"] = 2,[\"skillIcons\"] = {[\"Will\"] = 2,[\"Combat\"] = 2}},{[\"name\"] = \"One-Two Punch (5)\",[\"cost\"] = 2,[\"skillIcons\"] = {[\"Combat\"] = 4}},{[\"name\"] = \"Harvey Walters\",[\"skillIcons\"] = {[\"Will\"] = 4,[\"Agility\"] = 2,[\"Combat\"] = 1,[\"Intellect\"] = 5}},{[\"name\"] = \"Vault of Knowledge\",[\"cost\"] = 3,[\"skillIcons\"] = {[\"Wild\"] = 1,[\"Will\"] = 1,[\"Agility\"] = 1}},{[\"name\"] = \"Thrice-Damned Curiosity\",[\"skillIcons\"] = {}},{[\"name\"] = \"Obsessive\",[\"skillIcons\"] = {}},{[\"name\"] = \"Arcane Enlightenment\",[\"cost\"] = 2,[\"skillIcons\"] = {[\"Will\"] = 2}},{[\"name\"] = \"Celaeno Fragments\",[\"cost\"] = 1,[\"skillIcons\"] = {[\"Intellect\"] = 1}},{[\"name\"] = \"Disc of Itzamna\",[\"cost\"] = 3,[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Encyclopedia\",[\"cost\"] = 2,[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Feed the Mind\",[\"cost\"] = 3,[\"skillIcons\"] = {[\"Intellect\"] = 1}},{[\"name\"] = \"Forbidden Tome\",[\"cost\"] = 1,[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Higher Education\",[\"cost\"] = 0,[\"skillIcons\"] = {[\"Will\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Laboratory Assistant\",[\"cost\"] = 2,[\"skillIcons\"] = {[\"Intellect\"] = 1}},{[\"name\"] = \"Whitton Greene\",[\"cost\"] = 4,[\"skillIcons\"] = {[\"Intellect\"] = 1}},{[\"name\"] = \"Burning the Midnight Oil\",[\"cost\"] = 0,[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Cryptic Writings\",[\"cost\"] = 0,[\"skillIcons\"] = {[\"Intellect\"] = 2}},{[\"name\"] = \"Extensive Research\",[\"cost\"] = 12,[\"skillIcons\"] = {[\"Intellect\"] = 2}},{[\"name\"] = \"Occult Invocation\",[\"cost\"] = 2,[\"skillIcons\"] = {[\"Combat\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Preposterous Sketches\",[\"cost\"] = 2,[\"skillIcons\"] = {[\"Will\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Deduction\",[\"skillIcons\"] = {[\"Intellect\"] = 1}},{[\"name\"] = \"Library Docent (1)\",[\"cost\"] = 1,[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Glimpse the Unthinkable (1)\",[\"cost\"] = 0,[\"skillIcons\"] = {[\"Intellect\"] = 2}},{[\"name\"] = \"Esoteric Atlas (2)\",[\"cost\"] = 3,[\"skillIcons\"] = {[\"Will\"] = 1,[\"Agility\"] = 1}},{[\"name\"] = \"Whitton Greene (2)\",[\"cost\"] = 4,[\"skillIcons\"] = {[\"Will\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Cryptic Writings (2)\",[\"cost\"] = 0,[\"skillIcons\"] = {[\"Wild\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"\\\"I've got a plan!\\\" (2)\",[\"cost\"] = 2,[\"skillIcons\"] = {[\"Combat\"] = 1,[\"Intellect\"] = 2}},{[\"name\"] = \"Mind over Matter (2)\",[\"cost\"] = 1,[\"skillIcons\"] = {[\"Wild\"] = 1,[\"Agility\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Seeking Answers (2)\",[\"cost\"] = 1,[\"skillIcons\"] = {[\"Agility\"] = 2,[\"Intellect\"] = 1}},{[\"name\"] = \"Perception (2)\",[\"skillIcons\"] = {[\"Intellect\"] = 3}},{[\"name\"] = \"Forbidden Tome (3)\",[\"cost\"] = 1,[\"skillIcons\"] = {[\"Wild\"] = 1,[\"Will\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Forbidden Tome (3)\",[\"cost\"] = 1,[\"skillIcons\"] = {[\"Wild\"] = 1,[\"Agility\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Farsight (4)\",[\"cost\"] = 2,[\"skillIcons\"] = {[\"Wild\"] = 1,[\"Will\"] = 1}},{[\"name\"] = \"Miskatonic Archaeology Funding (4)\",[\"skillIcons\"] = {}},{[\"name\"] = \"The Necronomicon (5)\",[\"cost\"] = 3,[\"skillIcons\"] = {[\"Intellect\"] = 5}},{[\"name\"] = \"Winifred Habbamock\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Agility\"] = 5,[\"Combat\"] = 3,[\"Intellect\"] = 3}},{[\"name\"] = \"Anything You Can Do, Better\",[\"skillIcons\"] = {[\"Wild\"] = 6}},{[\"name\"] = \"Arrogance\",[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Reckless\",[\"skillIcons\"] = {}},{[\"name\"] = \"Lockpicks\",[\"cost\"] = 3,[\"skillIcons\"] = {[\"Intellect\"] = 1}},{[\"name\"] = \"Mauser C96\",[\"cost\"] = 4,[\"skillIcons\"] = {[\"Agility\"] = 1}},{[\"name\"] = \"Switchblade\",[\"cost\"] = 1,[\"skillIcons\"] = {[\"Agility\"] = 1}},{[\"name\"] = \"Lucky Cigarette Case\",[\"cost\"] = 2,[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Lonnie Ritter\",[\"cost\"] = 4,[\"skillIcons\"] = {[\"Combat\"] = 1}},{[\"name\"] = \"Leather Jacket\",[\"cost\"] = 2,[\"skillIcons\"] = {[\"Combat\"] = 1}},{[\"name\"] = \"Streetwise\",[\"cost\"] = 0,[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Cheap Shot\",[\"cost\"] = 2,[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Daring Maneuver\",[\"cost\"] = 0,[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Slip Away\",[\"cost\"] = 2,[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Pilfer\",[\"cost\"] = 4,[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Sneak By\",[\"cost\"] = 0,[\"skillIcons\"] = {[\"Agility\"] = 2}},{[\"name\"] = \"Nimble\",[\"skillIcons\"] = {[\"Agility\"] = 1}},{[\"name\"] = \"Daredevil\",[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Opportunist\",[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Liquid Courage (1)\",[\"cost\"] = 1,[\"skillIcons\"] = {[\"Will\"] = 2}},{[\"name\"] = \"Mauser C96 (2)\",[\"cost\"] = 3,[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Daring Maneuver (2)\",[\"cost\"] = 0,[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Cheap Shot (2)\",[\"cost\"] = 2,[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Slip Away (2)\",[\"cost\"] = 2,[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Manual Dexterity (2)\",[\"skillIcons\"] = {[\"Agility\"] = 3}},{[\"name\"] = \"Lucky Cigarette Case (3)\",[\"cost\"] = 2,[\"skillIcons\"] = {[\"Will\"] = 2}},{[\"name\"] = \"Sharpshooter (3)\",[\"cost\"] = 2,[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Pilfer (3)\",[\"cost\"] = 4,[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Backstab (3)\",[\"cost\"] = 3,[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Copycat (3)\",[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Beretta M1918 (4)\",[\"cost\"] = 4,[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Combat\"] = 2}},{[\"name\"] = \"Chuck Fergus (5)\",[\"cost\"] = 3,[\"skillIcons\"] = {[\"Wild\"] = 1,[\"Agility\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Jacqueline Fine\",[\"skillIcons\"] = {[\"Will\"] = 5,[\"Agility\"] = 2,[\"Combat\"] = 2,[\"Intellect\"] = 3}},{[\"name\"] = \"Arbiter of Fates\",[\"cost\"] = 3,[\"skillIcons\"] = {[\"Wild\"] = 1,[\"Will\"] = 1,[\"Agility\"] = 1}},{[\"name\"] = \"Dark Future\",[\"skillIcons\"] = {}},{[\"name\"] = \"Nihilism\",[\"skillIcons\"] = {}},{[\"name\"] = \"Ritual Candles\",[\"cost\"] = 1,[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Scrying Mirror\",[\"cost\"] = 3,[\"skillIcons\"] = {[\"Intellect\"] = 1}},{[\"name\"] = \"Azure Flame\",[\"cost\"] = 3,[\"skillIcons\"] = {[\"Combat\"] = 1}},{[\"name\"] = \"Clairvoyance\",[\"cost\"] = 4,[\"skillIcons\"] = {[\"Intellect\"] = 1}},{[\"name\"] = \"Ineffable Truth\",[\"cost\"] = 3,[\"skillIcons\"] = {[\"Agility\"] = 1}},{[\"name\"] = \"Familiar Spirit\",[\"cost\"] = 1,[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Crystal Pendulum\",[\"cost\"] = 2,[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Robes of Endless Night\",[\"cost\"] = 3,[\"skillIcons\"] = {[\"Agility\"] = 1}},{[\"name\"] = \"Astral Travel\",[\"cost\"] = 3,[\"skillIcons\"] = {[\"Will\"] = 1,[\"Agility\"] = 1}},{[\"name\"] = \"Hypnotic Gaze\",[\"cost\"] = 3,[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Parallel Fates\",[\"cost\"] = 0,[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Voice of Ra\",[\"cost\"] = 0,[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Dark Prophecy\",[\"cost\"] = 1,[\"skillIcons\"] = {[\"Will\"] = 1,[\"Agility\"] = 1}},{[\"name\"] = \"Defiance\",[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Prescient\",[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Eldritch Inspiration (1)\",[\"cost\"] = 0,[\"skillIcons\"] = {[\"Will\"] = 1,[\"Intellect\"] = 2}},{[\"name\"] = \"Grotesque Statue (2)\",[\"cost\"] = 3,[\"skillIcons\"] = {[\"Will\"] = 1,[\"Agility\"] = 1}},{[\"name\"] = \"Robes of Endless Night (2)\",[\"cost\"] = 2,[\"skillIcons\"] = {[\"Will\"] = 1,[\"Agility\"] = 1}},{[\"name\"] = \"Hypnotic Gaze (2)\",[\"cost\"] = 2,[\"skillIcons\"] = {[\"Agility\"] = 2,[\"Combat\"] = 1}},{[\"name\"] = \"Guts (2)\",[\"skillIcons\"] = {[\"Will\"] = 3}},{[\"name\"] = \"Azure Flame (3)\",[\"cost\"] = 3,[\"skillIcons\"] = {[\"Will\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Clairvoyance (3)\",[\"cost\"] = 4,[\"skillIcons\"] = {[\"Will\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Ineffable Truth (3)\",[\"cost\"] = 3,[\"skillIcons\"] = {[\"Will\"] = 1,[\"Agility\"] = 1}},{[\"name\"] = \"Arcane Studies (4)\",[\"cost\"] = 2,[\"skillIcons\"] = {[\"Will\"] = 2,[\"Intellect\"] = 2}},{[\"name\"] = \"Recharge (4)\",[\"cost\"] = 0,[\"skillIcons\"] = {[\"Will\"] = 3}},{[\"name\"] = \"Azure Flame (5)\",[\"cost\"] = 3,[\"skillIcons\"] = {[\"Will\"] = 1,[\"Combat\"] = 2}},{[\"name\"] = \"Clairvoyance (5)\",[\"cost\"] = 4,[\"skillIcons\"] = {[\"Will\"] = 1,[\"Intellect\"] = 2}},{[\"name\"] = \"Ineffable Truth (5)\",[\"cost\"] = 3,[\"skillIcons\"] = {[\"Will\"] = 1,[\"Agility\"] = 2}},{[\"name\"] = \"Stella Clark\",[\"skillIcons\"] = {[\"Will\"] = 3,[\"Agility\"] = 4,[\"Combat\"] = 3,[\"Intellect\"] = 2}},{[\"name\"] = \"Neither Rain nor Snow\",[\"skillIcons\"] = {[\"Wild\"] = 3}},{[\"name\"] = \"Called by the Mists\",[\"skillIcons\"] = {}},{[\"name\"] = \"Atychiphobia\",[\"skillIcons\"] = {}},{[\"name\"] = \".18 Derringer\",[\"cost\"] = 3,[\"skillIcons\"] = {[\"Combat\"] = 1}},{[\"name\"] = \"Grimm's Fairy Tales\",[\"cost\"] = 2,[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Old Keyring\",[\"cost\"] = 1,[\"skillIcons\"] = {[\"Intellect\"] = 1}},{[\"name\"] = \"Granny Orne\",[\"cost\"] = 4,[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Mysterious Raven\",[\"cost\"] = 1,[\"skillIcons\"] = {[\"Intellect\"] = 1}},{[\"name\"] = \"Rabbit's Foot\",[\"cost\"] = 1,[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Scrapper\",[\"cost\"] = 2,[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Will to Survive\",[\"cost\"] = 4,[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"A Test of Will\",[\"cost\"] = 1,[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Dumb Luck\",[\"cost\"] = 2,[\"skillIcons\"] = {[\"Agility\"] = 2}},{[\"name\"] = \"Grit Your Teeth\",[\"cost\"] = 1,[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"Live and Learn\",[\"cost\"] = 0,[\"skillIcons\"] = {[\"Wild\"] = 1}},{[\"name\"] = \"\\\"Look what I found!\\\"\",[\"cost\"] = 2,[\"skillIcons\"] = {[\"Intellect\"] = 2}},{[\"name\"] = \"Oops!\",[\"cost\"] = 2,[\"skillIcons\"] = {[\"Combat\"] = 2}},{[\"name\"] = \"Take Heart\",[\"skillIcons\"] = {}},{[\"name\"] = \"Cherished Keepsake (1)\",[\"cost\"] = 0,[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"Leather Coat (1)\",[\"cost\"] = 0,[\"skillIcons\"] = {[\"Combat\"] = 1}},{[\"name\"] = \".18 Derringer (2)\",[\"cost\"] = 2,[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"A Test of Will (2)\",[\"cost\"] = 0,[\"skillIcons\"] = {[\"Will\"] = 1}},{[\"name\"] = \"\\\"Look what I found!\\\" (2)\",[\"cost\"] = 2,[\"skillIcons\"] = {[\"Agility\"] = 1,[\"Intellect\"] = 2}},{[\"name\"] = \"Dumb Luck (2)\",[\"cost\"] = 2,[\"skillIcons\"] = {[\"Will\"] = 1,[\"Agility\"] = 2}},{[\"name\"] = \"Unexpected Courage (2)\",[\"skillIcons\"] = {[\"Wild\"] = 2}},{[\"name\"] = \"Granny Orne (3)\",[\"cost\"] = 4,[\"skillIcons\"] = {[\"Will\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Lucky! (3)\",[\"cost\"] = 0,[\"skillIcons\"] = {}},{[\"name\"] = \"Chainsaw (4)\",[\"cost\"] = 4,[\"skillIcons\"] = {[\"Combat\"] = 3}},{[\"name\"] = \"Quick Learner (4)\",[\"skillIcons\"] = {}},{[\"name\"] = \"Déjà Vu (5)\",[\"skillIcons\"] = {}},{[\"name\"] = \"To the Dreamlands\",[\"skillIcons\"] = {}},{[\"name\"] = \"Fate of the Dreamers\",[\"skillIcons\"] = {}},{[\"name\"] = \"Prisoners of Conquest\",[\"skillIcons\"] = {}},{[\"name\"] = \"Ruins of Sarkomand\",[\"skillIcons\"] = {}},{[\"name\"] = \"Effigy of Nodens\",[\"skillIcons\"] = {}},{[\"name\"] = \"Usurp the Night\",[\"skillIcons\"] = {}},{[\"name\"] = \"The Translator's Evidence\",[\"skillIcons\"] = {}},{[\"name\"] = \"The Supplicant's Evidence\",[\"skillIcons\"] = {}},{[\"name\"] = \"The Priestess's Evidence\",[\"skillIcons\"] = {}},{[\"name\"] = \"The Salesman's Evidence\",[\"skillIcons\"] = {}},{[\"name\"] = \"The Assassin's Evidence\",[\"skillIcons\"] = {}},{[\"name\"] = \"The Professor's Evidence\",[\"skillIcons\"] = {}},{[\"name\"] = \"Daisy Walker\",[\"skillIcons\"] = {[\"Will\"] = 1,[\"Agility\"] = 2,[\"Combat\"] = 2,[\"Intellect\"] = 5}},{[\"name\"] = \"Daisy's Tote Bag\",[\"cost\"] = 2,[\"skillIcons\"] = {[\"Wild\"] = 2,[\"Will\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"The Necronomicon\",[\"skillIcons\"] = {}},{[\"name\"] = \"\\\"Skids\\\" O'Toole\",[\"skillIcons\"] = {[\"Will\"] = 2,[\"Agility\"] = 4,[\"Combat\"] = 3,[\"Intellect\"] = 3}},{[\"name\"] = \"On the Lam\",[\"cost\"] = 0,[\"skillIcons\"] = {[\"Wild\"] = 2,[\"Agility\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Hospital Debts\",[\"skillIcons\"] = {}},{[\"name\"] = \"Agnes Baker\",[\"skillIcons\"] = {[\"Will\"] = 5,[\"Agility\"] = 3,[\"Combat\"] = 2,[\"Intellect\"] = 2}},{[\"name\"] = \"Heirloom of Hyperborea\",[\"cost\"] = 3,[\"skillIcons\"] = {[\"Wild\"] = 2,[\"Will\"] = 1,[\"Combat\"] = 1}},{[\"name\"] = \"Dark Memory\",[\"cost\"] = 4,[\"skillIcons\"] = {}},{[\"name\"] = \"Triumph and Subjugation\",[\"skillIcons\"] = {}},{[\"name\"] = \"Jenny Barnes\",[\"skillIcons\"] = {[\"Will\"] = 3,[\"Agility\"] = 3,[\"Combat\"] = 3,[\"Intellect\"] = 3}},{[\"name\"] = \"Green Man Medallion\",[\"cost\"] = 1,[\"skillIcons\"] = {[\"Wild\"] = 2}},{[\"name\"] = \"Sacrificial Beast\",[\"skillIcons\"] = {}},{[\"name\"] = \"Roland Banks\",[\"skillIcons\"] = {[\"Will\"] = 3,[\"Agility\"] = 2,[\"Combat\"] = 4,[\"Intellect\"] = 3}},{[\"name\"] = \"Mysteries Remain\",[\"cost\"] = 0,[\"skillIcons\"] = {[\"Wild\"] = 1,[\"Combat\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"The Dirge of Reason\",[\"skillIcons\"] = {}},{[\"name\"] = \"Norman Withers\",[\"skillIcons\"] = {[\"Will\"] = 4,[\"Agility\"] = 1,[\"Combat\"] = 2,[\"Intellect\"] = 5}},{[\"name\"] = \"Split the Angle\",[\"cost\"] = 2,[\"skillIcons\"] = {[\"Wild\"] = 1,[\"Will\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Vengeful Hound\",[\"skillIcons\"] = {}},{[\"name\"] = \"Carolyn Fern\",[\"skillIcons\"] = {[\"Will\"] = 3,[\"Agility\"] = 2,[\"Combat\"] = 2,[\"Intellect\"] = 4}},{[\"name\"] = \"Foolishness\",[\"cost\"] = 4,[\"skillIcons\"] = {[\"Wild\"] = 2}},{[\"name\"] = \"To Fight the Black Wind\",[\"skillIcons\"] = {}},{[\"name\"] = \"Silas Marsh\",[\"skillIcons\"] = {[\"Will\"] = 2,[\"Agility\"] = 4,[\"Combat\"] = 4,[\"Intellect\"] = 2}},{[\"name\"] = \"Nautical Prowess\",[\"skillIcons\"] = {[\"Wild\"] = 1,[\"Will\"] = 1,[\"Intellect\"] = 1}},{[\"name\"] = \"Dreams of the Deep\",[\"skillIcons\"] = {[\"Wild\"] = 2}},{[\"name\"] = \"Dexter Drake\",[\"skillIcons\"] = {[\"Will\"] = 5,[\"Agility\"] = 2,[\"Combat\"] = 3,[\"Intellect\"] = 2}},{[\"name\"] = \"Molly Maxwell\",[\"cost\"] = 3,[\"skillIcons\"] = {[\"Wild\"] = 1,[\"Will\"] = 1,[\"Agility\"] = 1}},{[\"name\"] = \"Yaztaroth\",[\"skillIcons\"] = {}},{[\"name\"] = \"Gloria Goldberg\",[\"skillIcons\"] = {[\"Will\"] = 5,[\"Agility\"] = 1,[\"Combat\"] = 2,[\"Intellect\"] = 4}},{[\"name\"] = \"Ruth Westmacott\",[\"cost\"] = 3,[\"skillIcons\"] = {[\"Wild\"] = 1,[\"Intellect\"] = 2}},{[\"name\"] = \"Liber Omnium Finium\",[\"skillIcons\"] = {}},{[\"name\"] = \"Marie Lambeau\",[\"skillIcons\"] = {[\"Will\"] = 4,[\"Agility\"] = 3,[\"Combat\"] = 1,[\"Intellect\"] = 4}},{[\"name\"] = \"Mystifying Song\",[\"cost\"] = 3,[\"skillIcons\"] = {[\"Wild\"] = 2}},{[\"name\"] = \"Baron Samedi\",[\"skillIcons\"] = {}}}\r\nend",
"LuaScriptState": "",
"XmlUI": "",
"CustomUIAssets": [
{
"Name": "combatIcon",
"URL": "http://cloud-3.steamusercontent.com/ugc/1754695581870520946/B61CD5BDAE28B1893809915C7C92A8B472BB65BB/"
}
]
},
"1": {
"GUID": "ce6247",
"Name": "Custom_Model_Bag",
"Transform": {
"posX": 12.5691032,
"posY": 1.65280688,
"posZ": 1.1788671,
"rotX": 359.920135,
"rotY": 269.9931,
"rotZ": 0.0168891642,
"scaleX": 0.725000262,
"scaleY": 0.725000262,
"scaleZ": 0.725000262
},
"Nickname": "Sefina Rousseau Helper",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.06274348,
"g": 0.4431351,
"b": 0.08627268
},
"LayoutGroupSortIndex": 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,
"Number": 0,
"CustomMesh": {
"MeshURL": "http://cloud-3.steamusercontent.com/ugc/1754695414379239413/0B8E68F3B7311DCF2138FB701F78D1D93FBA4CAB/",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/1754695635919099826/3C3CBFFAADB2ACA9957C736491F470AE906CC953/",
"NormalURL": "",
"ColliderURL": "http://cloud-3.steamusercontent.com/ugc/1754695414379239413/0B8E68F3B7311DCF2138FB701F78D1D93FBA4CAB/",
"Convex": true,
"MaterialIndex": 1,
"TypeIndex": 6,
"CastShadows": true
},
"Bag": {
"Order": 0
},
"LuaScript": "function onload(saved_data)\r\n cardsInBag = {}\r\n memoizedCards = {}\r\n cardJson = loadCards()\r\nend\r\n\r\nfunction onObjectEnterContainer(container, object)\r\n if container == self then\r\n --use previously-found cards for faster performace\r\n if memoizedCards[object.getName()] then\r\n table.insert(cardsInBag, {name = object.getName() .. memoizedCards[object.getName()], id = object.getGUID()})\r\n recreateButtons()\r\n else\r\n findCard(object)\r\n end\r\n end\r\nend\r\n\r\nfunction onObjectLeaveContainer(container, object)\r\n if container == self then\r\n removeCardByGUID(cardsInBag, object.getGUID())\r\n recreateButtons()\r\n end\r\nend\r\n\r\nfunction findCard(object)\r\n local cost = ''\r\n\r\n for _, card in pairs (cardJson) do\r\n if (card.name == object.getName()) then\r\n if card.cost ~= nil then\r\n cost = '[' .. card.cost .. '] '\r\n end\r\n break\r\n end\r\n end\r\n\r\n --memoize result\r\n memoizedCards[object.getName()] = icons\r\n\r\n table.insert(cardsInBag, {name = cost .. object.getName(), id = object.getGUID()})\r\n recreateButtons()\r\nend\r\n\r\nfunction recreateButtons()\r\n self.clearButtons()\r\n verticalPosition = 1.5\r\n\r\n for _, card in ipairs(cardsInBag) do\r\n if _G['removeCard' .. card.id] == nil then\r\n _G['removeCard' .. card.id] = function()\r\n removeCard(card.id)\r\n end\r\n end\r\n\r\n self.createButton({\r\n label = card.name,\r\n click_function = \"removeCard\" .. card.id,\r\n function_owner = self,\r\n position = {0,0,verticalPosition},\r\n height = 200,\r\n width = 1200,\r\n font_size = 75,\r\n color = {1,1,1},\r\n font_color = {0,0,0}\r\n })\r\n\r\n verticalPosition = verticalPosition - 0.5\r\n end\r\n\r\n countLabel = #cardsInBag == 0 and '' or #cardsInBag\r\n\r\n self.createButton({\r\n label = countLabel,\r\n click_function = 'nothing',\r\n function_owner = self,\r\n position = {0,0,-1.25},\r\n width = 0,\r\n height = 0,\r\n font_size = 225,\r\n font_color = {1,1,1}\r\n })\r\nend\r\n\r\nfunction nothing()\r\nend\r\n\r\nfunction removeCard(cardGUID)\r\n self.takeObject({\r\n guid = cardGUID,\r\n rotation = self.getRotation(),\r\n position = self.getPosition() + Vector(0,0.5,0),\r\n callback_function = function(obj)\r\n obj.resting = true\r\n end\r\n })\r\nend\r\n\r\nfunction removeCardByGUID(bag, guid)\r\n local idx = nil\r\n\r\n for i, v in ipairs (bag) do\r\n if (v.id == guid) then\r\n idx = i\r\n end\r\n end\r\n\r\n if idx ~= nil then\r\n table.remove(cardsInBag, idx)\r\n end\r\nend\r\n\r\nfunction loadCards()\r\n return {{[\"name\"] = \"Random Basic Weakness\"},{[\"name\"] = \"Roland Banks\"},{[\"name\"] = \"Daisy Walker\"},{[\"name\"] = \"\\\"Skids\\\" O'Toole\"},{[\"name\"] = \"Agnes Baker\"},{[\"name\"] = \"Wendy Adams\"},{[\"name\"] = \"Roland's .38 Special\",[\"cost\"] = 3},{[\"name\"] = \"Cover Up\"},{[\"name\"] = \"Daisy's Tote Bag\",[\"cost\"] = 2},{[\"name\"] = \"The Necronomicon\"},{[\"name\"] = \"On the Lam\",[\"cost\"] = 1},{[\"name\"] = \"Hospital Debts\"},{[\"name\"] = \"Heirloom of Hyperborea\",[\"cost\"] = 3},{[\"name\"] = \"Dark Memory\",[\"cost\"] = 2},{[\"name\"] = \"Wendy's Amulet\",[\"cost\"] = 2},{[\"name\"] = \"Abandoned and Alone\"},{[\"name\"] = \".45 Automatic\",[\"cost\"] = 4},{[\"name\"] = \"Physical Training\",[\"cost\"] = 2},{[\"name\"] = \"Beat Cop\",[\"cost\"] = 4},{[\"name\"] = \"First Aid\",[\"cost\"] = 2},{[\"name\"] = \"Machete\",[\"cost\"] = 3},{[\"name\"] = \"Guard Dog\",[\"cost\"] = 3},{[\"name\"] = \"Evidence!\",[\"cost\"] = 1},{[\"name\"] = \"Dodge\",[\"cost\"] = 1},{[\"name\"] = \"Dynamite Blast\",[\"cost\"] = 5},{[\"name\"] = \"Vicious Blow\"},{[\"name\"] = \"Extra Ammunition (1)\",[\"cost\"] = 2},{[\"name\"] = \"Police Badge (2)\",[\"cost\"] = 3},{[\"name\"] = \"Beat Cop (2)\",[\"cost\"] = 4},{[\"name\"] = \"Shotgun (4)\",[\"cost\"] = 5},{[\"name\"] = \"Magnifying Glass\",[\"cost\"] = 1},{[\"name\"] = \"Old Book of Lore\",[\"cost\"] = 3},{[\"name\"] = \"Research Librarian\",[\"cost\"] = 2},{[\"name\"] = \"Dr. Milan Christopher\",[\"cost\"] = 4},{[\"name\"] = \"Hyperawareness\",[\"cost\"] = 2},{[\"name\"] = \"Medical Texts\",[\"cost\"] = 2},{[\"name\"] = \"Mind over Matter\",[\"cost\"] = 1},{[\"name\"] = \"Working a Hunch\",[\"cost\"] = 2},{[\"name\"] = \"Barricade\",[\"cost\"] = 0},{[\"name\"] = \"Deduction\"},{[\"name\"] = \"Magnifying Glass (1)\",[\"cost\"] = 0},{[\"name\"] = \"Disc of Itzamna (2)\",[\"cost\"] = 3},{[\"name\"] = \"Encyclopedia (2)\",[\"cost\"] = 2},{[\"name\"] = \"Cryptic Research (4)\",[\"cost\"] = 0},{[\"name\"] = \"Switchblade\",[\"cost\"] = 1},{[\"name\"] = \"Burglary\",[\"cost\"] = 1},{[\"name\"] = \"Pickpocketing\",[\"cost\"] = 2},{[\"name\"] = \".41 Derringer\",[\"cost\"] = 3},{[\"name\"] = \"Leo De Luca\",[\"cost\"] = 6},{[\"name\"] = \"Hard Knocks\",[\"cost\"] = 2},{[\"name\"] = \"Elusive\",[\"cost\"] = 2},{[\"name\"] = \"Backstab\",[\"cost\"] = 3},{[\"name\"] = \"Sneak Attack\",[\"cost\"] = 2},{[\"name\"] = \"Opportunist\"},{[\"name\"] = \"Leo De Luca (1)\",[\"cost\"] = 5},{[\"name\"] = \"Cat Burglar (1)\",[\"cost\"] = 4},{[\"name\"] = \"Sure Gamble (3)\",[\"cost\"] = 2},{[\"name\"] = \"Hot Streak (4)\",[\"cost\"] = 3},{[\"name\"] = \"Forbidden Knowledge\",[\"cost\"] = 0},{[\"name\"] = \"Holy Rosary\",[\"cost\"] = 2},{[\"name\"] = \"Shrivelling\",[\"cost\"] = 3},{[\"name\"] = \"Scrying\",[\"cost\"] = 1},{[\"name\"] = \"Arcane Studies\",[\"cost\"] = 2},{[\"name\"] = \"Arcane Initiate\",[\"cost\"] = 1},{[\"name\"] = \"Drawn to the Flame\",[\"cost\"] = 0},{[\"name\"] = \"Ward of Protection\",[\"cost\"] = 1},{[\"name\"] = \"Blinding Light\",[\"cost\"] = 2},{[\"name\"] = \"Fearless\"},{[\"name\"] = \"Mind Wipe (1)\",[\"cost\"] = 1},{[\"name\"] = \"Blinding Light (2)\",[\"cost\"] = 1},{[\"name\"] = \"Book of Shadows (3)\",[\"cost\"] = 4},{[\"name\"] = \"Grotesque Statue (4)\",[\"cost\"] = 2},{[\"name\"] = \"Leather Coat\",[\"cost\"] = 0},{[\"name\"] = \"Scavenging\",[\"cost\"] = 1},{[\"name\"] = \"Baseball Bat\",[\"cost\"] = 2},{[\"name\"] = \"Rabbit's Foot\",[\"cost\"] = 1},{[\"name\"] = \"Stray Cat\",[\"cost\"] = 1},{[\"name\"] = \"Dig Deep\",[\"cost\"] = 2},{[\"name\"] = \"Cunning Distraction\",[\"cost\"] = 5},{[\"name\"] = \"\\\"Look what I found!\\\"\",[\"cost\"] = 2},{[\"name\"] = \"Lucky!\",[\"cost\"] = 1},{[\"name\"] = \"Survival Instinct\"},{[\"name\"] = \"Aquinnah (1)\",[\"cost\"] = 5},{[\"name\"] = \"Close Call (2)\",[\"cost\"] = 2},{[\"name\"] = \"Lucky! (2)\",[\"cost\"] = 1},{[\"name\"] = \"Will to Survive (3)\",[\"cost\"] = 4},{[\"name\"] = \"Knife\",[\"cost\"] = 1},{[\"name\"] = \"Flashlight\",[\"cost\"] = 2},{[\"name\"] = \"Emergency Cache\",[\"cost\"] = 0},{[\"name\"] = \"Guts\"},{[\"name\"] = \"Perception\"},{[\"name\"] = \"Overpower\"},{[\"name\"] = \"Manual Dexterity\"},{[\"name\"] = \"Unexpected Courage\"},{[\"name\"] = \"Bulletproof Vest (3)\",[\"cost\"] = 2},{[\"name\"] = \"Elder Sign Amulet (3)\",[\"cost\"] = 2},{[\"name\"] = \"Amnesia\"},{[\"name\"] = \"Paranoia\"},{[\"name\"] = \"Haunted\"},{[\"name\"] = \"Psychosis\"},{[\"name\"] = \"Hypochondria\"},{[\"name\"] = \"Mob Enforcer\"},{[\"name\"] = \"Silver Twilight Acolyte\"},{[\"name\"] = \"Stubborn Detective\"},{[\"name\"] = \"Zoey Samaras\"},{[\"name\"] = \"Rex Murphy\"},{[\"name\"] = \"Jenny Barnes\"},{[\"name\"] = \"Jim Culver\"},{[\"name\"] = \"\\\"Ashcan\\\" Pete\"},{[\"name\"] = \"Zoey's Cross\",[\"cost\"] = 1},{[\"name\"] = \"Smite the Wicked\"},{[\"name\"] = \"Search for the Truth\",[\"cost\"] = 1},{[\"name\"] = \"Rex's Curse\"},{[\"name\"] = \"Jenny's Twin .45s\",[\"cost\"] = -2},{[\"name\"] = \"Searching for Izzie\"},{[\"name\"] = \"Jim's Trumpet\",[\"cost\"] = 2},{[\"name\"] = \"Final Rhapsody\"},{[\"name\"] = \"Duke\",[\"cost\"] = 2},{[\"name\"] = \"Wracked by Nightmares\"},{[\"name\"] = \"Blackjack\",[\"cost\"] = 1},{[\"name\"] = \"Taunt\",[\"cost\"] = 1},{[\"name\"] = \"Teamwork\",[\"cost\"] = 0},{[\"name\"] = \"Taunt (2)\",[\"cost\"] = 1},{[\"name\"] = \"Laboratory Assistant\",[\"cost\"] = 2},{[\"name\"] = \"Strange Solution\",[\"cost\"] = 1},{[\"name\"] = \"Shortcut\",[\"cost\"] = 0},{[\"name\"] = \"Seeking Answers\",[\"cost\"] = 1},{[\"name\"] = \"Liquid Courage\",[\"cost\"] = 1},{[\"name\"] = \"Think on Your Feet\",[\"cost\"] = 1},{[\"name\"] = \"Double or Nothing\"},{[\"name\"] = \"Hired Muscle (1)\",[\"cost\"] = 1},{[\"name\"] = \"Rite of Seeking\",[\"cost\"] = 4},{[\"name\"] = \"Ritual Candles\",[\"cost\"] = 1},{[\"name\"] = \"Clarity of Mind\",[\"cost\"] = 2},{[\"name\"] = \"Bind Monster (2)\",[\"cost\"] = 3},{[\"name\"] = \"Fire Axe\",[\"cost\"] = 1},{[\"name\"] = \"Peter Sylvestre\",[\"cost\"] = 3},{[\"name\"] = \"Bait and Switch\",[\"cost\"] = 1},{[\"name\"] = \"Peter Sylvestre (2)\",[\"cost\"] = 3},{[\"name\"] = \"Kukri\",[\"cost\"] = 2},{[\"name\"] = \"Indebted\"},{[\"name\"] = \"Internal Injury\"},{[\"name\"] = \"Chronophobia\"},{[\"name\"] = \"Emergency Aid\",[\"cost\"] = 2},{[\"name\"] = \"Brother Xavier (1)\",[\"cost\"] = 5},{[\"name\"] = \"\\\"I've got a plan!\\\"\",[\"cost\"] = 3},{[\"name\"] = \"Pathfinder (1)\",[\"cost\"] = 3},{[\"name\"] = \"Contraband\",[\"cost\"] = 4},{[\"name\"] = \"Adaptable (1)\"},{[\"name\"] = \"Delve Too Deep\",[\"cost\"] = 1},{[\"name\"] = \"Song of the Dead (2)\",[\"cost\"] = 2},{[\"name\"] = \"Oops!\",[\"cost\"] = 2},{[\"name\"] = \"Fire Extinguisher (1)\",[\"cost\"] = 2},{[\"name\"] = \"Flare (1)\",[\"cost\"] = 2},{[\"name\"] = \"Smoking Pipe\",[\"cost\"] = 1},{[\"name\"] = \"Painkillers\",[\"cost\"] = 1},{[\"name\"] = \"Bandolier\",[\"cost\"] = 2},{[\"name\"] = \"Stand Together (3)\",[\"cost\"] = 0},{[\"name\"] = \"Art Student\",[\"cost\"] = 2},{[\"name\"] = \"Deduction (2)\"},{[\"name\"] = \"\\\"I'm outta here!\\\"\",[\"cost\"] = 0},{[\"name\"] = \"Switchblade (2)\",[\"cost\"] = 1},{[\"name\"] = \"Hypnotic Gaze\",[\"cost\"] = 3},{[\"name\"] = \"Shrivelling (3)\",[\"cost\"] = 3},{[\"name\"] = \"Newspaper\",[\"cost\"] = 1},{[\"name\"] = \"Lure (1)\",[\"cost\"] = 1},{[\"name\"] = \"Relic Hunter (3)\"},{[\"name\"] = \"Charisma (3)\"},{[\"name\"] = \"Prepared for the Worst\",[\"cost\"] = 1},{[\"name\"] = \"Keen Eye (3)\"},{[\"name\"] = \"Preposterous Sketches\",[\"cost\"] = 2},{[\"name\"] = \"Higher Education (3)\"},{[\"name\"] = \"Lone Wolf\",[\"cost\"] = 1},{[\"name\"] = \"Streetwise (3)\"},{[\"name\"] = \"Defiance\"},{[\"name\"] = \"Blood Pact (3)\"},{[\"name\"] = \"Rise to the Occasion\"},{[\"name\"] = \"Scrapper (3)\"},{[\"name\"] = \"Emergency Cache (2)\",[\"cost\"] = 0},{[\"name\"] = \"\\\"If it bleeds...\\\"\",[\"cost\"] = 1},{[\"name\"] = \"Springfield M1903 (4)\",[\"cost\"] = 4},{[\"name\"] = \"Inquiring Mind\"},{[\"name\"] = \"Expose Weakness (1)\",[\"cost\"] = 0},{[\"name\"] = \"Quick Thinking\"},{[\"name\"] = \"Lucky Dice (2)\",[\"cost\"] = 2},{[\"name\"] = \"Opportunist (2)\"},{[\"name\"] = \"Alyssa Graham\",[\"cost\"] = 4},{[\"name\"] = \"Rite of Seeking (4)\",[\"cost\"] = 5},{[\"name\"] = \"Dark Horse\",[\"cost\"] = 3},{[\"name\"] = \"Survival Instinct (2)\"},{[\"name\"] = \"Leadership\"},{[\"name\"] = \"\\\"I've had worse...\\\" (4)\",[\"cost\"] = 0},{[\"name\"] = \"Strange Solution (4)\",[\"cost\"] = 1},{[\"name\"] = \"Strange Solution (4)\",[\"cost\"] = 1},{[\"name\"] = \"Strange Solution (4)\",[\"cost\"] = 1},{[\"name\"] = \"Joey \\\"The Rat\\\" Vigil\",[\"cost\"] = 4},{[\"name\"] = \"Ace in the Hole (3)\",[\"cost\"] = 0},{[\"name\"] = \"Moonlight Ritual\",[\"cost\"] = 0},{[\"name\"] = \"Fearless (2)\"},{[\"name\"] = \"Jewel of Aureolus (3)\",[\"cost\"] = 3},{[\"name\"] = \"A Chance Encounter\",[\"cost\"] = 1},{[\"name\"] = \"Stroke of Luck (2)\"},{[\"name\"] = \"Fine Clothes\",[\"cost\"] = 1},{[\"name\"] = \"Moment of Respite (3)\",[\"cost\"] = 3},{[\"name\"] = \"Vicious Blow (2)\"},{[\"name\"] = \"Monster Slayer (5)\",[\"cost\"] = 1},{[\"name\"] = \"Lightning Gun (5)\",[\"cost\"] = 6},{[\"name\"] = \"Dr. William T. Maleson\",[\"cost\"] = 1},{[\"name\"] = \"Deciphered Reality (5)\",[\"cost\"] = 4},{[\"name\"] = \"Chicago Typewriter (4)\",[\"cost\"] = 5},{[\"name\"] = \"The Gold Pocket Watch (4)\",[\"cost\"] = 2},{[\"name\"] = \"Shrivelling (5)\",[\"cost\"] = 3},{[\"name\"] = \"Ward of Protection (5)\",[\"cost\"] = 1},{[\"name\"] = \"Aquinnah (3)\",[\"cost\"] = 4},{[\"name\"] = \"Try and Try Again (3)\",[\"cost\"] = 2},{[\"name\"] = \"The Red-Gloved Man (5)\",[\"cost\"] = 2},{[\"name\"] = \"Mark Harrigan\"},{[\"name\"] = \"Minh Thi Phan\"},{[\"name\"] = \"Sefina Rousseau\"},{[\"name\"] = \"Akachi Onyele\"},{[\"name\"] = \"William Yorick\"},{[\"name\"] = \"Lola Hayes\"},{[\"name\"] = \"The Home Front\"},{[\"name\"] = \"Shell Shock\"},{[\"name\"] = \"Sophie\"},{[\"name\"] = \"Sophie\"},{[\"name\"] = \"Analytical Mind\",[\"cost\"] = 3},{[\"name\"] = \"The King in Yellow\"},{[\"name\"] = \"The Painted World\"},{[\"name\"] = \"Stars of Hyades\"},{[\"name\"] = \"Spirit-Speaker\",[\"cost\"] = 2},{[\"name\"] = \"Angered Spirits\"},{[\"name\"] = \"Bury Them Deep\",[\"cost\"] = 0},{[\"name\"] = \"Graveyard Ghouls\"},{[\"name\"] = \"Improvisation\",[\"cost\"] = 0},{[\"name\"] = \"Crisis of Identity\"},{[\"name\"] = \".32 Colt\",[\"cost\"] = 3},{[\"name\"] = \"True Grit\",[\"cost\"] = 3},{[\"name\"] = \"\\\"Let me handle this!\\\"\",[\"cost\"] = 0},{[\"name\"] = \"Ever Vigilant (1)\",[\"cost\"] = 0},{[\"name\"] = \"Fieldwork\",[\"cost\"] = 2},{[\"name\"] = \"Archaic Glyphs\",[\"cost\"] = 0},{[\"name\"] = \"No Stone Unturned\",[\"cost\"] = 2},{[\"name\"] = \"In the Know (1)\",[\"cost\"] = 3},{[\"name\"] = \"Stealth\",[\"cost\"] = 2},{[\"name\"] = \"Sleight of Hand\",[\"cost\"] = 1},{[\"name\"] = \"Daring Maneuver\",[\"cost\"] = 0},{[\"name\"] = \"Lockpicks (1)\",[\"cost\"] = 3},{[\"name\"] = \"Alchemical Transmutation\",[\"cost\"] = 1},{[\"name\"] = \"Uncage the Soul\",[\"cost\"] = 0},{[\"name\"] = \"Astral Travel\",[\"cost\"] = 3},{[\"name\"] = \"Spirit Athame (1)\",[\"cost\"] = 3},{[\"name\"] = \"Lantern\",[\"cost\"] = 2},{[\"name\"] = \"Gravedigger's Shovel\",[\"cost\"] = 2},{[\"name\"] = \"Hiding Spot\",[\"cost\"] = 1},{[\"name\"] = \"Resourceful\"},{[\"name\"] = \"Overzealous\"},{[\"name\"] = \"Drawing the Sign\"},{[\"name\"] = \"The Thing That Follows\"},{[\"name\"] = \"Constance Dumaine\"},{[\"name\"] = \"Jordan Perry\"},{[\"name\"] = \"Ishimaru Haruko\"},{[\"name\"] = \"Sebastien Moreau\"},{[\"name\"] = \"Ashleigh Clarke\"},{[\"name\"] = \"Engram's Oath\"},{[\"name\"] = \"L'agneau Perdu\"},{[\"name\"] = \"The Pattern\"},{[\"name\"] = \"The First Show\"},{[\"name\"] = \"Above and Below\"},{[\"name\"] = \"Heroic Rescue\",[\"cost\"] = 1},{[\"name\"] = \"Combat Training (1)\",[\"cost\"] = 1},{[\"name\"] = \"Anatomical Diagrams\",[\"cost\"] = 1},{[\"name\"] = \"Scientific Theory (1)\",[\"cost\"] = 1},{[\"name\"] = \"Knuckleduster\",[\"cost\"] = 2},{[\"name\"] = \"Moxie (1)\",[\"cost\"] = 1},{[\"name\"] = \"David Renfield\",[\"cost\"] = 2},{[\"name\"] = \"Grounded (1)\",[\"cost\"] = 1},{[\"name\"] = \"Cherished Keepsake\",[\"cost\"] = 0},{[\"name\"] = \"Plucky (1)\",[\"cost\"] = 1},{[\"name\"] = \"Say Your Prayers\"},{[\"name\"] = \"Desperate Search\"},{[\"name\"] = \"Reckless Assault\"},{[\"name\"] = \"Run For Your Life\"},{[\"name\"] = \"Trench Knife\",[\"cost\"] = 1},{[\"name\"] = \"Ambush (1)\",[\"cost\"] = 2},{[\"name\"] = \"Charles Ross, Esq.\",[\"cost\"] = 2},{[\"name\"] = \"Forewarned (1)\",[\"cost\"] = 0},{[\"name\"] = \"Dario El-Amin\",[\"cost\"] = 4},{[\"name\"] = \"Sneak Attack (2)\",[\"cost\"] = 2},{[\"name\"] = \"Storm of Spirits\",[\"cost\"] = 3},{[\"name\"] = \"Book of Shadows (1)\",[\"cost\"] = 3},{[\"name\"] = \"Fight or Flight\",[\"cost\"] = 1},{[\"name\"] = \"A Test of Will (1)\",[\"cost\"] = 1},{[\"name\"] = \"Devil's Luck (1)\",[\"cost\"] = 1},{[\"name\"] = \"Calling in Favors\",[\"cost\"] = 1},{[\"name\"] = \"\\\"I'll see you in hell!\\\"\",[\"cost\"] = 0},{[\"name\"] = \".45 Automatic (2)\",[\"cost\"] = 4},{[\"name\"] = \"Logical Reasoning\",[\"cost\"] = 2},{[\"name\"] = \"Archaic Glyphs (3)\",[\"cost\"] = 2},{[\"name\"] = \"Archaic Glyphs (3)\",[\"cost\"] = 2},{[\"name\"] = \"Cheap Shot\",[\"cost\"] = 2},{[\"name\"] = \"Pickpocketing (2)\",[\"cost\"] = 2},{[\"name\"] = \"Quantum Flux\",[\"cost\"] = 1},{[\"name\"] = \"Recharge (2)\",[\"cost\"] = 0},{[\"name\"] = \"Madame Labranche\",[\"cost\"] = 2},{[\"name\"] = \"Snare Trap (2)\",[\"cost\"] = 2},{[\"name\"] = \"Inspiring Presence\"},{[\"name\"] = \"Mano a Mano (1)\",[\"cost\"] = 0},{[\"name\"] = \"First Aid (3)\",[\"cost\"] = 2},{[\"name\"] = \"Eureka!\"},{[\"name\"] = \"Shortcut (2)\",[\"cost\"] = 1},{[\"name\"] = \"\\\"Watch this!\\\"\"},{[\"name\"] = \".41 Derringer (2)\",[\"cost\"] = 3},{[\"name\"] = \"Torrent of Power\"},{[\"name\"] = \"Scrying (3)\",[\"cost\"] = 1},{[\"name\"] = \"Waylay\",[\"cost\"] = 3},{[\"name\"] = \"A Chance Encounter (2)\",[\"cost\"] = -2},{[\"name\"] = \"Emergency Cache (3)\",[\"cost\"] = 0},{[\"name\"] = \"On the Hunt\",[\"cost\"] = 1},{[\"name\"] = \"Stick to the Plan (3)\"},{[\"name\"] = \"Guidance\",[\"cost\"] = 0},{[\"name\"] = \"Arcane Insight (4)\",[\"cost\"] = 3},{[\"name\"] = \"Narrow Escape\",[\"cost\"] = 0},{[\"name\"] = \"Suggestion (4)\",[\"cost\"] = 3},{[\"name\"] = \"St. Hubert's Key\",[\"cost\"] = 4},{[\"name\"] = \"Ward of Protection (2)\",[\"cost\"] = 1},{[\"name\"] = \"Arcane Initiate (3)\",[\"cost\"] = 0},{[\"name\"] = \"\\\"Not without a fight!\\\"\"},{[\"name\"] = \"True Survivor (3)\",[\"cost\"] = 3},{[\"name\"] = \"\\\"Eat lead!\\\" (2)\",[\"cost\"] = 0},{[\"name\"] = \"Armor of Ardennes (5)\",[\"cost\"] = 4},{[\"name\"] = \"Eidetic Memory (3)\"},{[\"name\"] = \"No Stone Unturned (5)\",[\"cost\"] = 2},{[\"name\"] = \"Charon's Obol (1)\"},{[\"name\"] = \"Lupara (3)\",[\"cost\"] = 3},{[\"name\"] = \"Cheat Death (5)\",[\"cost\"] = 1},{[\"name\"] = \"Time Warp (2)\",[\"cost\"] = 1},{[\"name\"] = \"Seal of the Elder Sign (5)\"},{[\"name\"] = \"Newspaper (2)\",[\"cost\"] = 1},{[\"name\"] = \"Infighting (3)\",[\"cost\"] = 1},{[\"name\"] = \"Key of Ys (5)\",[\"cost\"] = 3},{[\"name\"] = \"Songs That the Hyades Shall Sing\"},{[\"name\"] = \"Stars of Aldebaran\"},{[\"name\"] = \"Bleak Desolation\"},{[\"name\"] = \"Inhabitant of Carcosa\"},{[\"name\"] = \"A Moment's Rest\"},{[\"name\"] = \"The Coffin\"},{[\"name\"] = \"Mapping the Streets\"},{[\"name\"] = \"The King's Parade\"},{[\"name\"] = \"The Archway\"},{[\"name\"] = \"The Height of the Depths\"},{[\"name\"] = \"Steps of the Palace\"},{[\"name\"] = \"The Fall\"},{[\"name\"] = \"Hastur's End\"},{[\"name\"] = \"Leo Anderson\"},{[\"name\"] = \"Ursula Downs\"},{[\"name\"] = \"Finn Edwards\"},{[\"name\"] = \"Father Mateo\"},{[\"name\"] = \"Calvin Wright\"},{[\"name\"] = \"Mitch Brown\",[\"cost\"] = 3},{[\"name\"] = \"Bought in Blood\"},{[\"name\"] = \"Jake Williams\",[\"cost\"] = 3},{[\"name\"] = \"Call of the Unknown\"},{[\"name\"] = \"Smuggled Goods\",[\"cost\"] = 0},{[\"name\"] = \"Finn's Trusty .38\",[\"cost\"] = 2},{[\"name\"] = \"Caught Red-Handed\"},{[\"name\"] = \"The Codex of Ages\",[\"cost\"] = 2},{[\"name\"] = \"Serpents of Yig\"},{[\"name\"] = \"Until the End of Time\",[\"cost\"] = 1},{[\"name\"] = \"Voice of the Messenger\"},{[\"name\"] = \"Survival Knife\",[\"cost\"] = 2},{[\"name\"] = \"Venturer\",[\"cost\"] = 4},{[\"name\"] = \"Trusted\",[\"cost\"] = 1},{[\"name\"] = \"Reliable (1)\",[\"cost\"] = 1},{[\"name\"] = \"Dr. Elli Horowitz\",[\"cost\"] = 3},{[\"name\"] = \"Ancient Stone (1)\",[\"cost\"] = 1},{[\"name\"] = \"Tooth of Eztli\",[\"cost\"] = 3},{[\"name\"] = \"Unearth the Ancients\",[\"cost\"] = 1},{[\"name\"] = \"Treasure Hunter (1)\",[\"cost\"] = 1},{[\"name\"] = \"Decorated Skull\",[\"cost\"] = 0},{[\"name\"] = \"Eavesdrop\",[\"cost\"] = 1},{[\"name\"] = \"\\\"You handle this one!\\\"\",[\"cost\"] = 0},{[\"name\"] = \"Mists of R'lyeh\",[\"cost\"] = 2},{[\"name\"] = \"The Chthonian Stone\",[\"cost\"] = 3},{[\"name\"] = \"Protective Incantation (1)\",[\"cost\"] = 1},{[\"name\"] = \"Dark Prophecy\",[\"cost\"] = 1},{[\"name\"] = \"Improvised Weapon\",[\"cost\"] = 1},{[\"name\"] = \"Dumb Luck\",[\"cost\"] = 2},{[\"name\"] = \"Yaotl (1)\",[\"cost\"] = 3},{[\"name\"] = \"Last Chance\"},{[\"name\"] = \"Backpack\",[\"cost\"] = 2},{[\"name\"] = \"Dark Pact\",[\"cost\"] = 2},{[\"name\"] = \"The Price of Failure\"},{[\"name\"] = \"Doomed\"},{[\"name\"] = \"Accursed Fate\"},{[\"name\"] = \"The Bell Tolls\"},{[\"name\"] = \"Scene of the Crime\",[\"cost\"] = 2},{[\"name\"] = \"Marksmanship (1)\",[\"cost\"] = 2},{[\"name\"] = \"Persuasion\",[\"cost\"] = 2},{[\"name\"] = \"Shrewd Analysis\"},{[\"name\"] = \"Lucky Cigarette Case\",[\"cost\"] = 2},{[\"name\"] = \"Fence (1)\",[\"cost\"] = 3},{[\"name\"] = \"Arcane Research\"},{[\"name\"] = \"Counterspell (2)\",[\"cost\"] = 2},{[\"name\"] = \"Perseverance\",[\"cost\"] = 2},{[\"name\"] = \"Stunning Blow\"},{[\"name\"] = \"Second Wind\",[\"cost\"] = 1},{[\"name\"] = \"Take the Initiative\"},{[\"name\"] = \"Well Prepared (2)\",[\"cost\"] = 2},{[\"name\"] = \"Truth from Fiction\",[\"cost\"] = 2},{[\"name\"] = \"True Understanding\"},{[\"name\"] = \"Quick Study (2)\",[\"cost\"] = 2},{[\"name\"] = \"Hatchet Man\"},{[\"name\"] = \"High Roller (2)\",[\"cost\"] = 2},{[\"name\"] = \"Enraptured\"},{[\"name\"] = \"Recall the Future (2)\",[\"cost\"] = 2},{[\"name\"] = \"Try and Try Again (1)\",[\"cost\"] = 2},{[\"name\"] = \"Cornered (2)\",[\"cost\"] = 2},{[\"name\"] = \"Intrepid\"},{[\"name\"] = \"Custom Ammunition (3)\",[\"cost\"] = 3},{[\"name\"] = \"Otherworldly Compass (2)\",[\"cost\"] = 2},{[\"name\"] = \"Expose Weakness (3)\",[\"cost\"] = 0},{[\"name\"] = \"Lola Santiago (3)\",[\"cost\"] = 3},{[\"name\"] = \"Olive McBride\",[\"cost\"] = 2},{[\"name\"] = \"Defiance (2)\"},{[\"name\"] = \"Premonition\",[\"cost\"] = 0},{[\"name\"] = \"Live and Learn\",[\"cost\"] = 0},{[\"name\"] = \"Take Heart\"},{[\"name\"] = \"Against All Odds (2)\",[\"cost\"] = 2},{[\"name\"] = \"Trench Coat\",[\"cost\"] = 3},{[\"name\"] = \"Ornate Bow (3)\",[\"cost\"] = 4},{[\"name\"] = \"M1918 BAR (4)\",[\"cost\"] = 5},{[\"name\"] = \"Ancient Stone (4)\",[\"cost\"] = 2},{[\"name\"] = \"Ancient Stone (4)\",[\"cost\"] = 2},{[\"name\"] = \"Slip Away\",[\"cost\"] = 2},{[\"name\"] = \"Pay Day (1)\",[\"cost\"] = 0},{[\"name\"] = \"Sacrifice (1)\",[\"cost\"] = 0},{[\"name\"] = \"Crystalline Elder Sign (3)\",[\"cost\"] = 3},{[\"name\"] = \"On Your Own (3)\",[\"cost\"] = 2},{[\"name\"] = \"Handcuffs\",[\"cost\"] = 2},{[\"name\"] = \"Blood Eclipse (3)\",[\"cost\"] = 1},{[\"name\"] = \"Feed the Mind (3)\",[\"cost\"] = 2},{[\"name\"] = \"Colt Vest Pocket\",[\"cost\"] = 2},{[\"name\"] = \"Coup de Grâce\",[\"cost\"] = 2},{[\"name\"] = \"The Skeleton Key (2)\",[\"cost\"] = 3},{[\"name\"] = \"Mists of R'lyeh (4)\",[\"cost\"] = 2},{[\"name\"] = \"Winging It\",[\"cost\"] = 1},{[\"name\"] = \"Old Hunting Rifle (3)\",[\"cost\"] = 3},{[\"name\"] = \"Thermos\",[\"cost\"] = 4},{[\"name\"] = \"Hemispheric Map (3)\",[\"cost\"] = 2},{[\"name\"] = \"Timeworn Brand (5)\",[\"cost\"] = 5},{[\"name\"] = \"Kerosene (1)\",[\"cost\"] = 3},{[\"name\"] = \"Flamethrower (5)\",[\"cost\"] = 4},{[\"name\"] = \"Vantage Point\",[\"cost\"] = 1},{[\"name\"] = \"Pnakotic Manuscripts (5)\",[\"cost\"] = 5},{[\"name\"] = \"Borrowed Time (3)\",[\"cost\"] = 1},{[\"name\"] = \"All In (5)\"},{[\"name\"] = \"Shards of the Void (3)\",[\"cost\"] = 3},{[\"name\"] = \"Seal of the Seventh Sign (5)\",[\"cost\"] = 4},{[\"name\"] = \"Impromptu Barrier\",[\"cost\"] = 1},{[\"name\"] = \"Alter Fate (3)\",[\"cost\"] = 1},{[\"name\"] = \"Yig's Mercy\"},{[\"name\"] = \"Another Way\"},{[\"name\"] = \"Carolyn Fern\"},{[\"name\"] = \"Joe Diamond\"},{[\"name\"] = \"Preston Fairmont\"},{[\"name\"] = \"Diana Stanley\"},{[\"name\"] = \"Rita Young\"},{[\"name\"] = \"Marie Lambeau\"},{[\"name\"] = \"Hypnotic Therapy\",[\"cost\"] = 2},{[\"name\"] = \"Rational Thought\"},{[\"name\"] = \"Detective's Colt 1911s\",[\"cost\"] = 4},{[\"name\"] = \"Unsolved Case\",[\"cost\"] = 4},{[\"name\"] = \"Family Inheritance\"},{[\"name\"] = \"Lodge \\\"Debts\\\"\",[\"cost\"] = 10},{[\"name\"] = \"Twilight Blade\",[\"cost\"] = 3},{[\"name\"] = \"Dark Insight\",[\"cost\"] = 2},{[\"name\"] = \"Terrible Secret\"},{[\"name\"] = \"\\\"I'm done runnin'!\\\"\",[\"cost\"] = 0},{[\"name\"] = \"Hoods\"},{[\"name\"] = \"Mystifying Song\",[\"cost\"] = 3},{[\"name\"] = \"Baron Samedi\"},{[\"name\"] = \"Interrogate\",[\"cost\"] = 2},{[\"name\"] = \"Delay the Inevitable\",[\"cost\"] = 2},{[\"name\"] = \"Steadfast\"},{[\"name\"] = \"Ace of Swords (1)\",[\"cost\"] = 3},{[\"name\"] = \"Fingerprint Kit\",[\"cost\"] = 4},{[\"name\"] = \"Connect the Dots\",[\"cost\"] = 4},{[\"name\"] = \"Curiosity\"},{[\"name\"] = \"Death • XIII (1)\",[\"cost\"] = 3},{[\"name\"] = \"Well Connected\",[\"cost\"] = 2},{[\"name\"] = \"Money Talks\",[\"cost\"] = 0},{[\"name\"] = \"Cunning\"},{[\"name\"] = \"The Moon • XVIII (1)\",[\"cost\"] = 3},{[\"name\"] = \"Deny Existence\",[\"cost\"] = 0},{[\"name\"] = \"Eldritch Inspiration\",[\"cost\"] = 0},{[\"name\"] = \"Prophesy\"},{[\"name\"] = \"Four of Cups (1)\",[\"cost\"] = 3},{[\"name\"] = \"Track Shoes\",[\"cost\"] = 3},{[\"name\"] = \"Act of Desperation\",[\"cost\"] = 0},{[\"name\"] = \"Able Bodied\"},{[\"name\"] = \"Five of Pentacles (1)\",[\"cost\"] = 3},{[\"name\"] = \"Ace of Rods (1)\",[\"cost\"] = 3},{[\"name\"] = \"The 13th Vision\"},{[\"name\"] = \"The Tower • XVI\",[\"cost\"] = 4},{[\"name\"] = \"Something Worth Fighting For\",[\"cost\"] = 3},{[\"name\"] = \"Crack the Case\",[\"cost\"] = 0},{[\"name\"] = \"Intel Report\",[\"cost\"] = 2},{[\"name\"] = \"Sign Magick\",[\"cost\"] = 3},{[\"name\"] = \"Banish (1)\",[\"cost\"] = 2},{[\"name\"] = \"Meat Cleaver\",[\"cost\"] = 3},{[\"name\"] = \".45 Thompson\",[\"cost\"] = 6},{[\"name\"] = \"Scroll of Secrets\",[\"cost\"] = 1},{[\"name\"] = \"Tennessee Sour Mash\",[\"cost\"] = 3},{[\"name\"] = \"Enchanted Blade\",[\"cost\"] = 3},{[\"name\"] = \"Grisly Totem\",[\"cost\"] = 3},{[\"name\"] = \"Alice Luxley\",[\"cost\"] = 4},{[\"name\"] = \"Well-Maintained (1)\",[\"cost\"] = 0},{[\"name\"] = \"Mr. \\\"Rook\\\"\",[\"cost\"] = 3},{[\"name\"] = \"Hawk-Eye Folding Camera\",[\"cost\"] = 2},{[\"name\"] = \"Henry Wan\",[\"cost\"] = 3},{[\"name\"] = \"Swift Reflexes\",[\"cost\"] = 2},{[\"name\"] = \"Wither\",[\"cost\"] = 2},{[\"name\"] = \"Sixth Sense\",[\"cost\"] = 3},{[\"name\"] = \"Drawing Thin\",[\"cost\"] = 0},{[\"name\"] = \"Belly of the Beast\",[\"cost\"] = 1},{[\"name\"] = \".45 Thompson (3)\",[\"cost\"] = 6},{[\"name\"] = \".45 Thompson (3)\",[\"cost\"] = 5},{[\"name\"] = \"Scroll of Secrets (3)\",[\"cost\"] = 1},{[\"name\"] = \"Scroll of Secrets (3)\",[\"cost\"] = 1},{[\"name\"] = \"Tennessee Sour Mash (3)\",[\"cost\"] = 3},{[\"name\"] = \"Tennessee Sour Mash (3)\",[\"cost\"] = 2},{[\"name\"] = \"Enchanted Blade (3)\",[\"cost\"] = 3},{[\"name\"] = \"Enchanted Blade (3)\",[\"cost\"] = 3},{[\"name\"] = \"Grisly Totem (3)\",[\"cost\"] = 3},{[\"name\"] = \"Grisly Totem (3)\",[\"cost\"] = 2},{[\"name\"] = \"The Council's Coffer (2)\",[\"cost\"] = 0},{[\"name\"] = \"Warning Shot\",[\"cost\"] = 2},{[\"name\"] = \"Telescopic Sight (3)\",[\"cost\"] = 3},{[\"name\"] = \"Knowledge is Power\",[\"cost\"] = 0},{[\"name\"] = \"Esoteric Atlas (1)\",[\"cost\"] = 3},{[\"name\"] = \"Investments\",[\"cost\"] = 1},{[\"name\"] = \"Decoy\",[\"cost\"] = 2},{[\"name\"] = \"De Vermis Mysteriis (2)\",[\"cost\"] = 2},{[\"name\"] = \"Guiding Spirit (1)\",[\"cost\"] = 1},{[\"name\"] = \"Fortune or Fate (2)\",[\"cost\"] = 2},{[\"name\"] = \"Mk 1 Grenades (4)\",[\"cost\"] = 3},{[\"name\"] = \"Agency Backup (5)\",[\"cost\"] = 7},{[\"name\"] = \"Ghastly Revelation\",[\"cost\"] = 0},{[\"name\"] = \"Studious (3)\"},{[\"name\"] = \"Small Favor\",[\"cost\"] = 2},{[\"name\"] = \"Another Day, Another Dollar (3)\"},{[\"name\"] = \"Dayana Esperence (3)\",[\"cost\"] = 4},{[\"name\"] = \"Deny Existence (5)\",[\"cost\"] = 0},{[\"name\"] = \"Trial by Fire\",[\"cost\"] = 3},{[\"name\"] = \"Bait and Switch (3)\",[\"cost\"] = 1},{[\"name\"] = \"Anna Kaslow (4)\",[\"cost\"] = 3},{[\"name\"] = \"Hallowed Mirror\",[\"cost\"] = 2},{[\"name\"] = \"Soothing Melody\",[\"cost\"] = 0},{[\"name\"] = \"\\\"I've had worse...\\\" (2)\",[\"cost\"] = 0},{[\"name\"] = \"Occult Lexicon\",[\"cost\"] = 2},{[\"name\"] = \"Blood-Rite\",[\"cost\"] = 0},{[\"name\"] = \"Glimpse the Unthinkable (5)\",[\"cost\"] = 1},{[\"name\"] = \"\\\"You owe me one!\\\"\",[\"cost\"] = 0},{[\"name\"] = \"Double, Double (4)\",[\"cost\"] = 4},{[\"name\"] = \"Wither (4)\",[\"cost\"] = 2},{[\"name\"] = \"Sixth Sense (4)\",[\"cost\"] = 3},{[\"name\"] = \"Lure (2)\",[\"cost\"] = 1},{[\"name\"] = \"Eucatastrophe (3)\",[\"cost\"] = 2},{[\"name\"] = \"Tommy Muldoon\"},{[\"name\"] = \"Mandy Thompson\"},{[\"name\"] = \"Tony Morgan\"},{[\"name\"] = \"Luke Robinson\"},{[\"name\"] = \"Patrice Hathaway\"},{[\"name\"] = \"Becky\",[\"cost\"] = 2},{[\"name\"] = \"Rookie Mistake\"},{[\"name\"] = \"Occult Evidence\",[\"cost\"] = 0},{[\"name\"] = \"Shocking Discovery\"},{[\"name\"] = \"Bounty Contracts\"},{[\"name\"] = \"Tony's .38 Long Colt\",[\"cost\"] = 3},{[\"name\"] = \"Tony's Quarry\"},{[\"name\"] = \"Gate Box\",[\"cost\"] = 3},{[\"name\"] = \"Detached from Reality\"},{[\"name\"] = \"Dream-Gate\"},{[\"name\"] = \"Dream-Gate\"},{[\"name\"] = \"Patrice's Violin\",[\"cost\"] = 2},{[\"name\"] = \"Watcher from Another Dimension\"},{[\"name\"] = \"The Hungering Blade (1)\",[\"cost\"] = 3},{[\"name\"] = \"Bloodlust\"},{[\"name\"] = \"Solemn Vow\",[\"cost\"] = 0},{[\"name\"] = \"Segment of Onyx (1)\",[\"cost\"] = 1},{[\"name\"] = \"Pendant of the Queen\"},{[\"name\"] = \"Astounding Revelation\"},{[\"name\"] = \"Crystallizer of Dreams\",[\"cost\"] = 1},{[\"name\"] = \"Guardian of the Crystallizer\"},{[\"name\"] = \"Easy Mark (1)\",[\"cost\"] = 0},{[\"name\"] = \"Stargazing (1)\",[\"cost\"] = 0},{[\"name\"] = \"The Stars Are Right\"},{[\"name\"] = \"Open Gate\",[\"cost\"] = 1},{[\"name\"] = \"Miss Doyle (1)\",[\"cost\"] = 3},{[\"name\"] = \"Hope\",[\"cost\"] = 1},{[\"name\"] = \"Zeal\",[\"cost\"] = 1},{[\"name\"] = \"Augur\",[\"cost\"] = 1},{[\"name\"] = \"Fortuitous Discovery\",[\"cost\"] = -2},{[\"name\"] = \"Self-Centered\"},{[\"name\"] = \"Kleptomania\"},{[\"name\"] = \"Narcolepsy\"},{[\"name\"] = \"Your Worst Nightmare\"},{[\"name\"] = \"First Watch\",[\"cost\"] = 1},{[\"name\"] = \"Daring\"},{[\"name\"] = \"Dream Diary\",[\"cost\"] = 2},{[\"name\"] = \"Essence of the Dream\"},{[\"name\"] = \"Followed\",[\"cost\"] = 2},{[\"name\"] = \"Momentum (1)\"},{[\"name\"] = \"Scroll of Prophecies\",[\"cost\"] = 3},{[\"name\"] = \"Read the Signs\",[\"cost\"] = 2},{[\"name\"] = \"Jessica Hyde (1)\",[\"cost\"] = 3},{[\"name\"] = \"Cryptic Souls\"},{[\"name\"] = \"Dreamlike Horrors\"},{[\"name\"] = \"Endless Secrets\"},{[\"name\"] = \"Cylinders of Kadatheron\"},{[\"name\"] = \"The Doom of Sarnath\"},{[\"name\"] = \"Ghosts of the Dead\"},{[\"name\"] = \"The Palace of Rainbows\"},{[\"name\"] = \"A Shrine to the Gods\"},{[\"name\"] = \"The Crypt of Zulan-Thek\"},{[\"name\"] = \"Wares of Baharna\"},{[\"name\"] = \"The Likeness of Old\"},{[\"name\"] = \"What Remains of Tyrrhia\"},{[\"name\"] = \"Advice of the King\"},{[\"name\"] = \"Timeless Beauty\"},{[\"name\"] = \"Unattainable Desires\"},{[\"name\"] = \"The City Inside\"},{[\"name\"] = \"The Baleful Star\"},{[\"name\"] = \"Tetsuo Mori\",[\"cost\"] = 3},{[\"name\"] = \"\\\"Fool me once...\\\" (1)\",[\"cost\"] = 1},{[\"name\"] = \"Self-Sacrifice\"},{[\"name\"] = \"Otherworld Codex (2)\",[\"cost\"] = 3},{[\"name\"] = \"Dream-Enhancing Serum\",[\"cost\"] = 3},{[\"name\"] = \"\\\"Let God sort them out...\\\"\",[\"cost\"] = 0},{[\"name\"] = \"Swift Reload (2)\",[\"cost\"] = 3},{[\"name\"] = \"Gregory Gry\",[\"cost\"] = 3},{[\"name\"] = \"Healing Words\",[\"cost\"] = 2},{[\"name\"] = \"Ethereal Form\",[\"cost\"] = 2},{[\"name\"] = \"Scrounge for Supplies\",[\"cost\"] = 0},{[\"name\"] = \"Brute Force (1)\"},{[\"name\"] = \"Versatile (2)\"},{[\"name\"] = \".35 Winchester\",[\"cost\"] = 4},{[\"name\"] = \"Safeguard (2)\",[\"cost\"] = 2},{[\"name\"] = \"Practice Makes Perfect\",[\"cost\"] = 1},{[\"name\"] = \"Extensive Research (1)\",[\"cost\"] = 10},{[\"name\"] = \"Three Aces (1)\"},{[\"name\"] = \"Burglary (2)\",[\"cost\"] = 1},{[\"name\"] = \"Spectral Razor\",[\"cost\"] = 2},{[\"name\"] = \"Word of Command (2)\",[\"cost\"] = 2},{[\"name\"] = \"Moonstone\",[\"cost\"] = 3},{[\"name\"] = \"Sharp Vision (1)\"},{[\"name\"] = \"Lucid Dreaming (2)\",[\"cost\"] = 1},{[\"name\"] = \"Off the Galley\"},{[\"name\"] = \"Heroic Rescue (2)\",[\"cost\"] = 0},{[\"name\"] = \"Leadership (2)\"},{[\"name\"] = \"Dream Diary (3)\",[\"cost\"] = 2},{[\"name\"] = \"Dream Diary (3)\",[\"cost\"] = 2},{[\"name\"] = \"Dream Diary (3)\",[\"cost\"] = 2},{[\"name\"] = \"Haste (2)\",[\"cost\"] = 3},{[\"name\"] = \"Daredevil (2)\"},{[\"name\"] = \"Empower Self (2)\",[\"cost\"] = 3},{[\"name\"] = \"Empower Self (2)\",[\"cost\"] = 3},{[\"name\"] = \"Empower Self (2)\",[\"cost\"] = 3},{[\"name\"] = \"Twila Katherine Price (3)\",[\"cost\"] = 3},{[\"name\"] = \"A Glimmer of Hope\",[\"cost\"] = 1},{[\"name\"] = \"Expeditious Retreat (1)\"},{[\"name\"] = \"Ghastly Tunnels\"},{[\"name\"] = \"The Sentry\"},{[\"name\"] = \"Another Path\"},{[\"name\"] = \"A Strange Ghoul\"},{[\"name\"] = \"Scouting the Vale\"},{[\"name\"] = \"Something Below\"},{[\"name\"] = \"Inhabitants of the Vale\"},{[\"name\"] = \"The Way Out\"},{[\"name\"] = \"Spider-Infested Waters\"},{[\"name\"] = \"Still Surface\"},{[\"name\"] = \"Rolling Pits\"},{[\"name\"] = \"Center of the Sea\"},{[\"name\"] = \"Empty Vessel (4)\",[\"cost\"] = 1},{[\"name\"] = \"Wish Eater\"},{[\"name\"] = \"Surprising Find (1)\"},{[\"name\"] = \"Old Book of Lore (3)\",[\"cost\"] = 2},{[\"name\"] = \"Garrote Wire (2)\",[\"cost\"] = 2},{[\"name\"] = \"Delilah O'Rourke (3)\",[\"cost\"] = 3},{[\"name\"] = \"Summoned Hound (1)\",[\"cost\"] = 3},{[\"name\"] = \"Unbound Beast\"},{[\"name\"] = \"Nothing Left to Lose (3)\",[\"cost\"] = 0},{[\"name\"] = \"The Black Cat (5)\",[\"cost\"] = 2},{[\"name\"] = \"Spiritual Resolve (5)\",[\"cost\"] = 3},{[\"name\"] = \"Abigail Foreman (4)\",[\"cost\"] = 3},{[\"name\"] = \"The Eye of Truth (5)\"},{[\"name\"] = \"Joey \\\"The Rat\\\" Vigil (3)\",[\"cost\"] = 2},{[\"name\"] = \"Sawed-Off Shotgun (5)\",[\"cost\"] = 3},{[\"name\"] = \"Mind's Eye (2)\",[\"cost\"] = 3},{[\"name\"] = \"Shining Trapezohedron (4)\",[\"cost\"] = 1},{[\"name\"] = \"Nightmare Bauble (3)\",[\"cost\"] = 1},{[\"name\"] = \"Dream Parasite\"},{[\"name\"] = \"Scavenging (2)\",[\"cost\"] = 1},{[\"name\"] = \"Sister Mary\"},{[\"name\"] = \"Amanda Sharpe\"},{[\"name\"] = \"Trish Scarborough\"},{[\"name\"] = \"Dexter Drake\"},{[\"name\"] = \"Silas Marsh\"},{[\"name\"] = \"Guardian Angel\",[\"cost\"] = 2},{[\"name\"] = \"Crisis of Faith\"},{[\"name\"] = \"Obscure Studies\",[\"cost\"] = 0},{[\"name\"] = \"Whispers from the Deep\"},{[\"name\"] = \"In the Shadows\",[\"cost\"] = 0},{[\"name\"] = \"Shadow Agents\"},{[\"name\"] = \"Showmanship\",[\"cost\"] = 1},{[\"name\"] = \"Occult Scraps\",[\"cost\"] = 0},{[\"name\"] = \"Sea Change Harpoon\",[\"cost\"] = 3},{[\"name\"] = \"Silas's Net\",[\"cost\"] = 2},{[\"name\"] = \"Siren Call\"},{[\"name\"] = \"Book of Psalms\",[\"cost\"] = 3},{[\"name\"] = \"Blessed Blade\",[\"cost\"] = 3},{[\"name\"] = \"Rite of Sanctification\",[\"cost\"] = 0},{[\"name\"] = \"Hand of Fate\",[\"cost\"] = 3},{[\"name\"] = \"Cryptographic Cipher\",[\"cost\"] = 3},{[\"name\"] = \"Cryptic Grimoire\",[\"cost\"] = 3},{[\"name\"] = \"Deep Knowledge\",[\"cost\"] = 0},{[\"name\"] = \"Plan of Action\"},{[\"name\"] = \".25 Automatic\",[\"cost\"] = 4},{[\"name\"] = \"Dark Ritual\",[\"cost\"] = 1},{[\"name\"] = \"Obfuscation\",[\"cost\"] = 2},{[\"name\"] = \"Faustian Bargain\",[\"cost\"] = 0},{[\"name\"] = \"Sword Cane\",[\"cost\"] = 2},{[\"name\"] = \"Tides of Fate\",[\"cost\"] = 1},{[\"name\"] = \"Ward of Radiance\",[\"cost\"] = 0},{[\"name\"] = \"Promise of Power\"},{[\"name\"] = \"Token of Faith\",[\"cost\"] = 2},{[\"name\"] = \"Keep Faith\",[\"cost\"] = 2},{[\"name\"] = \"Predestined\"},{[\"name\"] = \"Beloved\"},{[\"name\"] = \"Tempt Fate\",[\"cost\"] = 0},{[\"name\"] = \"Accursed Follower\"},{[\"name\"] = \"Dread Curse\"},{[\"name\"] = \"Day of Reckoning\"},{[\"name\"] = \"Riot Whistle\",[\"cost\"] = 2},{[\"name\"] = \"Righteous Hunt (1)\",[\"cost\"] = 1},{[\"name\"] = \"Sacred Covenant (2)\"},{[\"name\"] = \"Eldritch Sophist\",[\"cost\"] = 4},{[\"name\"] = \"Stirring Up Trouble (1)\",[\"cost\"] = 0},{[\"name\"] = \"Blasphemous Covenant (2)\"},{[\"name\"] = \"Breaking and Entering\",[\"cost\"] = 2},{[\"name\"] = \"Skeptic (1)\"},{[\"name\"] = \"False Covenant (2)\"},{[\"name\"] = \"Armageddon\",[\"cost\"] = 4},{[\"name\"] = \"Eye of Chaos\",[\"cost\"] = 5},{[\"name\"] = \"Shroud of Shadows\",[\"cost\"] = 3},{[\"name\"] = \"Paradoxical Covenant (2)\"},{[\"name\"] = \"Mariner's Compass\",[\"cost\"] = 3},{[\"name\"] = \"Ancient Covenant (2)\"},{[\"name\"] = \"Keen Eye\",[\"cost\"] = 2},{[\"name\"] = \"Radiant Smite (1)\",[\"cost\"] = 1},{[\"name\"] = \"The Truth Beckons\",[\"cost\"] = 1},{[\"name\"] = \"Gaze of Ouraxsh (2)\",[\"cost\"] = 2},{[\"name\"] = \"Priest of Two Faiths (1)\",[\"cost\"] = 1},{[\"name\"] = \"Under Surveillance (1)\",[\"cost\"] = 3},{[\"name\"] = \"Blood Pact\",[\"cost\"] = 2},{[\"name\"] = \"Abyssal Tome (2)\",[\"cost\"] = 2},{[\"name\"] = \"Butterfly Effect (1)\",[\"cost\"] = 0},{[\"name\"] = \"Third Time's a Charm (2)\",[\"cost\"] = 1},{[\"name\"] = \"Manipulate Destiny (2)\",[\"cost\"] = 1},{[\"name\"] = \"Enchanted Armor (2)\",[\"cost\"] = 1},{[\"name\"] = \"Blessing of Isis (3)\",[\"cost\"] = 2},{[\"name\"] = \"Cryptic Grimoire (4)\",[\"cost\"] = 3},{[\"name\"] = \"Cryptic Grimoire (4)\",[\"cost\"] = 3},{[\"name\"] = \"Ríastrad (1)\",[\"cost\"] = 0},{[\"name\"] = \"Tristan Botley (2)\",[\"cost\"] = 5},{[\"name\"] = \"Curse of Aeons (3)\",[\"cost\"] = 2},{[\"name\"] = \"Unrelenting (1)\"},{[\"name\"] = \"Signum Crucis (2)\"},{[\"name\"] = \"Holy Rosary (2)\",[\"cost\"] = 2},{[\"name\"] = \"Shield of Faith (2)\",[\"cost\"] = 2},{[\"name\"] = \"Fey (1)\"},{[\"name\"] = \"Guided by the Unseen (3)\",[\"cost\"] = 2},{[\"name\"] = \"\\\"Lucky\\\" Penny (2)\",[\"cost\"] = 2},{[\"name\"] = \"Eye of the Djinn (2)\",[\"cost\"] = 2},{[\"name\"] = \"Armageddon (4)\",[\"cost\"] = 4},{[\"name\"] = \"Eye of Chaos (4)\",[\"cost\"] = 5},{[\"name\"] = \"Shroud of Shadows (4)\",[\"cost\"] = 3},{[\"name\"] = \"Spirit of Humanity (2)\",[\"cost\"] = 2},{[\"name\"] = \"Harmony Restored (2)\",[\"cost\"] = 3},{[\"name\"] = \"Enchant Weapon (3)\",[\"cost\"] = 3},{[\"name\"] = \"Nephthys (4)\",[\"cost\"] = 3},{[\"name\"] = \"The Stygian Eye (3)\",[\"cost\"] = 10},{[\"name\"] = \"Hyperawareness (4)\",[\"cost\"] = 2},{[\"name\"] = \"Geas (2)\",[\"cost\"] = 2},{[\"name\"] = \"Hard Knocks (4)\",[\"cost\"] = 2},{[\"name\"] = \"Ikiaq (3)\",[\"cost\"] = 3},{[\"name\"] = \"Flute of the Outer Gods (4)\",[\"cost\"] = -2},{[\"name\"] = \"A Watchful Peace (3)\",[\"cost\"] = 1},{[\"name\"] = \"Dig Deep (4)\",[\"cost\"] = 2},{[\"name\"] = \"Favor of the Moon (1)\",[\"cost\"] = 1},{[\"name\"] = \"Favor of the Sun (1)\",[\"cost\"] = 2},{[\"name\"] = \"Purifying Corruption (4)\",[\"cost\"] = 4},{[\"name\"] = \"Hallow (3)\",[\"cost\"] = 3},{[\"name\"] = \"Holy Spear (5)\",[\"cost\"] = 4},{[\"name\"] = \"Ancestral Knowledge (3)\"},{[\"name\"] = \"Ariadne's Twine (3)\",[\"cost\"] = 0},{[\"name\"] = \".25 Automatic (2)\",[\"cost\"] = 4},{[\"name\"] = \"Justify the Means (3)\"},{[\"name\"] = \"Lucky Dice (3)\",[\"cost\"] = 2},{[\"name\"] = \"Rite of Equilibrium (5)\",[\"cost\"] = 0},{[\"name\"] = \"Jacob Morrison (3)\",[\"cost\"] = 3},{[\"name\"] = \"Shrine of the Moirai (3)\",[\"cost\"] = 1},{[\"name\"] = \"Sweeping Kick (1)\",[\"cost\"] = 1},{[\"name\"] = \"Butterfly Swords (2)\",[\"cost\"] = 3},{[\"name\"] = \"Written in the Stars\",[\"cost\"] = 1},{[\"name\"] = \"Dragon Pole\",[\"cost\"] = 3},{[\"name\"] = \"Astronomical Atlas (3)\",[\"cost\"] = 3},{[\"name\"] = \"Strength in Numbers (1)\"},{[\"name\"] = \"Medical Student\",[\"cost\"] = 2},{[\"name\"] = \"Michael Leigh (5)\",[\"cost\"] = 4},{[\"name\"] = \"Divination (1)\",[\"cost\"] = 3},{[\"name\"] = \"Blur (1)\",[\"cost\"] = 2},{[\"name\"] = \"Physical Training (2)\",[\"cost\"] = 0},{[\"name\"] = \"Dynamite Blast (2)\",[\"cost\"] = 4},{[\"name\"] = \"Hyperawareness (2)\",[\"cost\"] = 0},{[\"name\"] = \"Barricade (3)\",[\"cost\"] = 0},{[\"name\"] = \"Hard Knocks (2)\",[\"cost\"] = 0},{[\"name\"] = \"Hot Streak (2)\",[\"cost\"] = 5},{[\"name\"] = \"Arcane Studies (2)\",[\"cost\"] = 0},{[\"name\"] = \"Mind Wipe (3)\",[\"cost\"] = 1},{[\"name\"] = \"Dig Deep (2)\",[\"cost\"] = 0},{[\"name\"] = \"Rabbit's Foot (3)\",[\"cost\"] = 1},{[\"name\"] = \"Bandolier (2)\",[\"cost\"] = 2},{[\"name\"] = \"Blackjack (2)\",[\"cost\"] = 2},{[\"name\"] = \"Preposterous Sketches (2)\",[\"cost\"] = 0},{[\"name\"] = \"Strange Solution (4)\",[\"cost\"] = 1},{[\"name\"] = \"Contraband (2)\",[\"cost\"] = 3},{[\"name\"] = \"Think on Your Feet (2)\",[\"cost\"] = 0},{[\"name\"] = \"Rite of Seeking (2)\",[\"cost\"] = 4},{[\"name\"] = \"Clarity of Mind (3)\",[\"cost\"] = 2},{[\"name\"] = \"Oops! (2)\",[\"cost\"] = 2},{[\"name\"] = \"Rise to the Occasion (3)\"},{[\"name\"] = \"Through the Gates\"},{[\"name\"] = \".32 Colt (2)\",[\"cost\"] = 2},{[\"name\"] = \"\\\"Eat lead!\\\"\",[\"cost\"] = 1},{[\"name\"] = \"Logical Reasoning (4)\",[\"cost\"] = 2},{[\"name\"] = \"Archaic Glyphs (3)\",[\"cost\"] = 2},{[\"name\"] = \"Stealth (3)\",[\"cost\"] = 2},{[\"name\"] = \"Suggestion (1)\",[\"cost\"] = 3},{[\"name\"] = \"Alchemical Transmutation (2)\",[\"cost\"] = 0},{[\"name\"] = \"Storm of Spirits (3)\",[\"cost\"] = 3},{[\"name\"] = \"Lantern (2)\",[\"cost\"] = 1},{[\"name\"] = \"Gravedigger's Shovel (2)\",[\"cost\"] = 1},{[\"name\"] = \"Unspeakable Oath (Bloodthirst)\"},{[\"name\"] = \"Unspeakable Oath (Curiosity)\"},{[\"name\"] = \"Unspeakable Oath (Cowardice)\"},{[\"name\"] = \"Blood Eclipse (1)\",[\"cost\"] = 1},{[\"name\"] = \"Survival Knife (2)\",[\"cost\"] = 2},{[\"name\"] = \"Truth from Fiction (2)\",[\"cost\"] = 1},{[\"name\"] = \"Ancient Stone (4)\",[\"cost\"] = 2},{[\"name\"] = \"Decorated Skull (3)\",[\"cost\"] = 0},{[\"name\"] = \"Colt Vest Pocket (2)\",[\"cost\"] = 2},{[\"name\"] = \"Mists of R'lyeh (2)\",[\"cost\"] = 2},{[\"name\"] = \"The Chthonian Stone (3)\",[\"cost\"] = 2},{[\"name\"] = \"Alter Fate (1)\",[\"cost\"] = 3},{[\"name\"] = \"On Your Own (3)\"},{[\"name\"] = \"Backpack (2)\",[\"cost\"] = 1},{[\"name\"] = \"Dendromorphosis\"},{[\"name\"] = \"Offer You Cannot Refuse\"},{[\"name\"] = \"Fine Print\"},{[\"name\"] = \"Sell Your Soul\"},{[\"name\"] = \"The Star • XVII (3)\",[\"cost\"] = 3},{[\"name\"] = \"The Hierophant • V (3)\",[\"cost\"] = 3},{[\"name\"] = \"Moon Pendant (2)\",[\"cost\"] = 2},{[\"name\"] = \"Nathaniel Cho\"},{[\"name\"] = \"Randall Cho\",[\"cost\"] = 2},{[\"name\"] = \"Tommy Malloy\"},{[\"name\"] = \"Self-Destructive\"},{[\"name\"] = \"Boxing Gloves\",[\"cost\"] = 3},{[\"name\"] = \"Flesh Ward\",[\"cost\"] = 3},{[\"name\"] = \"Grete Wagner\",[\"cost\"] = 5},{[\"name\"] = \"Physical Training\",[\"cost\"] = 2},{[\"name\"] = \"Relentless\",[\"cost\"] = 0},{[\"name\"] = \"Safeguard\",[\"cost\"] = 2},{[\"name\"] = \"Clean Them Out\",[\"cost\"] = 0},{[\"name\"] = \"Counterpunch\",[\"cost\"] = 0},{[\"name\"] = \"Dodge\",[\"cost\"] = 1},{[\"name\"] = \"\\\"Get over here!\\\"\",[\"cost\"] = 2},{[\"name\"] = \"Glory\",[\"cost\"] = 1},{[\"name\"] = \"Monster Slayer\",[\"cost\"] = 0},{[\"name\"] = \"One-Two Punch\",[\"cost\"] = 2},{[\"name\"] = \"Stand Together\",[\"cost\"] = 0},{[\"name\"] = \"Vicious Blow\"},{[\"name\"] = \"Evidence! (1)\",[\"cost\"] = 1},{[\"name\"] = \"Galvanize (1)\",[\"cost\"] = 2},{[\"name\"] = \"Counterpunch (2)\",[\"cost\"] = 0},{[\"name\"] = \"\\\"Get over here!\\\" (2)\",[\"cost\"] = 2},{[\"name\"] = \"Lesson Learned (2)\",[\"cost\"] = 1},{[\"name\"] = \"Mano a Mano (2)\",[\"cost\"] = 0},{[\"name\"] = \"Overpower (2)\"},{[\"name\"] = \"Boxing Gloves (3)\",[\"cost\"] = 2},{[\"name\"] = \"Grete Wagner (3)\",[\"cost\"] = 5},{[\"name\"] = \"Dynamite Blast (3)\",[\"cost\"] = 4},{[\"name\"] = \"Taunt (3)\",[\"cost\"] = 1},{[\"name\"] = \"Physical Training (4)\",[\"cost\"] = 2},{[\"name\"] = \"One-Two Punch (5)\",[\"cost\"] = 2},{[\"name\"] = \"Harvey Walters\"},{[\"name\"] = \"Vault of Knowledge\",[\"cost\"] = 3},{[\"name\"] = \"Thrice-Damned Curiosity\"},{[\"name\"] = \"Obsessive\"},{[\"name\"] = \"Arcane Enlightenment\",[\"cost\"] = 2},{[\"name\"] = \"Celaeno Fragments\",[\"cost\"] = 1},{[\"name\"] = \"Disc of Itzamna\",[\"cost\"] = 3},{[\"name\"] = \"Encyclopedia\",[\"cost\"] = 2},{[\"name\"] = \"Feed the Mind\",[\"cost\"] = 3},{[\"name\"] = \"Forbidden Tome\",[\"cost\"] = 1},{[\"name\"] = \"Higher Education\",[\"cost\"] = 0},{[\"name\"] = \"Laboratory Assistant\",[\"cost\"] = 2},{[\"name\"] = \"Whitton Greene\",[\"cost\"] = 4},{[\"name\"] = \"Burning the Midnight Oil\",[\"cost\"] = 0},{[\"name\"] = \"Cryptic Writings\",[\"cost\"] = 0},{[\"name\"] = \"Extensive Research\",[\"cost\"] = 12},{[\"name\"] = \"Occult Invocation\",[\"cost\"] = 2},{[\"name\"] = \"Preposterous Sketches\",[\"cost\"] = 2},{[\"name\"] = \"Deduction\"},{[\"name\"] = \"Library Docent (1)\",[\"cost\"] = 1},{[\"name\"] = \"Glimpse the Unthinkable (1)\",[\"cost\"] = 0},{[\"name\"] = \"Esoteric Atlas (2)\",[\"cost\"] = 3},{[\"name\"] = \"Whitton Greene (2)\",[\"cost\"] = 4},{[\"name\"] = \"Cryptic Writings (2)\",[\"cost\"] = 0},{[\"name\"] = \"\\\"I've got a plan!\\\" (2)\",[\"cost\"] = 2},{[\"name\"] = \"Mind over Matter (2)\",[\"cost\"] = 1},{[\"name\"] = \"Seeking Answers (2)\",[\"cost\"] = 1},{[\"name\"] = \"Perception (2)\"},{[\"name\"] = \"Forbidden Tome (3)\",[\"cost\"] = 1},{[\"name\"] = \"Forbidden Tome (3)\",[\"cost\"] = 1},{[\"name\"] = \"Farsight (4)\",[\"cost\"] = 2},{[\"name\"] = \"Miskatonic Archaeology Funding (4)\"},{[\"name\"] = \"The Necronomicon (5)\",[\"cost\"] = 3},{[\"name\"] = \"Winifred Habbamock\"},{[\"name\"] = \"Anything You Can Do, Better\"},{[\"name\"] = \"Arrogance\"},{[\"name\"] = \"Reckless\"},{[\"name\"] = \"Lockpicks\",[\"cost\"] = 3},{[\"name\"] = \"Mauser C96\",[\"cost\"] = 4},{[\"name\"] = \"Switchblade\",[\"cost\"] = 1},{[\"name\"] = \"Lucky Cigarette Case\",[\"cost\"] = 2},{[\"name\"] = \"Lonnie Ritter\",[\"cost\"] = 4},{[\"name\"] = \"Leather Jacket\",[\"cost\"] = 2},{[\"name\"] = \"Streetwise\",[\"cost\"] = 0},{[\"name\"] = \"Cheap Shot\",[\"cost\"] = 2},{[\"name\"] = \"Daring Maneuver\",[\"cost\"] = 0},{[\"name\"] = \"Slip Away\",[\"cost\"] = 2},{[\"name\"] = \"Pilfer\",[\"cost\"] = 4},{[\"name\"] = \"Sneak By\",[\"cost\"] = 0},{[\"name\"] = \"Nimble\"},{[\"name\"] = \"Daredevil\"},{[\"name\"] = \"Opportunist\"},{[\"name\"] = \"Liquid Courage (1)\",[\"cost\"] = 1},{[\"name\"] = \"Mauser C96 (2)\",[\"cost\"] = 3},{[\"name\"] = \"Daring Maneuver (2)\",[\"cost\"] = 0},{[\"name\"] = \"Cheap Shot (2)\",[\"cost\"] = 2},{[\"name\"] = \"Slip Away (2)\",[\"cost\"] = 2},{[\"name\"] = \"Manual Dexterity (2)\"},{[\"name\"] = \"Lucky Cigarette Case (3)\",[\"cost\"] = 2},{[\"name\"] = \"Sharpshooter (3)\",[\"cost\"] = 2},{[\"name\"] = \"Pilfer (3)\",[\"cost\"] = 4},{[\"name\"] = \"Backstab (3)\",[\"cost\"] = 3},{[\"name\"] = \"Copycat (3)\"},{[\"name\"] = \"Beretta M1918 (4)\",[\"cost\"] = 4},{[\"name\"] = \"Chuck Fergus (5)\",[\"cost\"] = 3},{[\"name\"] = \"Jacqueline Fine\"},{[\"name\"] = \"Arbiter of Fates\",[\"cost\"] = 3},{[\"name\"] = \"Dark Future\"},{[\"name\"] = \"Nihilism\"},{[\"name\"] = \"Ritual Candles\",[\"cost\"] = 1},{[\"name\"] = \"Scrying Mirror\",[\"cost\"] = 3},{[\"name\"] = \"Azure Flame\",[\"cost\"] = 3},{[\"name\"] = \"Clairvoyance\",[\"cost\"] = 4},{[\"name\"] = \"Ineffable Truth\",[\"cost\"] = 3},{[\"name\"] = \"Familiar Spirit\",[\"cost\"] = 1},{[\"name\"] = \"Crystal Pendulum\",[\"cost\"] = 2},{[\"name\"] = \"Robes of Endless Night\",[\"cost\"] = 3},{[\"name\"] = \"Astral Travel\",[\"cost\"] = 3},{[\"name\"] = \"Hypnotic Gaze\",[\"cost\"] = 3},{[\"name\"] = \"Parallel Fates\",[\"cost\"] = 0},{[\"name\"] = \"Voice of Ra\",[\"cost\"] = 0},{[\"name\"] = \"Dark Prophecy\",[\"cost\"] = 1},{[\"name\"] = \"Defiance\"},{[\"name\"] = \"Prescient\"},{[\"name\"] = \"Eldritch Inspiration (1)\",[\"cost\"] = 0},{[\"name\"] = \"Grotesque Statue (2)\",[\"cost\"] = 3},{[\"name\"] = \"Robes of Endless Night (2)\",[\"cost\"] = 2},{[\"name\"] = \"Hypnotic Gaze (2)\",[\"cost\"] = 2},{[\"name\"] = \"Guts (2)\"},{[\"name\"] = \"Azure Flame (3)\",[\"cost\"] = 3},{[\"name\"] = \"Clairvoyance (3)\",[\"cost\"] = 4},{[\"name\"] = \"Ineffable Truth (3)\",[\"cost\"] = 3},{[\"name\"] = \"Arcane Studies (4)\",[\"cost\"] = 2},{[\"name\"] = \"Recharge (4)\",[\"cost\"] = 0},{[\"name\"] = \"Azure Flame (5)\",[\"cost\"] = 3},{[\"name\"] = \"Clairvoyance (5)\",[\"cost\"] = 4},{[\"name\"] = \"Ineffable Truth (5)\",[\"cost\"] = 3},{[\"name\"] = \"Stella Clark\"},{[\"name\"] = \"Neither Rain nor Snow\"},{[\"name\"] = \"Called by the Mists\"},{[\"name\"] = \"Atychiphobia\"},{[\"name\"] = \".18 Derringer\",[\"cost\"] = 3},{[\"name\"] = \"Grimm's Fairy Tales\",[\"cost\"] = 2},{[\"name\"] = \"Old Keyring\",[\"cost\"] = 1},{[\"name\"] = \"Granny Orne\",[\"cost\"] = 4},{[\"name\"] = \"Mysterious Raven\",[\"cost\"] = 1},{[\"name\"] = \"Rabbit's Foot\",[\"cost\"] = 1},{[\"name\"] = \"Scrapper\",[\"cost\"] = 2},{[\"name\"] = \"Will to Survive\",[\"cost\"] = 4},{[\"name\"] = \"A Test of Will\",[\"cost\"] = 1},{[\"name\"] = \"Dumb Luck\",[\"cost\"] = 2},{[\"name\"] = \"Grit Your Teeth\",[\"cost\"] = 1},{[\"name\"] = \"Live and Learn\",[\"cost\"] = 0},{[\"name\"] = \"\\\"Look what I found!\\\"\",[\"cost\"] = 2},{[\"name\"] = \"Oops!\",[\"cost\"] = 2},{[\"name\"] = \"Take Heart\"},{[\"name\"] = \"Cherished Keepsake (1)\",[\"cost\"] = 0},{[\"name\"] = \"Leather Coat (1)\",[\"cost\"] = 0},{[\"name\"] = \".18 Derringer (2)\",[\"cost\"] = 2},{[\"name\"] = \"A Test of Will (2)\",[\"cost\"] = 0},{[\"name\"] = \"\\\"Look what I found!\\\" (2)\",[\"cost\"] = 2},{[\"name\"] = \"Dumb Luck (2)\",[\"cost\"] = 2},{[\"name\"] = \"Unexpected Courage (2)\"},{[\"name\"] = \"Granny Orne (3)\",[\"cost\"] = 4},{[\"name\"] = \"Lucky! (3)\",[\"cost\"] = 0},{[\"name\"] = \"Chainsaw (4)\",[\"cost\"] = 4},{[\"name\"] = \"Quick Learner (4)\"},{[\"name\"] = \"Déjà Vu (5)\"},{[\"name\"] = \"To the Dreamlands\"},{[\"name\"] = \"Fate of the Dreamers\"},{[\"name\"] = \"Prisoners of Conquest\"},{[\"name\"] = \"Ruins of Sarkomand\"},{[\"name\"] = \"Effigy of Nodens\"},{[\"name\"] = \"Usurp the Night\"},{[\"name\"] = \"The Translator's Evidence\"},{[\"name\"] = \"The Supplicant's Evidence\"},{[\"name\"] = \"The Priestess's Evidence\"},{[\"name\"] = \"The Salesman's Evidence\"},{[\"name\"] = \"The Assassin's Evidence\"},{[\"name\"] = \"The Professor's Evidence\"},{[\"name\"] = \"Daisy Walker\"},{[\"name\"] = \"Daisy's Tote Bag\",[\"cost\"] = 2},{[\"name\"] = \"The Necronomicon\"},{[\"name\"] = \"\\\"Skids\\\" O'Toole\"},{[\"name\"] = \"On the Lam\",[\"cost\"] = 0},{[\"name\"] = \"Hospital Debts\"},{[\"name\"] = \"Agnes Baker\"},{[\"name\"] = \"Heirloom of Hyperborea\",[\"cost\"] = 3},{[\"name\"] = \"Dark Memory\",[\"cost\"] = 4},{[\"name\"] = \"Triumph and Subjugation\"},{[\"name\"] = \"Jenny Barnes\"},{[\"name\"] = \"Green Man Medallion\",[\"cost\"] = 1},{[\"name\"] = \"Sacrificial Beast\"},{[\"name\"] = \"Roland Banks\"},{[\"name\"] = \"Mysteries Remain\",[\"cost\"] = 0},{[\"name\"] = \"The Dirge of Reason\"},{[\"name\"] = \"Norman Withers\"},{[\"name\"] = \"Split the Angle\",[\"cost\"] = 2},{[\"name\"] = \"Vengeful Hound\"},{[\"name\"] = \"Carolyn Fern\"},{[\"name\"] = \"Foolishness\",[\"cost\"] = 4},{[\"name\"] = \"To Fight the Black Wind\"},{[\"name\"] = \"Silas Marsh\"},{[\"name\"] = \"Nautical Prowess\"},{[\"name\"] = \"Dreams of the Deep\"},{[\"name\"] = \"Dexter Drake\"},{[\"name\"] = \"Molly Maxwell\",[\"cost\"] = 3},{[\"name\"] = \"Yaztaroth\"},{[\"name\"] = \"Gloria Goldberg\"},{[\"name\"] = \"Ruth Westmacott\",[\"cost\"] = 3},{[\"name\"] = \"Liber Omnium Finium\"},{[\"name\"] = \"Marie Lambeau\"},{[\"name\"] = \"Mystifying Song\",[\"cost\"] = 3},{[\"name\"] = \"Baron Samedi\"}}\r\nend",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "236fb4",
"Name": "Infinite_Bag",
"Transform": {
"posX": 29.16311,
"posY": 2.49831319,
"posZ": -43.17074,
"rotX": 359.993958,
"rotY": 7.0176895E-05,
"rotZ": 359.9714,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Berwind's Stat Counters",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.117646135,
"g": 0.607843161,
"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,
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "bccff3",
"Name": "Custom_Token",
"Transform": {
"posX": 15.5801849,
"posY": 3.57657027,
"posZ": -17.7123756,
"rotX": 0.7989747,
"rotY": 270.009338,
"rotZ": 357.648376,
"scaleX": 0.264383852,
"scaleY": 1.0,
"scaleZ": 0.264383852
},
"Nickname": "Doom counter\n",
"Description": "Left click - Increase\nRight click - Decrease",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": false,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1698405840710259396/0685A16950C157A5931EFF426BAF5BFCD0D211EC/",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 5.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "MIN_VALUE = -99\r\nMAX_VALUE = 999\r\n\r\nfunction onload(saved_data)\r\n light_mode = false\r\n val = 0\r\n\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n light_mode = loaded_data[1]\r\n val = loaded_data[2]\r\n end\r\n\r\n createAll()\r\nend\r\n\r\nfunction updateSave()\r\n local data_to_save = {light_mode, val}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction createAll()\r\n s_color = {0.5, 0.5, 0.5, 95}\r\n\r\n if light_mode then\r\n f_color = {1,1,1,95}\r\n else\r\n f_color = {0,0,0,100}\r\n end\r\n\r\n\r\n\r\n self.createButton({\r\n label=tostring(val),\r\n click_function=\"add_subtract\",\r\n function_owner=self,\r\n position={0,0.05,0},\r\n height=600,\r\n width=1000,\r\n alignment = 3,\r\n scale={x=1.5, y=1.5, z=1.5},\r\n font_size=600,\r\n font_color=f_color,\r\n color={0,0,0,0}\r\n })\r\n\r\n\r\n\r\n\r\n if light_mode then\r\n lightButtonText = \"[ Set dark ]\"\r\n else\r\n lightButtonText = \"[ Set light ]\"\r\n end\r\n \r\nend\r\n\r\nfunction removeAll()\r\n self.removeInput(0)\r\n self.removeInput(1)\r\n self.removeButton(0)\r\n self.removeButton(1)\r\n self.removeButton(2)\r\nend\r\n\r\nfunction reloadAll()\r\n removeAll()\r\n createAll()\r\n\r\n updateSave()\r\nend\r\n\r\nfunction swap_fcolor(_obj, _color, alt_click)\r\n light_mode = not light_mode\r\n reloadAll()\r\nend\r\n\r\nfunction swap_align(_obj, _color, alt_click)\r\n center_mode = not center_mode\r\n reloadAll()\r\nend\r\n\r\nfunction editName(_obj, _string, value) \r\n self.setName(value)\r\n setTooltips()\r\nend\r\n\r\nfunction add_subtract(_obj, _color, alt_click)\r\n mod = alt_click and -1 or 1\r\n new_value = math.min(math.max(val + mod, MIN_VALUE), MAX_VALUE)\r\n if val ~= new_value then\r\n val = new_value\r\n updateVal()\r\n updateSave()\r\n end\r\nend\r\n\r\nfunction updateVal()\r\n\r\n self.editButton({\r\n index = 0,\r\n label = tostring(val),\r\n\r\n })\r\nend\r\n\r\nfunction reset_val()\r\n val = 0\r\n updateVal()\r\n updateSave()\r\nend\r\n\r\nfunction setTooltips()\r\n self.editInput({\r\n index = 0,\r\n value = self.getName(),\r\n tooltip = ttText\r\n })\r\n self.editButton({\r\n index = 0,\r\n value = tostring(val),\r\n tooltip = ttText\r\n })\r\nend\r\n\r\nfunction null()\r\nend\r\n\r\nfunction keepSample(_obj, _string, value) \r\n reloadAll()\r\nend",
"LuaScriptState": "[true,0]",
"XmlUI": "",
"States": {
"2": {
"GUID": "c1fe65",
"Name": "Custom_Token",
"Transform": {
"posX": 12.9289513,
"posY": 1.50777268,
"posZ": -19.3998337,
"rotX": 359.9203,
"rotY": 270.0005,
"rotZ": 0.0167057049,
"scaleX": 0.264383852,
"scaleY": 1.0,
"scaleZ": 0.264383852
},
"Nickname": "Doom counter\n",
"Description": "Left click - Increase\nRight click - Decrease",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": false,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1698405840709717713/E6EAF496D5F0959ACDE511892D4CD7017B2378F1/",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 5.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "MIN_VALUE = -99\r\nMAX_VALUE = 999\r\n\r\nfunction onload(saved_data)\r\n light_mode = false\r\n val = 0\r\n\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n light_mode = loaded_data[1]\r\n val = loaded_data[2]\r\n end\r\n\r\n createAll()\r\nend\r\n\r\nfunction updateSave()\r\n local data_to_save = {light_mode, val}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction createAll()\r\n s_color = {0.5, 0.5, 0.5, 95}\r\n\r\n if light_mode then\r\n f_color = {1,1,1,95}\r\n else\r\n f_color = {0,0,0,100}\r\n end\r\n\r\n\r\n\r\n self.createButton({\r\n label=tostring(val),\r\n click_function=\"add_subtract\",\r\n function_owner=self,\r\n position={0,0.05,0},\r\n height=600,\r\n width=1000,\r\n alignment = 3,\r\n scale={x=1.5, y=1.5, z=1.5},\r\n font_size=600,\r\n font_color=f_color,\r\n color={0,0,0,0}\r\n })\r\n\r\n\r\n\r\n\r\n if light_mode then\r\n lightButtonText = \"[ Set dark ]\"\r\n else\r\n lightButtonText = \"[ Set light ]\"\r\n end\r\n \r\nend\r\n\r\nfunction removeAll()\r\n self.removeInput(0)\r\n self.removeInput(1)\r\n self.removeButton(0)\r\n self.removeButton(1)\r\n self.removeButton(2)\r\nend\r\n\r\nfunction reloadAll()\r\n removeAll()\r\n createAll()\r\n\r\n updateSave()\r\nend\r\n\r\nfunction swap_fcolor(_obj, _color, alt_click)\r\n light_mode = not light_mode\r\n reloadAll()\r\nend\r\n\r\nfunction swap_align(_obj, _color, alt_click)\r\n center_mode = not center_mode\r\n reloadAll()\r\nend\r\n\r\nfunction editName(_obj, _string, value) \r\n self.setName(value)\r\n setTooltips()\r\nend\r\n\r\nfunction add_subtract(_obj, _color, alt_click)\r\n mod = alt_click and -1 or 1\r\n new_value = math.min(math.max(val + mod, MIN_VALUE), MAX_VALUE)\r\n if val ~= new_value then\r\n val = new_value\r\n updateVal()\r\n updateSave()\r\n end\r\nend\r\n\r\nfunction updateVal()\r\n\r\n self.editButton({\r\n index = 0,\r\n label = tostring(val),\r\n\r\n })\r\nend\r\n\r\nfunction reset_val()\r\n val = 0\r\n updateVal()\r\n updateSave()\r\nend\r\n\r\nfunction setTooltips()\r\n self.editInput({\r\n index = 0,\r\n value = self.getName(),\r\n tooltip = ttText\r\n })\r\n self.editButton({\r\n index = 0,\r\n value = tostring(val),\r\n tooltip = ttText\r\n })\r\nend\r\n\r\nfunction null()\r\nend\r\n\r\nfunction keepSample(_obj, _string, value) \r\n reloadAll()\r\nend",
"LuaScriptState": "[true,0]",
"XmlUI": ""
},
"3": {
"GUID": "9136c6",
"Name": "Custom_Token",
"Transform": {
"posX": 12.9289541,
"posY": 1.50777245,
"posZ": -19.3998337,
"rotX": 359.9201,
"rotY": 270.000427,
"rotZ": 0.0168603361,
"scaleX": 0.264383852,
"scaleY": 1.0,
"scaleZ": 0.264383852
},
"Nickname": "Doom counter\n",
"Description": "Left click - Increase\nRight click - Decrease",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": false,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1698405840709718977/5F3EFE85939C5CFFE06275E32BA90BD1C546DC96/",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 5.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "MIN_VALUE = -99\r\nMAX_VALUE = 999\r\n\r\nfunction onload(saved_data)\r\n light_mode = false\r\n val = 0\r\n\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n light_mode = loaded_data[1]\r\n val = loaded_data[2]\r\n end\r\n\r\n createAll()\r\nend\r\n\r\nfunction updateSave()\r\n local data_to_save = {light_mode, val}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction createAll()\r\n s_color = {0.5, 0.5, 0.5, 95}\r\n\r\n if light_mode then\r\n f_color = {1,1,1,95}\r\n else\r\n f_color = {0,0,0,100}\r\n end\r\n\r\n\r\n\r\n self.createButton({\r\n label=tostring(val),\r\n click_function=\"add_subtract\",\r\n function_owner=self,\r\n position={0,0.05,0},\r\n height=600,\r\n width=1000,\r\n alignment = 3,\r\n scale={x=1.5, y=1.5, z=1.5},\r\n font_size=600,\r\n font_color=f_color,\r\n color={0,0,0,0}\r\n })\r\n\r\n\r\n\r\n\r\n if light_mode then\r\n lightButtonText = \"[ Set dark ]\"\r\n else\r\n lightButtonText = \"[ Set light ]\"\r\n end\r\n \r\nend\r\n\r\nfunction removeAll()\r\n self.removeInput(0)\r\n self.removeInput(1)\r\n self.removeButton(0)\r\n self.removeButton(1)\r\n self.removeButton(2)\r\nend\r\n\r\nfunction reloadAll()\r\n removeAll()\r\n createAll()\r\n\r\n updateSave()\r\nend\r\n\r\nfunction swap_fcolor(_obj, _color, alt_click)\r\n light_mode = not light_mode\r\n reloadAll()\r\nend\r\n\r\nfunction swap_align(_obj, _color, alt_click)\r\n center_mode = not center_mode\r\n reloadAll()\r\nend\r\n\r\nfunction editName(_obj, _string, value) \r\n self.setName(value)\r\n setTooltips()\r\nend\r\n\r\nfunction add_subtract(_obj, _color, alt_click)\r\n mod = alt_click and -1 or 1\r\n new_value = math.min(math.max(val + mod, MIN_VALUE), MAX_VALUE)\r\n if val ~= new_value then\r\n val = new_value\r\n updateVal()\r\n updateSave()\r\n end\r\nend\r\n\r\nfunction updateVal()\r\n\r\n self.editButton({\r\n index = 0,\r\n label = tostring(val),\r\n\r\n })\r\nend\r\n\r\nfunction reset_val()\r\n val = 0\r\n updateVal()\r\n updateSave()\r\nend\r\n\r\nfunction setTooltips()\r\n self.editInput({\r\n index = 0,\r\n value = self.getName(),\r\n tooltip = ttText\r\n })\r\n self.editButton({\r\n index = 0,\r\n value = tostring(val),\r\n tooltip = ttText\r\n })\r\nend\r\n\r\nfunction null()\r\nend\r\n\r\nfunction keepSample(_obj, _string, value) \r\n reloadAll()\r\nend",
"LuaScriptState": "[true,0]",
"XmlUI": ""
},
"4": {
"GUID": "a0b6df",
"Name": "Custom_Token",
"Transform": {
"posX": 12.928956,
"posY": 1.50777233,
"posZ": -19.3998337,
"rotX": 359.920135,
"rotY": 270.000183,
"rotZ": 0.0168430489,
"scaleX": 0.264383852,
"scaleY": 1.0,
"scaleZ": 0.264383852
},
"Nickname": "Doom counter\n",
"Description": "Left click - Increase\nRight click - Decrease",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": false,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1698405840709719659/474A6FCC064B63E00ACB9D04246CEE1B0B8B364C/",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 5.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "MIN_VALUE = -99\r\nMAX_VALUE = 999\r\n\r\nfunction onload(saved_data)\r\n light_mode = false\r\n val = 0\r\n\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n light_mode = loaded_data[1]\r\n val = loaded_data[2]\r\n end\r\n\r\n createAll()\r\nend\r\n\r\nfunction updateSave()\r\n local data_to_save = {light_mode, val}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction createAll()\r\n s_color = {0.5, 0.5, 0.5, 95}\r\n\r\n if light_mode then\r\n f_color = {1,1,1,95}\r\n else\r\n f_color = {0,0,0,100}\r\n end\r\n\r\n\r\n\r\n self.createButton({\r\n label=tostring(val),\r\n click_function=\"add_subtract\",\r\n function_owner=self,\r\n position={0,0.05,0},\r\n height=600,\r\n width=1000,\r\n alignment = 3,\r\n scale={x=1.5, y=1.5, z=1.5},\r\n font_size=600,\r\n font_color=f_color,\r\n color={0,0,0,0}\r\n })\r\n\r\n\r\n\r\n\r\n if light_mode then\r\n lightButtonText = \"[ Set dark ]\"\r\n else\r\n lightButtonText = \"[ Set light ]\"\r\n end\r\n \r\nend\r\n\r\nfunction removeAll()\r\n self.removeInput(0)\r\n self.removeInput(1)\r\n self.removeButton(0)\r\n self.removeButton(1)\r\n self.removeButton(2)\r\nend\r\n\r\nfunction reloadAll()\r\n removeAll()\r\n createAll()\r\n\r\n updateSave()\r\nend\r\n\r\nfunction swap_fcolor(_obj, _color, alt_click)\r\n light_mode = not light_mode\r\n reloadAll()\r\nend\r\n\r\nfunction swap_align(_obj, _color, alt_click)\r\n center_mode = not center_mode\r\n reloadAll()\r\nend\r\n\r\nfunction editName(_obj, _string, value) \r\n self.setName(value)\r\n setTooltips()\r\nend\r\n\r\nfunction add_subtract(_obj, _color, alt_click)\r\n mod = alt_click and -1 or 1\r\n new_value = math.min(math.max(val + mod, MIN_VALUE), MAX_VALUE)\r\n if val ~= new_value then\r\n val = new_value\r\n updateVal()\r\n updateSave()\r\n end\r\nend\r\n\r\nfunction updateVal()\r\n\r\n self.editButton({\r\n index = 0,\r\n label = tostring(val),\r\n\r\n })\r\nend\r\n\r\nfunction reset_val()\r\n val = 0\r\n updateVal()\r\n updateSave()\r\nend\r\n\r\nfunction setTooltips()\r\n self.editInput({\r\n index = 0,\r\n value = self.getName(),\r\n tooltip = ttText\r\n })\r\n self.editButton({\r\n index = 0,\r\n value = tostring(val),\r\n tooltip = ttText\r\n })\r\nend\r\n\r\nfunction null()\r\nend\r\n\r\nfunction keepSample(_obj, _string, value) \r\n reloadAll()\r\nend",
"LuaScriptState": "[true,0]",
"XmlUI": ""
}
}
}
]
},
{
"GUID": "326dbd",
"Name": "Bag",
"Transform": {
"posX": 31.4315243,
"posY": 2.18465161,
"posZ": -48.49144,
"rotX": 0.02026042,
"rotY": 89.99984,
"rotZ": -0.004284991,
"scaleX": 0.825000167,
"scaleY": 0.825000167,
"scaleZ": 0.825000167
},
"Nickname": "Custom Playmats (By BôL & Mint Tea Fan)",
"Description": "playmat",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"MaterialIndex": -1,
"MeshIndex": -1,
"Bag": {
"Order": 0
},
"LuaScript": "---\r\n--- Generated by EmmyLua(https://github.com/EmmyLua)\r\n--- Created by Whimsical.\r\n--- DateTime: 2021-03-16 3:26 p.m.\r\n---\r\n\r\n--- Original Memory Bag by MrStump\r\n--- https://steamcommunity.com/sharedfiles/filedetails/?id=953770080\r\n\r\n---@class MemoryListEntry\r\n---@field public position Vector\r\n---@field public rotation Vector\r\n---@field public lock boolean\r\nlocal MemoryListEntry={}\r\n\r\n---@type table\r\nlocal memory_list = {}\r\n\r\nlocal POSTFIX = {\r\n SAVE = \"_memory_object\",\r\n ZONE = \"_memory_zone\",\r\n SHUFFLE = \"_memory_shuffle\"\r\n}\r\n\r\n---@type table\r\nlocal BUTTON = {\r\n POSITION = Vector(0, 0.3, -2),\r\n ROTATION = Vector(0, 180, 0),\r\n HEIGHT = 350,\r\n WIDTH = 800,\r\n FONT_SIZE = 250,\r\n COLOR = Color.Black,\r\n FONT_COLOR = Color.White\r\n}\r\n\r\nlocal ipairs = ipairs\r\nlocal pairs = pairs\r\n\r\n---@return string\r\nlocal function get_prefix()\r\n return self:getDescription()\r\nend\r\n\r\nlocal function updateSave()\r\n local data_to_save = {[\"ml\"]=memory_list}\r\n local saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\n---@param label string\r\n---@param action string\r\nlocal function createButton(label, action)\r\n self:clearButtons()\r\n\r\n ---@type CreateClassicUIButton\r\n local parameters = {\r\n label = label,\r\n click_function = action,\r\n function_owner = self\r\n }\r\n\r\n for key, value in pairs(BUTTON) do\r\n parameters[key:lower()] = value\r\n end\r\n\r\n self:createButton(parameters)\r\nend\r\n\r\nlocal function create_place_button() createButton(\"Place\", \"place_objects\") end\r\nlocal function create_recall_button() createButton(\"Recall\", \"recall_objects\") end\r\n\r\n---@param tag string\r\n---@param lock boolean\r\n---@return fun(object:TTSObject)\r\nlocal function create_object_callback(tag, lock)\r\n ---@param object TTSObject\r\n return function (object)\r\n object:setLock(lock)\r\n if object:hasTag(tag) then object:shuffle() end\r\n end\r\nend\r\n\r\n---@param object TTSObject\r\nlocal function record_objects(object)\r\n memory_list[object:getGUID()] = {\r\n position = object:getPosition(),\r\n rotation = object:getRotation(),\r\n lock = object:getLock()\r\n }\r\n self:putObject(object)\r\nend\r\n\r\n---@param objects TTSObject[]\r\nlocal function update_objects(objects)\r\n for _, object in ipairs(objects) do\r\n record_objects(object)\r\n end\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction place_objects()\r\n local prefix = get_prefix()\r\n local shuffle_tag = prefix .. POSTFIX.SHUFFLE\r\n local content = self.getObjects()\r\n\r\n for _, item in ipairs(content) do\r\n local entry = memory_list[item.guid]\r\n if entry then\r\n self.takeObject {\r\n guid=item.guid,\r\n position=entry.position,\r\n rotation=entry.rotation,\r\n callback_function = create_object_callback(shuffle_tag, entry.lock)\r\n }\r\n end\r\n end\r\n\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\n create_recall_button()\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction recall_objects()\r\n memory_list = {}\r\n local prefix = get_prefix()\r\n\r\n if prefix==\"\" then\r\n broadcastToAll(\"Error in Memory Bag: Tag prefix not set.\")\r\n return\r\n end\r\n\r\n local save_tag = prefix .. POSTFIX.SAVE\r\n local zone_tag = prefix .. POSTFIX.ZONE\r\n\r\n local zones = getObjectsWithTag(zone_tag)\r\n if #zones>0 then\r\n for _, zone in ipairs(zones) do\r\n update_objects(zone:getObjects())\r\n end\r\n else\r\n update_objects(getObjectsWithTag(save_tag))\r\n end\r\n updateSave()\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\n create_place_button()\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memory_list = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memory_list = {}\r\n end\r\n\r\n if self:getQuantity()==0 then\r\n create_recall_button()\r\n else\r\n create_place_button()\r\n end\r\nend",
"LuaScriptState": "{\"ml\":{\"07fe41\":{\"lock\":false,\"position\":{\"x\":45.6394729614258,\"y\":1.10703563690186,\"z\":-47.4099311828613},\"rotation\":{\"x\":359.979156494141,\"y\":89.9849395751953,\"z\":359.983215332031}},\"569aab\":{\"lock\":false,\"position\":{\"x\":45.6394691467285,\"y\":1.10434341430664,\"z\":-56.6087112426758},\"rotation\":{\"x\":359.979156494141,\"y\":89.985725402832,\"z\":359.983215332031}},\"992a0b\":{\"lock\":false,\"position\":{\"x\":45.639461517334,\"y\":1.10030460357666,\"z\":-70.4085998535156},\"rotation\":{\"x\":359.979156494141,\"y\":89.9856414794922,\"z\":359.983215332031}},\"a0cfe5\":{\"lock\":false,\"position\":{\"x\":45.639461517334,\"y\":1.09895753860474,\"z\":-75.0087203979492},\"rotation\":{\"x\":359.979156494141,\"y\":89.985725402832,\"z\":359.983215332031}},\"b172b0\":{\"lock\":false,\"position\":{\"x\":45.639461517334,\"y\":1.10299730300903,\"z\":-61.2087211608887},\"rotation\":{\"x\":359.979156494141,\"y\":89.9852294921875,\"z\":359.983215332031}},\"c13c06\":{\"lock\":false,\"position\":{\"x\":45.639461517334,\"y\":1.10568988323212,\"z\":-52.009937286377},\"rotation\":{\"x\":359.979156494141,\"y\":89.9852905273438,\"z\":359.983215332031}},\"c87ef3\":{\"lock\":false,\"position\":{\"x\":45.623779296875,\"y\":1.09491586685181,\"z\":-88.7980499267578},\"rotation\":{\"x\":359.979156494141,\"y\":89.9854507446289,\"z\":359.983215332031}},\"d262db\":{\"lock\":false,\"position\":{\"x\":45.6394729614258,\"y\":1.10165095329285,\"z\":-65.8086013793945},\"rotation\":{\"x\":359.979156494141,\"y\":89.9846115112305,\"z\":359.983215332031}},\"df8e34\":{\"lock\":false,\"position\":{\"x\":45.639461517334,\"y\":1.09626507759094,\"z\":-84.2085952758789},\"rotation\":{\"x\":359.979156494141,\"y\":89.9856414794922,\"z\":359.983215332031}},\"f4f4be\":{\"lock\":false,\"position\":{\"x\":45.639461517334,\"y\":1.09761083126068,\"z\":-79.6085891723633},\"rotation\":{\"x\":359.979156494141,\"y\":89.9856872558594,\"z\":359.983215332031}}}}",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "d262db",
"Name": "Bag",
"Transform": {
"posX": 45.639473,
"posY": 1.101651,
"posZ": -65.8086,
"rotX": 359.979156,
"rotY": 89.98461,
"rotZ": 359.983215,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "The Circle Undone",
"Description": "tcumat",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.952366769,
"g": 0.0,
"b": 1.0
},
"Tags": [
"playmat_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,
"MaterialIndex": -1,
"MeshIndex": -1,
"Bag": {
"Order": 0
},
"LuaScript": "---\r\n--- Generated by EmmyLua(https://github.com/EmmyLua)\r\n--- Created by Whimsical.\r\n--- DateTime: 2021-03-16 3:26 p.m.\r\n---\r\n\r\n--- Original Memory Bag by MrStump\r\n--- https://steamcommunity.com/sharedfiles/filedetails/?id=953770080\r\n\r\n---@class MemoryListEntry\r\n---@field public position Vector\r\n---@field public rotation Vector\r\n---@field public lock boolean\r\nlocal MemoryListEntry={}\r\n\r\n---@type table\r\nlocal memory_list = {}\r\n\r\nlocal POSTFIX = {\r\n SAVE = \"_memory_object\",\r\n ZONE = \"_memory_zone\",\r\n SHUFFLE = \"_memory_shuffle\"\r\n}\r\n\r\n---@type table\r\nlocal BUTTON = {\r\n POSITION = Vector(0, 0.3, -2),\r\n ROTATION = Vector(0, 180, 0),\r\n HEIGHT = 350,\r\n WIDTH = 800,\r\n FONT_SIZE = 250,\r\n COLOR = Color.Black,\r\n FONT_COLOR = Color.White\r\n}\r\n\r\nlocal ipairs = ipairs\r\nlocal pairs = pairs\r\n\r\n---@return string\r\nlocal function get_prefix()\r\n return self:getDescription()\r\nend\r\n\r\nlocal function updateSave()\r\n local data_to_save = {[\"ml\"]=memory_list}\r\n local saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\n---@param label string\r\n---@param action string\r\nlocal function createButton(label, action)\r\n self:clearButtons()\r\n\r\n ---@type CreateClassicUIButton\r\n local parameters = {\r\n label = label,\r\n click_function = action,\r\n function_owner = self\r\n }\r\n\r\n for key, value in pairs(BUTTON) do\r\n parameters[key:lower()] = value\r\n end\r\n\r\n self:createButton(parameters)\r\nend\r\n\r\nlocal function create_place_button() createButton(\"Place\", \"place_objects\") end\r\nlocal function create_recall_button() createButton(\"Recall\", \"recall_objects\") end\r\n\r\n---@param tag string\r\n---@param lock boolean\r\n---@return fun(object:TTSObject)\r\nlocal function create_object_callback(tag, lock)\r\n ---@param object TTSObject\r\n return function (object)\r\n object:setLock(lock)\r\n if object:hasTag(tag) then object:shuffle() end\r\n end\r\nend\r\n\r\n---@param object TTSObject\r\nlocal function record_objects(object)\r\n memory_list[object:getGUID()] = {\r\n position = object:getPosition(),\r\n rotation = object:getRotation(),\r\n lock = object:getLock()\r\n }\r\n self:putObject(object)\r\nend\r\n\r\n---@param objects TTSObject[]\r\nlocal function update_objects(objects)\r\n for _, object in ipairs(objects) do\r\n record_objects(object)\r\n end\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction place_objects()\r\n local prefix = get_prefix()\r\n local shuffle_tag = prefix .. POSTFIX.SHUFFLE\r\n local content = self.getObjects()\r\n\r\n for _, item in ipairs(content) do\r\n local entry = memory_list[item.guid]\r\n if entry then\r\n self.takeObject {\r\n guid=item.guid,\r\n position=entry.position,\r\n rotation=entry.rotation,\r\n callback_function = create_object_callback(shuffle_tag, entry.lock)\r\n }\r\n end\r\n end\r\n\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\n create_recall_button()\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction recall_objects()\r\n memory_list = {}\r\n local prefix = get_prefix()\r\n\r\n if prefix==\"\" then\r\n broadcastToAll(\"Error in Memory Bag: Tag prefix not set.\")\r\n return\r\n end\r\n\r\n local save_tag = prefix .. POSTFIX.SAVE\r\n local zone_tag = prefix .. POSTFIX.ZONE\r\n\r\n local zones = getObjectsWithTag(zone_tag)\r\n if #zones>0 then\r\n for _, zone in ipairs(zones) do\r\n update_objects(zone:getObjects())\r\n end\r\n else\r\n update_objects(getObjectsWithTag(save_tag))\r\n end\r\n updateSave()\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\n create_place_button()\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memory_list = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memory_list = {}\r\n end\r\n\r\n if self:getQuantity()==0 then\r\n create_recall_button()\r\n else\r\n create_place_button()\r\n end\r\nend",
"LuaScriptState": "{\"ml\":{\"0b7d77\":{\"lock\":false,\"position\":{\"x\":40.2900772094727,\"y\":1.34012448787689,\"z\":-47.4199829101563},\"rotation\":{\"x\":0.0208131801337004,\"y\":269.985534667969,\"z\":0.0167656410485506}},\"0e6a60\":{\"lock\":false,\"position\":{\"x\":32.9862251281738,\"y\":1.33208584785461,\"z\":-65.8082046508789},\"rotation\":{\"x\":0.0208508428186178,\"y\":269.985931396484,\"z\":0.0166254732757807}},\"1299aa\":{\"lock\":false,\"position\":{\"x\":40.2900466918945,\"y\":1.38757872581482,\"z\":-61.2199821472168},\"rotation\":{\"x\":358.457824707031,\"y\":269.979309082031,\"z\":0.0167966093868017}},\"29fb59\":{\"lock\":false,\"position\":{\"x\":36.6243896484375,\"y\":1.38759195804596,\"z\":-56.6084251403809},\"rotation\":{\"x\":1.58360385894775,\"y\":269.979309082031,\"z\":0.0167951267212629}},\"3467d8\":{\"lock\":false,\"position\":{\"x\":40.2900810241699,\"y\":1.33742642402649,\"z\":-56.6199798583984},\"rotation\":{\"x\":0.0208503287285566,\"y\":269.979919433594,\"z\":0.0165674146264791}},\"36c99e\":{\"lock\":false,\"position\":{\"x\":40.2900772094727,\"y\":1.33877789974213,\"z\":-52.0199737548828},\"rotation\":{\"x\":0.0208148136734962,\"y\":269.979553222656,\"z\":0.0167636405676603}},\"4637fa\":{\"lock\":false,\"position\":{\"x\":36.6243934631348,\"y\":1.38357126712799,\"z\":-70.408317565918},\"rotation\":{\"x\":1.58417797088623,\"y\":269.982421875,\"z\":0.0167862176895142}},\"53c074\":{\"lock\":false,\"position\":{\"x\":36.6243858337402,\"y\":1.37952423095703,\"z\":-84.2082748413086},\"rotation\":{\"x\":1.58394312858582,\"y\":269.97802734375,\"z\":0.0167915504425764}},\"5cc445\":{\"lock\":false,\"position\":{\"x\":32.9852676391602,\"y\":1.38261997699738,\"z\":-70.4083023071289},\"rotation\":{\"x\":1.59545063972473,\"y\":269.977111816406,\"z\":0.0167619660496712}},\"727293\":{\"lock\":false,\"position\":{\"x\":40.2900466918945,\"y\":1.38221800327301,\"z\":-79.6198806762695},\"rotation\":{\"x\":358.457122802734,\"y\":270.012512207031,\"z\":0.0167949609458447}},\"7c18b0\":{\"lock\":false,\"position\":{\"x\":36.6242370605469,\"y\":1.43340659141541,\"z\":-65.8082962036133},\"rotation\":{\"x\":0.0207616444677114,\"y\":269.988067626953,\"z\":0.0166186783462763}},\"7e50fa\":{\"lock\":false,\"position\":{\"x\":40.289981842041,\"y\":1.32934963703156,\"z\":-84.2198715209961},\"rotation\":{\"x\":0.0208378806710243,\"y\":269.973510742188,\"z\":0.0166499707847834}},\"8757ad\":{\"lock\":false,\"position\":{\"x\":32.9853096008301,\"y\":1.37991321086884,\"z\":-79.6082382202148},\"rotation\":{\"x\":1.5949991941452,\"y\":270.019134521484,\"z\":0.0168121922761202}},\"891943\":{\"lock\":false,\"position\":{\"x\":40.2896385192871,\"y\":1.33473336696625,\"z\":-65.81982421875},\"rotation\":{\"x\":0.020827554166317,\"y\":269.989868164063,\"z\":0.0165789257735014}},\"93292a\":{\"lock\":false,\"position\":{\"x\":25.5436935424805,\"y\":1.32938027381897,\"z\":-65.829231262207},\"rotation\":{\"x\":0.0208343509584665,\"y\":269.912841796875,\"z\":0.0167394671589136}},\"a3c29b\":{\"lock\":false,\"position\":{\"x\":29.3391571044922,\"y\":1.38253736495972,\"z\":-65.8084487915039},\"rotation\":{\"x\":1.59226846694946,\"y\":269.986114501953,\"z\":0.0167600195854902}},\"b96b46\":{\"lock\":false,\"position\":{\"x\":40.2900657653809,\"y\":1.33204555511475,\"z\":-75.0199737548828},\"rotation\":{\"x\":0.0208139736205339,\"y\":269.982513427734,\"z\":0.0167646296322346}},\"be0192\":{\"lock\":false,\"position\":{\"x\":29.3391284942627,\"y\":1.3812004327774,\"z\":-70.4084091186523},\"rotation\":{\"x\":1.59251570701599,\"y\":269.991516113281,\"z\":0.0168077442795038}},\"c49f1a\":{\"lock\":false,\"position\":{\"x\":40.2900695800781,\"y\":1.33338832855225,\"z\":-70.4198455810547},\"rotation\":{\"x\":0.0208369940519333,\"y\":269.982238769531,\"z\":0.0166267808526754}},\"cef7d2\":{\"lock\":false,\"position\":{\"x\":36.6243705749512,\"y\":1.32936525344849,\"z\":-79.608268737793},\"rotation\":{\"x\":0.0208244118839502,\"y\":270.016052246094,\"z\":0.0165430717170238}},\"d3047a\":{\"lock\":false,\"position\":{\"x\":29.3391284942627,\"y\":1.38389098644257,\"z\":-61.2083320617676},\"rotation\":{\"x\":1.59246587753296,\"y\":269.982208251953,\"z\":0.0167914610356092}},\"d6507e\":{\"lock\":false,\"position\":{\"x\":32.9852485656738,\"y\":1.38531112670898,\"z\":-61.2083473205566},\"rotation\":{\"x\":1.5953848361969,\"y\":269.977905273438,\"z\":0.016779312863946}},\"df64cb\":{\"lock\":false,\"position\":{\"x\":32.9853172302246,\"y\":1.38665974140167,\"z\":-56.6083183288574},\"rotation\":{\"x\":1.5954418182373,\"y\":269.982849121094,\"z\":0.0167858824133873}},\"f7c7bd\":{\"lock\":false,\"position\":{\"x\":36.6243286132813,\"y\":1.33475029468536,\"z\":-61.2084083557129},\"rotation\":{\"x\":0.0208703614771366,\"y\":269.984436035156,\"z\":0.0165027342736721}}}}",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "3467d8",
"Name": "Custom_Token",
"Transform": {
"posX": 40.29008,
"posY": 1.33742642,
"posZ": -56.61998,
"rotX": 0.0208503287,
"rotY": 269.979919,
"rotZ": 0.0165674146,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "TCU - 2A",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"tcumat_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,
"CustomImage": {
"ImageURL": "https://i.ibb.co/qNWzH0Y/Circle-Undone-2-At-Death-039-s-Doorstep-Emilio-Rodriguez.jpg",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "function onLoad()\n local params = {}\n params.click_function = 'updateSurface'\n params.function_owner = self\n params.label = 'Apply'\n params.tooltip= 'Left click to apply image, right click to revert to default.'\n params.position = {0,0.05,-1.6}\n params.rotation = {0,0,0}\n params.height = 250\n params.width = 580\n params.color = {0,0,0}\n params.font_color = {1,1,1}\n self.createButton(params)\nend\n\n function updateSurface(obj, color, alt_click)\n obj_surface = getObjectFromGUID(\"721ba2\")\n local customInfo = obj_surface.getCustomObject()\n if alt_click == false then\n customInfo.image = \"https://i.ibb.co/qNWzH0Y/Circle-Undone-2-At-Death-039-s-Doorstep-Emilio-Rodriguez.jpg\"\n else\n customInfo.image = \"http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/\"\n end\n obj_surface.setCustomObject(customInfo)\n obj_surface = obj_surface.reload()\n broadcastToAll(\"New Playmat Image Applied\", {0.2,0.9,0.2})\n end",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "1299aa",
"Name": "Custom_Token",
"Transform": {
"posX": 40.2900467,
"posY": 1.38757873,
"posZ": -61.2199821,
"rotX": 358.457825,
"rotY": 269.9793,
"rotZ": 0.01679661,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "TCU - 3A",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"tcumat_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,
"CustomImage": {
"ImageURL": "https://i.ibb.co/MpcPXR5/Circle-Undone-3-Secret-Name-Pierre-Santamaria.jpg",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "function onLoad()\n local params = {}\n params.click_function = 'updateSurface'\n params.function_owner = self\n params.label = 'Apply'\n params.tooltip= 'Left click to apply image, right click to revert to default.'\n params.position = {0,0.05,-1.6}\n params.rotation = {0,0,0}\n params.height = 250\n params.width = 580\n params.color = {0,0,0}\n params.font_color = {1,1,1}\n self.createButton(params)\nend\n\n function updateSurface(obj, color, alt_click)\n obj_surface = getObjectFromGUID(\"721ba2\")\n local customInfo = obj_surface.getCustomObject()\n if alt_click == false then\n customInfo.image = \"https://i.ibb.co/MpcPXR5/Circle-Undone-3-Secret-Name-Pierre-Santamaria.jpg\"\n else\n customInfo.image = \"http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/\"\n end\n obj_surface.setCustomObject(customInfo)\n obj_surface = obj_surface.reload()\n broadcastToAll(\"New Playmat Image Applied\", {0.2,0.9,0.2})\n end",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "f7c7bd",
"Name": "Custom_Token",
"Transform": {
"posX": 36.62433,
"posY": 1.33475029,
"posZ": -61.20841,
"rotX": 0.0208703615,
"rotY": 269.984436,
"rotZ": 0.0165027343,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "TCU - 3B",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"tcumat_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,
"CustomImage": {
"ImageURL": "https://i.ibb.co/hsBw4JQ/Circle-Undone-3-Secret-Name-Jeff-Jumper.jpg",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "function onLoad()\n local params = {}\n params.click_function = 'updateSurface'\n params.function_owner = self\n params.label = 'Apply'\n params.tooltip= 'Left click to apply image, right click to revert to default.'\n params.position = {0,0.05,-1.6}\n params.rotation = {0,0,0}\n params.height = 250\n params.width = 580\n params.color = {0,0,0}\n params.font_color = {1,1,1}\n self.createButton(params)\nend\n\n function updateSurface(obj, color, alt_click)\n obj_surface = getObjectFromGUID(\"721ba2\")\n local customInfo = obj_surface.getCustomObject()\n if alt_click == false then\n customInfo.image = \"https://i.ibb.co/hsBw4JQ/Circle-Undone-3-Secret-Name-Jeff-Jumper.jpg\"\n else\n customInfo.image = \"http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/\"\n end\n obj_surface.setCustomObject(customInfo)\n obj_surface = obj_surface.reload()\n broadcastToAll(\"New Playmat Image Applied\", {0.2,0.9,0.2})\n end",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "0b7d77",
"Name": "Custom_Token",
"Transform": {
"posX": 40.2900772,
"posY": 1.34012449,
"posZ": -47.4199829,
"rotX": 0.02081318,
"rotY": 269.985535,
"rotZ": 0.016765641,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "TCU - 0",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"tcumat_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,
"CustomImage": {
"ImageURL": "https://i.ibb.co/gm4C6yy/Circle-Undone-0-Prologue-Ted-Galaday.jpg",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "function onLoad()\n local params = {}\n params.click_function = 'updateSurface'\n params.function_owner = self\n params.label = 'Apply'\n params.tooltip= 'Left click to apply image, right click to revert to default.'\n params.position = {0,0.05,-1.6}\n params.rotation = {0,0,0}\n params.height = 250\n params.width = 580\n params.color = {0,0,0}\n params.font_color = {1,1,1}\n self.createButton(params)\nend\n\n function updateSurface(obj, color, alt_click)\n obj_surface = getObjectFromGUID(\"721ba2\")\n local customInfo = obj_surface.getCustomObject()\n if alt_click == false then\n customInfo.image = \"https://i.ibb.co/gm4C6yy/Circle-Undone-0-Prologue-Ted-Galaday.jpg\"\n else\n customInfo.image = \"http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/\"\n end\n obj_surface.setCustomObject(customInfo)\n obj_surface = obj_surface.reload()\n broadcastToAll(\"New Playmat Image Applied\", {0.2,0.9,0.2})\n end",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "29fb59",
"Name": "Custom_Token",
"Transform": {
"posX": 36.62439,
"posY": 1.387592,
"posZ": -56.6084251,
"rotX": 1.58360386,
"rotY": 269.9793,
"rotZ": 0.0167951267,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "TCU - 2B",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"tcumat_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,
"CustomImage": {
"ImageURL": "https://i.ibb.co/T1zp1QN/Circle-Undone-2-At-Death-039-s-Doorstep-Emilio-Rodriguez-2.jpg",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "function onLoad()\n local params = {}\n params.click_function = 'updateSurface'\n params.function_owner = self\n params.label = 'Apply'\n params.tooltip= 'Left click to apply image, right click to revert to default.'\n params.position = {0,0.05,-1.6}\n params.rotation = {0,0,0}\n params.height = 250\n params.width = 580\n params.color = {0,0,0}\n params.font_color = {1,1,1}\n self.createButton(params)\nend\n\n function updateSurface(obj, color, alt_click)\n obj_surface = getObjectFromGUID(\"721ba2\")\n local customInfo = obj_surface.getCustomObject()\n if alt_click == false then\n customInfo.image = \"https://i.ibb.co/T1zp1QN/Circle-Undone-2-At-Death-039-s-Doorstep-Emilio-Rodriguez-2.jpg\"\n else\n customInfo.image = \"http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/\"\n end\n obj_surface.setCustomObject(customInfo)\n obj_surface = obj_surface.reload()\n broadcastToAll(\"New Playmat Image Applied\", {0.2,0.9,0.2})\n end\n",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "df64cb",
"Name": "Custom_Token",
"Transform": {
"posX": 32.9853172,
"posY": 1.38665974,
"posZ": -56.60832,
"rotX": 1.59544182,
"rotY": 269.982849,
"rotZ": 0.0167858824,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "TCU - 2C",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"tcumat_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,
"CustomImage": {
"ImageURL": "https://i.ibb.co/ZJfYZ1w/Circle-Undone-2-At-Death-039-s-Doorstep-Majid-Azim.jpg",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "function onLoad()\n local params = {}\n params.click_function = 'updateSurface'\n params.function_owner = self\n params.label = 'Apply'\n params.tooltip= 'Left click to apply image, right click to revert to default.'\n params.position = {0,0.05,-1.6}\n params.rotation = {0,0,0}\n params.height = 250\n params.width = 580\n params.color = {0,0,0}\n params.font_color = {1,1,1}\n self.createButton(params)\nend\n\n function updateSurface(obj, color, alt_click)\n obj_surface = getObjectFromGUID(\"721ba2\")\n local customInfo = obj_surface.getCustomObject()\n if alt_click == false then\n customInfo.image = \"https://i.ibb.co/ZJfYZ1w/Circle-Undone-2-At-Death-039-s-Doorstep-Majid-Azim.jpg\"\n else\n customInfo.image = \"http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/\"\n end\n obj_surface.setCustomObject(customInfo)\n obj_surface = obj_surface.reload()\n broadcastToAll(\"New Playmat Image Applied\", {0.2,0.9,0.2})\n end",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "d6507e",
"Name": "Custom_Token",
"Transform": {
"posX": 32.98525,
"posY": 1.38531113,
"posZ": -61.2083473,
"rotX": 1.59538484,
"rotY": 269.9779,
"rotZ": 0.0167793129,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "TCU - 3C",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"tcumat_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,
"CustomImage": {
"ImageURL": "https://i.ibb.co/0D7LzxV/Circle-Undone-3-The-Secret-Name-Robert-Laskey.jpg",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "function onLoad()\n local params = {}\n params.click_function = 'updateSurface'\n params.function_owner = self\n params.label = 'Apply'\n params.tooltip= 'Left click to apply image, right click to revert to default.'\n params.position = {0,0.05,-1.6}\n params.rotation = {0,0,0}\n params.height = 250\n params.width = 580\n params.color = {0,0,0}\n params.font_color = {1,1,1}\n self.createButton(params)\nend\n\n function updateSurface(obj, color, alt_click)\n obj_surface = getObjectFromGUID(\"721ba2\")\n local customInfo = obj_surface.getCustomObject()\n if alt_click == false then\n customInfo.image = \"https://i.ibb.co/0D7LzxV/Circle-Undone-3-The-Secret-Name-Robert-Laskey.jpg\"\n else\n customInfo.image = \"http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/\"\n end\n obj_surface.setCustomObject(customInfo)\n obj_surface = obj_surface.reload()\n broadcastToAll(\"New Playmat Image Applied\", {0.2,0.9,0.2})\n end",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "891943",
"Name": "Custom_Token",
"Transform": {
"posX": 40.28964,
"posY": 1.33473337,
"posZ": -65.8198242,
"rotX": 0.0208275542,
"rotY": 269.989868,
"rotZ": 0.0165789258,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "TCU - 4A",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"tcumat_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,
"CustomImage": {
"ImageURL": "https://i.ibb.co/sj1bS5x/Circle-Undone-4-Wages-of-Sin-Serge-Da-Silva-Dias.jpg",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "function onLoad()\n local params = {}\n params.click_function = 'updateSurface'\n params.function_owner = self\n params.label = 'Apply'\n params.tooltip= 'Left click to apply image, right click to revert to default.'\n params.position = {0,0.05,-1.6}\n params.rotation = {0,0,0}\n params.height = 250\n params.width = 580\n params.color = {0,0,0}\n params.font_color = {1,1,1}\n self.createButton(params)\nend\n\n function updateSurface(obj, color, alt_click)\n obj_surface = getObjectFromGUID(\"721ba2\")\n local customInfo = obj_surface.getCustomObject()\n if alt_click == false then\n customInfo.image = \"https://i.ibb.co/sj1bS5x/Circle-Undone-4-Wages-of-Sin-Serge-Da-Silva-Dias.jpg\"\n else\n customInfo.image = \"http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/\"\n end\n obj_surface.setCustomObject(customInfo)\n obj_surface = obj_surface.reload()\n broadcastToAll(\"New Playmat Image Applied\", {0.2,0.9,0.2})\n end\n",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "a3c29b",
"Name": "Custom_Token",
"Transform": {
"posX": 29.3391571,
"posY": 1.38253736,
"posZ": -65.80845,
"rotX": 1.59226847,
"rotY": 269.9861,
"rotZ": 0.01676002,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "TCU - 4D",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"tcumat_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,
"CustomImage": {
"ImageURL": "https://i.ibb.co/CMj007q/Circle-Undone-4-Wages-of-Sin-Mateusz-Michalski.jpg",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "function onLoad()\n local params = {}\n params.click_function = 'updateSurface'\n params.function_owner = self\n params.label = 'Apply'\n params.tooltip= 'Left click to apply image, right click to revert to default.'\n params.position = {0,0.05,-1.6}\n params.rotation = {0,0,0}\n params.height = 250\n params.width = 580\n params.color = {0,0,0}\n params.font_color = {1,1,1}\n self.createButton(params)\nend\n\n function updateSurface(obj, color, alt_click)\n obj_surface = getObjectFromGUID(\"721ba2\")\n local customInfo = obj_surface.getCustomObject()\n if alt_click == false then\n customInfo.image = \"https://i.ibb.co/CMj007q/Circle-Undone-4-Wages-of-Sin-Mateusz-Michalski.jpg\"\n else\n customInfo.image = \"http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/\"\n end\n obj_surface.setCustomObject(customInfo)\n obj_surface = obj_surface.reload()\n broadcastToAll(\"New Playmat Image Applied\", {0.2,0.9,0.2})\n end\n",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "7c18b0",
"Name": "Custom_Token",
"Transform": {
"posX": 36.6242371,
"posY": 1.43340659,
"posZ": -65.8083,
"rotX": 0.0207616445,
"rotY": 269.988068,
"rotZ": 0.0166186783,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "TCU - 4B",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"tcumat_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,
"CustomImage": {
"ImageURL": "https://i.ibb.co/fDMqH1C/Circle-Undone-4-Wages-of-Sin-Emilio-Rodriguez.jpg",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "function onLoad()\n local params = {}\n params.click_function = 'updateSurface'\n params.function_owner = self\n params.label = 'Apply'\n params.tooltip= 'Left click to apply image, right click to revert to default.'\n params.position = {0,0.05,-1.6}\n params.rotation = {0,0,0}\n params.height = 250\n params.width = 580\n params.color = {0,0,0}\n params.font_color = {1,1,1}\n self.createButton(params)\nend\n\n function updateSurface(obj, color, alt_click)\n obj_surface = getObjectFromGUID(\"721ba2\")\n local customInfo = obj_surface.getCustomObject()\n if alt_click == false then\n customInfo.image = \"https://i.ibb.co/fDMqH1C/Circle-Undone-4-Wages-of-Sin-Emilio-Rodriguez.jpg\"\n else\n customInfo.image = \"http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/\"\n end\n obj_surface.setCustomObject(customInfo)\n obj_surface = obj_surface.reload()\n broadcastToAll(\"New Playmat Image Applied\", {0.2,0.9,0.2})\n end\n",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "0e6a60",
"Name": "Custom_Token",
"Transform": {
"posX": 32.9862251,
"posY": 1.33208585,
"posZ": -65.8082047,
"rotX": 0.0208508428,
"rotY": 269.985931,
"rotZ": 0.0166254733,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "TCU - 4C",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"tcumat_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,
"CustomImage": {
"ImageURL": "https://i.ibb.co/HDrKkZF/Circle-Undone-4-Wages-of-Sin-Emilio-Rodriguez-2.jpg",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "function onLoad()\n local params = {}\n params.click_function = 'updateSurface'\n params.function_owner = self\n params.label = 'Apply'\n params.tooltip= 'Left click to apply image, right click to revert to default.'\n params.position = {0,0.05,-1.6}\n params.rotation = {0,0,0}\n params.height = 250\n params.width = 580\n params.color = {0,0,0}\n params.font_color = {1,1,1}\n self.createButton(params)\nend\n\n function updateSurface(obj, color, alt_click)\n obj_surface = getObjectFromGUID(\"721ba2\")\n local customInfo = obj_surface.getCustomObject()\n if alt_click == false then\n customInfo.image = \"https://i.ibb.co/HDrKkZF/Circle-Undone-4-Wages-of-Sin-Emilio-Rodriguez-2.jpg\"\n else\n customInfo.image = \"http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/\"\n end\n obj_surface.setCustomObject(customInfo)\n obj_surface = obj_surface.reload()\n broadcastToAll(\"New Playmat Image Applied\", {0.2,0.9,0.2})\n end\n",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "5cc445",
"Name": "Custom_Token",
"Transform": {
"posX": 32.9852676,
"posY": 1.38262,
"posZ": -70.4083,
"rotX": 1.59545064,
"rotY": 269.9771,
"rotZ": 0.016761966,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "TCU - 5C",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"tcumat_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,
"CustomImage": {
"ImageURL": "https://i.ibb.co/8rMLvJH/Circle-Undone-5-For-the-Greater-Good-Greg-Bobrowski.jpg",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "function onLoad()\n local params = {}\n params.click_function = 'updateSurface'\n params.function_owner = self\n params.label = 'Apply'\n params.tooltip= 'Left click to apply image, right click to revert to default.'\n params.position = {0,0.05,-1.6}\n params.rotation = {0,0,0}\n params.height = 250\n params.width = 580\n params.color = {0,0,0}\n params.font_color = {1,1,1}\n self.createButton(params)\nend\n\n function updateSurface(obj, color, alt_click)\n obj_surface = getObjectFromGUID(\"721ba2\")\n local customInfo = obj_surface.getCustomObject()\n if alt_click == false then\n customInfo.image = \"https://i.ibb.co/8rMLvJH/Circle-Undone-5-For-the-Greater-Good-Greg-Bobrowski.jpg\"\n else\n customInfo.image = \"http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/\"\n end\n obj_surface.setCustomObject(customInfo)\n obj_surface = obj_surface.reload()\n broadcastToAll(\"New Playmat Image Applied\", {0.2,0.9,0.2})\n end\n",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "c49f1a",
"Name": "Custom_Token",
"Transform": {
"posX": 40.29007,
"posY": 1.33338833,
"posZ": -70.4198456,
"rotX": 0.0208369941,
"rotY": 269.982239,
"rotZ": 0.01662678,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "TCU - 5A",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"tcumat_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,
"CustomImage": {
"ImageURL": "https://i.ibb.co/pPzXNd1/Circle-Undone-5-For-the-Greater-Good-2.jpg",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "function onLoad()\n local params = {}\n params.click_function = 'updateSurface'\n params.function_owner = self\n params.label = 'Apply'\n params.tooltip= 'Left click to apply image, right click to revert to default.'\n params.position = {0,0.05,-1.6}\n params.rotation = {0,0,0}\n params.height = 250\n params.width = 580\n params.color = {0,0,0}\n params.font_color = {1,1,1}\n self.createButton(params)\nend\n\n function updateSurface(obj, color, alt_click)\n obj_surface = getObjectFromGUID(\"721ba2\")\n local customInfo = obj_surface.getCustomObject()\n if alt_click == false then\n customInfo.image = \"https://i.ibb.co/pPzXNd1/Circle-Undone-5-For-the-Greater-Good-2.jpg\"\n else\n customInfo.image = \"http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/\"\n end\n obj_surface.setCustomObject(customInfo)\n obj_surface = obj_surface.reload()\n broadcastToAll(\"New Playmat Image Applied\", {0.2,0.9,0.2})\n end\n",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "4637fa",
"Name": "Custom_Token",
"Transform": {
"posX": 36.6243935,
"posY": 1.38357127,
"posZ": -70.40832,
"rotX": 1.584178,
"rotY": 269.982422,
"rotZ": 0.0167862177,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "TCU - 5B",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"tcumat_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,
"CustomImage": {
"ImageURL": "https://i.ibb.co/vj1q4Cm/Circle-Undone-5-For-the-Greater-Good-Robert-Laskey.jpg",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "function onLoad()\n local params = {}\n params.click_function = 'updateSurface'\n params.function_owner = self\n params.label = 'Apply'\n params.tooltip= 'Left click to apply image, right click to revert to default.'\n params.position = {0,0.05,-1.6}\n params.rotation = {0,0,0}\n params.height = 250\n params.width = 580\n params.color = {0,0,0}\n params.font_color = {1,1,1}\n self.createButton(params)\nend\n\n function updateSurface(obj, color, alt_click)\n obj_surface = getObjectFromGUID(\"721ba2\")\n local customInfo = obj_surface.getCustomObject()\n if alt_click == false then\n customInfo.image = \"https://i.ibb.co/vj1q4Cm/Circle-Undone-5-For-the-Greater-Good-Robert-Laskey.jpg\"\n else\n customInfo.image = \"http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/\"\n end\n obj_surface.setCustomObject(customInfo)\n obj_surface = obj_surface.reload()\n broadcastToAll(\"New Playmat Image Applied\", {0.2,0.9,0.2})\n end\n",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "36c99e",
"Name": "Custom_Token",
"Transform": {
"posX": 40.2900772,
"posY": 1.3387779,
"posZ": -52.0199738,
"rotX": 0.0208148137,
"rotY": 269.979553,
"rotZ": 0.01676364,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "TCU - 1",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"tcumat_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,
"CustomImage": {
"ImageURL": "https://i.ibb.co/kgJ34WS/Circle-Undone-1-Witching-Hour-Nele-Diel.jpg",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "function onLoad()\n local params = {}\n params.click_function = 'updateSurface'\n params.function_owner = self\n params.label = 'Apply'\n params.tooltip= 'Left click to apply image, right click to revert to default.'\n params.position = {0,0.05,-1.6}\n params.rotation = {0,0,0}\n params.height = 250\n params.width = 580\n params.color = {0,0,0}\n params.font_color = {1,1,1}\n self.createButton(params)\nend\n\n function updateSurface(obj, color, alt_click)\n obj_surface = getObjectFromGUID(\"721ba2\")\n local customInfo = obj_surface.getCustomObject()\n if alt_click == false then\n customInfo.image = \"https://i.ibb.co/kgJ34WS/Circle-Undone-1-Witching-Hour-Nele-Diel.jpg\"\n else\n customInfo.image = \"http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/\"\n end\n obj_surface.setCustomObject(customInfo)\n obj_surface = obj_surface.reload()\n broadcastToAll(\"New Playmat Image Applied\", {0.2,0.9,0.2})\n end",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "93292a",
"Name": "Custom_Token",
"Transform": {
"posX": 25.5436935,
"posY": 1.32938027,
"posZ": -65.82923,
"rotX": 0.020834351,
"rotY": 269.912842,
"rotZ": 0.0167394672,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "TCU - 4E",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"tcumat_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,
"CustomImage": {
"ImageURL": "https://i.ibb.co/vkpG8cM/Circle-Undone-4-Wages-of-Sin-Greg-Bobrowski.jpg",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "function onLoad()\n local params = {}\n params.click_function = 'updateSurface'\n params.function_owner = self\n params.label = 'Apply'\n params.tooltip= 'Left click to apply image, right click to revert to default.'\n params.position = {0,0.05,-1.6}\n params.rotation = {0,0,0}\n params.height = 250\n params.width = 580\n params.color = {0,0,0}\n params.font_color = {1,1,1}\n self.createButton(params)\nend\n\n function updateSurface(obj, color, alt_click)\n obj_surface = getObjectFromGUID(\"721ba2\")\n local customInfo = obj_surface.getCustomObject()\n if alt_click == false then\n customInfo.image = \"https://i.ibb.co/vkpG8cM/Circle-Undone-4-Wages-of-Sin-Greg-Bobrowski.jpg\"\n else\n customInfo.image = \"http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/\"\n end\n obj_surface.setCustomObject(customInfo)\n obj_surface = obj_surface.reload()\n broadcastToAll(\"New Playmat Image Applied\", {0.2,0.9,0.2})\n end\n",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "d3047a",
"Name": "Custom_Token",
"Transform": {
"posX": 29.3391285,
"posY": 1.383891,
"posZ": -61.2083321,
"rotX": 1.59246588,
"rotY": 269.9822,
"rotZ": 0.016791461,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "TCU - 3D",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"tcumat_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,
"CustomImage": {
"ImageURL": "https://i.ibb.co/LQ8rdKs/Circle-Undone-3-The-Secret-Name-Greg-Bobrowski.jpg",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "function onLoad()\n local params = {}\n params.click_function = 'updateSurface'\n params.function_owner = self\n params.label = 'Apply'\n params.tooltip= 'Left click to apply image, right click to revert to default.'\n params.position = {0,0.05,-1.6}\n params.rotation = {0,0,0}\n params.height = 250\n params.width = 580\n params.color = {0,0,0}\n params.font_color = {1,1,1}\n self.createButton(params)\nend\n\n function updateSurface(obj, color, alt_click)\n obj_surface = getObjectFromGUID(\"721ba2\")\n local customInfo = obj_surface.getCustomObject()\n if alt_click == false then\n customInfo.image = \"https://i.ibb.co/LQ8rdKs/Circle-Undone-3-The-Secret-Name-Greg-Bobrowski.jpg\"\n else\n customInfo.image = \"http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/\"\n end\n obj_surface.setCustomObject(customInfo)\n obj_surface = obj_surface.reload()\n broadcastToAll(\"New Playmat Image Applied\", {0.2,0.9,0.2})\n end",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "be0192",
"Name": "Custom_Token",
"Transform": {
"posX": 29.3391285,
"posY": 1.38120043,
"posZ": -70.40841,
"rotX": 1.59251571,
"rotY": 269.991516,
"rotZ": 0.0168077443,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "TCU - 5D",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"tcumat_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,
"CustomImage": {
"ImageURL": "https://i.ibb.co/LDyqjbj/Circle-Undone-5-For-the-Greater-Good.jpg",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "function onLoad()\n local params = {}\n params.click_function = 'updateSurface'\n params.function_owner = self\n params.label = 'Apply'\n params.tooltip= 'Left click to apply image, right click to revert to default.'\n params.position = {0,0.05,-1.6}\n params.rotation = {0,0,0}\n params.height = 250\n params.width = 580\n params.color = {0,0,0}\n params.font_color = {1,1,1}\n self.createButton(params)\nend\n\n function updateSurface(obj, color, alt_click)\n obj_surface = getObjectFromGUID(\"721ba2\")\n local customInfo = obj_surface.getCustomObject()\n if alt_click == false then\n customInfo.image = \"https://i.ibb.co/LDyqjbj/Circle-Undone-5-For-the-Greater-Good.jpg\"\n else\n customInfo.image = \"http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/\"\n end\n obj_surface.setCustomObject(customInfo)\n obj_surface = obj_surface.reload()\n broadcastToAll(\"New Playmat Image Applied\", {0.2,0.9,0.2})\n end\n",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "b96b46",
"Name": "Custom_Token",
"Transform": {
"posX": 40.2900658,
"posY": 1.33204556,
"posZ": -75.01997,
"rotX": 0.0208139736,
"rotY": 269.9825,
"rotZ": 0.01676463,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "TCU - 6",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"tcumat_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,
"CustomImage": {
"ImageURL": "https://i.ibb.co/n7SD1tB/Circle-Undone-6-Union-amp-Disillusioned-Andreas-Rocha.jpg",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "function onLoad()\n local params = {}\n params.click_function = 'updateSurface'\n params.function_owner = self\n params.label = 'Apply'\n params.tooltip= 'Left click to apply image, right click to revert to default.'\n params.position = {0,0.05,-1.6}\n params.rotation = {0,0,0}\n params.height = 250\n params.width = 580\n params.color = {0,0,0}\n params.font_color = {1,1,1}\n self.createButton(params)\nend\n\n function updateSurface(obj, color, alt_click)\n obj_surface = getObjectFromGUID(\"721ba2\")\n local customInfo = obj_surface.getCustomObject()\n if alt_click == false then\n customInfo.image = \"https://i.ibb.co/n7SD1tB/Circle-Undone-6-Union-amp-Disillusioned-Andreas-Rocha.jpg\"\n else\n customInfo.image = \"http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/\"\n end\n obj_surface.setCustomObject(customInfo)\n obj_surface = obj_surface.reload()\n broadcastToAll(\"New Playmat Image Applied\", {0.2,0.9,0.2})\n end\n",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "cef7d2",
"Name": "Custom_Token",
"Transform": {
"posX": 36.62437,
"posY": 1.32936525,
"posZ": -79.60827,
"rotX": 0.0208244119,
"rotY": 270.016052,
"rotZ": 0.0165430717,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "TCU - 7B",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"tcumat_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,
"CustomImage": {
"ImageURL": "https://i.ibb.co/bFXBNh7/Circle-Undone-7-In-the-Clutches-of-Chaos.jpg",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "function onLoad()\n local params = {}\n params.click_function = 'updateSurface'\n params.function_owner = self\n params.label = 'Apply'\n params.tooltip= 'Left click to apply image, right click to revert to default.'\n params.position = {0,0.05,-1.6}\n params.rotation = {0,0,0}\n params.height = 250\n params.width = 580\n params.color = {0,0,0}\n params.font_color = {1,1,1}\n self.createButton(params)\nend\n\n function updateSurface(obj, color, alt_click)\n obj_surface = getObjectFromGUID(\"721ba2\")\n local customInfo = obj_surface.getCustomObject()\n if alt_click == false then\n customInfo.image = \"https://i.ibb.co/bFXBNh7/Circle-Undone-7-In-the-Clutches-of-Chaos.jpg\"\n else\n customInfo.image = \"http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/\"\n end\n obj_surface.setCustomObject(customInfo)\n obj_surface = obj_surface.reload()\n broadcastToAll(\"New Playmat Image Applied\", {0.2,0.9,0.2})\n end\n",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "727293",
"Name": "Custom_Token",
"Transform": {
"posX": 40.2900467,
"posY": 1.382218,
"posZ": -79.61988,
"rotX": 358.457123,
"rotY": 270.0125,
"rotZ": 0.0167949609,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "TCU - 7A",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"tcumat_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,
"CustomImage": {
"ImageURL": "https://i.ibb.co/m6DshNg/Circle-Undone-7-In-the-Clutches-of-Chaos-Alexandr-Elichev.jpg",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "function onLoad()\n local params = {}\n params.click_function = 'updateSurface'\n params.function_owner = self\n params.label = 'Apply'\n params.tooltip= 'Left click to apply image, right click to revert to default.'\n params.position = {0,0.05,-1.6}\n params.rotation = {0,0,0}\n params.height = 250\n params.width = 580\n params.color = {0,0,0}\n params.font_color = {1,1,1}\n self.createButton(params)\nend\n\n function updateSurface(obj, color, alt_click)\n obj_surface = getObjectFromGUID(\"721ba2\")\n local customInfo = obj_surface.getCustomObject()\n if alt_click == false then\n customInfo.image = \"https://i.ibb.co/m6DshNg/Circle-Undone-7-In-the-Clutches-of-Chaos-Alexandr-Elichev.jpg\"\n else\n customInfo.image = \"http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/\"\n end\n obj_surface.setCustomObject(customInfo)\n obj_surface = obj_surface.reload()\n broadcastToAll(\"New Playmat Image Applied\", {0.2,0.9,0.2})\n end\n",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "8757ad",
"Name": "Custom_Token",
"Transform": {
"posX": 32.98531,
"posY": 1.37991321,
"posZ": -79.60824,
"rotX": 1.59499919,
"rotY": 270.019135,
"rotZ": 0.0168121923,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "TCU - 7C",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"tcumat_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,
"CustomImage": {
"ImageURL": "https://i.ibb.co/k2p4yfG/Circle-Undone-7-In-the-Clutches-of-Chaos-Jokubas-Uogintas.jpg",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "function onLoad()\n local params = {}\n params.click_function = 'updateSurface'\n params.function_owner = self\n params.label = 'Apply'\n params.tooltip= 'Left click to apply image, right click to revert to default.'\n params.position = {0,0.05,-1.6}\n params.rotation = {0,0,0}\n params.height = 250\n params.width = 580\n params.color = {0,0,0}\n params.font_color = {1,1,1}\n self.createButton(params)\nend\n\n function updateSurface(obj, color, alt_click)\n obj_surface = getObjectFromGUID(\"721ba2\")\n local customInfo = obj_surface.getCustomObject()\n if alt_click == false then\n customInfo.image = \"https://i.ibb.co/k2p4yfG/Circle-Undone-7-In-the-Clutches-of-Chaos-Jokubas-Uogintas.jpg\"\n else\n customInfo.image = \"http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/\"\n end\n obj_surface.setCustomObject(customInfo)\n obj_surface = obj_surface.reload()\n broadcastToAll(\"New Playmat Image Applied\", {0.2,0.9,0.2})\n end\n",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "7e50fa",
"Name": "Custom_Token",
"Transform": {
"posX": 40.28998,
"posY": 1.32934964,
"posZ": -84.21987,
"rotX": 0.02083788,
"rotY": 269.9735,
"rotZ": 0.01664997,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "TCU - 8A",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"tcumat_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,
"CustomImage": {
"ImageURL": "https://i.ibb.co/9TPwvP6/Circle-Undone-8-Before-the-Black-Throne-Aaron-Luke-Wilson.jpg",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "function onLoad()\n local params = {}\n params.click_function = 'updateSurface'\n params.function_owner = self\n params.label = 'Apply'\n params.tooltip= 'Left click to apply image, right click to revert to default.'\n params.position = {0,0.05,-1.6}\n params.rotation = {0,0,0}\n params.height = 250\n params.width = 580\n params.color = {0,0,0}\n params.font_color = {1,1,1}\n self.createButton(params)\nend\n\n function updateSurface(obj, color, alt_click)\n obj_surface = getObjectFromGUID(\"721ba2\")\n local customInfo = obj_surface.getCustomObject()\n if alt_click == false then\n customInfo.image = \"https://i.ibb.co/9TPwvP6/Circle-Undone-8-Before-the-Black-Throne-Aaron-Luke-Wilson.jpg\"\n else\n customInfo.image = \"http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/\"\n end\n obj_surface.setCustomObject(customInfo)\n obj_surface = obj_surface.reload()\n broadcastToAll(\"New Playmat Image Applied\", {0.2,0.9,0.2})\n end\n",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "53c074",
"Name": "Custom_Token",
"Transform": {
"posX": 36.6243858,
"posY": 1.37952423,
"posZ": -84.2082748,
"rotX": 1.58394313,
"rotY": 269.978027,
"rotZ": 0.01679155,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "TCU - 8B",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"tcumat_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,
"CustomImage": {
"ImageURL": "https://i.ibb.co/VNtgH4v/Circle-Undone-8-Before-the-Black-Throne-Greg-Bobrowski.jpg",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "function onLoad()\n local params = {}\n params.click_function = 'updateSurface'\n params.function_owner = self\n params.label = 'Apply'\n params.tooltip= 'Left click to apply image, right click to revert to default.'\n params.position = {0,0.05,-1.6}\n params.rotation = {0,0,0}\n params.height = 250\n params.width = 580\n params.color = {0,0,0}\n params.font_color = {1,1,1}\n self.createButton(params)\nend\n\n function updateSurface(obj, color, alt_click)\n obj_surface = getObjectFromGUID(\"721ba2\")\n local customInfo = obj_surface.getCustomObject()\n if alt_click == false then\n customInfo.image = \"https://i.ibb.co/VNtgH4v/Circle-Undone-8-Before-the-Black-Throne-Greg-Bobrowski.jpg\"\n else\n customInfo.image = \"http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/\"\n end\n obj_surface.setCustomObject(customInfo)\n obj_surface = obj_surface.reload()\n broadcastToAll(\"New Playmat Image Applied\", {0.2,0.9,0.2})\n end\n",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "07fe41",
"Name": "Bag",
"Transform": {
"posX": 45.639473,
"posY": 1.10703564,
"posZ": -47.40993,
"rotX": 359.979156,
"rotY": 89.98494,
"rotZ": 359.983215,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Night of the Zealot + Arkham Locations",
"Description": "notzmat",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.0,
"g": 0.203969061,
"b": 1.0
},
"Tags": [
"playmat_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,
"MaterialIndex": -1,
"MeshIndex": -1,
"Bag": {
"Order": 0
},
"LuaScript": "---\r\n--- Generated by EmmyLua(https://github.com/EmmyLua)\r\n--- Created by Whimsical.\r\n--- DateTime: 2021-03-16 3:26 p.m.\r\n---\r\n\r\n--- Original Memory Bag by MrStump\r\n--- https://steamcommunity.com/sharedfiles/filedetails/?id=953770080\r\n\r\n---@class MemoryListEntry\r\n---@field public position Vector\r\n---@field public rotation Vector\r\n---@field public lock boolean\r\nlocal MemoryListEntry={}\r\n\r\n---@type table\r\nlocal memory_list = {}\r\n\r\nlocal POSTFIX = {\r\n SAVE = \"_memory_object\",\r\n ZONE = \"_memory_zone\",\r\n SHUFFLE = \"_memory_shuffle\"\r\n}\r\n\r\n---@type table\r\nlocal BUTTON = {\r\n POSITION = Vector(0, 0.3, -2),\r\n ROTATION = Vector(0, 180, 0),\r\n HEIGHT = 350,\r\n WIDTH = 800,\r\n FONT_SIZE = 250,\r\n COLOR = Color.Black,\r\n FONT_COLOR = Color.White\r\n}\r\n\r\nlocal ipairs = ipairs\r\nlocal pairs = pairs\r\n\r\n---@return string\r\nlocal function get_prefix()\r\n return self:getDescription()\r\nend\r\n\r\nlocal function updateSave()\r\n local data_to_save = {[\"ml\"]=memory_list}\r\n local saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\n---@param label string\r\n---@param action string\r\nlocal function createButton(label, action)\r\n self:clearButtons()\r\n\r\n ---@type CreateClassicUIButton\r\n local parameters = {\r\n label = label,\r\n click_function = action,\r\n function_owner = self\r\n }\r\n\r\n for key, value in pairs(BUTTON) do\r\n parameters[key:lower()] = value\r\n end\r\n\r\n self:createButton(parameters)\r\nend\r\n\r\nlocal function create_place_button() createButton(\"Place\", \"place_objects\") end\r\nlocal function create_recall_button() createButton(\"Recall\", \"recall_objects\") end\r\n\r\n---@param tag string\r\n---@param lock boolean\r\n---@return fun(object:TTSObject)\r\nlocal function create_object_callback(tag, lock)\r\n ---@param object TTSObject\r\n return function (object)\r\n object:setLock(lock)\r\n if object:hasTag(tag) then object:shuffle() end\r\n end\r\nend\r\n\r\n---@param object TTSObject\r\nlocal function record_objects(object)\r\n memory_list[object:getGUID()] = {\r\n position = object:getPosition(),\r\n rotation = object:getRotation(),\r\n lock = object:getLock()\r\n }\r\n self:putObject(object)\r\nend\r\n\r\n---@param objects TTSObject[]\r\nlocal function update_objects(objects)\r\n for _, object in ipairs(objects) do\r\n record_objects(object)\r\n end\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction place_objects()\r\n local prefix = get_prefix()\r\n local shuffle_tag = prefix .. POSTFIX.SHUFFLE\r\n local content = self.getObjects()\r\n\r\n for _, item in ipairs(content) do\r\n local entry = memory_list[item.guid]\r\n if entry then\r\n self.takeObject {\r\n guid=item.guid,\r\n position=entry.position,\r\n rotation=entry.rotation,\r\n callback_function = create_object_callback(shuffle_tag, entry.lock)\r\n }\r\n end\r\n end\r\n\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\n create_recall_button()\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction recall_objects()\r\n memory_list = {}\r\n local prefix = get_prefix()\r\n\r\n if prefix==\"\" then\r\n broadcastToAll(\"Error in Memory Bag: Tag prefix not set.\")\r\n return\r\n end\r\n\r\n local save_tag = prefix .. POSTFIX.SAVE\r\n local zone_tag = prefix .. POSTFIX.ZONE\r\n\r\n local zones = getObjectsWithTag(zone_tag)\r\n if #zones>0 then\r\n for _, zone in ipairs(zones) do\r\n update_objects(zone:getObjects())\r\n end\r\n else\r\n update_objects(getObjectsWithTag(save_tag))\r\n end\r\n updateSave()\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\n create_place_button()\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memory_list = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memory_list = {}\r\n end\r\n\r\n if self:getQuantity()==0 then\r\n create_recall_button()\r\n else\r\n create_place_button()\r\n end\r\nend",
"LuaScriptState": "{\"ml\":{\"13e274\":{\"lock\":false,\"position\":{\"x\":40.2900772094727,\"y\":1.34012448787689,\"z\":-47.4199829101563},\"rotation\":{\"x\":0.0208061933517456,\"y\":270.008544921875,\"z\":0.0167738534510136}},\"154a13\":{\"lock\":false,\"position\":{\"x\":40.2900390625,\"y\":1.38760077953339,\"z\":-61.2199745178223},\"rotation\":{\"x\":358.457275390625,\"y\":269.967346191406,\"z\":0.0167635194957256}},\"2b4d36\":{\"lock\":false,\"position\":{\"x\":36.624324798584,\"y\":1.33340167999268,\"z\":-65.8082580566406},\"rotation\":{\"x\":0.0212225951254368,\"y\":269.990631103516,\"z\":0.0164857506752014}},\"37d15e\":{\"lock\":false,\"position\":{\"x\":32.9852867126465,\"y\":1.38665735721588,\"z\":-56.6083335876465},\"rotation\":{\"x\":1.59535050392151,\"y\":270.000885009766,\"z\":0.0168567188084126}},\"497d7f\":{\"lock\":false,\"position\":{\"x\":26.9502983093262,\"y\":1.35188746452332,\"z\":-59.0094108581543},\"rotation\":{\"x\":359.979187011719,\"y\":90.0027542114258,\"z\":359.983215332031}},\"509215\":{\"lock\":false,\"position\":{\"x\":36.6247138977051,\"y\":1.38357174396515,\"z\":-70.4083862304688},\"rotation\":{\"x\":1.58542954921722,\"y\":270.015502929688,\"z\":0.0169412456452847}},\"529e79\":{\"lock\":false,\"position\":{\"x\":40.2900505065918,\"y\":1.38623261451721,\"z\":-65.8198318481445},\"rotation\":{\"x\":358.457824707031,\"y\":270.038116455078,\"z\":0.0167141892015934}},\"5c8477\":{\"lock\":false,\"position\":{\"x\":36.6244735717773,\"y\":1.3374525308609,\"z\":-52.0084457397461},\"rotation\":{\"x\":0.0204775333404541,\"y\":270.002960205078,\"z\":0.0168635621666908}},\"5cb9b4\":{\"lock\":false,\"position\":{\"x\":40.2900733947754,\"y\":1.33339262008667,\"z\":-70.4198532104492},\"rotation\":{\"x\":0.0207844097167253,\"y\":269.990417480469,\"z\":0.0168412681668997}},\"7725ed\":{\"lock\":false,\"position\":{\"x\":29.3393459320068,\"y\":1.38255620002747,\"z\":-65.8083801269531},\"rotation\":{\"x\":1.59141623973846,\"y\":269.964904785156,\"z\":0.0167762376368046}},\"7b97ca\":{\"lock\":false,\"position\":{\"x\":32.985237121582,\"y\":1.38396608829498,\"z\":-65.8082809448242},\"rotation\":{\"x\":1.59619104862213,\"y\":269.977233886719,\"z\":0.0167850870639086}},\"805623\":{\"lock\":false,\"position\":{\"x\":36.6243705749512,\"y\":1.38760328292847,\"z\":-56.6084480285645},\"rotation\":{\"x\":1.58416020870209,\"y\":270.0009765625,\"z\":0.0168750956654549}},\"875764\":{\"lock\":false,\"position\":{\"x\":40.2900810241699,\"y\":1.33742833137512,\"z\":-56.6199836730957},\"rotation\":{\"x\":0.0208415053784847,\"y\":269.999084472656,\"z\":0.0166708566248417}},\"94454d\":{\"lock\":false,\"position\":{\"x\":29.3420658111572,\"y\":1.38659715652466,\"z\":-52.0094909667969},\"rotation\":{\"x\":1.59219372272491,\"y\":270.173370361328,\"z\":0.0172525122761726}},\"a7f6c5\":{\"lock\":false,\"position\":{\"x\":40.2900657653809,\"y\":1.33204412460327,\"z\":-75.0199737548828},\"rotation\":{\"x\":0.0208208635449409,\"y\":269.983154296875,\"z\":0.0167110189795494}},\"b30384\":{\"lock\":false,\"position\":{\"x\":29.3389892578125,\"y\":1.32941675186157,\"z\":-70.4085388183594},\"rotation\":{\"x\":0.0200601648539305,\"y\":269.976196289063,\"z\":0.016727801412344}},\"b58725\":{\"lock\":false,\"position\":{\"x\":32.9857940673828,\"y\":1.43257665634155,\"z\":-70.4083633422852},\"rotation\":{\"x\":0.0788428112864494,\"y\":269.987976074219,\"z\":0.0164957195520401}},\"ba3f23\":{\"lock\":false,\"position\":{\"x\":40.2900619506836,\"y\":1.39027047157288,\"z\":-52.0199966430664},\"rotation\":{\"x\":358.457733154297,\"y\":270.003814697266,\"z\":0.0168575197458267}},\"bc94c3\":{\"lock\":false,\"position\":{\"x\":32.9871482849121,\"y\":1.38802826404572,\"z\":-52.0097503662109},\"rotation\":{\"x\":1.59719407558441,\"y\":270.003570556641,\"z\":0.0165493059903383}},\"d499ce\":{\"lock\":false,\"position\":{\"x\":36.624324798584,\"y\":1.38662004470825,\"z\":-61.2083969116211},\"rotation\":{\"x\":358.447082519531,\"y\":269.987854003906,\"z\":0.0167550053447485}},\"dea1a5\":{\"lock\":false,\"position\":{\"x\":32.9852485656738,\"y\":1.33342921733856,\"z\":-61.2082901000977},\"rotation\":{\"x\":0.02087227627635,\"y\":269.987121582031,\"z\":0.0165146216750145}},\"dfd6a7\":{\"lock\":false,\"position\":{\"x\":25.4922695159912,\"y\":1.33340930938721,\"z\":-52.0012969970703},\"rotation\":{\"x\":0.0208044294267893,\"y\":270.015380859375,\"z\":0.0167767461389303}},\"ec289e\":{\"lock\":false,\"position\":{\"x\":36.624382019043,\"y\":1.38221526145935,\"z\":-75.0083999633789},\"rotation\":{\"x\":1.58390319347382,\"y\":270.007507324219,\"z\":0.0168239008635283}}}}",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "13e274",
"Name": "Custom_Token",
"Transform": {
"posX": 40.2900772,
"posY": 1.34012449,
"posZ": -47.4199829,
"rotX": 0.0208061934,
"rotY": 270.008545,
"rotZ": 0.0167738535,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "NotZ - 1",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"notzmat_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,
"CustomImage": {
"ImageURL": "https://i.ibb.co/6NWqg1K/Zealot-Gathering.jpg",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "function onLoad()\n local params = {}\n params.click_function = 'updateSurface'\n params.function_owner = self\n params.label = 'Apply'\n params.tooltip= 'Left click to apply image, right click to revert to default.'\n params.position = {0,0.05,-1.6}\n params.rotation = {0,0,0}\n params.height = 250\n params.width = 580\n params.color = {0,0,0}\n params.font_color = {1,1,1}\n self.createButton(params)\nend\n\n function updateSurface(obj, color, alt_click)\n obj_surface = getObjectFromGUID(\"721ba2\")\n local customInfo = obj_surface.getCustomObject()\n if alt_click == false then\n customInfo.image = \"https://i.ibb.co/6NWqg1K/Zealot-Gathering.jpg\"\n else\n customInfo.image = \"http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/\"\n end\n obj_surface.setCustomObject(customInfo)\n obj_surface = obj_surface.reload()\n broadcastToAll(\"New Playmat Image Applied\", {0.2,0.9,0.2})\n end\n",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "ba3f23",
"Name": "Custom_Token",
"Transform": {
"posX": 40.290062,
"posY": 1.39027047,
"posZ": -52.0199966,
"rotX": 358.457733,
"rotY": 270.0038,
"rotZ": 0.01685752,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "NotZ (Arkham) - 2A",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"notzmat_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,
"CustomImage": {
"ImageURL": "https://i.ibb.co/6NwbM59/Arkham-Michele-Botticelli.jpg",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "function onLoad()\n local params = {}\n params.click_function = 'updateSurface'\n params.function_owner = self\n params.label = 'Apply'\n params.tooltip= 'Left click to apply image, right click to revert to default.'\n params.position = {0,0.05,-1.6}\n params.rotation = {0,0,0}\n params.height = 250\n params.width = 580\n params.color = {0,0,0}\n params.font_color = {1,1,1}\n self.createButton(params)\nend\n\n function updateSurface(obj, color, alt_click)\n obj_surface = getObjectFromGUID(\"721ba2\")\n local customInfo = obj_surface.getCustomObject()\n if alt_click == false then\n customInfo.image = \"https://i.ibb.co/6NwbM59/Arkham-Michele-Botticelli.jpg\"\n else\n customInfo.image = \"http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/\"\n end\n obj_surface.setCustomObject(customInfo)\n obj_surface = obj_surface.reload()\n broadcastToAll(\"New Playmat Image Applied\", {0.2,0.9,0.2})\n end\n",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "875764",
"Name": "Custom_Token",
"Transform": {
"posX": 40.29008,
"posY": 1.33742833,
"posZ": -56.6199837,
"rotX": 0.0208415054,
"rotY": 269.999084,
"rotZ": 0.0166708566,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "NotZ (Arkham) - 2F",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"notzmat_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,
"CustomImage": {
"ImageURL": "https://i.ibb.co/B393zxv/Arkham-Tomasz-Jedruszek.jpg",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "function onLoad()\n local params = {}\n params.click_function = 'updateSurface'\n params.function_owner = self\n params.label = 'Apply'\n params.tooltip= 'Left click to apply image, right click to revert to default.'\n params.position = {0,0.05,-1.6}\n params.rotation = {0,0,0}\n params.height = 250\n params.width = 580\n params.color = {0,0,0}\n params.font_color = {1,1,1}\n self.createButton(params)\nend\n\n function updateSurface(obj, color, alt_click)\n obj_surface = getObjectFromGUID(\"721ba2\")\n local customInfo = obj_surface.getCustomObject()\n if alt_click == false then\n customInfo.image = \"https://i.ibb.co/B393zxv/Arkham-Tomasz-Jedruszek.jpg\"\n else\n customInfo.image = \"http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/\"\n end\n obj_surface.setCustomObject(customInfo)\n obj_surface = obj_surface.reload()\n broadcastToAll(\"New Playmat Image Applied\", {0.2,0.9,0.2})\n end\n",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "5c8477",
"Name": "Custom_Token",
"Transform": {
"posX": 36.6244736,
"posY": 1.33745253,
"posZ": -52.0084457,
"rotX": 0.0204775333,
"rotY": 270.00296,
"rotZ": 0.0168635622,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "NotZ (Arkham) - 2B",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"notzmat_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,
"CustomImage": {
"ImageURL": "https://i.ibb.co/N6sxyq5/Arkham-Mihail-Bila.jpg",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "function onLoad()\n local params = {}\n params.click_function = 'updateSurface'\n params.function_owner = self\n params.label = 'Apply'\n params.tooltip= 'Left click to apply image, right click to revert to default.'\n params.position = {0,0.05,-1.6}\n params.rotation = {0,0,0}\n params.height = 250\n params.width = 580\n params.color = {0,0,0}\n params.font_color = {1,1,1}\n self.createButton(params)\nend\n\n function updateSurface(obj, color, alt_click)\n obj_surface = getObjectFromGUID(\"721ba2\")\n local customInfo = obj_surface.getCustomObject()\n if alt_click == false then\n customInfo.image = \"https://i.ibb.co/N6sxyq5/Arkham-Mihail-Bila.jpg\"\n else\n customInfo.image = \"http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/\"\n end\n obj_surface.setCustomObject(customInfo)\n obj_surface = obj_surface.reload()\n broadcastToAll(\"New Playmat Image Applied\", {0.2,0.9,0.2})\n end\n",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "bc94c3",
"Name": "Custom_Token",
"Transform": {
"posX": 32.98715,
"posY": 1.38802826,
"posZ": -52.00975,
"rotX": 1.59719408,
"rotY": 270.003571,
"rotZ": 0.016549306,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "NotZ (Arkham) - 2C",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"notzmat_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,
"CustomImage": {
"ImageURL": "https://i.ibb.co/W3QvdZW/Arkham-Eastside-Cristi-Balanescu.jpg",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "function onLoad()\n local params = {}\n params.click_function = 'updateSurface'\n params.function_owner = self\n params.label = 'Apply'\n params.tooltip= 'Left click to apply image, right click to revert to default.'\n params.position = {0,0.05,-1.6}\n params.rotation = {0,0,0}\n params.height = 250\n params.width = 580\n params.color = {0,0,0}\n params.font_color = {1,1,1}\n self.createButton(params)\nend\n\n function updateSurface(obj, color, alt_click)\n obj_surface = getObjectFromGUID(\"721ba2\")\n local customInfo = obj_surface.getCustomObject()\n if alt_click == false then\n customInfo.image = \"https://i.ibb.co/W3QvdZW/Arkham-Eastside-Cristi-Balanescu.jpg\"\n else\n customInfo.image = \"http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/\"\n end\n obj_surface.setCustomObject(customInfo)\n obj_surface = obj_surface.reload()\n broadcastToAll(\"New Playmat Image Applied\", {0.2,0.9,0.2})\n end\n",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "805623",
"Name": "Custom_Token",
"Transform": {
"posX": 36.62437,
"posY": 1.38760328,
"posZ": -56.608448,
"rotX": 1.58416021,
"rotY": 270.000977,
"rotZ": 0.0168750957,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "NotZ (Arkham) - 2G",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"notzmat_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,
"CustomImage": {
"ImageURL": "https://i.ibb.co/2WQ2Vt6/Arkham-Tomasz-Jedruszek-2.jpg",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "function onLoad()\n local params = {}\n params.click_function = 'updateSurface'\n params.function_owner = self\n params.label = 'Apply'\n params.tooltip= 'Left click to apply image, right click to revert to default.'\n params.position = {0,0.05,-1.6}\n params.rotation = {0,0,0}\n params.height = 250\n params.width = 580\n params.color = {0,0,0}\n params.font_color = {1,1,1}\n self.createButton(params)\nend\n\n function updateSurface(obj, color, alt_click)\n obj_surface = getObjectFromGUID(\"721ba2\")\n local customInfo = obj_surface.getCustomObject()\n if alt_click == false then\n customInfo.image = \"https://i.ibb.co/2WQ2Vt6/Arkham-Tomasz-Jedruszek-2.jpg\"\n else\n customInfo.image = \"http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/\"\n end\n obj_surface.setCustomObject(customInfo)\n obj_surface = obj_surface.reload()\n broadcastToAll(\"New Playmat Image Applied\", {0.2,0.9,0.2})\n end\n",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "37d15e",
"Name": "Custom_Token",
"Transform": {
"posX": 32.9852867,
"posY": 1.38665736,
"posZ": -56.6083336,
"rotX": 1.5953505,
"rotY": 270.0009,
"rotZ": 0.0168567188,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "NotZ (Arkham) - 2H",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"notzmat_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,
"CustomImage": {
"ImageURL": "https://i.ibb.co/R7pQ9Y7/Arkham-Tomasz-Jedruszek-3.jpg",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "function onLoad()\n local params = {}\n params.click_function = 'updateSurface'\n params.function_owner = self\n params.label = 'Apply'\n params.tooltip= 'Left click to apply image, right click to revert to default.'\n params.position = {0,0.05,-1.6}\n params.rotation = {0,0,0}\n params.height = 250\n params.width = 580\n params.color = {0,0,0}\n params.font_color = {1,1,1}\n self.createButton(params)\nend\n\n function updateSurface(obj, color, alt_click)\n obj_surface = getObjectFromGUID(\"721ba2\")\n local customInfo = obj_surface.getCustomObject()\n if alt_click == false then\n customInfo.image = \"https://i.ibb.co/R7pQ9Y7/Arkham-Tomasz-Jedruszek-3.jpg\"\n else\n customInfo.image = \"http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/\"\n end\n obj_surface.setCustomObject(customInfo)\n obj_surface = obj_surface.reload()\n broadcastToAll(\"New Playmat Image Applied\", {0.2,0.9,0.2})\n end\n",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "154a13",
"Name": "Custom_Token",
"Transform": {
"posX": 40.29004,
"posY": 1.38760078,
"posZ": -61.2199745,
"rotX": 358.457275,
"rotY": 269.967346,
"rotZ": 0.01676352,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "NotZ (Arkham) - 2I",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"notzmat_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,
"CustomImage": {
"ImageURL": "https://i.ibb.co/hswfZD6/Arkham-Guillem-H-Pongiluppi.jpg",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "function onLoad()\n local params = {}\n params.click_function = 'updateSurface'\n params.function_owner = self\n params.label = 'Apply'\n params.tooltip= 'Left click to apply image, right click to revert to default.'\n params.position = {0,0.05,-1.6}\n params.rotation = {0,0,0}\n params.height = 250\n params.width = 580\n params.color = {0,0,0}\n params.font_color = {1,1,1}\n self.createButton(params)\nend\n\n function updateSurface(obj, color, alt_click)\n obj_surface = getObjectFromGUID(\"721ba2\")\n local customInfo = obj_surface.getCustomObject()\n if alt_click == false then\n customInfo.image = \"https://i.ibb.co/hswfZD6/Arkham-Guillem-H-Pongiluppi.jpg\"\n else\n customInfo.image = \"http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/\"\n end\n obj_surface.setCustomObject(customInfo)\n obj_surface = obj_surface.reload()\n broadcastToAll(\"New Playmat Image Applied\", {0.2,0.9,0.2})\n end\n",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "d499ce",
"Name": "Custom_Token",
"Transform": {
"posX": 36.6243248,
"posY": 1.38662,
"posZ": -61.2083969,
"rotX": 358.447083,
"rotY": 269.987854,
"rotZ": 0.0167550053,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "NotZ (Arkham) - 2J",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"notzmat_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,
"CustomImage": {
"ImageURL": "https://i.ibb.co/5h5cMyF/Arkham-Guillem-H-Pongiluppi-2.jpg",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "function onLoad()\n local params = {}\n params.click_function = 'updateSurface'\n params.function_owner = self\n params.label = 'Apply'\n params.tooltip= 'Left click to apply image, right click to revert to default.'\n params.position = {0,0.05,-1.6}\n params.rotation = {0,0,0}\n params.height = 250\n params.width = 580\n params.color = {0,0,0}\n params.font_color = {1,1,1}\n self.createButton(params)\nend\n\n function updateSurface(obj, color, alt_click)\n obj_surface = getObjectFromGUID(\"721ba2\")\n local customInfo = obj_surface.getCustomObject()\n if alt_click == false then\n customInfo.image = \"https://i.ibb.co/5h5cMyF/Arkham-Guillem-H-Pongiluppi-2.jpg\"\n else\n customInfo.image = \"http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/\"\n end\n obj_surface.setCustomObject(customInfo)\n obj_surface = obj_surface.reload()\n broadcastToAll(\"New Playmat Image Applied\", {0.2,0.9,0.2})\n end\n",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "dea1a5",
"Name": "Custom_Token",
"Transform": {
"posX": 32.98525,
"posY": 1.33342922,
"posZ": -61.20829,
"rotX": 0.0208722763,
"rotY": 269.987122,
"rotZ": 0.0165146217,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "NotZ (Arkham) - 2K",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"notzmat_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,
"CustomImage": {
"ImageURL": "https://i.ibb.co/ZBdVsWt/Arkham-Guillem-H-Pongiluppi-3.jpg",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "function onLoad()\n local params = {}\n params.click_function = 'updateSurface'\n params.function_owner = self\n params.label = 'Apply'\n params.tooltip= 'Left click to apply image, right click to revert to default.'\n params.position = {0,0.05,-1.6}\n params.rotation = {0,0,0}\n params.height = 250\n params.width = 580\n params.color = {0,0,0}\n params.font_color = {1,1,1}\n self.createButton(params)\nend\n\n function updateSurface(obj, color, alt_click)\n obj_surface = getObjectFromGUID(\"721ba2\")\n local customInfo = obj_surface.getCustomObject()\n if alt_click == false then\n customInfo.image = \"https://i.ibb.co/ZBdVsWt/Arkham-Guillem-H-Pongiluppi-3.jpg\"\n else\n customInfo.image = \"http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/\"\n end\n obj_surface.setCustomObject(customInfo)\n obj_surface = obj_surface.reload()\n broadcastToAll(\"New Playmat Image Applied\", {0.2,0.9,0.2})\n end\n",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "529e79",
"Name": "Custom_Token",
"Transform": {
"posX": 40.29005,
"posY": 1.38623261,
"posZ": -65.81983,
"rotX": 358.457825,
"rotY": 270.038116,
"rotZ": 0.01671419,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "NotZ (Arkham) - Downtown",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"notzmat_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,
"CustomImage": {
"ImageURL": "https://i.ibb.co/W2yJ5QZ/Arkham-Downtown-Jokubas-Uogintas.jpg",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "function onLoad()\n local params = {}\n params.click_function = 'updateSurface'\n params.function_owner = self\n params.label = 'Apply'\n params.tooltip= 'Left click to apply image, right click to revert to default.'\n params.position = {0,0.05,-1.6}\n params.rotation = {0,0,0}\n params.height = 250\n params.width = 580\n params.color = {0,0,0}\n params.font_color = {1,1,1}\n self.createButton(params)\nend\n\n function updateSurface(obj, color, alt_click)\n obj_surface = getObjectFromGUID(\"721ba2\")\n local customInfo = obj_surface.getCustomObject()\n if alt_click == false then\n customInfo.image = \"https://i.ibb.co/W2yJ5QZ/Arkham-Downtown-Jokubas-Uogintas.jpg\"\n else\n customInfo.image = \"http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/\"\n end\n obj_surface.setCustomObject(customInfo)\n obj_surface = obj_surface.reload()\n broadcastToAll(\"New Playmat Image Applied\", {0.2,0.9,0.2})\n end\n",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "2b4d36",
"Name": "Custom_Token",
"Transform": {
"posX": 36.6243248,
"posY": 1.33340168,
"posZ": -65.80826,
"rotX": 0.0212225951,
"rotY": 269.990631,
"rotZ": 0.01648575,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "NotZ (Arkham) - Eastside",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"notzmat_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,
"CustomImage": {
"ImageURL": "https://i.ibb.co/xfn1Fp8/Arkham-Eastside-Jokubas-Uogintas.jpg",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "function onLoad()\n local params = {}\n params.click_function = 'updateSurface'\n params.function_owner = self\n params.label = 'Apply'\n params.tooltip= 'Left click to apply image, right click to revert to default.'\n params.position = {0,0.05,-1.6}\n params.rotation = {0,0,0}\n params.height = 250\n params.width = 580\n params.color = {0,0,0}\n params.font_color = {1,1,1}\n self.createButton(params)\nend\n\n function updateSurface(obj, color, alt_click)\n obj_surface = getObjectFromGUID(\"721ba2\")\n local customInfo = obj_surface.getCustomObject()\n if alt_click == false then\n customInfo.image = \"https://i.ibb.co/xfn1Fp8/Arkham-Eastside-Jokubas-Uogintas.jpg\"\n else\n customInfo.image = \"http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/\"\n end\n obj_surface.setCustomObject(customInfo)\n obj_surface = obj_surface.reload()\n broadcastToAll(\"New Playmat Image Applied\", {0.2,0.9,0.2})\n end\n",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "7b97ca",
"Name": "Custom_Token",
"Transform": {
"posX": 32.9852371,
"posY": 1.38396609,
"posZ": -65.80828,
"rotX": 1.596191,
"rotY": 269.977234,
"rotZ": 0.0167850871,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "NotZ (Arkham) - Merchant District",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"notzmat_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,
"CustomImage": {
"ImageURL": "https://i.ibb.co/HTNCCq4/Arkham-Merchant-District-Jokubas-Uogintas.jpg",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "function onLoad()\n local params = {}\n params.click_function = 'updateSurface'\n params.function_owner = self\n params.label = 'Apply'\n params.tooltip= 'Left click to apply image, right click to revert to default.'\n params.position = {0,0.05,-1.6}\n params.rotation = {0,0,0}\n params.height = 250\n params.width = 580\n params.color = {0,0,0}\n params.font_color = {1,1,1}\n self.createButton(params)\nend\n\n function updateSurface(obj, color, alt_click)\n obj_surface = getObjectFromGUID(\"721ba2\")\n local customInfo = obj_surface.getCustomObject()\n if alt_click == false then\n customInfo.image = \"https://i.ibb.co/HTNCCq4/Arkham-Merchant-District-Jokubas-Uogintas.jpg\"\n else\n customInfo.image = \"http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/\"\n end\n obj_surface.setCustomObject(customInfo)\n obj_surface = obj_surface.reload()\n broadcastToAll(\"New Playmat Image Applied\", {0.2,0.9,0.2})\n end\n",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "5cb9b4",
"Name": "Custom_Token",
"Transform": {
"posX": 40.2900734,
"posY": 1.33339262,
"posZ": -70.41985,
"rotX": 0.02078441,
"rotY": 269.990417,
"rotZ": 0.0168412682,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "NotZ (Arkham) - Northside",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"notzmat_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,
"CustomImage": {
"ImageURL": "https://i.ibb.co/sVWx1R3/Arkham-Northside-Jokubas-Uogintas.jpg",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "function onLoad()\n local params = {}\n params.click_function = 'updateSurface'\n params.function_owner = self\n params.label = 'Apply'\n params.tooltip= 'Left click to apply image, right click to revert to default.'\n params.position = {0,0.05,-1.6}\n params.rotation = {0,0,0}\n params.height = 250\n params.width = 580\n params.color = {0,0,0}\n params.font_color = {1,1,1}\n self.createButton(params)\nend\n\n function updateSurface(obj, color, alt_click)\n obj_surface = getObjectFromGUID(\"721ba2\")\n local customInfo = obj_surface.getCustomObject()\n if alt_click == false then\n customInfo.image = \"https://i.ibb.co/sVWx1R3/Arkham-Northside-Jokubas-Uogintas.jpg\"\n else\n customInfo.image = \"http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/\"\n end\n obj_surface.setCustomObject(customInfo)\n obj_surface = obj_surface.reload()\n broadcastToAll(\"New Playmat Image Applied\", {0.2,0.9,0.2})\n end\n",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "509215",
"Name": "Custom_Token",
"Transform": {
"posX": 36.6247139,
"posY": 1.38357174,
"posZ": -70.40839,
"rotX": 1.58542955,
"rotY": 270.0155,
"rotZ": 0.0169412456,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "NotZ (Arkham) - Rivertown",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"notzmat_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,
"CustomImage": {
"ImageURL": "https://i.ibb.co/RyJnHmz/Arkham-Rivertown-Jokubas-Uogintas.jpg",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "function onLoad()\n local params = {}\n params.click_function = 'updateSurface'\n params.function_owner = self\n params.label = 'Apply'\n params.tooltip= 'Left click to apply image, right click to revert to default.'\n params.position = {0,0.05,-1.6}\n params.rotation = {0,0,0}\n params.height = 250\n params.width = 580\n params.color = {0,0,0}\n params.font_color = {1,1,1}\n self.createButton(params)\nend\n\n function updateSurface(obj, color, alt_click)\n obj_surface = getObjectFromGUID(\"721ba2\")\n local customInfo = obj_surface.getCustomObject()\n if alt_click == false then\n customInfo.image = \"https://i.ibb.co/RyJnHmz/Arkham-Rivertown-Jokubas-Uogintas.jpg\"\n else\n customInfo.image = \"http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/\"\n end\n obj_surface.setCustomObject(customInfo)\n obj_surface = obj_surface.reload()\n broadcastToAll(\"New Playmat Image Applied\", {0.2,0.9,0.2})\n end\n",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "b58725",
"Name": "Custom_Token",
"Transform": {
"posX": 32.9857941,
"posY": 1.43257666,
"posZ": -70.40836,
"rotX": 0.07884281,
"rotY": 269.987976,
"rotZ": 0.01649572,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "NotZ (Arkham) - Southside",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"notzmat_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,
"CustomImage": {
"ImageURL": "https://i.ibb.co/5GW5jg5/Arkham-Southside-Jokubas-Uogintas.jpg",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "function onLoad()\n local params = {}\n params.click_function = 'updateSurface'\n params.function_owner = self\n params.label = 'Apply'\n params.tooltip= 'Left click to apply image, right click to revert to default.'\n params.position = {0,0.05,-1.6}\n params.rotation = {0,0,0}\n params.height = 250\n params.width = 580\n params.color = {0,0,0}\n params.font_color = {1,1,1}\n self.createButton(params)\nend\n\n function updateSurface(obj, color, alt_click)\n obj_surface = getObjectFromGUID(\"721ba2\")\n local customInfo = obj_surface.getCustomObject()\n if alt_click == false then\n customInfo.image = \"https://i.ibb.co/5GW5jg5/Arkham-Southside-Jokubas-Uogintas.jpg\"\n else\n customInfo.image = \"http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/\"\n end\n obj_surface.setCustomObject(customInfo)\n obj_surface = obj_surface.reload()\n broadcastToAll(\"New Playmat Image Applied\", {0.2,0.9,0.2})\n end\n",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "b30384",
"Name": "Custom_Token",
"Transform": {
"posX": 29.33899,
"posY": 1.32941675,
"posZ": -70.40854,
"rotX": 0.0200601649,
"rotY": 269.9762,
"rotZ": 0.0167278014,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "NotZ (Arkham) - Uptown",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"notzmat_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,
"CustomImage": {
"ImageURL": "https://i.ibb.co/YXjvkMn/Arkham-Uptown-Jokubas-Uogintas.jpg",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "function onLoad()\n local params = {}\n params.click_function = 'updateSurface'\n params.function_owner = self\n params.label = 'Apply'\n params.tooltip= 'Left click to apply image, right click to revert to default.'\n params.position = {0,0.05,-1.6}\n params.rotation = {0,0,0}\n params.height = 250\n params.width = 580\n params.color = {0,0,0}\n params.font_color = {1,1,1}\n self.createButton(params)\nend\n\n function updateSurface(obj, color, alt_click)\n obj_surface = getObjectFromGUID(\"721ba2\")\n local customInfo = obj_surface.getCustomObject()\n if alt_click == false then\n customInfo.image = \"https://i.ibb.co/YXjvkMn/Arkham-Uptown-Jokubas-Uogintas.jpg\"\n else\n customInfo.image = \"http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/\"\n end\n obj_surface.setCustomObject(customInfo)\n obj_surface = obj_surface.reload()\n broadcastToAll(\"New Playmat Image Applied\", {0.2,0.9,0.2})\n end\n",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "94454d",
"Name": "Custom_Token",
"Transform": {
"posX": 29.3420658,
"posY": 1.38659716,
"posZ": -52.00949,
"rotX": 1.59219372,
"rotY": 270.17337,
"rotZ": 0.0172525123,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "NotZ (Arkham) - 2D",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"notzmat_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,
"CustomImage": {
"ImageURL": "https://i.ibb.co/N7Lk7jc/Arkham-French-Hill-Cristi-Balanescu.jpg",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "function onLoad()\n local params = {}\n params.click_function = 'updateSurface'\n params.function_owner = self\n params.label = 'Apply'\n params.tooltip= 'Left click to apply image, right click to revert to default.'\n params.position = {0,0.05,-1.6}\n params.rotation = {0,0,0}\n params.height = 250\n params.width = 580\n params.color = {0,0,0}\n params.font_color = {1,1,1}\n self.createButton(params)\nend\n\n function updateSurface(obj, color, alt_click)\n obj_surface = getObjectFromGUID(\"721ba2\")\n local customInfo = obj_surface.getCustomObject()\n if alt_click == false then\n customInfo.image = \"https://i.ibb.co/N7Lk7jc/Arkham-French-Hill-Cristi-Balanescu.jpg\"\n else\n customInfo.image = \"http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/\"\n end\n obj_surface.setCustomObject(customInfo)\n obj_surface = obj_surface.reload()\n broadcastToAll(\"New Playmat Image Applied\", {0.2,0.9,0.2})\n end\n",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "dfd6a7",
"Name": "Custom_Token",
"Transform": {
"posX": 25.49227,
"posY": 1.33340931,
"posZ": -52.001297,
"rotX": 0.02080443,
"rotY": 270.015381,
"rotZ": 0.0167767461,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "NotZ (Arkham) - 2E",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"notzmat_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,
"CustomImage": {
"ImageURL": "https://i.ibb.co/FzRk98n/Arkham-Downtown-Cristi-Balanescu.jpg",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "function onLoad()\n local params = {}\n params.click_function = 'updateSurface'\n params.function_owner = self\n params.label = 'Apply'\n params.tooltip= 'Left click to apply image, right click to revert to default.'\n params.position = {0,0.05,-1.6}\n params.rotation = {0,0,0}\n params.height = 250\n params.width = 580\n params.color = {0,0,0}\n params.font_color = {1,1,1}\n self.createButton(params)\nend\n\n function updateSurface(obj, color, alt_click)\n obj_surface = getObjectFromGUID(\"721ba2\")\n local customInfo = obj_surface.getCustomObject()\n if alt_click == false then\n customInfo.image = \"https://i.ibb.co/FzRk98n/Arkham-Downtown-Cristi-Balanescu.jpg\"\n else\n customInfo.image = \"http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/\"\n end\n obj_surface.setCustomObject(customInfo)\n obj_surface = obj_surface.reload()\n broadcastToAll(\"New Playmat Image Applied\", {0.2,0.9,0.2})\n end\n",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "7725ed",
"Name": "Custom_Token",
"Transform": {
"posX": 29.3393459,
"posY": 1.3825562,
"posZ": -65.80838,
"rotX": 1.59141624,
"rotY": 269.9649,
"rotZ": 0.0167762376,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "NotZ (Arkham) - Miskatonic University",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"notzmat_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,
"CustomImage": {
"ImageURL": "https://i.ibb.co/ncz9xjP/Arkham-Miskatonic-University-Jokubas-Uogintas.jpg",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "function onLoad()\n local params = {}\n params.click_function = 'updateSurface'\n params.function_owner = self\n params.label = 'Apply'\n params.tooltip= 'Left click to apply image, right click to revert to default.'\n params.position = {0,0.05,-1.6}\n params.rotation = {0,0,0}\n params.height = 250\n params.width = 580\n params.color = {0,0,0}\n params.font_color = {1,1,1}\n self.createButton(params)\nend\n\n function updateSurface(obj, color, alt_click)\n obj_surface = getObjectFromGUID(\"721ba2\")\n local customInfo = obj_surface.getCustomObject()\n if alt_click == false then\n customInfo.image = \"https://i.ibb.co/ncz9xjP/Arkham-Miskatonic-University-Jokubas-Uogintas.jpg\"\n else\n customInfo.image = \"http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/\"\n end\n obj_surface.setCustomObject(customInfo)\n obj_surface = obj_surface.reload()\n broadcastToAll(\"New Playmat Image Applied\", {0.2,0.9,0.2})\n end\n",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "a7f6c5",
"Name": "Custom_Token",
"Transform": {
"posX": 40.2900658,
"posY": 1.33204412,
"posZ": -75.01997,
"rotX": 0.0208208635,
"rotY": 269.983154,
"rotZ": 0.016711019,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "NotZ - 3A",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"notzmat_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,
"CustomImage": {
"ImageURL": "https://i.ibb.co/x5QFzrx/Zealot-3-Devourer-Below-Helen-Castelow.png",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "function onLoad()\n local params = {}\n params.click_function = 'updateSurface'\n params.function_owner = self\n params.label = 'Apply'\n params.tooltip= 'Left click to apply image, right click to revert to default.'\n params.position = {0,0.05,-1.6}\n params.rotation = {0,0,0}\n params.height = 250\n params.width = 580\n params.color = {0,0,0}\n params.font_color = {1,1,1}\n self.createButton(params)\nend\n\n function updateSurface(obj, color, alt_click)\n obj_surface = getObjectFromGUID(\"721ba2\")\n local customInfo = obj_surface.getCustomObject()\n if alt_click == false then\n customInfo.image = \"https://i.ibb.co/x5QFzrx/Zealot-3-Devourer-Below-Helen-Castelow.png\"\n else\n customInfo.image = \"http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/\"\n end\n obj_surface.setCustomObject(customInfo)\n obj_surface = obj_surface.reload()\n broadcastToAll(\"New Playmat Image Applied\", {0.2,0.9,0.2})\n end\n",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "ec289e",
"Name": "Custom_Token",
"Transform": {
"posX": 36.624382,
"posY": 1.38221526,
"posZ": -75.0084,
"rotX": 1.58390319,
"rotY": 270.0075,
"rotZ": 0.0168239,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "NotZ - 3B",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"notzmat_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,
"CustomImage": {
"ImageURL": "https://i.ibb.co/6r6LFGz/Zealot-3-Devourer-Below-Sarah-Miller.png",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "function onLoad()\n local params = {}\n params.click_function = 'updateSurface'\n params.function_owner = self\n params.label = 'Apply'\n params.tooltip= 'Left click to apply image, right click to revert to default.'\n params.position = {0,0.05,-1.6}\n params.rotation = {0,0,0}\n params.height = 250\n params.width = 580\n params.color = {0,0,0}\n params.font_color = {1,1,1}\n self.createButton(params)\nend\n\n function updateSurface(obj, color, alt_click)\n obj_surface = getObjectFromGUID(\"721ba2\")\n local customInfo = obj_surface.getCustomObject()\n if alt_click == false then\n customInfo.image = \"https://i.ibb.co/6r6LFGz/Zealot-3-Devourer-Below-Sarah-Miller.png\"\n else\n customInfo.image = \"http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/\"\n end\n obj_surface.setCustomObject(customInfo)\n obj_surface = obj_surface.reload()\n broadcastToAll(\"New Playmat Image Applied\", {0.2,0.9,0.2})\n end\n",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "497d7f",
"Name": "Notecard",
"Transform": {
"posX": 26.9502983,
"posY": 1.35188746,
"posZ": -59.00941,
"rotX": 359.9792,
"rotY": 90.0027542,
"rotZ": 359.983215,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Arkham Locations",
"Description": "Anything labeled with NotZ (Arkham) can be used for settings/scenarios around Arkham\n\n- Dunwich Extracurricular Activity, Forgotten Age Threads of Fate, etc",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"notzmat_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": "569aab",
"Name": "Bag",
"Transform": {
"posX": 45.63947,
"posY": 1.10434341,
"posZ": -56.60871,
"rotX": 359.979156,
"rotY": 89.9857254,
"rotZ": 359.983215,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "The Path to Carcosa",
"Description": "tpocmat",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 0.984543741,
"b": 0.0
},
"Tags": [
"playmat_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,
"MaterialIndex": -1,
"MeshIndex": -1,
"Bag": {
"Order": 0
},
"LuaScript": "---\r\n--- Generated by EmmyLua(https://github.com/EmmyLua)\r\n--- Created by Whimsical.\r\n--- DateTime: 2021-03-16 3:26 p.m.\r\n---\r\n\r\n--- Original Memory Bag by MrStump\r\n--- https://steamcommunity.com/sharedfiles/filedetails/?id=953770080\r\n\r\n---@class MemoryListEntry\r\n---@field public position Vector\r\n---@field public rotation Vector\r\n---@field public lock boolean\r\nlocal MemoryListEntry={}\r\n\r\n---@type table\r\nlocal memory_list = {}\r\n\r\nlocal POSTFIX = {\r\n SAVE = \"_memory_object\",\r\n ZONE = \"_memory_zone\",\r\n SHUFFLE = \"_memory_shuffle\"\r\n}\r\n\r\n---@type table\r\nlocal BUTTON = {\r\n POSITION = Vector(0, 0.3, -2),\r\n ROTATION = Vector(0, 180, 0),\r\n HEIGHT = 350,\r\n WIDTH = 800,\r\n FONT_SIZE = 250,\r\n COLOR = Color.Black,\r\n FONT_COLOR = Color.White\r\n}\r\n\r\nlocal ipairs = ipairs\r\nlocal pairs = pairs\r\n\r\n---@return string\r\nlocal function get_prefix()\r\n return self:getDescription()\r\nend\r\n\r\nlocal function updateSave()\r\n local data_to_save = {[\"ml\"]=memory_list}\r\n local saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\n---@param label string\r\n---@param action string\r\nlocal function createButton(label, action)\r\n self:clearButtons()\r\n\r\n ---@type CreateClassicUIButton\r\n local parameters = {\r\n label = label,\r\n click_function = action,\r\n function_owner = self\r\n }\r\n\r\n for key, value in pairs(BUTTON) do\r\n parameters[key:lower()] = value\r\n end\r\n\r\n self:createButton(parameters)\r\nend\r\n\r\nlocal function create_place_button() createButton(\"Place\", \"place_objects\") end\r\nlocal function create_recall_button() createButton(\"Recall\", \"recall_objects\") end\r\n\r\n---@param tag string\r\n---@param lock boolean\r\n---@return fun(object:TTSObject)\r\nlocal function create_object_callback(tag, lock)\r\n ---@param object TTSObject\r\n return function (object)\r\n object:setLock(lock)\r\n if object:hasTag(tag) then object:shuffle() end\r\n end\r\nend\r\n\r\n---@param object TTSObject\r\nlocal function record_objects(object)\r\n memory_list[object:getGUID()] = {\r\n position = object:getPosition(),\r\n rotation = object:getRotation(),\r\n lock = object:getLock()\r\n }\r\n self:putObject(object)\r\nend\r\n\r\n---@param objects TTSObject[]\r\nlocal function update_objects(objects)\r\n for _, object in ipairs(objects) do\r\n record_objects(object)\r\n end\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction place_objects()\r\n local prefix = get_prefix()\r\n local shuffle_tag = prefix .. POSTFIX.SHUFFLE\r\n local content = self.getObjects()\r\n\r\n for _, item in ipairs(content) do\r\n local entry = memory_list[item.guid]\r\n if entry then\r\n self.takeObject {\r\n guid=item.guid,\r\n position=entry.position,\r\n rotation=entry.rotation,\r\n callback_function = create_object_callback(shuffle_tag, entry.lock)\r\n }\r\n end\r\n end\r\n\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\n create_recall_button()\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction recall_objects()\r\n memory_list = {}\r\n local prefix = get_prefix()\r\n\r\n if prefix==\"\" then\r\n broadcastToAll(\"Error in Memory Bag: Tag prefix not set.\")\r\n return\r\n end\r\n\r\n local save_tag = prefix .. POSTFIX.SAVE\r\n local zone_tag = prefix .. POSTFIX.ZONE\r\n\r\n local zones = getObjectsWithTag(zone_tag)\r\n if #zones>0 then\r\n for _, zone in ipairs(zones) do\r\n update_objects(zone:getObjects())\r\n end\r\n else\r\n update_objects(getObjectsWithTag(save_tag))\r\n end\r\n updateSave()\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\n create_place_button()\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memory_list = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memory_list = {}\r\n end\r\n\r\n if self:getQuantity()==0 then\r\n create_recall_button()\r\n else\r\n create_place_button()\r\n end\r\nend",
"LuaScriptState": "{\"ml\":{\"095a6c\":{\"lock\":false,\"position\":{\"x\":32.9845237731934,\"y\":1.38532066345215,\"z\":-61.2080574035645},\"rotation\":{\"x\":1.59576225280762,\"y\":270.084533691406,\"z\":0.016705010086298}},\"0e16cf\":{\"lock\":false,\"position\":{\"x\":36.6240348815918,\"y\":1.32936930656433,\"z\":-79.609992980957},\"rotation\":{\"x\":0.020963104441762,\"y\":269.514404296875,\"z\":0.0165419988334179}},\"1e0a2d\":{\"lock\":false,\"position\":{\"x\":36.6228218078613,\"y\":1.3862898349762,\"z\":-61.2083969116211},\"rotation\":{\"x\":1.58478474617004,\"y\":270.196502685547,\"z\":0.0169914197176695}},\"1e8406\":{\"lock\":false,\"position\":{\"x\":40.2875022888184,\"y\":1.33473646640778,\"z\":-65.81982421875},\"rotation\":{\"x\":0.0207940451800823,\"y\":270.075134277344,\"z\":0.0167564880102873}},\"2abbe8\":{\"lock\":false,\"position\":{\"x\":36.622932434082,\"y\":1.38492441177368,\"z\":-65.8079833984375},\"rotation\":{\"x\":1.58432829380035,\"y\":270.104827880859,\"z\":0.016864100471139}},\"2d374a\":{\"lock\":false,\"position\":{\"x\":40.2900695800781,\"y\":1.3333797454834,\"z\":-70.4198455810547},\"rotation\":{\"x\":0.0208860542625189,\"y\":270.049285888672,\"z\":0.0163174904882908}},\"3aacc6\":{\"lock\":false,\"position\":{\"x\":40.2902526855469,\"y\":1.38219845294952,\"z\":-79.6182250976563},\"rotation\":{\"x\":358.457824707031,\"y\":269.510528564453,\"z\":0.0166124496608973}},\"456b43\":{\"lock\":false,\"position\":{\"x\":40.2905960083008,\"y\":1.38353705406189,\"z\":-75.0199966430664},\"rotation\":{\"x\":358.457855224609,\"y\":270.063842773438,\"z\":0.0167510211467743}},\"6cea28\":{\"lock\":false,\"position\":{\"x\":40.2900810241699,\"y\":1.33743143081665,\"z\":-56.6199798583984},\"rotation\":{\"x\":0.0208151936531067,\"y\":269.976776123047,\"z\":0.0167629010975361}},\"7010ef\":{\"lock\":false,\"position\":{\"x\":36.6237106323242,\"y\":1.38894176483154,\"z\":-52.0081672668457},\"rotation\":{\"x\":1.58310925960541,\"y\":270.320251464844,\"z\":0.0174248591065407}},\"8127bb\":{\"lock\":false,\"position\":{\"x\":32.9846115112305,\"y\":1.3880113363266,\"z\":-52.0093383789063},\"rotation\":{\"x\":1.59561026096344,\"y\":270.239685058594,\"z\":0.0168073419481516}},\"85cf7e\":{\"lock\":false,\"position\":{\"x\":40.2900772094727,\"y\":1.34012448787689,\"z\":-47.419994354248},\"rotation\":{\"x\":0.0208339486271143,\"y\":269.912475585938,\"z\":0.0167393945157528}},\"8b2f2f\":{\"lock\":false,\"position\":{\"x\":36.6228141784668,\"y\":1.38353538513184,\"z\":-70.4082336425781},\"rotation\":{\"x\":1.58326184749603,\"y\":269.926239013672,\"z\":0.0166283063590527}},\"8e8954\":{\"lock\":false,\"position\":{\"x\":36.6243591308594,\"y\":1.33071219921112,\"z\":-75.0083923339844},\"rotation\":{\"x\":0.0208493266254663,\"y\":270.011291503906,\"z\":0.0165645703673363}},\"f7d07b\":{\"lock\":false,\"position\":{\"x\":40.2900772094727,\"y\":1.33880090713501,\"z\":-52.0199813842773},\"rotation\":{\"x\":0.0206605233252048,\"y\":269.901977539063,\"z\":0.0176218636333942}},\"fa603e\":{\"lock\":false,\"position\":{\"x\":40.2854118347168,\"y\":1.33607804775238,\"z\":-61.2198791503906},\"rotation\":{\"x\":0.0208038575947285,\"y\":270.1435546875,\"z\":0.0166207645088434}}}}",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "f7d07b",
"Name": "Custom_Token",
"Transform": {
"posX": 40.2900772,
"posY": 1.33880091,
"posZ": -52.01998,
"rotX": 0.0206605233,
"rotY": 269.901978,
"rotZ": 0.0176218636,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "POC - 2A",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"tpocmat_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,
"CustomImage": {
"ImageURL": "https://i.ibb.co/x56ZHt7/Carcosa-2-Last-King-Wu-Mengjia.jpg",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "function onLoad()\n local params = {}\n params.click_function = 'updateSurface'\n params.function_owner = self\n params.label = 'Apply'\n params.tooltip= 'Left click to apply image, right click to revert to default.'\n params.position = {0,0.05,-1.6}\n params.rotation = {0,0,0}\n params.height = 250\n params.width = 580\n params.color = {0,0,0}\n params.font_color = {1,1,1}\n self.createButton(params)\nend\n\n function updateSurface(obj, color, alt_click)\n obj_surface = getObjectFromGUID(\"721ba2\")\n local customInfo = obj_surface.getCustomObject()\n if alt_click == false then\n customInfo.image = \"https://i.ibb.co/x56ZHt7/Carcosa-2-Last-King-Wu-Mengjia.jpg\"\n else\n customInfo.image = \"http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/\"\n end\n obj_surface.setCustomObject(customInfo)\n obj_surface = obj_surface.reload()\n broadcastToAll(\"New Playmat Image Applied\", {0.2,0.9,0.2})\n end\n",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "6cea28",
"Name": "Custom_Token",
"Transform": {
"posX": 40.29008,
"posY": 1.33743143,
"posZ": -56.61998,
"rotX": 0.0208151937,
"rotY": 269.976776,
"rotZ": 0.0167629011,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "POC - 3",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"tpocmat_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,
"CustomImage": {
"ImageURL": "https://i.ibb.co/R6gSm0D/Carcosa-3-Echoes-of-the-Past-Heather-Savage.jpg",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "function onLoad()\n local params = {}\n params.click_function = 'updateSurface'\n params.function_owner = self\n params.label = 'Apply'\n params.tooltip= 'Left click to apply image, right click to revert to default.'\n params.position = {0,0.05,-1.6}\n params.rotation = {0,0,0}\n params.height = 250\n params.width = 580\n params.color = {0,0,0}\n params.font_color = {1,1,1}\n self.createButton(params)\nend\n\n function updateSurface(obj, color, alt_click)\n obj_surface = getObjectFromGUID(\"721ba2\")\n local customInfo = obj_surface.getCustomObject()\n if alt_click == false then\n customInfo.image = \"https://i.ibb.co/R6gSm0D/Carcosa-3-Echoes-of-the-Past-Heather-Savage.jpg\"\n else\n customInfo.image = \"http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/\"\n end\n obj_surface.setCustomObject(customInfo)\n obj_surface = obj_surface.reload()\n broadcastToAll(\"New Playmat Image Applied\", {0.2,0.9,0.2})\n end\n",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "fa603e",
"Name": "Custom_Token",
"Transform": {
"posX": 40.28541,
"posY": 1.336078,
"posZ": -61.21988,
"rotX": 0.0208038576,
"rotY": 270.143555,
"rotZ": 0.0166207645,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "POC - 4A",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"tpocmat_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,
"CustomImage": {
"ImageURL": "https://i.ibb.co/DzzDQQQ/Carcosa-4-Unspeakable-Oath.jpg",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "function onLoad()\n local params = {}\n params.click_function = 'updateSurface'\n params.function_owner = self\n params.label = 'Apply'\n params.tooltip= 'Left click to apply image, right click to revert to default.'\n params.position = {0,0.05,-1.6}\n params.rotation = {0,0,0}\n params.height = 250\n params.width = 580\n params.color = {0,0,0}\n params.font_color = {1,1,1}\n self.createButton(params)\nend\n\n function updateSurface(obj, color, alt_click)\n obj_surface = getObjectFromGUID(\"721ba2\")\n local customInfo = obj_surface.getCustomObject()\n if alt_click == false then\n customInfo.image = \"https://i.ibb.co/DzzDQQQ/Carcosa-4-Unspeakable-Oath.jpg\"\n else\n customInfo.image = \"http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/\"\n end\n obj_surface.setCustomObject(customInfo)\n obj_surface = obj_surface.reload()\n broadcastToAll(\"New Playmat Image Applied\", {0.2,0.9,0.2})\n end\n",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "1e0a2d",
"Name": "Custom_Token",
"Transform": {
"posX": 36.62282,
"posY": 1.38628983,
"posZ": -61.2083969,
"rotX": 1.58478475,
"rotY": 270.1965,
"rotZ": 0.01699142,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "POC - 4B",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"tpocmat_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,
"CustomImage": {
"ImageURL": "https://i.ibb.co/wWL73c9/Carcosa-4-Unspeakable-Oath-Paul-Fairbairn.jpg",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "function onLoad()\n local params = {}\n params.click_function = 'updateSurface'\n params.function_owner = self\n params.label = 'Apply'\n params.tooltip= 'Left click to apply image, right click to revert to default.'\n params.position = {0,0.05,-1.6}\n params.rotation = {0,0,0}\n params.height = 250\n params.width = 580\n params.color = {0,0,0}\n params.font_color = {1,1,1}\n self.createButton(params)\nend\n\n function updateSurface(obj, color, alt_click)\n obj_surface = getObjectFromGUID(\"721ba2\")\n local customInfo = obj_surface.getCustomObject()\n if alt_click == false then\n customInfo.image = \"https://i.ibb.co/wWL73c9/Carcosa-4-Unspeakable-Oath-Paul-Fairbairn.jpg\"\n else\n customInfo.image = \"http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/\"\n end\n obj_surface.setCustomObject(customInfo)\n obj_surface = obj_surface.reload()\n broadcastToAll(\"New Playmat Image Applied\", {0.2,0.9,0.2})\n end\n",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "1e8406",
"Name": "Custom_Token",
"Transform": {
"posX": 40.2875023,
"posY": 1.33473647,
"posZ": -65.8198242,
"rotX": 0.0207940452,
"rotY": 270.075134,
"rotZ": 0.016756488,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "POC - 5A",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"tpocmat_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,
"CustomImage": {
"ImageURL": "https://i.ibb.co/Vp1wNbT/Carcosa-5-Phantom-of-Truth-Tomasz-Jedruszek.jpg",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "function onLoad()\n local params = {}\n params.click_function = 'updateSurface'\n params.function_owner = self\n params.label = 'Apply'\n params.tooltip= 'Left click to apply image, right click to revert to default.'\n params.position = {0,0.05,-1.6}\n params.rotation = {0,0,0}\n params.height = 250\n params.width = 580\n params.color = {0,0,0}\n params.font_color = {1,1,1}\n self.createButton(params)\nend\n\n function updateSurface(obj, color, alt_click)\n obj_surface = getObjectFromGUID(\"721ba2\")\n local customInfo = obj_surface.getCustomObject()\n if alt_click == false then\n customInfo.image = \"https://i.ibb.co/Vp1wNbT/Carcosa-5-Phantom-of-Truth-Tomasz-Jedruszek.jpg\"\n else\n customInfo.image = \"http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/\"\n end\n obj_surface.setCustomObject(customInfo)\n obj_surface = obj_surface.reload()\n broadcastToAll(\"New Playmat Image Applied\", {0.2,0.9,0.2})\n end\n",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "2abbe8",
"Name": "Custom_Token",
"Transform": {
"posX": 36.6229324,
"posY": 1.38492441,
"posZ": -65.80798,
"rotX": 1.58432829,
"rotY": 270.104828,
"rotZ": 0.0168641,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "POC - 5B",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"tpocmat_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,
"CustomImage": {
"ImageURL": "https://i.ibb.co/mzpz1Dd/Carcosa-5-Phantom-of-Truth-Lucas-Staniec.jpg",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "function onLoad()\n local params = {}\n params.click_function = 'updateSurface'\n params.function_owner = self\n params.label = 'Apply'\n params.tooltip= 'Left click to apply image, right click to revert to default.'\n params.position = {0,0.05,-1.6}\n params.rotation = {0,0,0}\n params.height = 250\n params.width = 580\n params.color = {0,0,0}\n params.font_color = {1,1,1}\n self.createButton(params)\nend\n\n function updateSurface(obj, color, alt_click)\n obj_surface = getObjectFromGUID(\"721ba2\")\n local customInfo = obj_surface.getCustomObject()\n if alt_click == false then\n customInfo.image = \"https://i.ibb.co/mzpz1Dd/Carcosa-5-Phantom-of-Truth-Lucas-Staniec.jpg\"\n else\n customInfo.image = \"http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/\"\n end\n obj_surface.setCustomObject(customInfo)\n obj_surface = obj_surface.reload()\n broadcastToAll(\"New Playmat Image Applied\", {0.2,0.9,0.2})\n end\n",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "7010ef",
"Name": "Custom_Token",
"Transform": {
"posX": 36.62371,
"posY": 1.38894176,
"posZ": -52.0081673,
"rotX": 1.58310926,
"rotY": 270.320251,
"rotZ": 0.01742486,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "POC - 2B",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"tpocmat_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,
"CustomImage": {
"ImageURL": "https://i.ibb.co/JRQJKR8/Carcosa-2-Last-King-Cristi-Balanescu.jpg",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "function onLoad()\n local params = {}\n params.click_function = 'updateSurface'\n params.function_owner = self\n params.label = 'Apply'\n params.tooltip= 'Left click to apply image, right click to revert to default.'\n params.position = {0,0.05,-1.6}\n params.rotation = {0,0,0}\n params.height = 250\n params.width = 580\n params.color = {0,0,0}\n params.font_color = {1,1,1}\n self.createButton(params)\nend\n\n function updateSurface(obj, color, alt_click)\n obj_surface = getObjectFromGUID(\"721ba2\")\n local customInfo = obj_surface.getCustomObject()\n if alt_click == false then\n customInfo.image = \"https://i.ibb.co/JRQJKR8/Carcosa-2-Last-King-Cristi-Balanescu.jpg\"\n else\n customInfo.image = \"http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/\"\n end\n obj_surface.setCustomObject(customInfo)\n obj_surface = obj_surface.reload()\n broadcastToAll(\"New Playmat Image Applied\", {0.2,0.9,0.2})\n end\n",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "2d374a",
"Name": "Custom_Token",
"Transform": {
"posX": 40.29007,
"posY": 1.33337975,
"posZ": -70.4198456,
"rotX": 0.0208860543,
"rotY": 270.0493,
"rotZ": 0.01631749,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "POC - 6A",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"tpocmat_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,
"CustomImage": {
"ImageURL": "https://i.ibb.co/Bf5LByY/Carcosa-6-Pallid-Mask-Greg-Bobrowski.jpg",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "function onLoad()\n local params = {}\n params.click_function = 'updateSurface'\n params.function_owner = self\n params.label = 'Apply'\n params.tooltip= 'Left click to apply image, right click to revert to default.'\n params.position = {0,0.05,-1.6}\n params.rotation = {0,0,0}\n params.height = 250\n params.width = 580\n params.color = {0,0,0}\n params.font_color = {1,1,1}\n self.createButton(params)\nend\n\n function updateSurface(obj, color, alt_click)\n obj_surface = getObjectFromGUID(\"721ba2\")\n local customInfo = obj_surface.getCustomObject()\n if alt_click == false then\n customInfo.image = \"https://i.ibb.co/Bf5LByY/Carcosa-6-Pallid-Mask-Greg-Bobrowski.jpg\"\n else\n customInfo.image = \"http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/\"\n end\n obj_surface.setCustomObject(customInfo)\n obj_surface = obj_surface.reload()\n broadcastToAll(\"New Playmat Image Applied\", {0.2,0.9,0.2})\n end\n",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "8b2f2f",
"Name": "Custom_Token",
"Transform": {
"posX": 36.6228142,
"posY": 1.38353539,
"posZ": -70.40823,
"rotX": 1.58326185,
"rotY": 269.926239,
"rotZ": 0.0166283064,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "POC - 6B",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"tpocmat_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,
"CustomImage": {
"ImageURL": "https://i.ibb.co/1v1J9Xx/Carcosa-6-Pallid-Mask-Rafal-Pyra.jpg",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "function onLoad()\n local params = {}\n params.click_function = 'updateSurface'\n params.function_owner = self\n params.label = 'Apply'\n params.tooltip= 'Left click to apply image, right click to revert to default.'\n params.position = {0,0.05,-1.6}\n params.rotation = {0,0,0}\n params.height = 250\n params.width = 580\n params.color = {0,0,0}\n params.font_color = {1,1,1}\n self.createButton(params)\nend\n\n function updateSurface(obj, color, alt_click)\n obj_surface = getObjectFromGUID(\"721ba2\")\n local customInfo = obj_surface.getCustomObject()\n if alt_click == false then\n customInfo.image = \"https://i.ibb.co/1v1J9Xx/Carcosa-6-Pallid-Mask-Rafal-Pyra.jpg\"\n else\n customInfo.image = \"http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/\"\n end\n obj_surface.setCustomObject(customInfo)\n obj_surface = obj_surface.reload()\n broadcastToAll(\"New Playmat Image Applied\", {0.2,0.9,0.2})\n end\n",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "85cf7e",
"Name": "Custom_Token",
"Transform": {
"posX": 40.2900772,
"posY": 1.34012449,
"posZ": -47.4199944,
"rotX": 0.0208339486,
"rotY": 269.912476,
"rotZ": 0.0167393945,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "POC - 1",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"tpocmat_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,
"CustomImage": {
"ImageURL": "https://i.ibb.co/TcnKXJD/Carcosa-1-Curtain-Call-Mark-Molnar.jpg",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "function onLoad()\n local params = {}\n params.click_function = 'updateSurface'\n params.function_owner = self\n params.label = 'Apply'\n params.tooltip= 'Left click to apply image, right click to revert to default.'\n params.position = {0,0.05,-1.6}\n params.rotation = {0,0,0}\n params.height = 250\n params.width = 580\n params.color = {0,0,0}\n params.font_color = {1,1,1}\n self.createButton(params)\nend\n\n function updateSurface(obj, color, alt_click)\n obj_surface = getObjectFromGUID(\"721ba2\")\n local customInfo = obj_surface.getCustomObject()\n if alt_click == false then\n customInfo.image = \"https://i.ibb.co/TcnKXJD/Carcosa-1-Curtain-Call-Mark-Molnar.jpg\"\n else\n customInfo.image = \"http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/\"\n end\n obj_surface.setCustomObject(customInfo)\n obj_surface = obj_surface.reload()\n broadcastToAll(\"New Playmat Image Applied\", {0.2,0.9,0.2})\n end\n",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "8127bb",
"Name": "Custom_Token",
"Transform": {
"posX": 32.98461,
"posY": 1.38801134,
"posZ": -52.00934,
"rotX": 1.59561026,
"rotY": 270.2397,
"rotZ": 0.0168073419,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "POC - 2C",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"tpocmat_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,
"CustomImage": {
"ImageURL": "https://i.ibb.co/NZzBwgv/Carcosa-2-Last-King-Cristi-Balanescu-2.jpg",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "function onLoad()\n local params = {}\n params.click_function = 'updateSurface'\n params.function_owner = self\n params.label = 'Apply'\n params.tooltip= 'Left click to apply image, right click to revert to default.'\n params.position = {0,0.05,-1.6}\n params.rotation = {0,0,0}\n params.height = 250\n params.width = 580\n params.color = {0,0,0}\n params.font_color = {1,1,1}\n self.createButton(params)\nend\n\n function updateSurface(obj, color, alt_click)\n obj_surface = getObjectFromGUID(\"721ba2\")\n local customInfo = obj_surface.getCustomObject()\n if alt_click == false then\n customInfo.image = \"https://i.ibb.co/NZzBwgv/Carcosa-2-Last-King-Cristi-Balanescu-2.jpg\"\n else\n customInfo.image = \"http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/\"\n end\n obj_surface.setCustomObject(customInfo)\n obj_surface = obj_surface.reload()\n broadcastToAll(\"New Playmat Image Applied\", {0.2,0.9,0.2})\n end\n",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "095a6c",
"Name": "Custom_Token",
"Transform": {
"posX": 32.9845238,
"posY": 1.38532066,
"posZ": -61.2080574,
"rotX": 1.59576225,
"rotY": 270.084534,
"rotZ": 0.01670501,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "POC - 4C",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"tpocmat_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,
"CustomImage": {
"ImageURL": "https://i.ibb.co/9gqBzXr/Carcosa-4-Unspeakable-Oath-2-Mark-Molnar.jpg",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "function onLoad()\n local params = {}\n params.click_function = 'updateSurface'\n params.function_owner = self\n params.label = 'Apply'\n params.tooltip= 'Left click to apply image, right click to revert to default.'\n params.position = {0,0.05,-1.6}\n params.rotation = {0,0,0}\n params.height = 250\n params.width = 580\n params.color = {0,0,0}\n params.font_color = {1,1,1}\n self.createButton(params)\nend\n\n function updateSurface(obj, color, alt_click)\n obj_surface = getObjectFromGUID(\"721ba2\")\n local customInfo = obj_surface.getCustomObject()\n if alt_click == false then\n customInfo.image = \"https://i.ibb.co/9gqBzXr/Carcosa-4-Unspeakable-Oath-2-Mark-Molnar.jpg\"\n else\n customInfo.image = \"http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/\"\n end\n obj_surface.setCustomObject(customInfo)\n obj_surface = obj_surface.reload()\n broadcastToAll(\"New Playmat Image Applied\", {0.2,0.9,0.2})\n end\n",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "456b43",
"Name": "Custom_Token",
"Transform": {
"posX": 40.290596,
"posY": 1.383537,
"posZ": -75.02,
"rotX": 358.457855,
"rotY": 270.063843,
"rotZ": 0.0167510211,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "POC - 7A",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"tpocmat_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,
"CustomImage": {
"ImageURL": "https://i.ibb.co/TB451t7/Carcosa-7-Black-Star-Rises-Audric-Gatoux.jpg",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "function onLoad()\n local params = {}\n params.click_function = 'updateSurface'\n params.function_owner = self\n params.label = 'Apply'\n params.tooltip= 'Left click to apply image, right click to revert to default.'\n params.position = {0,0.05,-1.6}\n params.rotation = {0,0,0}\n params.height = 250\n params.width = 580\n params.color = {0,0,0}\n params.font_color = {1,1,1}\n self.createButton(params)\nend\n\n function updateSurface(obj, color, alt_click)\n obj_surface = getObjectFromGUID(\"721ba2\")\n local customInfo = obj_surface.getCustomObject()\n if alt_click == false then\n customInfo.image = \"https://i.ibb.co/TB451t7/Carcosa-7-Black-Star-Rises-Audric-Gatoux.jpg\"\n else\n customInfo.image = \"http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/\"\n end\n obj_surface.setCustomObject(customInfo)\n obj_surface = obj_surface.reload()\n broadcastToAll(\"New Playmat Image Applied\", {0.2,0.9,0.2})\n end\n",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "3aacc6",
"Name": "Custom_Token",
"Transform": {
"posX": 40.2902527,
"posY": 1.38219845,
"posZ": -79.6182251,
"rotX": 358.457825,
"rotY": 269.510529,
"rotZ": 0.01661245,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "POC - 8A",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"tpocmat_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,
"CustomImage": {
"ImageURL": "https://i.ibb.co/QvS4y3D/Carcosa-8-Dim-Carcosa-Alexandr-Elichev.jpg",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "function onLoad()\n local params = {}\n params.click_function = 'updateSurface'\n params.function_owner = self\n params.label = 'Apply'\n params.tooltip= 'Left click to apply image, right click to revert to default.'\n params.position = {0,0.05,-1.6}\n params.rotation = {0,0,0}\n params.height = 250\n params.width = 580\n params.color = {0,0,0}\n params.font_color = {1,1,1}\n self.createButton(params)\nend\n\n function updateSurface(obj, color, alt_click)\n obj_surface = getObjectFromGUID(\"721ba2\")\n local customInfo = obj_surface.getCustomObject()\n if alt_click == false then\n customInfo.image = \"https://i.ibb.co/QvS4y3D/Carcosa-8-Dim-Carcosa-Alexandr-Elichev.jpg\"\n else\n customInfo.image = \"http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/\"\n end\n obj_surface.setCustomObject(customInfo)\n obj_surface = obj_surface.reload()\n broadcastToAll(\"New Playmat Image Applied\", {0.2,0.9,0.2})\n end\n",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "0e16cf",
"Name": "Custom_Token",
"Transform": {
"posX": 36.6240349,
"posY": 1.32936931,
"posZ": -79.60999,
"rotX": 0.0209631044,
"rotY": 269.5144,
"rotZ": 0.0165419988,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "POC - 8B",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"tpocmat_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,
"CustomImage": {
"ImageURL": "https://i.ibb.co/hR95x7k/Carcosa-8-Dim-Carcosa-Yuri-Shepherd.jpg",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "function onLoad()\n local params = {}\n params.click_function = 'updateSurface'\n params.function_owner = self\n params.label = 'Apply'\n params.tooltip= 'Left click to apply image, right click to revert to default.'\n params.position = {0,0.05,-1.6}\n params.rotation = {0,0,0}\n params.height = 250\n params.width = 580\n params.color = {0,0,0}\n params.font_color = {1,1,1}\n self.createButton(params)\nend\n\n function updateSurface(obj, color, alt_click)\n obj_surface = getObjectFromGUID(\"721ba2\")\n local customInfo = obj_surface.getCustomObject()\n if alt_click == false then\n customInfo.image = \"https://i.ibb.co/hR95x7k/Carcosa-8-Dim-Carcosa-Yuri-Shepherd.jpg\"\n else\n customInfo.image = \"http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/\"\n end\n obj_surface.setCustomObject(customInfo)\n obj_surface = obj_surface.reload()\n broadcastToAll(\"New Playmat Image Applied\", {0.2,0.9,0.2})\n end\n",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "8e8954",
"Name": "Custom_Token",
"Transform": {
"posX": 36.62436,
"posY": 1.3307122,
"posZ": -75.00839,
"rotX": 0.0208493266,
"rotY": 270.0113,
"rotZ": 0.01656457,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "POC - 7B",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"tpocmat_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,
"CustomImage": {
"ImageURL": "https://i.ibb.co/nC8Ncxx/Carcosa-7-Black-Star-Rises-Chris-Kintner.jpg",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "function onLoad()\n local params = {}\n params.click_function = 'updateSurface'\n params.function_owner = self\n params.label = 'Apply'\n params.tooltip= 'Left click to apply image, right click to revert to default.'\n params.position = {0,0.05,-1.6}\n params.rotation = {0,0,0}\n params.height = 250\n params.width = 580\n params.color = {0,0,0}\n params.font_color = {1,1,1}\n self.createButton(params)\nend\n\n function updateSurface(obj, color, alt_click)\n obj_surface = getObjectFromGUID(\"721ba2\")\n local customInfo = obj_surface.getCustomObject()\n if alt_click == false then\n customInfo.image = \"https://i.ibb.co/nC8Ncxx/Carcosa-7-Black-Star-Rises-Chris-Kintner.jpg\"\n else\n customInfo.image = \"http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/\"\n end\n obj_surface.setCustomObject(customInfo)\n obj_surface = obj_surface.reload()\n broadcastToAll(\"New Playmat Image Applied\", {0.2,0.9,0.2})\n end\n",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "c13c06",
"Name": "Bag",
"Transform": {
"posX": 45.63946,
"posY": 1.10568988,
"posZ": -52.0099373,
"rotX": 359.979156,
"rotY": 89.98529,
"rotZ": 359.983215,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "The Dunwich Legacy",
"Description": "tdlmat",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.0,
"g": 1.0,
"b": 0.6623666
},
"Tags": [
"playmat_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,
"MaterialIndex": -1,
"MeshIndex": -1,
"Bag": {
"Order": 0
},
"LuaScript": "---\r\n--- Generated by EmmyLua(https://github.com/EmmyLua)\r\n--- Created by Whimsical.\r\n--- DateTime: 2021-03-16 3:26 p.m.\r\n---\r\n\r\n--- Original Memory Bag by MrStump\r\n--- https://steamcommunity.com/sharedfiles/filedetails/?id=953770080\r\n\r\n---@class MemoryListEntry\r\n---@field public position Vector\r\n---@field public rotation Vector\r\n---@field public lock boolean\r\nlocal MemoryListEntry={}\r\n\r\n---@type table\r\nlocal memory_list = {}\r\n\r\nlocal POSTFIX = {\r\n SAVE = \"_memory_object\",\r\n ZONE = \"_memory_zone\",\r\n SHUFFLE = \"_memory_shuffle\"\r\n}\r\n\r\n---@type table\r\nlocal BUTTON = {\r\n POSITION = Vector(0, 0.3, -2),\r\n ROTATION = Vector(0, 180, 0),\r\n HEIGHT = 350,\r\n WIDTH = 800,\r\n FONT_SIZE = 250,\r\n COLOR = Color.Black,\r\n FONT_COLOR = Color.White\r\n}\r\n\r\nlocal ipairs = ipairs\r\nlocal pairs = pairs\r\n\r\n---@return string\r\nlocal function get_prefix()\r\n return self:getDescription()\r\nend\r\n\r\nlocal function updateSave()\r\n local data_to_save = {[\"ml\"]=memory_list}\r\n local saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\n---@param label string\r\n---@param action string\r\nlocal function createButton(label, action)\r\n self:clearButtons()\r\n\r\n ---@type CreateClassicUIButton\r\n local parameters = {\r\n label = label,\r\n click_function = action,\r\n function_owner = self\r\n }\r\n\r\n for key, value in pairs(BUTTON) do\r\n parameters[key:lower()] = value\r\n end\r\n\r\n self:createButton(parameters)\r\nend\r\n\r\nlocal function create_place_button() createButton(\"Place\", \"place_objects\") end\r\nlocal function create_recall_button() createButton(\"Recall\", \"recall_objects\") end\r\n\r\n---@param tag string\r\n---@param lock boolean\r\n---@return fun(object:TTSObject)\r\nlocal function create_object_callback(tag, lock)\r\n ---@param object TTSObject\r\n return function (object)\r\n object:setLock(lock)\r\n if object:hasTag(tag) then object:shuffle() end\r\n end\r\nend\r\n\r\n---@param object TTSObject\r\nlocal function record_objects(object)\r\n memory_list[object:getGUID()] = {\r\n position = object:getPosition(),\r\n rotation = object:getRotation(),\r\n lock = object:getLock()\r\n }\r\n self:putObject(object)\r\nend\r\n\r\n---@param objects TTSObject[]\r\nlocal function update_objects(objects)\r\n for _, object in ipairs(objects) do\r\n record_objects(object)\r\n end\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction place_objects()\r\n local prefix = get_prefix()\r\n local shuffle_tag = prefix .. POSTFIX.SHUFFLE\r\n local content = self.getObjects()\r\n\r\n for _, item in ipairs(content) do\r\n local entry = memory_list[item.guid]\r\n if entry then\r\n self.takeObject {\r\n guid=item.guid,\r\n position=entry.position,\r\n rotation=entry.rotation,\r\n callback_function = create_object_callback(shuffle_tag, entry.lock)\r\n }\r\n end\r\n end\r\n\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\n create_recall_button()\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction recall_objects()\r\n memory_list = {}\r\n local prefix = get_prefix()\r\n\r\n if prefix==\"\" then\r\n broadcastToAll(\"Error in Memory Bag: Tag prefix not set.\")\r\n return\r\n end\r\n\r\n local save_tag = prefix .. POSTFIX.SAVE\r\n local zone_tag = prefix .. POSTFIX.ZONE\r\n\r\n local zones = getObjectsWithTag(zone_tag)\r\n if #zones>0 then\r\n for _, zone in ipairs(zones) do\r\n update_objects(zone:getObjects())\r\n end\r\n else\r\n update_objects(getObjectsWithTag(save_tag))\r\n end\r\n updateSave()\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\n create_place_button()\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memory_list = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memory_list = {}\r\n end\r\n\r\n if self:getQuantity()==0 then\r\n create_recall_button()\r\n else\r\n create_place_button()\r\n end\r\nend",
"LuaScriptState": "{\"ml\":{\"0964f0\":{\"lock\":false,\"position\":{\"x\":29.340087890625,\"y\":1.3348046541214,\"z\":-52.0096321105957},\"rotation\":{\"x\":0.0206597093492746,\"y\":270.028656005859,\"z\":0.0167987309396267}},\"0d397a\":{\"lock\":false,\"position\":{\"x\":40.2900810241699,\"y\":1.38355994224548,\"z\":-75.0199813842773},\"rotation\":{\"x\":358.457092285156,\"y\":269.984771728516,\"z\":0.0168045703321695}},\"21d971\":{\"lock\":false,\"position\":{\"x\":40.2900695800781,\"y\":1.3849024772644,\"z\":-70.4198455810547},\"rotation\":{\"x\":358.457336425781,\"y\":269.987091064453,\"z\":0.0168001893907785}},\"2cce8e\":{\"lock\":false,\"position\":{\"x\":32.9853019714355,\"y\":1.33747231960297,\"z\":-47.4095420837402},\"rotation\":{\"x\":0.0208119843155146,\"y\":270.025115966797,\"z\":0.0166818276047707}},\"2d3119\":{\"lock\":false,\"position\":{\"x\":40.2900581359863,\"y\":1.38893496990204,\"z\":-56.6199760437012},\"rotation\":{\"x\":358.457550048828,\"y\":269.983734130859,\"z\":0.0167778749018908}},\"330f36\":{\"lock\":false,\"position\":{\"x\":36.6243553161621,\"y\":1.39067018032074,\"z\":-47.4084167480469},\"rotation\":{\"x\":358.446319580078,\"y\":270.029663085938,\"z\":0.0168040152639151}},\"490ee5\":{\"lock\":false,\"position\":{\"x\":40.2910537719727,\"y\":1.38625204563141,\"z\":-65.8197860717773},\"rotation\":{\"x\":358.457305908203,\"y\":269.983245849609,\"z\":0.0166635364294052}},\"491ba2\":{\"lock\":false,\"position\":{\"x\":32.9844665527344,\"y\":1.38794231414795,\"z\":-52.0096244812012},\"rotation\":{\"x\":358.446563720703,\"y\":270.039123535156,\"z\":0.0167980864644051}},\"4bfe23\":{\"lock\":false,\"position\":{\"x\":36.6243591308594,\"y\":1.32936990261078,\"z\":-79.608268737793},\"rotation\":{\"x\":0.020830400288105,\"y\":269.984405517578,\"z\":0.0167136322706938}},\"53627d\":{\"lock\":false,\"position\":{\"x\":32.9853057861328,\"y\":1.33208382129669,\"z\":-65.8082504272461},\"rotation\":{\"x\":0.0208544619381428,\"y\":269.984832763672,\"z\":0.016563082113862}},\"5fa489\":{\"lock\":false,\"position\":{\"x\":29.3400802612305,\"y\":1.38254678249359,\"z\":-65.8084564208984},\"rotation\":{\"x\":1.59251129627228,\"y\":269.987854003906,\"z\":0.0167957860976458}},\"6f347f\":{\"lock\":false,\"position\":{\"x\":36.6221656799316,\"y\":1.33206725120544,\"z\":-70.4083862304688},\"rotation\":{\"x\":0.0207578614354134,\"y\":269.995208740234,\"z\":0.0169360768049955}},\"75474e\":{\"lock\":false,\"position\":{\"x\":40.2900276184082,\"y\":1.39030683040619,\"z\":-52.0199394226074},\"rotation\":{\"x\":358.457153320313,\"y\":269.993133544922,\"z\":0.0166997835040092}},\"784bfe\":{\"lock\":false,\"position\":{\"x\":29.3400783538818,\"y\":1.32807159423828,\"z\":-75.0085754394531},\"rotation\":{\"x\":0.020818792283535,\"y\":270.017822265625,\"z\":0.0167520549148321}},\"7ec346\":{\"lock\":false,\"position\":{\"x\":32.9853172302246,\"y\":1.381192445755,\"z\":-75.0083618164063},\"rotation\":{\"x\":358.448608398438,\"y\":270.005828857422,\"z\":0.0167736746370792}},\"7fc275\":{\"lock\":false,\"position\":{\"x\":40.2900505065918,\"y\":1.39163541793823,\"z\":-47.4199829101563},\"rotation\":{\"x\":358.457336425781,\"y\":270.022918701172,\"z\":0.0168141219764948}},\"87c00f\":{\"lock\":false,\"position\":{\"x\":40.2900733947754,\"y\":1.33608496189117,\"z\":-61.2199859619141},\"rotation\":{\"x\":0.020814586430788,\"y\":269.981628417969,\"z\":0.0167642626911402}},\"995d75\":{\"lock\":false,\"position\":{\"x\":40.2900466918945,\"y\":1.38220262527466,\"z\":-79.6198806762695},\"rotation\":{\"x\":358.457550048828,\"y\":269.980712890625,\"z\":0.0167830009013414}},\"ad222a\":{\"lock\":false,\"position\":{\"x\":36.6243553161621,\"y\":1.33610248565674,\"z\":-56.6084175109863},\"rotation\":{\"x\":0.0208259355276823,\"y\":269.989685058594,\"z\":0.0167255289852619}},\"b1efff\":{\"lock\":false,\"position\":{\"x\":32.9847984313965,\"y\":1.37997734546661,\"z\":-79.6079940795898},\"rotation\":{\"x\":1.59545660018921,\"y\":269.980285644531,\"z\":0.0166264846920967}},\"b32939\":{\"lock\":false,\"position\":{\"x\":29.3388404846191,\"y\":1.38123595714569,\"z\":-70.4083404541016},\"rotation\":{\"x\":1.59346234798431,\"y\":270.035186767578,\"z\":0.0180397946387529}},\"b70302\":{\"lock\":false,\"position\":{\"x\":36.6243209838867,\"y\":1.38259935379028,\"z\":-75.0083770751953},\"rotation\":{\"x\":358.446197509766,\"y\":269.995971679688,\"z\":0.0170544758439064}},\"bebff6\":{\"lock\":false,\"position\":{\"x\":25.4906024932861,\"y\":1.32666838169098,\"z\":-75.0282440185547},\"rotation\":{\"x\":0.0208046212792397,\"y\":270.011474609375,\"z\":0.0167748872190714}},\"cbbd36\":{\"lock\":false,\"position\":{\"x\":32.982177734375,\"y\":1.38261711597443,\"z\":-70.4079666137695},\"rotation\":{\"x\":1.59567940235138,\"y\":269.964111328125,\"z\":0.0161142908036709}},\"dae6ff\":{\"lock\":false,\"position\":{\"x\":36.624195098877,\"y\":1.38930463790894,\"z\":-52.008373260498},\"rotation\":{\"x\":358.448455810547,\"y\":269.99560546875,\"z\":0.0170737262815237}},\"ec83a8\":{\"lock\":false,\"position\":{\"x\":36.625431060791,\"y\":1.38528060913086,\"z\":-65.8083038330078},\"rotation\":{\"x\":358.446258544922,\"y\":269.979736328125,\"z\":0.0167261846363544}}}}",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "7fc275",
"Name": "Custom_Token",
"Transform": {
"posX": 40.29005,
"posY": 1.39163542,
"posZ": -47.4199829,
"rotX": 358.457336,
"rotY": 270.022919,
"rotZ": 0.016814122,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "TDL - 1A",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"tdlmat_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,
"CustomImage": {
"ImageURL": "https://i.ibb.co/RQ6z0pj/Dunwich-1-Extracurricular-Activity-Joseph-Diaz.jpg",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "function onLoad()\n local params = {}\n params.click_function = 'updateSurface'\n params.function_owner = self\n params.label = 'Apply'\n params.tooltip= 'Left click to apply image, right click to revert to default.'\n params.position = {0,0.05,-1.6}\n params.rotation = {0,0,0}\n params.height = 250\n params.width = 580\n params.color = {0,0,0}\n params.font_color = {1,1,1}\n self.createButton(params)\nend\n\n function updateSurface(obj, color, alt_click)\n obj_surface = getObjectFromGUID(\"721ba2\")\n local customInfo = obj_surface.getCustomObject()\n if alt_click == false then\n customInfo.image = \"https://i.ibb.co/RQ6z0pj/Dunwich-1-Extracurricular-Activity-Joseph-Diaz.jpg\"\n else\n customInfo.image = \"http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/\"\n end\n obj_surface.setCustomObject(customInfo)\n obj_surface = obj_surface.reload()\n broadcastToAll(\"New Playmat Image Applied\", {0.2,0.9,0.2})\n end\n",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "75474e",
"Name": "Custom_Token",
"Transform": {
"posX": 40.2900276,
"posY": 1.39030683,
"posZ": -52.01994,
"rotX": 358.457153,
"rotY": 269.993134,
"rotZ": 0.0166997835,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "TDL - 2A",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"tdlmat_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,
"CustomImage": {
"ImageURL": "https://i.ibb.co/MCLP3Sz/Dunwich-2-House-Always-Wins-XX-l.jpg",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "function onLoad()\n local params = {}\n params.click_function = 'updateSurface'\n params.function_owner = self\n params.label = 'Apply'\n params.tooltip= 'Left click to apply image, right click to revert to default.'\n params.position = {0,0.05,-1.6}\n params.rotation = {0,0,0}\n params.height = 250\n params.width = 580\n params.color = {0,0,0}\n params.font_color = {1,1,1}\n self.createButton(params)\nend\n\n function updateSurface(obj, color, alt_click)\n obj_surface = getObjectFromGUID(\"721ba2\")\n local customInfo = obj_surface.getCustomObject()\n if alt_click == false then\n customInfo.image = \"https://i.ibb.co/MCLP3Sz/Dunwich-2-House-Always-Wins-XX-l.jpg\"\n else\n customInfo.image = \"http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/\"\n end\n obj_surface.setCustomObject(customInfo)\n obj_surface = obj_surface.reload()\n broadcastToAll(\"New Playmat Image Applied\", {0.2,0.9,0.2})\n end\n",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "2d3119",
"Name": "Custom_Token",
"Transform": {
"posX": 40.29006,
"posY": 1.388935,
"posZ": -56.619976,
"rotX": 358.45755,
"rotY": 269.983734,
"rotZ": 0.0167778749,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "TDL - 3A",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"tdlmat_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,
"CustomImage": {
"ImageURL": "https://i.ibb.co/x1Kf7qG/Dunwich-3-Miskatonic-Museum-Emre-Aktuna.jpg",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "function onLoad()\n local params = {}\n params.click_function = 'updateSurface'\n params.function_owner = self\n params.label = 'Apply'\n params.tooltip= 'Left click to apply image, right click to revert to default.'\n params.position = {0,0.05,-1.6}\n params.rotation = {0,0,0}\n params.height = 250\n params.width = 580\n params.color = {0,0,0}\n params.font_color = {1,1,1}\n self.createButton(params)\nend\n\n function updateSurface(obj, color, alt_click)\n obj_surface = getObjectFromGUID(\"721ba2\")\n local customInfo = obj_surface.getCustomObject()\n if alt_click == false then\n customInfo.image = \"https://i.ibb.co/x1Kf7qG/Dunwich-3-Miskatonic-Museum-Emre-Aktuna.jpg\"\n else\n customInfo.image = \"http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/\"\n end\n obj_surface.setCustomObject(customInfo)\n obj_surface = obj_surface.reload()\n broadcastToAll(\"New Playmat Image Applied\", {0.2,0.9,0.2})\n end\n",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "87c00f",
"Name": "Custom_Token",
"Transform": {
"posX": 40.2900734,
"posY": 1.336085,
"posZ": -61.219986,
"rotX": 0.0208145864,
"rotY": 269.981628,
"rotZ": 0.0167642627,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "TDL - 4",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"tdlmat_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,
"CustomImage": {
"ImageURL": "https://i.ibb.co/602CMZb/Dunwich-4-Essex-County-Express-David-Alvarez.jpg",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "function onLoad()\n local params = {}\n params.click_function = 'updateSurface'\n params.function_owner = self\n params.label = 'Apply'\n params.tooltip= 'Left click to apply image, right click to revert to default.'\n params.position = {0,0.05,-1.6}\n params.rotation = {0,0,0}\n params.height = 250\n params.width = 580\n params.color = {0,0,0}\n params.font_color = {1,1,1}\n self.createButton(params)\nend\n\n function updateSurface(obj, color, alt_click)\n obj_surface = getObjectFromGUID(\"721ba2\")\n local customInfo = obj_surface.getCustomObject()\n if alt_click == false then\n customInfo.image = \"https://i.ibb.co/602CMZb/Dunwich-4-Essex-County-Express-David-Alvarez.jpg\"\n else\n customInfo.image = \"http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/\"\n end\n obj_surface.setCustomObject(customInfo)\n obj_surface = obj_surface.reload()\n broadcastToAll(\"New Playmat Image Applied\", {0.2,0.9,0.2})\n end\n",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "330f36",
"Name": "Custom_Token",
"Transform": {
"posX": 36.6243553,
"posY": 1.39067018,
"posZ": -47.4084167,
"rotX": 358.44632,
"rotY": 270.029663,
"rotZ": 0.0168040153,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "TDL - 1B",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"tdlmat_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,
"CustomImage": {
"ImageURL": "https://i.ibb.co/nnJdwL2/Dunwich-1-Extracurricular-Activity-Tomasz-Jedruszek.jpg",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "function onLoad()\n local params = {}\n params.click_function = 'updateSurface'\n params.function_owner = self\n params.label = 'Apply'\n params.tooltip= 'Left click to apply image, right click to revert to default.'\n params.position = {0,0.05,-1.6}\n params.rotation = {0,0,0}\n params.height = 250\n params.width = 580\n params.color = {0,0,0}\n params.font_color = {1,1,1}\n self.createButton(params)\nend\n\n function updateSurface(obj, color, alt_click)\n obj_surface = getObjectFromGUID(\"721ba2\")\n local customInfo = obj_surface.getCustomObject()\n if alt_click == false then\n customInfo.image = \"https://i.ibb.co/nnJdwL2/Dunwich-1-Extracurricular-Activity-Tomasz-Jedruszek.jpg\"\n else\n customInfo.image = \"http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/\"\n end\n obj_surface.setCustomObject(customInfo)\n obj_surface = obj_surface.reload()\n broadcastToAll(\"New Playmat Image Applied\", {0.2,0.9,0.2})\n end\n",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "2cce8e",
"Name": "Custom_Token",
"Transform": {
"posX": 32.985302,
"posY": 1.33747232,
"posZ": -47.4095421,
"rotX": 0.0208119843,
"rotY": 270.025116,
"rotZ": 0.0166818276,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "TDL - 1C",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"tdlmat_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,
"CustomImage": {
"ImageURL": "https://i.ibb.co/tDxX8KS/Dunwich-1-Extracurricular-Activity-Igor-Kirdeika.https://i.ibb.co/tDxX8KS/Dunwich-1-Extracurricular-Activity-Igor-Kirdeika.jpg",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "function onLoad()\n local params = {}\n params.click_function = 'updateSurface'\n params.function_owner = self\n params.label = 'Apply'\n params.tooltip= 'Left click to apply image, right click to revert to default.'\n params.position = {0,0.05,-1.6}\n params.rotation = {0,0,0}\n params.height = 250\n params.width = 580\n params.color = {0,0,0}\n params.font_color = {1,1,1}\n self.createButton(params)\nend\n\n function updateSurface(obj, color, alt_click)\n obj_surface = getObjectFromGUID(\"721ba2\")\n local customInfo = obj_surface.getCustomObject()\n if alt_click == false then\n customInfo.image = \"https://i.ibb.co/tDxX8KS/Dunwich-1-Extracurricular-Activity-Igor-Kirdeika.jpg\"\n else\n customInfo.image = \"http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/\"\n end\n obj_surface.setCustomObject(customInfo)\n obj_surface = obj_surface.reload()\n broadcastToAll(\"New Playmat Image Applied\", {0.2,0.9,0.2})\n end\n",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "dae6ff",
"Name": "Custom_Token",
"Transform": {
"posX": 36.6241951,
"posY": 1.38930464,
"posZ": -52.0083733,
"rotX": 358.448456,
"rotY": 269.9956,
"rotZ": 0.0170737263,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "TDL - 2B",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"tdlmat_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,
"CustomImage": {
"ImageURL": "https://i.ibb.co/w7Pf5sd/Dunwich-2-House-Always-Wins-XX-l-2.jpg",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "function onLoad()\n local params = {}\n params.click_function = 'updateSurface'\n params.function_owner = self\n params.label = 'Apply'\n params.tooltip= 'Left click to apply image, right click to revert to default.'\n params.position = {0,0.05,-1.6}\n params.rotation = {0,0,0}\n params.height = 250\n params.width = 580\n params.color = {0,0,0}\n params.font_color = {1,1,1}\n self.createButton(params)\nend\n\n function updateSurface(obj, color, alt_click)\n obj_surface = getObjectFromGUID(\"721ba2\")\n local customInfo = obj_surface.getCustomObject()\n if alt_click == false then\n customInfo.image = \"https://i.ibb.co/w7Pf5sd/Dunwich-2-House-Always-Wins-XX-l-2.jpg\"\n else\n customInfo.image = \"http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/\"\n end\n obj_surface.setCustomObject(customInfo)\n obj_surface = obj_surface.reload()\n broadcastToAll(\"New Playmat Image Applied\", {0.2,0.9,0.2})\n end\n",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "491ba2",
"Name": "Custom_Token",
"Transform": {
"posX": 32.9844666,
"posY": 1.38794231,
"posZ": -52.0096245,
"rotX": 358.446564,
"rotY": 270.039124,
"rotZ": 0.0167980865,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "TDL - 2C",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"tdlmat_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,
"CustomImage": {
"ImageURL": "https://i.ibb.co/8XPLdr9/Dunwich-2-House-Always-Wins-Jonny-Klein.jpg",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "function onLoad()\n local params = {}\n params.click_function = 'updateSurface'\n params.function_owner = self\n params.label = 'Apply'\n params.tooltip= 'Left click to apply image, right click to revert to default.'\n params.position = {0,0.05,-1.6}\n params.rotation = {0,0,0}\n params.height = 250\n params.width = 580\n params.color = {0,0,0}\n params.font_color = {1,1,1}\n self.createButton(params)\nend\n\n function updateSurface(obj, color, alt_click)\n obj_surface = getObjectFromGUID(\"721ba2\")\n local customInfo = obj_surface.getCustomObject()\n if alt_click == false then\n customInfo.image = \"https://i.ibb.co/8XPLdr9/Dunwich-2-House-Always-Wins-Jonny-Klein.jpg\"\n else\n customInfo.image = \"http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/\"\n end\n obj_surface.setCustomObject(customInfo)\n obj_surface = obj_surface.reload()\n broadcastToAll(\"New Playmat Image Applied\", {0.2,0.9,0.2})\n end\n",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "ad222a",
"Name": "Custom_Token",
"Transform": {
"posX": 36.6243553,
"posY": 1.33610249,
"posZ": -56.6084175,
"rotX": 0.0208259355,
"rotY": 269.9897,
"rotZ": 0.016725529,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "TDL - 3B",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"tdlmat_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,
"CustomImage": {
"ImageURL": "https://i.ibb.co/yWXVPcN/Dunwich-3-Miskatonic-Museum-Richard-Wright.jpg",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "function onLoad()\n local params = {}\n params.click_function = 'updateSurface'\n params.function_owner = self\n params.label = 'Apply'\n params.tooltip= 'Left click to apply image, right click to revert to default.'\n params.position = {0,0.05,-1.6}\n params.rotation = {0,0,0}\n params.height = 250\n params.width = 580\n params.color = {0,0,0}\n params.font_color = {1,1,1}\n self.createButton(params)\nend\n\n function updateSurface(obj, color, alt_click)\n obj_surface = getObjectFromGUID(\"721ba2\")\n local customInfo = obj_surface.getCustomObject()\n if alt_click == false then\n customInfo.image = \"https://i.ibb.co/yWXVPcN/Dunwich-3-Miskatonic-Museum-Richard-Wright.jpg\"\n else\n customInfo.image = \"http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/\"\n end\n obj_surface.setCustomObject(customInfo)\n obj_surface = obj_surface.reload()\n broadcastToAll(\"New Playmat Image Applied\", {0.2,0.9,0.2})\n end\n",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "490ee5",
"Name": "Custom_Token",
"Transform": {
"posX": 40.2910538,
"posY": 1.386252,
"posZ": -65.8197861,
"rotX": 358.4573,
"rotY": 269.983246,
"rotZ": 0.0166635364,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "TDL - 5A",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"tdlmat_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,
"CustomImage": {
"ImageURL": "https://i.ibb.co/3CYHDhf/Dunwich-5-Blood-on-the-Altar.jpg",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "function onLoad()\n local params = {}\n params.click_function = 'updateSurface'\n params.function_owner = self\n params.label = 'Apply'\n params.tooltip= 'Left click to apply image, right click to revert to default.'\n params.position = {0,0.05,-1.6}\n params.rotation = {0,0,0}\n params.height = 250\n params.width = 580\n params.color = {0,0,0}\n params.font_color = {1,1,1}\n self.createButton(params)\nend\n\n function updateSurface(obj, color, alt_click)\n obj_surface = getObjectFromGUID(\"721ba2\")\n local customInfo = obj_surface.getCustomObject()\n if alt_click == false then\n customInfo.image = \"https://i.ibb.co/3CYHDhf/Dunwich-5-Blood-on-the-Altar.jpg\"\n else\n customInfo.image = \"http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/\"\n end\n obj_surface.setCustomObject(customInfo)\n obj_surface = obj_surface.reload()\n broadcastToAll(\"New Playmat Image Applied\", {0.2,0.9,0.2})\n end\n",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "ec83a8",
"Name": "Custom_Token",
"Transform": {
"posX": 36.62543,
"posY": 1.38528061,
"posZ": -65.8083038,
"rotX": 358.446259,
"rotY": 269.979736,
"rotZ": 0.0167261846,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "TDL - 5B",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"tdlmat_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,
"CustomImage": {
"ImageURL": "https://i.ibb.co/kBPNGBd/Dunwich-5-Blood-on-the-Altar-Mark-Molnar.jpg",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "function onLoad()\n local params = {}\n params.click_function = 'updateSurface'\n params.function_owner = self\n params.label = 'Apply'\n params.tooltip= 'Left click to apply image, right click to revert to default.'\n params.position = {0,0.05,-1.6}\n params.rotation = {0,0,0}\n params.height = 250\n params.width = 580\n params.color = {0,0,0}\n params.font_color = {1,1,1}\n self.createButton(params)\nend\n\n function updateSurface(obj, color, alt_click)\n obj_surface = getObjectFromGUID(\"721ba2\")\n local customInfo = obj_surface.getCustomObject()\n if alt_click == false then\n customInfo.image = \"https://i.ibb.co/kBPNGBd/Dunwich-5-Blood-on-the-Altar-Mark-Molnar.jpg\"\n else\n customInfo.image = \"http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/\"\n end\n obj_surface.setCustomObject(customInfo)\n obj_surface = obj_surface.reload()\n broadcastToAll(\"New Playmat Image Applied\", {0.2,0.9,0.2})\n end\n",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "53627d",
"Name": "Custom_Token",
"Transform": {
"posX": 32.9853058,
"posY": 1.33208382,
"posZ": -65.80825,
"rotX": 0.0208544619,
"rotY": 269.984833,
"rotZ": 0.0165630821,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "TDL - 5C",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"tdlmat_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,
"CustomImage": {
"ImageURL": "https://i.ibb.co/sJf6YsZ/Dunwich-5-Blood-on-the-Altar-Lucas-Staniec.jpg",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "function onLoad()\n local params = {}\n params.click_function = 'updateSurface'\n params.function_owner = self\n params.label = 'Apply'\n params.tooltip= 'Left click to apply image, right click to revert to default.'\n params.position = {0,0.05,-1.6}\n params.rotation = {0,0,0}\n params.height = 250\n params.width = 580\n params.color = {0,0,0}\n params.font_color = {1,1,1}\n self.createButton(params)\nend\n\n function updateSurface(obj, color, alt_click)\n obj_surface = getObjectFromGUID(\"721ba2\")\n local customInfo = obj_surface.getCustomObject()\n if alt_click == false then\n customInfo.image = \"https://i.ibb.co/sJf6YsZ/Dunwich-5-Blood-on-the-Altar-Lucas-Staniec.jpg\"\n else\n customInfo.image = \"http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/\"\n end\n obj_surface.setCustomObject(customInfo)\n obj_surface = obj_surface.reload()\n broadcastToAll(\"New Playmat Image Applied\", {0.2,0.9,0.2})\n end\n",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "21d971",
"Name": "Custom_Token",
"Transform": {
"posX": 40.29007,
"posY": 1.38490248,
"posZ": -70.4198456,
"rotX": 358.457336,
"rotY": 269.9871,
"rotZ": 0.01680019,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "TDL - 6A",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"tdlmat_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,
"CustomImage": {
"ImageURL": "https://i.ibb.co/wwGDcq6/Dunwich-6-Undimensioned-and-Unseen-Tomasz-Jedruszek.jpg",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "function onLoad()\n local params = {}\n params.click_function = 'updateSurface'\n params.function_owner = self\n params.label = 'Apply'\n params.tooltip= 'Left click to apply image, right click to revert to default.'\n params.position = {0,0.05,-1.6}\n params.rotation = {0,0,0}\n params.height = 250\n params.width = 580\n params.color = {0,0,0}\n params.font_color = {1,1,1}\n self.createButton(params)\nend\n\n function updateSurface(obj, color, alt_click)\n obj_surface = getObjectFromGUID(\"721ba2\")\n local customInfo = obj_surface.getCustomObject()\n if alt_click == false then\n customInfo.image = \"https://i.ibb.co/wwGDcq6/Dunwich-6-Undimensioned-and-Unseen-Tomasz-Jedruszek.jpg\"\n else\n customInfo.image = \"http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/\"\n end\n obj_surface.setCustomObject(customInfo)\n obj_surface = obj_surface.reload()\n broadcastToAll(\"New Playmat Image Applied\", {0.2,0.9,0.2})\n end\n",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "6f347f",
"Name": "Custom_Token",
"Transform": {
"posX": 36.6221657,
"posY": 1.33206725,
"posZ": -70.40839,
"rotX": 0.0207578614,
"rotY": 269.9952,
"rotZ": 0.0169360768,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "TDL - 6B",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"tdlmat_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,
"CustomImage": {
"ImageURL": "https://i.ibb.co/wBFsS8P/Dunwich-6-Undimensioned-and-Unseen-Michal-Teliga-jpg.jpg",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "function onLoad()\n local params = {}\n params.click_function = 'updateSurface'\n params.function_owner = self\n params.label = 'Apply'\n params.tooltip= 'Left click to apply image, right click to revert to default.'\n params.position = {0,0.05,-1.6}\n params.rotation = {0,0,0}\n params.height = 250\n params.width = 580\n params.color = {0,0,0}\n params.font_color = {1,1,1}\n self.createButton(params)\nend\n\n function updateSurface(obj, color, alt_click)\n obj_surface = getObjectFromGUID(\"721ba2\")\n local customInfo = obj_surface.getCustomObject()\n if alt_click == false then\n customInfo.image = \"https://i.ibb.co/wBFsS8P/Dunwich-6-Undimensioned-and-Unseen-Michal-Teliga-jpg.jpg\"\n else\n customInfo.image = \"http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/\"\n end\n obj_surface.setCustomObject(customInfo)\n obj_surface = obj_surface.reload()\n broadcastToAll(\"New Playmat Image Applied\", {0.2,0.9,0.2})\n end\n",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "cbbd36",
"Name": "Custom_Token",
"Transform": {
"posX": 32.9821777,
"posY": 1.38261712,
"posZ": -70.40797,
"rotX": 1.5956794,
"rotY": 269.9641,
"rotZ": 0.01611429,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "TDL - 6C",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"tdlmat_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,
"CustomImage": {
"ImageURL": "https://i.ibb.co/QvfhjDv/Dunwich-6-Undimensioned-and-Unseen-Frej-Agelii.jpg",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "function onLoad()\n local params = {}\n params.click_function = 'updateSurface'\n params.function_owner = self\n params.label = 'Apply'\n params.tooltip= 'Left click to apply image, right click to revert to default.'\n params.position = {0,0.05,-1.6}\n params.rotation = {0,0,0}\n params.height = 250\n params.width = 580\n params.color = {0,0,0}\n params.font_color = {1,1,1}\n self.createButton(params)\nend\n\n function updateSurface(obj, color, alt_click)\n obj_surface = getObjectFromGUID(\"721ba2\")\n local customInfo = obj_surface.getCustomObject()\n if alt_click == false then\n customInfo.image = \"https://i.ibb.co/QvfhjDv/Dunwich-6-Undimensioned-and-Unseen-Frej-Agelii.jpg\"\n else\n customInfo.image = \"http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/\"\n end\n obj_surface.setCustomObject(customInfo)\n obj_surface = obj_surface.reload()\n broadcastToAll(\"New Playmat Image Applied\", {0.2,0.9,0.2})\n end\n",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "0d397a",
"Name": "Custom_Token",
"Transform": {
"posX": 40.29008,
"posY": 1.38356,
"posZ": -75.01998,
"rotX": 358.4571,
"rotY": 269.984772,
"rotZ": 0.01680457,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "TDL - 7A",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"tdlmat_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,
"CustomImage": {
"ImageURL": "https://i.ibb.co/TvMwqj4/Dunwich-7-Where-Doom-Awaits.jpg",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "function onLoad()\n local params = {}\n params.click_function = 'updateSurface'\n params.function_owner = self\n params.label = 'Apply'\n params.tooltip= 'Left click to apply image, right click to revert to default.'\n params.position = {0,0.05,-1.6}\n params.rotation = {0,0,0}\n params.height = 250\n params.width = 580\n params.color = {0,0,0}\n params.font_color = {1,1,1}\n self.createButton(params)\nend\n\n function updateSurface(obj, color, alt_click)\n obj_surface = getObjectFromGUID(\"721ba2\")\n local customInfo = obj_surface.getCustomObject()\n if alt_click == false then\n customInfo.image = \"https://i.ibb.co/TvMwqj4/Dunwich-7-Where-Doom-Awaits.jpg\"\n else\n customInfo.image = \"http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/\"\n end\n obj_surface.setCustomObject(customInfo)\n obj_surface = obj_surface.reload()\n broadcastToAll(\"New Playmat Image Applied\", {0.2,0.9,0.2})\n end\n",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "b70302",
"Name": "Custom_Token",
"Transform": {
"posX": 36.62432,
"posY": 1.38259935,
"posZ": -75.00838,
"rotX": 358.4462,
"rotY": 269.995972,
"rotZ": 0.0170544758,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "TDL - 7B",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"tdlmat_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,
"CustomImage": {
"ImageURL": "https://i.ibb.co/S6cSLH9/Dunwich-7-Where-Doom-Awaits-3.jpg",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "function onLoad()\n local params = {}\n params.click_function = 'updateSurface'\n params.function_owner = self\n params.label = 'Apply'\n params.tooltip= 'Left click to apply image, right click to revert to default.'\n params.position = {0,0.05,-1.6}\n params.rotation = {0,0,0}\n params.height = 250\n params.width = 580\n params.color = {0,0,0}\n params.font_color = {1,1,1}\n self.createButton(params)\nend\n\n function updateSurface(obj, color, alt_click)\n obj_surface = getObjectFromGUID(\"721ba2\")\n local customInfo = obj_surface.getCustomObject()\n if alt_click == false then\n customInfo.image = \"https://i.ibb.co/S6cSLH9/Dunwich-7-Where-Doom-Awaits-3.jpg\"\n else\n customInfo.image = \"http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/\"\n end\n obj_surface.setCustomObject(customInfo)\n obj_surface = obj_surface.reload()\n broadcastToAll(\"New Playmat Image Applied\", {0.2,0.9,0.2})\n end\n",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "7ec346",
"Name": "Custom_Token",
"Transform": {
"posX": 32.9853172,
"posY": 1.38119245,
"posZ": -75.00836,
"rotX": 358.4486,
"rotY": 270.005829,
"rotZ": 0.0167736746,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "TDL - 7C",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"tdlmat_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,
"CustomImage": {
"ImageURL": "https://i.ibb.co/khBX32g/Dunwich-7-Where-Doom-Awaits-4.jpg",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "function onLoad()\n local params = {}\n params.click_function = 'updateSurface'\n params.function_owner = self\n params.label = 'Apply'\n params.tooltip= 'Left click to apply image, right click to revert to default.'\n params.position = {0,0.05,-1.6}\n params.rotation = {0,0,0}\n params.height = 250\n params.width = 580\n params.color = {0,0,0}\n params.font_color = {1,1,1}\n self.createButton(params)\nend\n\n function updateSurface(obj, color, alt_click)\n obj_surface = getObjectFromGUID(\"721ba2\")\n local customInfo = obj_surface.getCustomObject()\n if alt_click == false then\n customInfo.image = \"https://i.ibb.co/khBX32g/Dunwich-7-Where-Doom-Awaits-4.jpg\"\n else\n customInfo.image = \"http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/\"\n end\n obj_surface.setCustomObject(customInfo)\n obj_surface = obj_surface.reload()\n broadcastToAll(\"New Playmat Image Applied\", {0.2,0.9,0.2})\n end\n",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "0964f0",
"Name": "Custom_Token",
"Transform": {
"posX": 29.3400879,
"posY": 1.33480465,
"posZ": -52.0096321,
"rotX": 0.02065971,
"rotY": 270.028656,
"rotZ": 0.0167987309,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "TDL - 2D",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"tdlmat_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,
"CustomImage": {
"ImageURL": "https://i.ibb.co/HtX95GK/Dunwich-2-House-Always-Wins-Robert-Laskey.jpg",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "function onLoad()\n local params = {}\n params.click_function = 'updateSurface'\n params.function_owner = self\n params.label = 'Apply'\n params.tooltip= 'Left click to apply image, right click to revert to default.'\n params.position = {0,0.05,-1.6}\n params.rotation = {0,0,0}\n params.height = 250\n params.width = 580\n params.color = {0,0,0}\n params.font_color = {1,1,1}\n self.createButton(params)\nend\n\n function updateSurface(obj, color, alt_click)\n obj_surface = getObjectFromGUID(\"721ba2\")\n local customInfo = obj_surface.getCustomObject()\n if alt_click == false then\n customInfo.image = \"https://i.ibb.co/HtX95GK/Dunwich-2-House-Always-Wins-Robert-Laskey.jpg\"\n else\n customInfo.image = \"http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/\"\n end\n obj_surface.setCustomObject(customInfo)\n obj_surface = obj_surface.reload()\n broadcastToAll(\"New Playmat Image Applied\", {0.2,0.9,0.2})\n end\n",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "5fa489",
"Name": "Custom_Token",
"Transform": {
"posX": 29.34008,
"posY": 1.38254678,
"posZ": -65.80846,
"rotX": 1.5925113,
"rotY": 269.987854,
"rotZ": 0.0167957861,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "TDL - 5D",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"tdlmat_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,
"CustomImage": {
"ImageURL": "https://i.ibb.co/FbxcCY2/Dunwich-5-Blood-on-the-Altar-Chris-Ostrowski.jpg",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "function onLoad()\n local params = {}\n params.click_function = 'updateSurface'\n params.function_owner = self\n params.label = 'Apply'\n params.tooltip= 'Left click to apply image, right click to revert to default.'\n params.position = {0,0.05,-1.6}\n params.rotation = {0,0,0}\n params.height = 250\n params.width = 580\n params.color = {0,0,0}\n params.font_color = {1,1,1}\n self.createButton(params)\nend\n\n function updateSurface(obj, color, alt_click)\n obj_surface = getObjectFromGUID(\"721ba2\")\n local customInfo = obj_surface.getCustomObject()\n if alt_click == false then\n customInfo.image = \"https://i.ibb.co/FbxcCY2/Dunwich-5-Blood-on-the-Altar-Chris-Ostrowski.jpg\"\n else\n customInfo.image = \"http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/\"\n end\n obj_surface.setCustomObject(customInfo)\n obj_surface = obj_surface.reload()\n broadcastToAll(\"New Playmat Image Applied\", {0.2,0.9,0.2})\n end\n",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "b32939",
"Name": "Custom_Token",
"Transform": {
"posX": 29.33884,
"posY": 1.381236,
"posZ": -70.40834,
"rotX": 1.59346235,
"rotY": 270.0352,
"rotZ": 0.0180397946,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "TDL - 6D",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"tdlmat_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,
"CustomImage": {
"ImageURL": "https://i.ibb.co/4VL9gSK/Dunwich-6-Undimensioned-and-Unseen-Lucas-Staniec.jpg",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "function onLoad()\n local params = {}\n params.click_function = 'updateSurface'\n params.function_owner = self\n params.label = 'Apply'\n params.tooltip= 'Left click to apply image, right click to revert to default.'\n params.position = {0,0.05,-1.6}\n params.rotation = {0,0,0}\n params.height = 250\n params.width = 580\n params.color = {0,0,0}\n params.font_color = {1,1,1}\n self.createButton(params)\nend\n\n function updateSurface(obj, color, alt_click)\n obj_surface = getObjectFromGUID(\"721ba2\")\n local customInfo = obj_surface.getCustomObject()\n if alt_click == false then\n customInfo.image = \"https://i.ibb.co/4VL9gSK/Dunwich-6-Undimensioned-and-Unseen-Lucas-Staniec.jpg\"\n else\n customInfo.image = \"http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/\"\n end\n obj_surface.setCustomObject(customInfo)\n obj_surface = obj_surface.reload()\n broadcastToAll(\"New Playmat Image Applied\", {0.2,0.9,0.2})\n end\n",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "784bfe",
"Name": "Custom_Token",
"Transform": {
"posX": 29.3400784,
"posY": 1.32807159,
"posZ": -75.0085754,
"rotX": 0.0208187923,
"rotY": 270.017822,
"rotZ": 0.0167520549,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "TDL - 7D",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"tdlmat_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,
"CustomImage": {
"ImageURL": "https://i.ibb.co/S0hcwN8/Dunwich-7-Where-Doom-Awaits-5.jpg",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "function onLoad()\n local params = {}\n params.click_function = 'updateSurface'\n params.function_owner = self\n params.label = 'Apply'\n params.tooltip= 'Left click to apply image, right click to revert to default.'\n params.position = {0,0.05,-1.6}\n params.rotation = {0,0,0}\n params.height = 250\n params.width = 580\n params.color = {0,0,0}\n params.font_color = {1,1,1}\n self.createButton(params)\nend\n\n function updateSurface(obj, color, alt_click)\n obj_surface = getObjectFromGUID(\"721ba2\")\n local customInfo = obj_surface.getCustomObject()\n if alt_click == false then\n customInfo.image = \"https://i.ibb.co/S0hcwN8/Dunwich-7-Where-Doom-Awaits-5.jpg\"\n else\n customInfo.image = \"http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/\"\n end\n obj_surface.setCustomObject(customInfo)\n obj_surface = obj_surface.reload()\n broadcastToAll(\"New Playmat Image Applied\", {0.2,0.9,0.2})\n end\n",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "995d75",
"Name": "Custom_Token",
"Transform": {
"posX": 40.2900467,
"posY": 1.38220263,
"posZ": -79.61988,
"rotX": 358.45755,
"rotY": 269.9807,
"rotZ": 0.016783,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "TDL - 8A",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"tdlmat_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,
"CustomImage": {
"ImageURL": "https://i.ibb.co/0XcnxFD/Dunwich-8-Lost-in-Time-amp-Space-Lino-Drieghe.jpg",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "function onLoad()\n local params = {}\n params.click_function = 'updateSurface'\n params.function_owner = self\n params.label = 'Apply'\n params.tooltip= 'Left click to apply image, right click to revert to default.'\n params.position = {0,0.05,-1.6}\n params.rotation = {0,0,0}\n params.height = 250\n params.width = 580\n params.color = {0,0,0}\n params.font_color = {1,1,1}\n self.createButton(params)\nend\n\n function updateSurface(obj, color, alt_click)\n obj_surface = getObjectFromGUID(\"721ba2\")\n local customInfo = obj_surface.getCustomObject()\n if alt_click == false then\n customInfo.image = \"https://i.ibb.co/0XcnxFD/Dunwich-8-Lost-in-Time-amp-Space-Lino-Drieghe.jpg\"\n else\n customInfo.image = \"http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/\"\n end\n obj_surface.setCustomObject(customInfo)\n obj_surface = obj_surface.reload()\n broadcastToAll(\"New Playmat Image Applied\", {0.2,0.9,0.2})\n end\n",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "4bfe23",
"Name": "Custom_Token",
"Transform": {
"posX": 36.62436,
"posY": 1.3293699,
"posZ": -79.60827,
"rotX": 0.0208304,
"rotY": 269.9844,
"rotZ": 0.0167136323,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "TDL - 8B",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"tdlmat_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,
"CustomImage": {
"ImageURL": "https://i.ibb.co/rtTpbDx/Dunwich-8-Lost-in-Time-amp-Space.jpg",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "function onLoad()\n local params = {}\n params.click_function = 'updateSurface'\n params.function_owner = self\n params.label = 'Apply'\n params.tooltip= 'Left click to apply image, right click to revert to default.'\n params.position = {0,0.05,-1.6}\n params.rotation = {0,0,0}\n params.height = 250\n params.width = 580\n params.color = {0,0,0}\n params.font_color = {1,1,1}\n self.createButton(params)\nend\n\n function updateSurface(obj, color, alt_click)\n obj_surface = getObjectFromGUID(\"721ba2\")\n local customInfo = obj_surface.getCustomObject()\n if alt_click == false then\n customInfo.image = \"https://i.ibb.co/rtTpbDx/Dunwich-8-Lost-in-Time-amp-Space.jpg\"\n else\n customInfo.image = \"http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/\"\n end\n obj_surface.setCustomObject(customInfo)\n obj_surface = obj_surface.reload()\n broadcastToAll(\"New Playmat Image Applied\", {0.2,0.9,0.2})\n end\n",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "b1efff",
"Name": "Custom_Token",
"Transform": {
"posX": 32.9848,
"posY": 1.37997735,
"posZ": -79.6079941,
"rotX": 1.5954566,
"rotY": 269.9803,
"rotZ": 0.0166264847,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "TDL - 8C",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"tdlmat_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,
"CustomImage": {
"ImageURL": "https://i.ibb.co/dBXP0GL/Dunwich-8-Lost-in-Time-amp-Space-Chris-Ostrowski.jpg",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "function onLoad()\n local params = {}\n params.click_function = 'updateSurface'\n params.function_owner = self\n params.label = 'Apply'\n params.tooltip= 'Left click to apply image, right click to revert to default.'\n params.position = {0,0.05,-1.6}\n params.rotation = {0,0,0}\n params.height = 250\n params.width = 580\n params.color = {0,0,0}\n params.font_color = {1,1,1}\n self.createButton(params)\nend\n\n function updateSurface(obj, color, alt_click)\n obj_surface = getObjectFromGUID(\"721ba2\")\n local customInfo = obj_surface.getCustomObject()\n if alt_click == false then\n customInfo.image = \"https://i.ibb.co/dBXP0GL/Dunwich-8-Lost-in-Time-amp-Space-Chris-Ostrowski.jpg\"\n else\n customInfo.image = \"http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/\"\n end\n obj_surface.setCustomObject(customInfo)\n obj_surface = obj_surface.reload()\n broadcastToAll(\"New Playmat Image Applied\", {0.2,0.9,0.2})\n end\n",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "bebff6",
"Name": "Custom_Token",
"Transform": {
"posX": 25.4906025,
"posY": 1.32666838,
"posZ": -75.028244,
"rotX": 0.0208046213,
"rotY": 270.011475,
"rotZ": 0.0167748872,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "TDL - 7E",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"tdlmat_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,
"CustomImage": {
"ImageURL": "https://i.ibb.co/Lxv1Bjp/Dunwich-7-Where-Doom-Awaits-Luca-Trentin.jpg",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "function onLoad()\n local params = {}\n params.click_function = 'updateSurface'\n params.function_owner = self\n params.label = 'Apply'\n params.tooltip= 'Left click to apply image, right click to revert to default.'\n params.position = {0,0.05,-1.6}\n params.rotation = {0,0,0}\n params.height = 250\n params.width = 580\n params.color = {0,0,0}\n params.font_color = {1,1,1}\n self.createButton(params)\nend\n\n function updateSurface(obj, color, alt_click)\n obj_surface = getObjectFromGUID(\"721ba2\")\n local customInfo = obj_surface.getCustomObject()\n if alt_click == false then\n customInfo.image = \"https://i.ibb.co/Lxv1Bjp/Dunwich-7-Where-Doom-Awaits-Luca-Trentin.jpg\"\n else\n customInfo.image = \"http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/\"\n end\n obj_surface.setCustomObject(customInfo)\n obj_surface = obj_surface.reload()\n broadcastToAll(\"New Playmat Image Applied\", {0.2,0.9,0.2})\n end\n",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "b172b0",
"Name": "Bag",
"Transform": {
"posX": 45.63946,
"posY": 1.1029973,
"posZ": -61.20872,
"rotX": 359.979156,
"rotY": 89.98523,
"rotZ": 359.983215,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "The Forgotten Age",
"Description": "tfamat",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.153870881,
"g": 1.0,
"b": 0.0
},
"Tags": [
"playmat_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,
"MaterialIndex": -1,
"MeshIndex": -1,
"Bag": {
"Order": 0
},
"LuaScript": "---\r\n--- Generated by EmmyLua(https://github.com/EmmyLua)\r\n--- Created by Whimsical.\r\n--- DateTime: 2021-03-16 3:26 p.m.\r\n---\r\n\r\n--- Original Memory Bag by MrStump\r\n--- https://steamcommunity.com/sharedfiles/filedetails/?id=953770080\r\n\r\n---@class MemoryListEntry\r\n---@field public position Vector\r\n---@field public rotation Vector\r\n---@field public lock boolean\r\nlocal MemoryListEntry={}\r\n\r\n---@type table\r\nlocal memory_list = {}\r\n\r\nlocal POSTFIX = {\r\n SAVE = \"_memory_object\",\r\n ZONE = \"_memory_zone\",\r\n SHUFFLE = \"_memory_shuffle\"\r\n}\r\n\r\n---@type table\r\nlocal BUTTON = {\r\n POSITION = Vector(0, 0.3, -2),\r\n ROTATION = Vector(0, 180, 0),\r\n HEIGHT = 350,\r\n WIDTH = 800,\r\n FONT_SIZE = 250,\r\n COLOR = Color.Black,\r\n FONT_COLOR = Color.White\r\n}\r\n\r\nlocal ipairs = ipairs\r\nlocal pairs = pairs\r\n\r\n---@return string\r\nlocal function get_prefix()\r\n return self:getDescription()\r\nend\r\n\r\nlocal function updateSave()\r\n local data_to_save = {[\"ml\"]=memory_list}\r\n local saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\n---@param label string\r\n---@param action string\r\nlocal function createButton(label, action)\r\n self:clearButtons()\r\n\r\n ---@type CreateClassicUIButton\r\n local parameters = {\r\n label = label,\r\n click_function = action,\r\n function_owner = self\r\n }\r\n\r\n for key, value in pairs(BUTTON) do\r\n parameters[key:lower()] = value\r\n end\r\n\r\n self:createButton(parameters)\r\nend\r\n\r\nlocal function create_place_button() createButton(\"Place\", \"place_objects\") end\r\nlocal function create_recall_button() createButton(\"Recall\", \"recall_objects\") end\r\n\r\n---@param tag string\r\n---@param lock boolean\r\n---@return fun(object:TTSObject)\r\nlocal function create_object_callback(tag, lock)\r\n ---@param object TTSObject\r\n return function (object)\r\n object:setLock(lock)\r\n if object:hasTag(tag) then object:shuffle() end\r\n end\r\nend\r\n\r\n---@param object TTSObject\r\nlocal function record_objects(object)\r\n memory_list[object:getGUID()] = {\r\n position = object:getPosition(),\r\n rotation = object:getRotation(),\r\n lock = object:getLock()\r\n }\r\n self:putObject(object)\r\nend\r\n\r\n---@param objects TTSObject[]\r\nlocal function update_objects(objects)\r\n for _, object in ipairs(objects) do\r\n record_objects(object)\r\n end\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction place_objects()\r\n local prefix = get_prefix()\r\n local shuffle_tag = prefix .. POSTFIX.SHUFFLE\r\n local content = self.getObjects()\r\n\r\n for _, item in ipairs(content) do\r\n local entry = memory_list[item.guid]\r\n if entry then\r\n self.takeObject {\r\n guid=item.guid,\r\n position=entry.position,\r\n rotation=entry.rotation,\r\n callback_function = create_object_callback(shuffle_tag, entry.lock)\r\n }\r\n end\r\n end\r\n\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\n create_recall_button()\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction recall_objects()\r\n memory_list = {}\r\n local prefix = get_prefix()\r\n\r\n if prefix==\"\" then\r\n broadcastToAll(\"Error in Memory Bag: Tag prefix not set.\")\r\n return\r\n end\r\n\r\n local save_tag = prefix .. POSTFIX.SAVE\r\n local zone_tag = prefix .. POSTFIX.ZONE\r\n\r\n local zones = getObjectsWithTag(zone_tag)\r\n if #zones>0 then\r\n for _, zone in ipairs(zones) do\r\n update_objects(zone:getObjects())\r\n end\r\n else\r\n update_objects(getObjectsWithTag(save_tag))\r\n end\r\n updateSave()\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\n create_place_button()\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memory_list = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memory_list = {}\r\n end\r\n\r\n if self:getQuantity()==0 then\r\n create_recall_button()\r\n else\r\n create_place_button()\r\n end\r\nend",
"LuaScriptState": "{\"ml\":{\"021c1b\":{\"lock\":false,\"position\":{\"x\":40.2875709533691,\"y\":1.3808581829071,\"z\":-84.2085189819336},\"rotation\":{\"x\":358.459014892578,\"y\":269.972747802734,\"z\":0.0169319715350866}},\"053d7c\":{\"lock\":false,\"position\":{\"x\":32.9852981567383,\"y\":1.32939565181732,\"z\":-75.0084381103516},\"rotation\":{\"x\":0.02073809877038,\"y\":270.000335693359,\"z\":0.016705384477973}},\"0c5d69\":{\"lock\":false,\"position\":{\"x\":32.9852981567383,\"y\":1.33612680435181,\"z\":-52.0095405578613},\"rotation\":{\"x\":0.0208171270787716,\"y\":269.98291015625,\"z\":0.0167093388736248}},\"18f3be\":{\"lock\":false,\"position\":{\"x\":36.6238288879395,\"y\":1.3812335729599,\"z\":-79.6084289550781},\"rotation\":{\"x\":358.446472167969,\"y\":269.9794921875,\"z\":0.0168852042406797}},\"282d25\":{\"lock\":false,\"position\":{\"x\":40.2900543212891,\"y\":1.39028000831604,\"z\":-52.0199737548828},\"rotation\":{\"x\":358.457641601563,\"y\":269.978851318359,\"z\":0.0168040823191404}},\"2b14a7\":{\"lock\":false,\"position\":{\"x\":36.6243591308594,\"y\":1.38933229446411,\"z\":-52.0084075927734},\"rotation\":{\"x\":358.446075439453,\"y\":269.982360839844,\"z\":0.0168056171387434}},\"2b16af\":{\"lock\":false,\"position\":{\"x\":36.624568939209,\"y\":1.38662624359131,\"z\":-61.2083930969238},\"rotation\":{\"x\":358.447784423828,\"y\":269.962463378906,\"z\":0.0169158354401588}},\"31a48f\":{\"lock\":false,\"position\":{\"x\":32.984992980957,\"y\":1.33343350887299,\"z\":-61.2083930969238},\"rotation\":{\"x\":0.0198651291429996,\"y\":269.979614257813,\"z\":0.0165644437074661}},\"325a77\":{\"lock\":false,\"position\":{\"x\":36.6243591308594,\"y\":1.3334094285965,\"z\":-65.8082809448242},\"rotation\":{\"x\":0.0208267085254192,\"y\":269.983184814453,\"z\":0.0167188979685307}},\"42c201\":{\"lock\":false,\"position\":{\"x\":32.9837493896484,\"y\":1.43936955928802,\"z\":-47.4096641540527},\"rotation\":{\"x\":0.0768025517463684,\"y\":269.8291015625,\"z\":0.0124329905956984}},\"50a644\":{\"lock\":false,\"position\":{\"x\":36.6242752075195,\"y\":1.38259315490723,\"z\":-75.0084838867188},\"rotation\":{\"x\":358.446228027344,\"y\":269.988464355469,\"z\":0.0168090295046568}},\"680ebc\":{\"lock\":false,\"position\":{\"x\":40.2900428771973,\"y\":1.34011721611023,\"z\":-47.4199676513672},\"rotation\":{\"x\":0.0210752561688423,\"y\":270.015319824219,\"z\":0.0165243372321129}},\"92bec7\":{\"lock\":false,\"position\":{\"x\":40.2926330566406,\"y\":1.38218510150909,\"z\":-79.6199340820313},\"rotation\":{\"x\":358.458770751953,\"y\":270.000427246094,\"z\":0.0163544565439224}},\"9dcd0b\":{\"lock\":false,\"position\":{\"x\":40.2900810241699,\"y\":1.33743155002594,\"z\":-56.6199836730957},\"rotation\":{\"x\":0.0208146944642067,\"y\":269.980804443359,\"z\":0.0167645644396544}},\"ac1189\":{\"lock\":false,\"position\":{\"x\":40.289924621582,\"y\":1.38761913776398,\"z\":-61.2197532653809},\"rotation\":{\"x\":358.456939697266,\"y\":269.994445800781,\"z\":0.0169746391475201}},\"c9e359\":{\"lock\":false,\"position\":{\"x\":32.9839820861816,\"y\":1.3280485868454,\"z\":-79.6083984375},\"rotation\":{\"x\":0.0201026313006878,\"y\":269.980010986328,\"z\":0.0167114678770304}},\"caf51e\":{\"lock\":false,\"position\":{\"x\":40.2897300720215,\"y\":1.38356018066406,\"z\":-75.0200500488281},\"rotation\":{\"x\":358.457275390625,\"y\":269.988403320313,\"z\":0.0168066471815109}},\"cfbb3a\":{\"lock\":false,\"position\":{\"x\":29.3380336761475,\"y\":1.33616042137146,\"z\":-47.4108543395996},\"rotation\":{\"x\":0.0186033509671688,\"y\":269.838012695313,\"z\":0.0168211944401264}},\"d0c65d\":{\"lock\":false,\"position\":{\"x\":36.6234588623047,\"y\":1.39028167724609,\"z\":-47.4083480834961},\"rotation\":{\"x\":1.58323085308075,\"y\":269.984588623047,\"z\":0.0166565980762243}},\"d30cd9\":{\"lock\":false,\"position\":{\"x\":40.2900695800781,\"y\":1.33339202404022,\"z\":-70.4198455810547},\"rotation\":{\"x\":0.0208108928054571,\"y\":269.992828369141,\"z\":0.0167683735489845}},\"deb491\":{\"lock\":false,\"position\":{\"x\":40.2900581359863,\"y\":1.38624215126038,\"z\":-65.8198394775391},\"rotation\":{\"x\":358.457550048828,\"y\":269.977416992188,\"z\":0.0167841203510761}},\"f85e49\":{\"lock\":false,\"position\":{\"x\":25.5162200927734,\"y\":1.33475422859192,\"z\":-47.4359703063965},\"rotation\":{\"x\":0.02083470672369,\"y\":269.912170410156,\"z\":0.0167392510920763}},\"fdc988\":{\"lock\":false,\"position\":{\"x\":36.6213645935059,\"y\":1.32802617549896,\"z\":-84.1988296508789},\"rotation\":{\"x\":0.0201081596314907,\"y\":269.929565429688,\"z\":0.01691191829741}}}}",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "680ebc",
"Name": "Custom_Token",
"Transform": {
"posX": 40.2900429,
"posY": 1.34011722,
"posZ": -47.4199677,
"rotX": 0.0210752562,
"rotY": 270.01532,
"rotZ": 0.0165243372,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "TFA - 1A",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"tfamat_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,
"CustomImage": {
"ImageURL": "https://i.ibb.co/HPbJwXk/Forgotten-Age-1-Untamed-Wilds-Lucas-Staniec.jpg",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "function onLoad()\n local params = {}\n params.click_function = 'updateSurface'\n params.function_owner = self\n params.label = 'Apply'\n params.tooltip= 'Left click to apply image, right click to revert to default.'\n params.position = {0,0.05,-1.6}\n params.rotation = {0,0,0}\n params.height = 250\n params.width = 580\n params.color = {0,0,0}\n params.font_color = {1,1,1}\n self.createButton(params)\nend\n\n function updateSurface(obj, color, alt_click)\n obj_surface = getObjectFromGUID(\"721ba2\")\n local customInfo = obj_surface.getCustomObject()\n if alt_click == false then\n customInfo.image = \"https://i.ibb.co/HPbJwXk/Forgotten-Age-1-Untamed-Wilds-Lucas-Staniec.jpg\"\n else\n customInfo.image = \"http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/\"\n end\n obj_surface.setCustomObject(customInfo)\n obj_surface = obj_surface.reload()\n broadcastToAll(\"New Playmat Image Applied\", {0.2,0.9,0.2})\n end\n",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "282d25",
"Name": "Custom_Token",
"Transform": {
"posX": 40.2900543,
"posY": 1.39028,
"posZ": -52.0199738,
"rotX": 358.457642,
"rotY": 269.978851,
"rotZ": 0.0168040823,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "TFA - 2A",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"tfamat_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,
"CustomImage": {
"ImageURL": "https://i.ibb.co/Pw4by4q/Forgotten-Age-2-Doom-of-Eztli-Cristi-Balanescu.jpg",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "function onLoad()\n local params = {}\n params.click_function = 'updateSurface'\n params.function_owner = self\n params.label = 'Apply'\n params.tooltip= 'Left click to apply image, right click to revert to default.'\n params.position = {0,0.05,-1.6}\n params.rotation = {0,0,0}\n params.height = 250\n params.width = 580\n params.color = {0,0,0}\n params.font_color = {1,1,1}\n self.createButton(params)\nend\n\n function updateSurface(obj, color, alt_click)\n obj_surface = getObjectFromGUID(\"721ba2\")\n local customInfo = obj_surface.getCustomObject()\n if alt_click == false then\n customInfo.image = \"https://i.ibb.co/Pw4by4q/Forgotten-Age-2-Doom-of-Eztli-Cristi-Balanescu.jpg\"\n else\n customInfo.image = \"http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/\"\n end\n obj_surface.setCustomObject(customInfo)\n obj_surface = obj_surface.reload()\n broadcastToAll(\"New Playmat Image Applied\", {0.2,0.9,0.2})\n end\n",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "2b14a7",
"Name": "Custom_Token",
"Transform": {
"posX": 36.62436,
"posY": 1.38933229,
"posZ": -52.0084076,
"rotX": 358.446075,
"rotY": 269.982361,
"rotZ": 0.0168056171,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "TFA - 2B",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"tfamat_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,
"CustomImage": {
"ImageURL": "https://i.ibb.co/xqW6cXR/Forgotten-Age-2-Doom-of-Eztli-Greg-Bobrowski.jpg",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "function onLoad()\n local params = {}\n params.click_function = 'updateSurface'\n params.function_owner = self\n params.label = 'Apply'\n params.tooltip= 'Left click to apply image, right click to revert to default.'\n params.position = {0,0.05,-1.6}\n params.rotation = {0,0,0}\n params.height = 250\n params.width = 580\n params.color = {0,0,0}\n params.font_color = {1,1,1}\n self.createButton(params)\nend\n\n function updateSurface(obj, color, alt_click)\n obj_surface = getObjectFromGUID(\"721ba2\")\n local customInfo = obj_surface.getCustomObject()\n if alt_click == false then\n customInfo.image = \"https://i.ibb.co/xqW6cXR/Forgotten-Age-2-Doom-of-Eztli-Greg-Bobrowski.jpg\"\n else\n customInfo.image = \"http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/\"\n end\n obj_surface.setCustomObject(customInfo)\n obj_surface = obj_surface.reload()\n broadcastToAll(\"New Playmat Image Applied\", {0.2,0.9,0.2})\n end\n",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "9dcd0b",
"Name": "Custom_Token",
"Transform": {
"posX": 40.29008,
"posY": 1.33743155,
"posZ": -56.6199837,
"rotX": 0.0208146945,
"rotY": 269.9808,
"rotZ": 0.0167645644,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "TFA - 3",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"tfamat_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,
"CustomImage": {
"ImageURL": "https://i.ibb.co/Bn0Pjng/Forgotten-Age-3-Threads-of-Fate-Jokubas-Uogintas.jpg",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "function onLoad()\n local params = {}\n params.click_function = 'updateSurface'\n params.function_owner = self\n params.label = 'Apply'\n params.tooltip= 'Left click to apply image, right click to revert to default.'\n params.position = {0,0.05,-1.6}\n params.rotation = {0,0,0}\n params.height = 250\n params.width = 580\n params.color = {0,0,0}\n params.font_color = {1,1,1}\n self.createButton(params)\nend\n\n function updateSurface(obj, color, alt_click)\n obj_surface = getObjectFromGUID(\"721ba2\")\n local customInfo = obj_surface.getCustomObject()\n if alt_click == false then\n customInfo.image = \"https://i.ibb.co/Bn0Pjng/Forgotten-Age-3-Threads-of-Fate-Jokubas-Uogintas.jpg\"\n else\n customInfo.image = \"http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/\"\n end\n obj_surface.setCustomObject(customInfo)\n obj_surface = obj_surface.reload()\n broadcastToAll(\"New Playmat Image Applied\", {0.2,0.9,0.2})\n end\n",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "d0c65d",
"Name": "Custom_Token",
"Transform": {
"posX": 36.62346,
"posY": 1.39028168,
"posZ": -47.4083481,
"rotX": 1.58323085,
"rotY": 269.9846,
"rotZ": 0.0166565981,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "TFA - 1B",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"tfamat_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,
"CustomImage": {
"ImageURL": "https://i.ibb.co/SnJfsNy/Forgotten-Age-1-Untamed-Wilds-David-Frasheski-2.jpg",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "function onLoad()\n local params = {}\n params.click_function = 'updateSurface'\n params.function_owner = self\n params.label = 'Apply'\n params.tooltip= 'Left click to apply image, right click to revert to default.'\n params.position = {0,0.05,-1.6}\n params.rotation = {0,0,0}\n params.height = 250\n params.width = 580\n params.color = {0,0,0}\n params.font_color = {1,1,1}\n self.createButton(params)\nend\n\n function updateSurface(obj, color, alt_click)\n obj_surface = getObjectFromGUID(\"721ba2\")\n local customInfo = obj_surface.getCustomObject()\n if alt_click == false then\n customInfo.image = \"https://i.ibb.co/SnJfsNy/Forgotten-Age-1-Untamed-Wilds-David-Frasheski-2.jpg\"\n else\n customInfo.image = \"http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/\"\n end\n obj_surface.setCustomObject(customInfo)\n obj_surface = obj_surface.reload()\n broadcastToAll(\"New Playmat Image Applied\", {0.2,0.9,0.2})\n end\n",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "42c201",
"Name": "Custom_Token",
"Transform": {
"posX": 32.98375,
"posY": 1.43936956,
"posZ": -47.4096642,
"rotX": 0.07680255,
"rotY": 269.8291,
"rotZ": 0.0124329906,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "TFA - 1C",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"tfamat_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,
"CustomImage": {
"ImageURL": "https://i.ibb.co/BLhwCG1/Forgotten-Age-1-Untamed-Wilds-David-Frasheski.jpg",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "function onLoad()\n local params = {}\n params.click_function = 'updateSurface'\n params.function_owner = self\n params.label = 'Apply'\n params.tooltip= 'Left click to apply image, right click to revert to default.'\n params.position = {0,0.05,-1.6}\n params.rotation = {0,0,0}\n params.height = 250\n params.width = 580\n params.color = {0,0,0}\n params.font_color = {1,1,1}\n self.createButton(params)\nend\n\n function updateSurface(obj, color, alt_click)\n obj_surface = getObjectFromGUID(\"721ba2\")\n local customInfo = obj_surface.getCustomObject()\n if alt_click == false then\n customInfo.image = \"https://i.ibb.co/BLhwCG1/Forgotten-Age-1-Untamed-Wilds-David-Frasheski.jpg\"\n else\n customInfo.image = \"http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/\"\n end\n obj_surface.setCustomObject(customInfo)\n obj_surface = obj_surface.reload()\n broadcastToAll(\"New Playmat Image Applied\", {0.2,0.9,0.2})\n end\n",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "0c5d69",
"Name": "Custom_Token",
"Transform": {
"posX": 32.9853,
"posY": 1.3361268,
"posZ": -52.00954,
"rotX": 0.0208171271,
"rotY": 269.9829,
"rotZ": 0.0167093389,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "TFA - 2C",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"tfamat_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,
"CustomImage": {
"ImageURL": "https://i.ibb.co/kgsC3pb/Forgotten-Age-2-Doom-of-Eztli-Nele-Diel.jpg",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "function onLoad()\n local params = {}\n params.click_function = 'updateSurface'\n params.function_owner = self\n params.label = 'Apply'\n params.tooltip= 'Left click to apply image, right click to revert to default.'\n params.position = {0,0.05,-1.6}\n params.rotation = {0,0,0}\n params.height = 250\n params.width = 580\n params.color = {0,0,0}\n params.font_color = {1,1,1}\n self.createButton(params)\nend\n\n function updateSurface(obj, color, alt_click)\n obj_surface = getObjectFromGUID(\"721ba2\")\n local customInfo = obj_surface.getCustomObject()\n if alt_click == false then\n customInfo.image = \"https://i.ibb.co/kgsC3pb/Forgotten-Age-2-Doom-of-Eztli-Nele-Diel.jpg\"\n else\n customInfo.image = \"http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/\"\n end\n obj_surface.setCustomObject(customInfo)\n obj_surface = obj_surface.reload()\n broadcastToAll(\"New Playmat Image Applied\", {0.2,0.9,0.2})\n end\n",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "ac1189",
"Name": "Custom_Token",
"Transform": {
"posX": 40.2899246,
"posY": 1.38761914,
"posZ": -61.2197533,
"rotX": 358.45694,
"rotY": 269.994446,
"rotZ": 0.01697464,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "TFA - 4A",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"tfamat_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,
"CustomImage": {
"ImageURL": "https://i.ibb.co/D1rh9Ry/Forgotten-Age-4-Boundary-Beyond-Nele-Diel.jpg",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "function onLoad()\n local params = {}\n params.click_function = 'updateSurface'\n params.function_owner = self\n params.label = 'Apply'\n params.tooltip= 'Left click to apply image, right click to revert to default.'\n params.position = {0,0.05,-1.6}\n params.rotation = {0,0,0}\n params.height = 250\n params.width = 580\n params.color = {0,0,0}\n params.font_color = {1,1,1}\n self.createButton(params)\nend\n\n function updateSurface(obj, color, alt_click)\n obj_surface = getObjectFromGUID(\"721ba2\")\n local customInfo = obj_surface.getCustomObject()\n if alt_click == false then\n customInfo.image = \"https://i.ibb.co/D1rh9Ry/Forgotten-Age-4-Boundary-Beyond-Nele-Diel.jpg\"\n else\n customInfo.image = \"http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/\"\n end\n obj_surface.setCustomObject(customInfo)\n obj_surface = obj_surface.reload()\n broadcastToAll(\"New Playmat Image Applied\", {0.2,0.9,0.2})\n end\n",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "2b16af",
"Name": "Custom_Token",
"Transform": {
"posX": 36.62457,
"posY": 1.38662624,
"posZ": -61.2083931,
"rotX": 358.447784,
"rotY": 269.962463,
"rotZ": 0.0169158354,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "TFA - 4B",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"tfamat_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,
"CustomImage": {
"ImageURL": "https://i.ibb.co/vm0JgFs/Forgotten-Age-4-Boundary-Beyond-Greg-Bobrowski-jpg.jpg",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "function onLoad()\n local params = {}\n params.click_function = 'updateSurface'\n params.function_owner = self\n params.label = 'Apply'\n params.tooltip= 'Left click to apply image, right click to revert to default.'\n params.position = {0,0.05,-1.6}\n params.rotation = {0,0,0}\n params.height = 250\n params.width = 580\n params.color = {0,0,0}\n params.font_color = {1,1,1}\n self.createButton(params)\nend\n\n function updateSurface(obj, color, alt_click)\n obj_surface = getObjectFromGUID(\"721ba2\")\n local customInfo = obj_surface.getCustomObject()\n if alt_click == false then\n customInfo.image = \"https://i.ibb.co/vm0JgFs/Forgotten-Age-4-Boundary-Beyond-Greg-Bobrowski-jpg.jpg\"\n else\n customInfo.image = \"http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/\"\n end\n obj_surface.setCustomObject(customInfo)\n obj_surface = obj_surface.reload()\n broadcastToAll(\"New Playmat Image Applied\", {0.2,0.9,0.2})\n end\n",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "31a48f",
"Name": "Custom_Token",
"Transform": {
"posX": 32.984993,
"posY": 1.33343351,
"posZ": -61.2083931,
"rotX": 0.01986513,
"rotY": 269.9796,
"rotZ": 0.0165644437,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "TFA - 4C",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"tfamat_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,
"CustomImage": {
"ImageURL": "https://i.ibb.co/yPZ9v2X/Forgotten-Age-4-Boundary-Beyond-Greg-Bobrowski-2-jpg.jpg",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "function onLoad()\n local params = {}\n params.click_function = 'updateSurface'\n params.function_owner = self\n params.label = 'Apply'\n params.tooltip= 'Left click to apply image, right click to revert to default.'\n params.position = {0,0.05,-1.6}\n params.rotation = {0,0,0}\n params.height = 250\n params.width = 580\n params.color = {0,0,0}\n params.font_color = {1,1,1}\n self.createButton(params)\nend\n\n function updateSurface(obj, color, alt_click)\n obj_surface = getObjectFromGUID(\"721ba2\")\n local customInfo = obj_surface.getCustomObject()\n if alt_click == false then\n customInfo.image = \"https://i.ibb.co/yPZ9v2X/Forgotten-Age-4-Boundary-Beyond-Greg-Bobrowski-2-jpg.jpg\"\n else\n customInfo.image = \"http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/\"\n end\n obj_surface.setCustomObject(customInfo)\n obj_surface = obj_surface.reload()\n broadcastToAll(\"New Playmat Image Applied\", {0.2,0.9,0.2})\n end\n",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "deb491",
"Name": "Custom_Token",
"Transform": {
"posX": 40.29006,
"posY": 1.38624215,
"posZ": -65.81984,
"rotX": 358.45755,
"rotY": 269.977417,
"rotZ": 0.01678412,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "TFA - 5A Part I",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"tfamat_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,
"CustomImage": {
"ImageURL": "https://i.ibb.co/jzKvv6P/Forgotten-Age-5-Heart-of-the-Elders-I-Lucas-Staniec.jpg",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "function onLoad()\n local params = {}\n params.click_function = 'updateSurface'\n params.function_owner = self\n params.label = 'Apply'\n params.tooltip= 'Left click to apply image, right click to revert to default.'\n params.position = {0,0.05,-1.6}\n params.rotation = {0,0,0}\n params.height = 250\n params.width = 580\n params.color = {0,0,0}\n params.font_color = {1,1,1}\n self.createButton(params)\nend\n\n function updateSurface(obj, color, alt_click)\n obj_surface = getObjectFromGUID(\"721ba2\")\n local customInfo = obj_surface.getCustomObject()\n if alt_click == false then\n customInfo.image = \"https://i.ibb.co/jzKvv6P/Forgotten-Age-5-Heart-of-the-Elders-I-Lucas-Staniec.jpg\"\n else\n customInfo.image = \"http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/\"\n end\n obj_surface.setCustomObject(customInfo)\n obj_surface = obj_surface.reload()\n broadcastToAll(\"New Playmat Image Applied\", {0.2,0.9,0.2})\n end\n",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "325a77",
"Name": "Custom_Token",
"Transform": {
"posX": 36.62436,
"posY": 1.33340943,
"posZ": -65.80828,
"rotX": 0.0208267085,
"rotY": 269.9832,
"rotZ": 0.016718898,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "TFA - 5B Part I",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"tfamat_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,
"CustomImage": {
"ImageURL": "https://i.ibb.co/mR79MX4/Forgotten-Age-5-Heart-of-the-Elders-I-Lucas-Staniec-2.jpg",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "function onLoad()\n local params = {}\n params.click_function = 'updateSurface'\n params.function_owner = self\n params.label = 'Apply'\n params.tooltip= 'Left click to apply image, right click to revert to default.'\n params.position = {0,0.05,-1.6}\n params.rotation = {0,0,0}\n params.height = 250\n params.width = 580\n params.color = {0,0,0}\n params.font_color = {1,1,1}\n self.createButton(params)\nend\n\n function updateSurface(obj, color, alt_click)\n obj_surface = getObjectFromGUID(\"721ba2\")\n local customInfo = obj_surface.getCustomObject()\n if alt_click == false then\n customInfo.image = \"https://i.ibb.co/mR79MX4/Forgotten-Age-5-Heart-of-the-Elders-I-Lucas-Staniec-2.jpg\"\n else\n customInfo.image = \"http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/\"\n end\n obj_surface.setCustomObject(customInfo)\n obj_surface = obj_surface.reload()\n broadcastToAll(\"New Playmat Image Applied\", {0.2,0.9,0.2})\n end\n",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "d30cd9",
"Name": "Custom_Token",
"Transform": {
"posX": 40.29007,
"posY": 1.333392,
"posZ": -70.4198456,
"rotX": 0.0208108928,
"rotY": 269.992828,
"rotZ": 0.0167683735,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "TFA - 5 Part II",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"tfamat_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,
"CustomImage": {
"ImageURL": "https://i.ibb.co/pQSbL0t/Forgotten-Age-5-Heart-of-the-Elders-II-Nele-Diel.jpg",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "function onLoad()\n local params = {}\n params.click_function = 'updateSurface'\n params.function_owner = self\n params.label = 'Apply'\n params.tooltip= 'Left click to apply image, right click to revert to default.'\n params.position = {0,0.05,-1.6}\n params.rotation = {0,0,0}\n params.height = 250\n params.width = 580\n params.color = {0,0,0}\n params.font_color = {1,1,1}\n self.createButton(params)\nend\n\n function updateSurface(obj, color, alt_click)\n obj_surface = getObjectFromGUID(\"721ba2\")\n local customInfo = obj_surface.getCustomObject()\n if alt_click == false then\n customInfo.image = \"https://i.ibb.co/pQSbL0t/Forgotten-Age-5-Heart-of-the-Elders-II-Nele-Diel.jpg\"\n else\n customInfo.image = \"http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/\"\n end\n obj_surface.setCustomObject(customInfo)\n obj_surface = obj_surface.reload()\n broadcastToAll(\"New Playmat Image Applied\", {0.2,0.9,0.2})\n end\n",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "caf51e",
"Name": "Custom_Token",
"Transform": {
"posX": 40.28973,
"posY": 1.38356018,
"posZ": -75.02005,
"rotX": 358.457275,
"rotY": 269.9884,
"rotZ": 0.0168066472,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "TFA - 6A",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"tfamat_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,
"CustomImage": {
"ImageURL": "https://i.ibb.co/qdPbSZ8/Forgotten-Age-6-City-of-Archives-Chris-Ostrowski.jpg",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "function onLoad()\n local params = {}\n params.click_function = 'updateSurface'\n params.function_owner = self\n params.label = 'Apply'\n params.tooltip= 'Left click to apply image, right click to revert to default.'\n params.position = {0,0.05,-1.6}\n params.rotation = {0,0,0}\n params.height = 250\n params.width = 580\n params.color = {0,0,0}\n params.font_color = {1,1,1}\n self.createButton(params)\nend\n\n function updateSurface(obj, color, alt_click)\n obj_surface = getObjectFromGUID(\"721ba2\")\n local customInfo = obj_surface.getCustomObject()\n if alt_click == false then\n customInfo.image = \"https://i.ibb.co/qdPbSZ8/Forgotten-Age-6-City-of-Archives-Chris-Ostrowski.jpg\"\n else\n customInfo.image = \"http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/\"\n end\n obj_surface.setCustomObject(customInfo)\n obj_surface = obj_surface.reload()\n broadcastToAll(\"New Playmat Image Applied\", {0.2,0.9,0.2})\n end\n",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "50a644",
"Name": "Custom_Token",
"Transform": {
"posX": 36.6242752,
"posY": 1.38259315,
"posZ": -75.0084839,
"rotX": 358.446228,
"rotY": 269.988464,
"rotZ": 0.01680903,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "TFA - 6B",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"tfamat_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,
"CustomImage": {
"ImageURL": "https://i.ibb.co/f04DSPb/Forgotten-Age-6-City-of-Archives.jpg",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "function onLoad()\n local params = {}\n params.click_function = 'updateSurface'\n params.function_owner = self\n params.label = 'Apply'\n params.tooltip= 'Left click to apply image, right click to revert to default.'\n params.position = {0,0.05,-1.6}\n params.rotation = {0,0,0}\n params.height = 250\n params.width = 580\n params.color = {0,0,0}\n params.font_color = {1,1,1}\n self.createButton(params)\nend\n\n function updateSurface(obj, color, alt_click)\n obj_surface = getObjectFromGUID(\"721ba2\")\n local customInfo = obj_surface.getCustomObject()\n if alt_click == false then\n customInfo.image = \"https://i.ibb.co/f04DSPb/Forgotten-Age-6-City-of-Archives.jpg\"\n else\n customInfo.image = \"http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/\"\n end\n obj_surface.setCustomObject(customInfo)\n obj_surface = obj_surface.reload()\n broadcastToAll(\"New Playmat Image Applied\", {0.2,0.9,0.2})\n end\n",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "cfbb3a",
"Name": "Custom_Token",
"Transform": {
"posX": 29.3380337,
"posY": 1.33616042,
"posZ": -47.4108543,
"rotX": 0.018603351,
"rotY": 269.838,
"rotZ": 0.0168211944,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "TFA - 1D",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"tfamat_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,
"CustomImage": {
"ImageURL": "https://i.ibb.co/kcx1tvp/Forgotten-Age-1-Untamed-Wilds-Ethan-Patrick-Harris.jpg",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "function onLoad()\n local params = {}\n params.click_function = 'updateSurface'\n params.function_owner = self\n params.label = 'Apply'\n params.tooltip= 'Left click to apply image, right click to revert to default.'\n params.position = {0,0.05,-1.6}\n params.rotation = {0,0,0}\n params.height = 250\n params.width = 580\n params.color = {0,0,0}\n params.font_color = {1,1,1}\n self.createButton(params)\nend\n\n function updateSurface(obj, color, alt_click)\n obj_surface = getObjectFromGUID(\"721ba2\")\n local customInfo = obj_surface.getCustomObject()\n if alt_click == false then\n customInfo.image = \"https://i.ibb.co/kcx1tvp/Forgotten-Age-1-Untamed-Wilds-Ethan-Patrick-Harris.jpg\"\n else\n customInfo.image = \"http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/\"\n end\n obj_surface.setCustomObject(customInfo)\n obj_surface = obj_surface.reload()\n broadcastToAll(\"New Playmat Image Applied\", {0.2,0.9,0.2})\n end\n",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "f85e49",
"Name": "Custom_Token",
"Transform": {
"posX": 25.51622,
"posY": 1.33475423,
"posZ": -47.43597,
"rotX": 0.0208347067,
"rotY": 269.91217,
"rotZ": 0.0167392511,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "TFA - 1E",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"tfamat_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,
"CustomImage": {
"ImageURL": "https://i.ibb.co/bbq1ZrK/Forgotten-Age-1-Untamed-Wilds-Nele-Diel.jpg",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "function onLoad()\n local params = {}\n params.click_function = 'updateSurface'\n params.function_owner = self\n params.label = 'Apply'\n params.tooltip= 'Left click to apply image, right click to revert to default.'\n params.position = {0,0.05,-1.6}\n params.rotation = {0,0,0}\n params.height = 250\n params.width = 580\n params.color = {0,0,0}\n params.font_color = {1,1,1}\n self.createButton(params)\nend\n\n function updateSurface(obj, color, alt_click)\n obj_surface = getObjectFromGUID(\"721ba2\")\n local customInfo = obj_surface.getCustomObject()\n if alt_click == false then\n customInfo.image = \"https://i.ibb.co/bbq1ZrK/Forgotten-Age-1-Untamed-Wilds-Nele-Diel.jpg\"\n else\n customInfo.image = \"http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/\"\n end\n obj_surface.setCustomObject(customInfo)\n obj_surface = obj_surface.reload()\n broadcastToAll(\"New Playmat Image Applied\", {0.2,0.9,0.2})\n end\n",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "053d7c",
"Name": "Custom_Token",
"Transform": {
"posX": 32.9853,
"posY": 1.32939565,
"posZ": -75.00844,
"rotX": 0.0207380988,
"rotY": 270.000336,
"rotZ": 0.0167053845,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "TFA - 6C",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"tfamat_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,
"CustomImage": {
"ImageURL": "https://i.ibb.co/WsSBrYj/Forgotten-Age-6-City-of-Archives-2.jpg",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "function onLoad()\n local params = {}\n params.click_function = 'updateSurface'\n params.function_owner = self\n params.label = 'Apply'\n params.tooltip= 'Left click to apply image, right click to revert to default.'\n params.position = {0,0.05,-1.6}\n params.rotation = {0,0,0}\n params.height = 250\n params.width = 580\n params.color = {0,0,0}\n params.font_color = {1,1,1}\n self.createButton(params)\nend\n\n function updateSurface(obj, color, alt_click)\n obj_surface = getObjectFromGUID(\"721ba2\")\n local customInfo = obj_surface.getCustomObject()\n if alt_click == false then\n customInfo.image = \"https://i.ibb.co/WsSBrYj/Forgotten-Age-6-City-of-Archives-2.jpg\"\n else\n customInfo.image = \"http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/\"\n end\n obj_surface.setCustomObject(customInfo)\n obj_surface = obj_surface.reload()\n broadcastToAll(\"New Playmat Image Applied\", {0.2,0.9,0.2})\n end\n",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "92bec7",
"Name": "Custom_Token",
"Transform": {
"posX": 40.2926331,
"posY": 1.3821851,
"posZ": -79.6199341,
"rotX": 358.458771,
"rotY": 270.000427,
"rotZ": 0.0163544565,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "TFA - 7A",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"tfamat_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,
"CustomImage": {
"ImageURL": "https://i.ibb.co/dbLKgGv/Forgotten-Age-7-Depths-of-Yoth-Diego-Arbetta.jpg",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "function onLoad()\n local params = {}\n params.click_function = 'updateSurface'\n params.function_owner = self\n params.label = 'Apply'\n params.tooltip= 'Left click to apply image, right click to revert to default.'\n params.position = {0,0.05,-1.6}\n params.rotation = {0,0,0}\n params.height = 250\n params.width = 580\n params.color = {0,0,0}\n params.font_color = {1,1,1}\n self.createButton(params)\nend\n\n function updateSurface(obj, color, alt_click)\n obj_surface = getObjectFromGUID(\"721ba2\")\n local customInfo = obj_surface.getCustomObject()\n if alt_click == false then\n customInfo.image = \"https://i.ibb.co/dbLKgGv/Forgotten-Age-7-Depths-of-Yoth-Diego-Arbetta.jpg\"\n else\n customInfo.image = \"http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/\"\n end\n obj_surface.setCustomObject(customInfo)\n obj_surface = obj_surface.reload()\n broadcastToAll(\"New Playmat Image Applied\", {0.2,0.9,0.2})\n end\n",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "18f3be",
"Name": "Custom_Token",
"Transform": {
"posX": 36.62383,
"posY": 1.38123357,
"posZ": -79.60843,
"rotX": 358.446472,
"rotY": 269.9795,
"rotZ": 0.0168852042,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "TFA - 7B",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"tfamat_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,
"CustomImage": {
"ImageURL": "https://i.ibb.co/NW7Wp98/Forgotten-Age-7-Depths-of-Yoth-Greg-Bobrowski.jpg",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "function onLoad()\n local params = {}\n params.click_function = 'updateSurface'\n params.function_owner = self\n params.label = 'Apply'\n params.tooltip= 'Left click to apply image, right click to revert to default.'\n params.position = {0,0.05,-1.6}\n params.rotation = {0,0,0}\n params.height = 250\n params.width = 580\n params.color = {0,0,0}\n params.font_color = {1,1,1}\n self.createButton(params)\nend\n\n function updateSurface(obj, color, alt_click)\n obj_surface = getObjectFromGUID(\"721ba2\")\n local customInfo = obj_surface.getCustomObject()\n if alt_click == false then\n customInfo.image = \"https://i.ibb.co/NW7Wp98/Forgotten-Age-7-Depths-of-Yoth-Greg-Bobrowski.jpg\"\n else\n customInfo.image = \"http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/\"\n end\n obj_surface.setCustomObject(customInfo)\n obj_surface = obj_surface.reload()\n broadcastToAll(\"New Playmat Image Applied\", {0.2,0.9,0.2})\n end\n",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "c9e359",
"Name": "Custom_Token",
"Transform": {
"posX": 32.9839821,
"posY": 1.32804859,
"posZ": -79.6084,
"rotX": 0.0201026313,
"rotY": 269.98,
"rotZ": 0.0167114679,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "TFA - 7C",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"tfamat_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,
"CustomImage": {
"ImageURL": "https://i.ibb.co/257zr7c/Forgotten-Age-7-Depths-of-Yoth-Greg-Bobrowski-2-jpg.jpg",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "function onLoad()\n local params = {}\n params.click_function = 'updateSurface'\n params.function_owner = self\n params.label = 'Apply'\n params.tooltip= 'Left click to apply image, right click to revert to default.'\n params.position = {0,0.05,-1.6}\n params.rotation = {0,0,0}\n params.height = 250\n params.width = 580\n params.color = {0,0,0}\n params.font_color = {1,1,1}\n self.createButton(params)\nend\n\n function updateSurface(obj, color, alt_click)\n obj_surface = getObjectFromGUID(\"721ba2\")\n local customInfo = obj_surface.getCustomObject()\n if alt_click == false then\n customInfo.image = \"https://i.ibb.co/257zr7c/Forgotten-Age-7-Depths-of-Yoth-Greg-Bobrowski-2-jpg.jpg\"\n else\n customInfo.image = \"http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/\"\n end\n obj_surface.setCustomObject(customInfo)\n obj_surface = obj_surface.reload()\n broadcastToAll(\"New Playmat Image Applied\", {0.2,0.9,0.2})\n end\n",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "021c1b",
"Name": "Custom_Token",
"Transform": {
"posX": 40.28757,
"posY": 1.38085818,
"posZ": -84.20852,
"rotX": 358.459,
"rotY": 269.972748,
"rotZ": 0.0169319715,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "TFA - 8A",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"tfamat_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,
"CustomImage": {
"ImageURL": "https://i.ibb.co/KwnWTGR/Forgotten-Age-8-Shattered-Aeons.jpg",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "function onLoad()\n local params = {}\n params.click_function = 'updateSurface'\n params.function_owner = self\n params.label = 'Apply'\n params.tooltip= 'Left click to apply image, right click to revert to default.'\n params.position = {0,0.05,-1.6}\n params.rotation = {0,0,0}\n params.height = 250\n params.width = 580\n params.color = {0,0,0}\n params.font_color = {1,1,1}\n self.createButton(params)\nend\n\n function updateSurface(obj, color, alt_click)\n obj_surface = getObjectFromGUID(\"721ba2\")\n local customInfo = obj_surface.getCustomObject()\n if alt_click == false then\n customInfo.image = \"https://i.ibb.co/KwnWTGR/Forgotten-Age-8-Shattered-Aeons.jpg\"\n else\n customInfo.image = \"http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/\"\n end\n obj_surface.setCustomObject(customInfo)\n obj_surface = obj_surface.reload()\n broadcastToAll(\"New Playmat Image Applied\", {0.2,0.9,0.2})\n end\n",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "fdc988",
"Name": "Custom_Token",
"Transform": {
"posX": 36.6213646,
"posY": 1.32802618,
"posZ": -84.19883,
"rotX": 0.02010816,
"rotY": 269.929565,
"rotZ": 0.0169119183,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "TFA - 8B",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"tfamat_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,
"CustomImage": {
"ImageURL": "https://i.ibb.co/b7kVd4F/Forgotten-Age-8-Shattered-Aeons-Alexandr-Elichev.jpg",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "function onLoad()\n local params = {}\n params.click_function = 'updateSurface'\n params.function_owner = self\n params.label = 'Apply'\n params.tooltip= 'Left click to apply image, right click to revert to default.'\n params.position = {0,0.05,-1.6}\n params.rotation = {0,0,0}\n params.height = 250\n params.width = 580\n params.color = {0,0,0}\n params.font_color = {1,1,1}\n self.createButton(params)\nend\n\n function updateSurface(obj, color, alt_click)\n obj_surface = getObjectFromGUID(\"721ba2\")\n local customInfo = obj_surface.getCustomObject()\n if alt_click == false then\n customInfo.image = \"https://i.ibb.co/b7kVd4F/Forgotten-Age-8-Shattered-Aeons-Alexandr-Elichev.jpg\"\n else\n customInfo.image = \"http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/\"\n end\n obj_surface.setCustomObject(customInfo)\n obj_surface = obj_surface.reload()\n broadcastToAll(\"New Playmat Image Applied\", {0.2,0.9,0.2})\n end\n",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "992a0b",
"Name": "Bag",
"Transform": {
"posX": 45.63946,
"posY": 1.1003046,
"posZ": -70.4086,
"rotX": 359.979156,
"rotY": 89.98564,
"rotZ": 359.983215,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "The Dream-Eaters",
"Description": "tdemat",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.702961445,
"g": 0.0,
"b": 1.0
},
"Tags": [
"playmat_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,
"MaterialIndex": -1,
"MeshIndex": -1,
"Bag": {
"Order": 0
},
"LuaScript": "---\r\n--- Generated by EmmyLua(https://github.com/EmmyLua)\r\n--- Created by Whimsical.\r\n--- DateTime: 2021-03-16 3:26 p.m.\r\n---\r\n\r\n--- Original Memory Bag by MrStump\r\n--- https://steamcommunity.com/sharedfiles/filedetails/?id=953770080\r\n\r\n---@class MemoryListEntry\r\n---@field public position Vector\r\n---@field public rotation Vector\r\n---@field public lock boolean\r\nlocal MemoryListEntry={}\r\n\r\n---@type table\r\nlocal memory_list = {}\r\n\r\nlocal POSTFIX = {\r\n SAVE = \"_memory_object\",\r\n ZONE = \"_memory_zone\",\r\n SHUFFLE = \"_memory_shuffle\"\r\n}\r\n\r\n---@type table\r\nlocal BUTTON = {\r\n POSITION = Vector(0, 0.3, -2),\r\n ROTATION = Vector(0, 180, 0),\r\n HEIGHT = 350,\r\n WIDTH = 800,\r\n FONT_SIZE = 250,\r\n COLOR = Color.Black,\r\n FONT_COLOR = Color.White\r\n}\r\n\r\nlocal ipairs = ipairs\r\nlocal pairs = pairs\r\n\r\n---@return string\r\nlocal function get_prefix()\r\n return self:getDescription()\r\nend\r\n\r\nlocal function updateSave()\r\n local data_to_save = {[\"ml\"]=memory_list}\r\n local saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\n---@param label string\r\n---@param action string\r\nlocal function createButton(label, action)\r\n self:clearButtons()\r\n\r\n ---@type CreateClassicUIButton\r\n local parameters = {\r\n label = label,\r\n click_function = action,\r\n function_owner = self\r\n }\r\n\r\n for key, value in pairs(BUTTON) do\r\n parameters[key:lower()] = value\r\n end\r\n\r\n self:createButton(parameters)\r\nend\r\n\r\nlocal function create_place_button() createButton(\"Place\", \"place_objects\") end\r\nlocal function create_recall_button() createButton(\"Recall\", \"recall_objects\") end\r\n\r\n---@param tag string\r\n---@param lock boolean\r\n---@return fun(object:TTSObject)\r\nlocal function create_object_callback(tag, lock)\r\n ---@param object TTSObject\r\n return function (object)\r\n object:setLock(lock)\r\n if object:hasTag(tag) then object:shuffle() end\r\n end\r\nend\r\n\r\n---@param object TTSObject\r\nlocal function record_objects(object)\r\n memory_list[object:getGUID()] = {\r\n position = object:getPosition(),\r\n rotation = object:getRotation(),\r\n lock = object:getLock()\r\n }\r\n self:putObject(object)\r\nend\r\n\r\n---@param objects TTSObject[]\r\nlocal function update_objects(objects)\r\n for _, object in ipairs(objects) do\r\n record_objects(object)\r\n end\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction place_objects()\r\n local prefix = get_prefix()\r\n local shuffle_tag = prefix .. POSTFIX.SHUFFLE\r\n local content = self.getObjects()\r\n\r\n for _, item in ipairs(content) do\r\n local entry = memory_list[item.guid]\r\n if entry then\r\n self.takeObject {\r\n guid=item.guid,\r\n position=entry.position,\r\n rotation=entry.rotation,\r\n callback_function = create_object_callback(shuffle_tag, entry.lock)\r\n }\r\n end\r\n end\r\n\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\n create_recall_button()\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction recall_objects()\r\n memory_list = {}\r\n local prefix = get_prefix()\r\n\r\n if prefix==\"\" then\r\n broadcastToAll(\"Error in Memory Bag: Tag prefix not set.\")\r\n return\r\n end\r\n\r\n local save_tag = prefix .. POSTFIX.SAVE\r\n local zone_tag = prefix .. POSTFIX.ZONE\r\n\r\n local zones = getObjectsWithTag(zone_tag)\r\n if #zones>0 then\r\n for _, zone in ipairs(zones) do\r\n update_objects(zone:getObjects())\r\n end\r\n else\r\n update_objects(getObjectsWithTag(save_tag))\r\n end\r\n updateSave()\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\n create_place_button()\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memory_list = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memory_list = {}\r\n end\r\n\r\n if self:getQuantity()==0 then\r\n create_recall_button()\r\n else\r\n create_place_button()\r\n end\r\nend",
"LuaScriptState": "{\"ml\":{\"044e36\":{\"lock\":false,\"position\":{\"x\":32.9846076965332,\"y\":1.38933455944061,\"z\":-47.4094314575195},\"rotation\":{\"x\":1.59335148334503,\"y\":269.985992431641,\"z\":0.0167066976428032}},\"256a94\":{\"lock\":false,\"position\":{\"x\":32.9853248596191,\"y\":1.32670021057129,\"z\":-84.2082977294922},\"rotation\":{\"x\":0.020842993631959,\"y\":269.985137939453,\"z\":0.0166490692645311}},\"271e9a\":{\"lock\":false,\"position\":{\"x\":40.2898826599121,\"y\":1.38220453262329,\"z\":-79.6198883056641},\"rotation\":{\"x\":358.457458496094,\"y\":269.982269287109,\"z\":0.0167771298438311}},\"30d019\":{\"lock\":false,\"position\":{\"x\":36.624324798584,\"y\":1.33610224723816,\"z\":-56.6083908081055},\"rotation\":{\"x\":0.0208302978426218,\"y\":270.007415771484,\"z\":0.0167272575199604}},\"3549ff\":{\"lock\":false,\"position\":{\"x\":40.2870292663574,\"y\":1.32934617996216,\"z\":-84.2198257446289},\"rotation\":{\"x\":0.0208567641675472,\"y\":269.974609375,\"z\":0.0165550522506237}},\"3948b5\":{\"lock\":false,\"position\":{\"x\":40.2900695800781,\"y\":1.33608496189117,\"z\":-61.2199897766113},\"rotation\":{\"x\":0.0208140667527914,\"y\":269.9833984375,\"z\":0.0167654808610678}},\"3ac9be\":{\"lock\":false,\"position\":{\"x\":32.9867744445801,\"y\":1.3293936252594,\"z\":-75.0083389282227},\"rotation\":{\"x\":0.0208475291728973,\"y\":269.989379882813,\"z\":0.0166652239859104}},\"513b6f\":{\"lock\":false,\"position\":{\"x\":40.2875938415527,\"y\":1.33203911781311,\"z\":-75.0200424194336},\"rotation\":{\"x\":0.0208535548299551,\"y\":269.982055664063,\"z\":0.0165767669677734}},\"5b18f5\":{\"lock\":false,\"position\":{\"x\":36.624382019043,\"y\":1.43071341514587,\"z\":-75.0083312988281},\"rotation\":{\"x\":0.0207298919558525,\"y\":269.989471435547,\"z\":0.0166644137352705}},\"69f081\":{\"lock\":false,\"position\":{\"x\":36.6245422363281,\"y\":1.33878374099731,\"z\":-47.408332824707},\"rotation\":{\"x\":0.0217071752995253,\"y\":269.957366943359,\"z\":0.0162037704139948}},\"7cc49f\":{\"lock\":false,\"position\":{\"x\":40.2891006469727,\"y\":1.39030635356903,\"z\":-52.0199813842773},\"rotation\":{\"x\":358.456268310547,\"y\":270.006744384766,\"z\":0.0164630468934774}},\"89227a\":{\"lock\":false,\"position\":{\"x\":40.2900352478027,\"y\":1.38893461227417,\"z\":-56.6200256347656},\"rotation\":{\"x\":358.457550048828,\"y\":270.002563476563,\"z\":0.0167907923460007}},\"90a381\":{\"lock\":false,\"position\":{\"x\":25.4876403808594,\"y\":1.33340740203857,\"z\":-52.0017509460449},\"rotation\":{\"x\":0.0208140965551138,\"y\":269.9833984375,\"z\":0.0167651381343603}},\"ad3576\":{\"lock\":false,\"position\":{\"x\":32.9852905273438,\"y\":1.43612289428711,\"z\":-52.0096282958984},\"rotation\":{\"x\":0.020680258050561,\"y\":269.979736328125,\"z\":0.0166831742972136}},\"b2b345\":{\"lock\":false,\"position\":{\"x\":36.6205024719238,\"y\":1.42801892757416,\"z\":-84.2085266113281},\"rotation\":{\"x\":0.0207362398505211,\"y\":269.981353759766,\"z\":0.0166468862444162}},\"ba2453\":{\"lock\":false,\"position\":{\"x\":36.6246452331543,\"y\":1.33744871616364,\"z\":-52.0082092285156},\"rotation\":{\"x\":0.0210914071649313,\"y\":270.002349853516,\"z\":0.0163665469735861}},\"c36a9f\":{\"lock\":false,\"position\":{\"x\":40.2900695800781,\"y\":1.33339214324951,\"z\":-70.4198455810547},\"rotation\":{\"x\":0.0208142455667257,\"y\":269.978942871094,\"z\":0.0167633797973394}},\"d15fee\":{\"lock\":false,\"position\":{\"x\":40.2887001037598,\"y\":1.39168620109558,\"z\":-47.4199638366699},\"rotation\":{\"x\":358.455963134766,\"y\":269.961883544922,\"z\":0.0167973712086678}},\"e2f73e\":{\"lock\":false,\"position\":{\"x\":29.3377857208252,\"y\":1.33480143547058,\"z\":-52.0099220275879},\"rotation\":{\"x\":0.0208367332816124,\"y\":269.982696533203,\"z\":0.0166868064552546}},\"f97453\":{\"lock\":false,\"position\":{\"x\":36.6243515014648,\"y\":1.3293696641922,\"z\":-79.608268737793},\"rotation\":{\"x\":0.0208572223782539,\"y\":269.984252929688,\"z\":0.0167140010744333}}}}",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "69f081",
"Name": "Custom_Token",
"Transform": {
"posX": 36.6245422,
"posY": 1.33878374,
"posZ": -47.4083328,
"rotX": 0.0217071753,
"rotY": 269.957367,
"rotZ": 0.01620377,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "TDE Dreaming - 1B",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"tdemat_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,
"CustomImage": {
"ImageURL": "https://i.ibb.co/kBfW9SC/Dream-Eaters-1-A-Beyond-the-Gates-of-Sleep-Regina-Kurnya.jpg",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "function onLoad()\n local params = {}\n params.click_function = 'updateSurface'\n params.function_owner = self\n params.label = 'Apply'\n params.tooltip= 'Left click to apply image, right click to revert to default.'\n params.position = {0,0.05,-1.6}\n params.rotation = {0,0,0}\n params.height = 250\n params.width = 580\n params.color = {0,0,0}\n params.font_color = {1,1,1}\n self.createButton(params)\nend\n\n function updateSurface(obj, color, alt_click)\n obj_surface = getObjectFromGUID(\"721ba2\")\n local customInfo = obj_surface.getCustomObject()\n if alt_click == false then\n customInfo.image = \"https://i.ibb.co/kBfW9SC/Dream-Eaters-1-A-Beyond-the-Gates-of-Sleep-Regina-Kurnya.jpg\"\n else\n customInfo.image = \"http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/\"\n end\n obj_surface.setCustomObject(customInfo)\n obj_surface = obj_surface.reload()\n broadcastToAll(\"New Playmat Image Applied\", {0.2,0.9,0.2})\n end\n",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "d15fee",
"Name": "Custom_Token",
"Transform": {
"posX": 40.2887,
"posY": 1.3916862,
"posZ": -47.4199638,
"rotX": 358.455963,
"rotY": 269.961884,
"rotZ": 0.0167973712,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "TDE Dreaming - 1A",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"tdemat_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,
"CustomImage": {
"ImageURL": "https://i.ibb.co/S6sCy7G/Dream-Eaters-1-A-Beyond-the-Gates-of-Sleep-Phoebe-Herring.jpg",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "function onLoad()\n local params = {}\n params.click_function = 'updateSurface'\n params.function_owner = self\n params.label = 'Apply'\n params.tooltip= 'Left click to apply image, right click to revert to default.'\n params.position = {0,0.05,-1.6}\n params.rotation = {0,0,0}\n params.height = 250\n params.width = 580\n params.color = {0,0,0}\n params.font_color = {1,1,1}\n self.createButton(params)\nend\n\n function updateSurface(obj, color, alt_click)\n obj_surface = getObjectFromGUID(\"721ba2\")\n local customInfo = obj_surface.getCustomObject()\n if alt_click == false then\n customInfo.image = \"https://i.ibb.co/S6sCy7G/Dream-Eaters-1-A-Beyond-the-Gates-of-Sleep-Phoebe-Herring.jpg\"\n else\n customInfo.image = \"http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/\"\n end\n obj_surface.setCustomObject(customInfo)\n obj_surface = obj_surface.reload()\n broadcastToAll(\"New Playmat Image Applied\", {0.2,0.9,0.2})\n end\n",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "7cc49f",
"Name": "Custom_Token",
"Transform": {
"posX": 40.2891,
"posY": 1.39030635,
"posZ": -52.01998,
"rotX": 358.456268,
"rotY": 270.006744,
"rotZ": 0.0164630469,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "TDE Dreaming - 2A",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"tdemat_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,
"CustomImage": {
"ImageURL": "https://i.ibb.co/MZ7Qtcc/Dream-Eaters-2-A-Search-for-Kadath-Nele-Diel.jpg",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "function onLoad()\n local params = {}\n params.click_function = 'updateSurface'\n params.function_owner = self\n params.label = 'Apply'\n params.tooltip= 'Left click to apply image, right click to revert to default.'\n params.position = {0,0.05,-1.6}\n params.rotation = {0,0,0}\n params.height = 250\n params.width = 580\n params.color = {0,0,0}\n params.font_color = {1,1,1}\n self.createButton(params)\nend\n\n function updateSurface(obj, color, alt_click)\n obj_surface = getObjectFromGUID(\"721ba2\")\n local customInfo = obj_surface.getCustomObject()\n if alt_click == false then\n customInfo.image = \"https://i.ibb.co/MZ7Qtcc/Dream-Eaters-2-A-Search-for-Kadath-Nele-Diel.jpg\"\n else\n customInfo.image = \"http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/\"\n end\n obj_surface.setCustomObject(customInfo)\n obj_surface = obj_surface.reload()\n broadcastToAll(\"New Playmat Image Applied\", {0.2,0.9,0.2})\n end\n",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "ba2453",
"Name": "Custom_Token",
"Transform": {
"posX": 36.6246452,
"posY": 1.33744872,
"posZ": -52.00821,
"rotX": 0.0210914072,
"rotY": 270.00235,
"rotZ": 0.016366547,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "TDE Dreaming - 2B",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"tdemat_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,
"CustomImage": {
"ImageURL": "https://i.ibb.co/jwsn0jf/Dream-Eaters-2-A-Search-for-Kadath-Diana-Tsareva.jpg",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "function onLoad()\n local params = {}\n params.click_function = 'updateSurface'\n params.function_owner = self\n params.label = 'Apply'\n params.tooltip= 'Left click to apply image, right click to revert to default.'\n params.position = {0,0.05,-1.6}\n params.rotation = {0,0,0}\n params.height = 250\n params.width = 580\n params.color = {0,0,0}\n params.font_color = {1,1,1}\n self.createButton(params)\nend\n\n function updateSurface(obj, color, alt_click)\n obj_surface = getObjectFromGUID(\"721ba2\")\n local customInfo = obj_surface.getCustomObject()\n if alt_click == false then\n customInfo.image = \"https://i.ibb.co/jwsn0jf/Dream-Eaters-2-A-Search-for-Kadath-Diana-Tsareva.jpg\"\n else\n customInfo.image = \"http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/\"\n end\n obj_surface.setCustomObject(customInfo)\n obj_surface = obj_surface.reload()\n broadcastToAll(\"New Playmat Image Applied\", {0.2,0.9,0.2})\n end\n",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "89227a",
"Name": "Custom_Token",
"Transform": {
"posX": 40.2900352,
"posY": 1.38893461,
"posZ": -56.6200256,
"rotX": 358.45755,
"rotY": 270.002563,
"rotZ": 0.0167907923,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "TDE Dreaming - 3A",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"tdemat_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,
"CustomImage": {
"ImageURL": "https://i.ibb.co/B2DfXLZ/Dream-Eaters-3-A-Dark-Side-of-the-Moon-Dabanli.jpg",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "function onLoad()\n local params = {}\n params.click_function = 'updateSurface'\n params.function_owner = self\n params.label = 'Apply'\n params.tooltip= 'Left click to apply image, right click to revert to default.'\n params.position = {0,0.05,-1.6}\n params.rotation = {0,0,0}\n params.height = 250\n params.width = 580\n params.color = {0,0,0}\n params.font_color = {1,1,1}\n self.createButton(params)\nend\n\n function updateSurface(obj, color, alt_click)\n obj_surface = getObjectFromGUID(\"721ba2\")\n local customInfo = obj_surface.getCustomObject()\n if alt_click == false then\n customInfo.image = \"https://i.ibb.co/B2DfXLZ/Dream-Eaters-3-A-Dark-Side-of-the-Moon-Dabanli.jpg\"\n else\n customInfo.image = \"http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/\"\n end\n obj_surface.setCustomObject(customInfo)\n obj_surface = obj_surface.reload()\n broadcastToAll(\"New Playmat Image Applied\", {0.2,0.9,0.2})\n end\n",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "30d019",
"Name": "Custom_Token",
"Transform": {
"posX": 36.6243248,
"posY": 1.33610225,
"posZ": -56.60839,
"rotX": 0.0208302978,
"rotY": 270.007416,
"rotZ": 0.0167272575,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "TDE Dreaming - 3B",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"tdemat_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,
"CustomImage": {
"ImageURL": "https://i.ibb.co/c27JRvv/Dream-Eaters-3-A-Dark-Side-of-the-Moon-Frej-Agelii.jpg",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "function onLoad()\n local params = {}\n params.click_function = 'updateSurface'\n params.function_owner = self\n params.label = 'Apply'\n params.tooltip= 'Left click to apply image, right click to revert to default.'\n params.position = {0,0.05,-1.6}\n params.rotation = {0,0,0}\n params.height = 250\n params.width = 580\n params.color = {0,0,0}\n params.font_color = {1,1,1}\n self.createButton(params)\nend\n\n function updateSurface(obj, color, alt_click)\n obj_surface = getObjectFromGUID(\"721ba2\")\n local customInfo = obj_surface.getCustomObject()\n if alt_click == false then\n customInfo.image = \"https://i.ibb.co/c27JRvv/Dream-Eaters-3-A-Dark-Side-of-the-Moon-Frej-Agelii.jpg\"\n else\n customInfo.image = \"http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/\"\n end\n obj_surface.setCustomObject(customInfo)\n obj_surface = obj_surface.reload()\n broadcastToAll(\"New Playmat Image Applied\", {0.2,0.9,0.2})\n end\n",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "3948b5",
"Name": "Custom_Token",
"Transform": {
"posX": 40.29007,
"posY": 1.336085,
"posZ": -61.21999,
"rotX": 0.0208140668,
"rotY": 269.9834,
"rotZ": 0.01676548,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "TDE Dreaming - 4",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"tdemat_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,
"CustomImage": {
"ImageURL": "https://i.ibb.co/v4nqw6G/Dream-Eaters-4-A-Where-the-Gods-Dwell-Samantha-Franco.jpg",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "function onLoad()\n local params = {}\n params.click_function = 'updateSurface'\n params.function_owner = self\n params.label = 'Apply'\n params.tooltip= 'Left click to apply image, right click to revert to default.'\n params.position = {0,0.05,-1.6}\n params.rotation = {0,0,0}\n params.height = 250\n params.width = 580\n params.color = {0,0,0}\n params.font_color = {1,1,1}\n self.createButton(params)\nend\n\n function updateSurface(obj, color, alt_click)\n obj_surface = getObjectFromGUID(\"721ba2\")\n local customInfo = obj_surface.getCustomObject()\n if alt_click == false then\n customInfo.image = \"https://i.ibb.co/v4nqw6G/Dream-Eaters-4-A-Where-the-Gods-Dwell-Samantha-Franco.jpg\"\n else\n customInfo.image = \"http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/\"\n end\n obj_surface.setCustomObject(customInfo)\n obj_surface = obj_surface.reload()\n broadcastToAll(\"New Playmat Image Applied\", {0.2,0.9,0.2})\n end\n",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "044e36",
"Name": "Custom_Token",
"Transform": {
"posX": 32.9846077,
"posY": 1.38933456,
"posZ": -47.40943,
"rotX": 1.59335148,
"rotY": 269.986,
"rotZ": 0.0167066976,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "TDE Dreaming - 1C",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"tdemat_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,
"CustomImage": {
"ImageURL": "https://i.ibb.co/HGvnxdX/Dream-Eaters-1-A-Beyond-the-Gates-of-Sleep-Jason-Scheier.jpg",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "function onLoad()\n local params = {}\n params.click_function = 'updateSurface'\n params.function_owner = self\n params.label = 'Apply'\n params.tooltip= 'Left click to apply image, right click to revert to default.'\n params.position = {0,0.05,-1.6}\n params.rotation = {0,0,0}\n params.height = 250\n params.width = 580\n params.color = {0,0,0}\n params.font_color = {1,1,1}\n self.createButton(params)\nend\n\n function updateSurface(obj, color, alt_click)\n obj_surface = getObjectFromGUID(\"721ba2\")\n local customInfo = obj_surface.getCustomObject()\n if alt_click == false then\n customInfo.image = \"https://i.ibb.co/HGvnxdX/Dream-Eaters-1-A-Beyond-the-Gates-of-Sleep-Jason-Scheier.jpg\"\n else\n customInfo.image = \"http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/\"\n end\n obj_surface.setCustomObject(customInfo)\n obj_surface = obj_surface.reload()\n broadcastToAll(\"New Playmat Image Applied\", {0.2,0.9,0.2})\n end\n",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "ad3576",
"Name": "Custom_Token",
"Transform": {
"posX": 32.98529,
"posY": 1.43612289,
"posZ": -52.00963,
"rotX": 0.0206802581,
"rotY": 269.979736,
"rotZ": 0.0166831743,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "TDE Dreaming - 2C",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"tdemat_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,
"CustomImage": {
"ImageURL": "https://i.ibb.co/4SwzCD8/Dream-Eaters-2-A-Search-for-Kadath-Andrei-Khrutskii.jpg",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "function onLoad()\n local params = {}\n params.click_function = 'updateSurface'\n params.function_owner = self\n params.label = 'Apply'\n params.tooltip= 'Left click to apply image, right click to revert to default.'\n params.position = {0,0.05,-1.6}\n params.rotation = {0,0,0}\n params.height = 250\n params.width = 580\n params.color = {0,0,0}\n params.font_color = {1,1,1}\n self.createButton(params)\nend\n\n function updateSurface(obj, color, alt_click)\n obj_surface = getObjectFromGUID(\"721ba2\")\n local customInfo = obj_surface.getCustomObject()\n if alt_click == false then\n customInfo.image = \"https://i.ibb.co/4SwzCD8/Dream-Eaters-2-A-Search-for-Kadath-Andrei-Khrutskii.jpg\"\n else\n customInfo.image = \"http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/\"\n end\n obj_surface.setCustomObject(customInfo)\n obj_surface = obj_surface.reload()\n broadcastToAll(\"New Playmat Image Applied\", {0.2,0.9,0.2})\n end\n",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "e2f73e",
"Name": "Custom_Token",
"Transform": {
"posX": 29.3377857,
"posY": 1.33480144,
"posZ": -52.009922,
"rotX": 0.0208367333,
"rotY": 269.9827,
"rotZ": 0.0166868065,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "TDE Dreaming - 2D",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"tdemat_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,
"CustomImage": {
"ImageURL": "https://i.ibb.co/pd9vxmL/Dream-Eaters-2-A-Search-for-Kadath-Helen-Ilnytska.jpg",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "function onLoad()\n local params = {}\n params.click_function = 'updateSurface'\n params.function_owner = self\n params.label = 'Apply'\n params.tooltip= 'Left click to apply image, right click to revert to default.'\n params.position = {0,0.05,-1.6}\n params.rotation = {0,0,0}\n params.height = 250\n params.width = 580\n params.color = {0,0,0}\n params.font_color = {1,1,1}\n self.createButton(params)\nend\n\n function updateSurface(obj, color, alt_click)\n obj_surface = getObjectFromGUID(\"721ba2\")\n local customInfo = obj_surface.getCustomObject()\n if alt_click == false then\n customInfo.image = \"https://i.ibb.co/pd9vxmL/Dream-Eaters-2-A-Search-for-Kadath-Helen-Ilnytska.jpg\"\n else\n customInfo.image = \"http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/\"\n end\n obj_surface.setCustomObject(customInfo)\n obj_surface = obj_surface.reload()\n broadcastToAll(\"New Playmat Image Applied\", {0.2,0.9,0.2})\n end\n",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "c36a9f",
"Name": "Custom_Token",
"Transform": {
"posX": 40.29007,
"posY": 1.33339214,
"posZ": -70.4198456,
"rotX": 0.0208142456,
"rotY": 269.978943,
"rotZ": 0.01676338,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "TDE Waking - 1",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"tdemat_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,
"CustomImage": {
"ImageURL": "https://i.ibb.co/sWsZCv8/Dream-Eaters-1-B-Waking-Nightmare-Josh-Gould-jpg.jpg",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "function onLoad()\n local params = {}\n params.click_function = 'updateSurface'\n params.function_owner = self\n params.label = 'Apply'\n params.tooltip= 'Left click to apply image, right click to revert to default.'\n params.position = {0,0.05,-1.6}\n params.rotation = {0,0,0}\n params.height = 250\n params.width = 580\n params.color = {0,0,0}\n params.font_color = {1,1,1}\n self.createButton(params)\nend\n\n function updateSurface(obj, color, alt_click)\n obj_surface = getObjectFromGUID(\"721ba2\")\n local customInfo = obj_surface.getCustomObject()\n if alt_click == false then\n customInfo.image = \"https://i.ibb.co/sWsZCv8/Dream-Eaters-1-B-Waking-Nightmare-Josh-Gould-jpg.jpg\"\n else\n customInfo.image = \"http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/\"\n end\n obj_surface.setCustomObject(customInfo)\n obj_surface = obj_surface.reload()\n broadcastToAll(\"New Playmat Image Applied\", {0.2,0.9,0.2})\n end\n",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "3ac9be",
"Name": "Custom_Token",
"Transform": {
"posX": 32.9867744,
"posY": 1.32939363,
"posZ": -75.00834,
"rotX": 0.02084753,
"rotY": 269.98938,
"rotZ": 0.016665224,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "TDE Waking - 2C",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"tdemat_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,
"CustomImage": {
"ImageURL": "https://i.ibb.co/VJFQVYd/Dream-Eaters-2-B-Thousand-Shapes-of-Horror-Greg-Bobrowski.jpg",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "function onLoad()\n local params = {}\n params.click_function = 'updateSurface'\n params.function_owner = self\n params.label = 'Apply'\n params.tooltip= 'Left click to apply image, right click to revert to default.'\n params.position = {0,0.05,-1.6}\n params.rotation = {0,0,0}\n params.height = 250\n params.width = 580\n params.color = {0,0,0}\n params.font_color = {1,1,1}\n self.createButton(params)\nend\n\n function updateSurface(obj, color, alt_click)\n obj_surface = getObjectFromGUID(\"721ba2\")\n local customInfo = obj_surface.getCustomObject()\n if alt_click == false then\n customInfo.image = \"https://i.ibb.co/VJFQVYd/Dream-Eaters-2-B-Thousand-Shapes-of-Horror-Greg-Bobrowski.jpg\"\n else\n customInfo.image = \"http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/\"\n end\n obj_surface.setCustomObject(customInfo)\n obj_surface = obj_surface.reload()\n broadcastToAll(\"New Playmat Image Applied\", {0.2,0.9,0.2})\n end\n",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "5b18f5",
"Name": "Custom_Token",
"Transform": {
"posX": 36.624382,
"posY": 1.43071342,
"posZ": -75.00833,
"rotX": 0.020729892,
"rotY": 269.989471,
"rotZ": 0.0166644137,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "TDE Waking - 2B",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"tdemat_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,
"CustomImage": {
"ImageURL": "https://i.ibb.co/T4Pqx0H/Dream-Eaters-2-B-Thousand-Shapes-of-Horror-Nele-Diel.jpg",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "function onLoad()\n local params = {}\n params.click_function = 'updateSurface'\n params.function_owner = self\n params.label = 'Apply'\n params.tooltip= 'Left click to apply image, right click to revert to default.'\n params.position = {0,0.05,-1.6}\n params.rotation = {0,0,0}\n params.height = 250\n params.width = 580\n params.color = {0,0,0}\n params.font_color = {1,1,1}\n self.createButton(params)\nend\n\n function updateSurface(obj, color, alt_click)\n obj_surface = getObjectFromGUID(\"721ba2\")\n local customInfo = obj_surface.getCustomObject()\n if alt_click == false then\n customInfo.image = \"https://i.ibb.co/T4Pqx0H/Dream-Eaters-2-B-Thousand-Shapes-of-Horror-Nele-Diel.jpg\"\n else\n customInfo.image = \"http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/\"\n end\n obj_surface.setCustomObject(customInfo)\n obj_surface = obj_surface.reload()\n broadcastToAll(\"New Playmat Image Applied\", {0.2,0.9,0.2})\n end\n",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "513b6f",
"Name": "Custom_Token",
"Transform": {
"posX": 40.2875938,
"posY": 1.33203912,
"posZ": -75.02004,
"rotX": 0.0208535548,
"rotY": 269.982056,
"rotZ": 0.016576767,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "TDE Waking - 2A",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"tdemat_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,
"CustomImage": {
"ImageURL": "https://i.ibb.co/9s7M0PP/Dream-Eaters-2-B-Thousand-Shapes-of-Horror-Nele-Diel-2.jpg",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "function onLoad()\n local params = {}\n params.click_function = 'updateSurface'\n params.function_owner = self\n params.label = 'Apply'\n params.tooltip= 'Left click to apply image, right click to revert to default.'\n params.position = {0,0.05,-1.6}\n params.rotation = {0,0,0}\n params.height = 250\n params.width = 580\n params.color = {0,0,0}\n params.font_color = {1,1,1}\n self.createButton(params)\nend\n\n function updateSurface(obj, color, alt_click)\n obj_surface = getObjectFromGUID(\"721ba2\")\n local customInfo = obj_surface.getCustomObject()\n if alt_click == false then\n customInfo.image = \"https://i.ibb.co/9s7M0PP/Dream-Eaters-2-B-Thousand-Shapes-of-Horror-Nele-Diel-2.jpg\"\n else\n customInfo.image = \"http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/\"\n end\n obj_surface.setCustomObject(customInfo)\n obj_surface = obj_surface.reload()\n broadcastToAll(\"New Playmat Image Applied\", {0.2,0.9,0.2})\n end\n",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "90a381",
"Name": "Custom_Token",
"Transform": {
"posX": 25.48764,
"posY": 1.3334074,
"posZ": -52.00175,
"rotX": 0.0208140966,
"rotY": 269.9834,
"rotZ": 0.0167651381,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "TDE Dreaming - 2E",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"tdemat_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,
"CustomImage": {
"ImageURL": "https://i.ibb.co/WpZ4fMc/Dream-Eaters-2-A-Search-for-Kadath-Dan-Iorgulescu.jpg",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "function onLoad()\n local params = {}\n params.click_function = 'updateSurface'\n params.function_owner = self\n params.label = 'Apply'\n params.tooltip= 'Left click to apply image, right click to revert to default.'\n params.position = {0,0.05,-1.6}\n params.rotation = {0,0,0}\n params.height = 250\n params.width = 580\n params.color = {0,0,0}\n params.font_color = {1,1,1}\n self.createButton(params)\nend\n\n function updateSurface(obj, color, alt_click)\n obj_surface = getObjectFromGUID(\"721ba2\")\n local customInfo = obj_surface.getCustomObject()\n if alt_click == false then\n customInfo.image = \"https://i.ibb.co/WpZ4fMc/Dream-Eaters-2-A-Search-for-Kadath-Dan-Iorgulescu.jpg\"\n else\n customInfo.image = \"http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/\"\n end\n obj_surface.setCustomObject(customInfo)\n obj_surface = obj_surface.reload()\n broadcastToAll(\"New Playmat Image Applied\", {0.2,0.9,0.2})\n end\n",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "271e9a",
"Name": "Custom_Token",
"Transform": {
"posX": 40.2898827,
"posY": 1.38220453,
"posZ": -79.61989,
"rotX": 358.457458,
"rotY": 269.982269,
"rotZ": 0.01677713,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "TDE Waking - 3A",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"tdemat_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,
"CustomImage": {
"ImageURL": "https://i.ibb.co/dMGNB9Y/Dream-Eaters-3-B-Point-of-No-Return-Daria-Khlebnikova.jpg",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "function onLoad()\n local params = {}\n params.click_function = 'updateSurface'\n params.function_owner = self\n params.label = 'Apply'\n params.tooltip= 'Left click to apply image, right click to revert to default.'\n params.position = {0,0.05,-1.6}\n params.rotation = {0,0,0}\n params.height = 250\n params.width = 580\n params.color = {0,0,0}\n params.font_color = {1,1,1}\n self.createButton(params)\nend\n\n function updateSurface(obj, color, alt_click)\n obj_surface = getObjectFromGUID(\"721ba2\")\n local customInfo = obj_surface.getCustomObject()\n if alt_click == false then\n customInfo.image = \"https://i.ibb.co/dMGNB9Y/Dream-Eaters-3-B-Point-of-No-Return-Daria-Khlebnikova.jpg\"\n else\n customInfo.image = \"http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/\"\n end\n obj_surface.setCustomObject(customInfo)\n obj_surface = obj_surface.reload()\n broadcastToAll(\"New Playmat Image Applied\", {0.2,0.9,0.2})\n end\n",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "f97453",
"Name": "Custom_Token",
"Transform": {
"posX": 36.62435,
"posY": 1.32936966,
"posZ": -79.60827,
"rotX": 0.0208572224,
"rotY": 269.984253,
"rotZ": 0.0167140011,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "TDE Waking - 3B",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"tdemat_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,
"CustomImage": {
"ImageURL": "https://i.ibb.co/dpXxPmz/Dream-Eaters-3-B-Point-of-No-Return-Karine-Villette.jpg",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "function onLoad()\n local params = {}\n params.click_function = 'updateSurface'\n params.function_owner = self\n params.label = 'Apply'\n params.tooltip= 'Left click to apply image, right click to revert to default.'\n params.position = {0,0.05,-1.6}\n params.rotation = {0,0,0}\n params.height = 250\n params.width = 580\n params.color = {0,0,0}\n params.font_color = {1,1,1}\n self.createButton(params)\nend\n\n function updateSurface(obj, color, alt_click)\n obj_surface = getObjectFromGUID(\"721ba2\")\n local customInfo = obj_surface.getCustomObject()\n if alt_click == false then\n customInfo.image = \"https://i.ibb.co/dpXxPmz/Dream-Eaters-3-B-Point-of-No-Return-Karine-Villette.jpg\"\n else\n customInfo.image = \"http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/\"\n end\n obj_surface.setCustomObject(customInfo)\n obj_surface = obj_surface.reload()\n broadcastToAll(\"New Playmat Image Applied\", {0.2,0.9,0.2})\n end\n",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "3549ff",
"Name": "Custom_Token",
"Transform": {
"posX": 40.28703,
"posY": 1.32934618,
"posZ": -84.2198257,
"rotX": 0.0208567642,
"rotY": 269.9746,
"rotZ": 0.0165550523,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "TDE Waking - 4A",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"tdemat_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,
"CustomImage": {
"ImageURL": "https://i.ibb.co/7btNBS1/Dream-Eaters-4-B-Weaver-of-the-Cosmos-Diana-Franco.jpg",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "function onLoad()\n local params = {}\n params.click_function = 'updateSurface'\n params.function_owner = self\n params.label = 'Apply'\n params.tooltip= 'Left click to apply image, right click to revert to default.'\n params.position = {0,0.05,-1.6}\n params.rotation = {0,0,0}\n params.height = 250\n params.width = 580\n params.color = {0,0,0}\n params.font_color = {1,1,1}\n self.createButton(params)\nend\n\n function updateSurface(obj, color, alt_click)\n obj_surface = getObjectFromGUID(\"721ba2\")\n local customInfo = obj_surface.getCustomObject()\n if alt_click == false then\n customInfo.image = \"https://i.ibb.co/7btNBS1/Dream-Eaters-4-B-Weaver-of-the-Cosmos-Diana-Franco.jpg\"\n else\n customInfo.image = \"http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/\"\n end\n obj_surface.setCustomObject(customInfo)\n obj_surface = obj_surface.reload()\n broadcastToAll(\"New Playmat Image Applied\", {0.2,0.9,0.2})\n end\n",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "b2b345",
"Name": "Custom_Token",
"Transform": {
"posX": 36.6205025,
"posY": 1.42801893,
"posZ": -84.20853,
"rotX": 0.02073624,
"rotY": 269.981354,
"rotZ": 0.0166468862,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "TDE Waking - 4B",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"tdemat_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,
"CustomImage": {
"ImageURL": "https://i.ibb.co/f8LBbFW/Dream-Eaters-4-B-Weaver-of-the-Cosmos-Nele-Diel.jpg",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "function onLoad()\n local params = {}\n params.click_function = 'updateSurface'\n params.function_owner = self\n params.label = 'Apply'\n params.tooltip= 'Left click to apply image, right click to revert to default.'\n params.position = {0,0.05,-1.6}\n params.rotation = {0,0,0}\n params.height = 250\n params.width = 580\n params.color = {0,0,0}\n params.font_color = {1,1,1}\n self.createButton(params)\nend\n\n function updateSurface(obj, color, alt_click)\n obj_surface = getObjectFromGUID(\"721ba2\")\n local customInfo = obj_surface.getCustomObject()\n if alt_click == false then\n customInfo.image = \"https://i.ibb.co/f8LBbFW/Dream-Eaters-4-B-Weaver-of-the-Cosmos-Nele-Diel.jpg\"\n else\n customInfo.image = \"http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/\"\n end\n obj_surface.setCustomObject(customInfo)\n obj_surface = obj_surface.reload()\n broadcastToAll(\"New Playmat Image Applied\", {0.2,0.9,0.2})\n end\n",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "256a94",
"Name": "Custom_Token",
"Transform": {
"posX": 32.9853249,
"posY": 1.32670021,
"posZ": -84.2083,
"rotX": 0.0208429936,
"rotY": 269.985138,
"rotZ": 0.01664907,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "TDE Waking - 4C",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"tdemat_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,
"CustomImage": {
"ImageURL": "https://i.ibb.co/RY7y22b/Dream-Eaters-4-B-Weaver-of-the-Cosmos-Leanna-Crossan.jpg",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "function onLoad()\n local params = {}\n params.click_function = 'updateSurface'\n params.function_owner = self\n params.label = 'Apply'\n params.tooltip= 'Left click to apply image, right click to revert to default.'\n params.position = {0,0.05,-1.6}\n params.rotation = {0,0,0}\n params.height = 250\n params.width = 580\n params.color = {0,0,0}\n params.font_color = {1,1,1}\n self.createButton(params)\nend\n\n function updateSurface(obj, color, alt_click)\n obj_surface = getObjectFromGUID(\"721ba2\")\n local customInfo = obj_surface.getCustomObject()\n if alt_click == false then\n customInfo.image = \"https://i.ibb.co/RY7y22b/Dream-Eaters-4-B-Weaver-of-the-Cosmos-Leanna-Crossan.jpg\"\n else\n customInfo.image = \"http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/\"\n end\n obj_surface.setCustomObject(customInfo)\n obj_surface = obj_surface.reload()\n broadcastToAll(\"New Playmat Image Applied\", {0.2,0.9,0.2})\n end\n",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "a0cfe5",
"Name": "Bag",
"Transform": {
"posX": 45.63946,
"posY": 1.09895754,
"posZ": -75.00872,
"rotX": 359.979156,
"rotY": 89.9857254,
"rotZ": 359.983215,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "The Innsmouth Conspiracy",
"Description": "ticmat",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.0,
"g": 0.861495,
"b": 1.0
},
"Tags": [
"playmat_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,
"MaterialIndex": -1,
"MeshIndex": -1,
"Bag": {
"Order": 0
},
"LuaScript": "---\r\n--- Generated by EmmyLua(https://github.com/EmmyLua)\r\n--- Created by Whimsical.\r\n--- DateTime: 2021-03-16 3:26 p.m.\r\n---\r\n\r\n--- Original Memory Bag by MrStump\r\n--- https://steamcommunity.com/sharedfiles/filedetails/?id=953770080\r\n\r\n---@class MemoryListEntry\r\n---@field public position Vector\r\n---@field public rotation Vector\r\n---@field public lock boolean\r\nlocal MemoryListEntry={}\r\n\r\n---@type table\r\nlocal memory_list = {}\r\n\r\nlocal POSTFIX = {\r\n SAVE = \"_memory_object\",\r\n ZONE = \"_memory_zone\",\r\n SHUFFLE = \"_memory_shuffle\"\r\n}\r\n\r\n---@type table\r\nlocal BUTTON = {\r\n POSITION = Vector(0, 0.3, -2),\r\n ROTATION = Vector(0, 180, 0),\r\n HEIGHT = 350,\r\n WIDTH = 800,\r\n FONT_SIZE = 250,\r\n COLOR = Color.Black,\r\n FONT_COLOR = Color.White\r\n}\r\n\r\nlocal ipairs = ipairs\r\nlocal pairs = pairs\r\n\r\n---@return string\r\nlocal function get_prefix()\r\n return self:getDescription()\r\nend\r\n\r\nlocal function updateSave()\r\n local data_to_save = {[\"ml\"]=memory_list}\r\n local saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\n---@param label string\r\n---@param action string\r\nlocal function createButton(label, action)\r\n self:clearButtons()\r\n\r\n ---@type CreateClassicUIButton\r\n local parameters = {\r\n label = label,\r\n click_function = action,\r\n function_owner = self\r\n }\r\n\r\n for key, value in pairs(BUTTON) do\r\n parameters[key:lower()] = value\r\n end\r\n\r\n self:createButton(parameters)\r\nend\r\n\r\nlocal function create_place_button() createButton(\"Place\", \"place_objects\") end\r\nlocal function create_recall_button() createButton(\"Recall\", \"recall_objects\") end\r\n\r\n---@param tag string\r\n---@param lock boolean\r\n---@return fun(object:TTSObject)\r\nlocal function create_object_callback(tag, lock)\r\n ---@param object TTSObject\r\n return function (object)\r\n object:setLock(lock)\r\n if object:hasTag(tag) then object:shuffle() end\r\n end\r\nend\r\n\r\n---@param object TTSObject\r\nlocal function record_objects(object)\r\n memory_list[object:getGUID()] = {\r\n position = object:getPosition(),\r\n rotation = object:getRotation(),\r\n lock = object:getLock()\r\n }\r\n self:putObject(object)\r\nend\r\n\r\n---@param objects TTSObject[]\r\nlocal function update_objects(objects)\r\n for _, object in ipairs(objects) do\r\n record_objects(object)\r\n end\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction place_objects()\r\n local prefix = get_prefix()\r\n local shuffle_tag = prefix .. POSTFIX.SHUFFLE\r\n local content = self.getObjects()\r\n\r\n for _, item in ipairs(content) do\r\n local entry = memory_list[item.guid]\r\n if entry then\r\n self.takeObject {\r\n guid=item.guid,\r\n position=entry.position,\r\n rotation=entry.rotation,\r\n callback_function = create_object_callback(shuffle_tag, entry.lock)\r\n }\r\n end\r\n end\r\n\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\n create_recall_button()\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction recall_objects()\r\n memory_list = {}\r\n local prefix = get_prefix()\r\n\r\n if prefix==\"\" then\r\n broadcastToAll(\"Error in Memory Bag: Tag prefix not set.\")\r\n return\r\n end\r\n\r\n local save_tag = prefix .. POSTFIX.SAVE\r\n local zone_tag = prefix .. POSTFIX.ZONE\r\n\r\n local zones = getObjectsWithTag(zone_tag)\r\n if #zones>0 then\r\n for _, zone in ipairs(zones) do\r\n update_objects(zone:getObjects())\r\n end\r\n else\r\n update_objects(getObjectsWithTag(save_tag))\r\n end\r\n updateSave()\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\n create_place_button()\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memory_list = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memory_list = {}\r\n end\r\n\r\n if self:getQuantity()==0 then\r\n create_recall_button()\r\n else\r\n create_place_button()\r\n end\r\nend",
"LuaScriptState": "{\"ml\":{\"0118ae\":{\"lock\":false,\"position\":{\"x\":36.6180000305176,\"y\":1.38481867313385,\"z\":-65.8078994750977},\"rotation\":{\"x\":1.58113884925842,\"y\":270.013153076172,\"z\":0.016888041049242}},\"08c430\":{\"lock\":false,\"position\":{\"x\":25.5426025390625,\"y\":1.33341526985168,\"z\":-52.0431976318359},\"rotation\":{\"x\":0.0208029374480248,\"y\":270.020446777344,\"z\":0.0167786031961441}},\"092468\":{\"lock\":false,\"position\":{\"x\":40.2902565002441,\"y\":1.38489079475403,\"z\":-70.419807434082},\"rotation\":{\"x\":358.457733154297,\"y\":269.983154296875,\"z\":0.016814012080431}},\"0eff3a\":{\"lock\":false,\"position\":{\"x\":29.3395862579346,\"y\":1.38256299495697,\"z\":-65.808479309082},\"rotation\":{\"x\":1.59301149845123,\"y\":269.992980957031,\"z\":0.0168056637048721}},\"3f0496\":{\"lock\":false,\"position\":{\"x\":36.6240615844727,\"y\":1.33475565910339,\"z\":-61.2084846496582},\"rotation\":{\"x\":0.0207954663783312,\"y\":269.997528076172,\"z\":0.0167128220200539}},\"4f17e8\":{\"lock\":false,\"position\":{\"x\":36.6241188049316,\"y\":1.33206391334534,\"z\":-70.4083480834961},\"rotation\":{\"x\":0.0208139978349209,\"y\":270.002685546875,\"z\":0.0167624410241842}},\"660e61\":{\"lock\":false,\"position\":{\"x\":36.6243591308594,\"y\":1.39029407501221,\"z\":-47.4084205627441},\"rotation\":{\"x\":1.58389008045197,\"y\":269.987731933594,\"z\":0.0167931523174047}},\"6abdc5\":{\"lock\":false,\"position\":{\"x\":40.2911682128906,\"y\":1.39026570320129,\"z\":-52.0199356079102},\"rotation\":{\"x\":358.458038330078,\"y\":269.983978271484,\"z\":0.0168039221316576}},\"7486a3\":{\"lock\":false,\"position\":{\"x\":32.9846878051758,\"y\":1.38791394233704,\"z\":-52.0095481872559},\"rotation\":{\"x\":358.448974609375,\"y\":269.984619140625,\"z\":0.0167653448879719}},\"77a94c\":{\"lock\":false,\"position\":{\"x\":40.291561126709,\"y\":1.38890886306763,\"z\":-56.6198806762695},\"rotation\":{\"x\":358.458312988281,\"y\":270.019073486328,\"z\":0.0167922265827656}},\"7e861b\":{\"lock\":false,\"position\":{\"x\":40.2902412414551,\"y\":1.3835426568985,\"z\":-75.0199127197266},\"rotation\":{\"x\":358.457794189453,\"y\":269.983276367188,\"z\":0.0167896710336208}},\"957b29\":{\"lock\":false,\"position\":{\"x\":40.290225982666,\"y\":1.38758206367493,\"z\":-61.2199287414551},\"rotation\":{\"x\":358.457794189453,\"y\":269.9921875,\"z\":0.0168030150234699}},\"979352\":{\"lock\":false,\"position\":{\"x\":36.624195098877,\"y\":1.38932073116302,\"z\":-52.0084266662598},\"rotation\":{\"x\":358.446411132813,\"y\":269.985137939453,\"z\":0.0167949367314577}},\"979594\":{\"lock\":false,\"position\":{\"x\":40.2900772094727,\"y\":1.34012138843536,\"z\":-47.4199867248535},\"rotation\":{\"x\":0.0208355598151684,\"y\":269.985290527344,\"z\":0.0166481547057629}},\"9a7d80\":{\"lock\":false,\"position\":{\"x\":40.2900733947754,\"y\":1.33473515510559,\"z\":-65.8198394775391},\"rotation\":{\"x\":0.0208268407732248,\"y\":270.009063720703,\"z\":0.0166479162871838}},\"9c79a5\":{\"lock\":false,\"position\":{\"x\":36.624195098877,\"y\":1.38796758651733,\"z\":-56.608512878418},\"rotation\":{\"x\":358.446655273438,\"y\":269.989410400391,\"z\":0.0168509855866432}},\"a8957d\":{\"lock\":false,\"position\":{\"x\":32.9840278625488,\"y\":1.33477926254272,\"z\":-56.6084289550781},\"rotation\":{\"x\":0.0208537392318249,\"y\":269.988098144531,\"z\":0.0166679657995701}},\"c53204\":{\"lock\":false,\"position\":{\"x\":29.3396911621094,\"y\":1.33480107784271,\"z\":-52.0095901489258},\"rotation\":{\"x\":0.0208715926855803,\"y\":269.988983154297,\"z\":0.0166536476463079}},\"d31f0f\":{\"lock\":false,\"position\":{\"x\":36.6240577697754,\"y\":1.33071649074554,\"z\":-75.0084609985352},\"rotation\":{\"x\":0.0208091791719198,\"y\":269.989959716797,\"z\":0.016723345965147}},\"e0348a\":{\"lock\":false,\"position\":{\"x\":40.2902565002441,\"y\":1.38219654560089,\"z\":-79.6198425292969},\"rotation\":{\"x\":358.457733154297,\"y\":269.983215332031,\"z\":0.016797412186861}},\"ebe3a7\":{\"lock\":false,\"position\":{\"x\":32.9844970703125,\"y\":1.3840252161026,\"z\":-65.8082275390625},\"rotation\":{\"x\":1.59724891185761,\"y\":269.977111816406,\"z\":0.0167612340301275}},\"f1db94\":{\"lock\":false,\"position\":{\"x\":36.6241264343262,\"y\":1.32936990261078,\"z\":-79.6083297729492},\"rotation\":{\"x\":0.0208282880485058,\"y\":269.988006591797,\"z\":0.0167150609195232}}}}",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "979594",
"Name": "Custom_Token",
"Transform": {
"posX": 40.2900772,
"posY": 1.34012139,
"posZ": -47.4199867,
"rotX": 0.02083556,
"rotY": 269.9853,
"rotZ": 0.0166481547,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "TIC - 1A",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"ticmat_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,
"CustomImage": {
"ImageURL": "https://i.ibb.co/Nj9JLBQ/Innsmouth-1-Pit-of-Despair-J-Mill.jpg",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "function onLoad()\n local params = {}\n params.click_function = 'updateSurface'\n params.function_owner = self\n params.label = 'Apply'\n params.tooltip= 'Left click to apply image, right click to revert to default.'\n params.position = {0,0.05,-1.6}\n params.rotation = {0,0,0}\n params.height = 250\n params.width = 580\n params.color = {0,0,0}\n params.font_color = {1,1,1}\n self.createButton(params)\nend\n\n function updateSurface(obj, color, alt_click)\n obj_surface = getObjectFromGUID(\"721ba2\")\n local customInfo = obj_surface.getCustomObject()\n if alt_click == false then\n customInfo.image = \"https://i.ibb.co/Nj9JLBQ/Innsmouth-1-Pit-of-Despair-J-Mill.jpg\"\n else\n customInfo.image = \"http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/\"\n end\n obj_surface.setCustomObject(customInfo)\n obj_surface = obj_surface.reload()\n broadcastToAll(\"New Playmat Image Applied\", {0.2,0.9,0.2})\n end\n",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "660e61",
"Name": "Custom_Token",
"Transform": {
"posX": 36.62436,
"posY": 1.39029408,
"posZ": -47.40842,
"rotX": 1.58389008,
"rotY": 269.987732,
"rotZ": 0.0167931523,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "TIC - 1B",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"ticmat_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,
"CustomImage": {
"ImageURL": "https://i.ibb.co/2sc0F61/Innsmouth-1-Pit-of-Despair-Amanda-Castrillo.jpg",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "function onLoad()\n local params = {}\n params.click_function = 'updateSurface'\n params.function_owner = self\n params.label = 'Apply'\n params.tooltip= 'Left click to apply image, right click to revert to default.'\n params.position = {0,0.05,-1.6}\n params.rotation = {0,0,0}\n params.height = 250\n params.width = 580\n params.color = {0,0,0}\n params.font_color = {1,1,1}\n self.createButton(params)\nend\n\n function updateSurface(obj, color, alt_click)\n obj_surface = getObjectFromGUID(\"721ba2\")\n local customInfo = obj_surface.getCustomObject()\n if alt_click == false then\n customInfo.image = \"https://i.ibb.co/2sc0F61/Innsmouth-1-Pit-of-Despair-Amanda-Castrillo.jpg\"\n else\n customInfo.image = \"http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/\"\n end\n obj_surface.setCustomObject(customInfo)\n obj_surface = obj_surface.reload()\n broadcastToAll(\"New Playmat Image Applied\", {0.2,0.9,0.2})\n end\n",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "6abdc5",
"Name": "Custom_Token",
"Transform": {
"posX": 40.29117,
"posY": 1.3902657,
"posZ": -52.0199356,
"rotX": 358.458038,
"rotY": 269.983978,
"rotZ": 0.0168039221,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "TIC - 2A",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"ticmat_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,
"CustomImage": {
"ImageURL": "https://i.ibb.co/hFQMm7N/Innsmouth-2-Vanishing-of-Elina-Harper-Richard-Wright.jpg",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "function onLoad()\n local params = {}\n params.click_function = 'updateSurface'\n params.function_owner = self\n params.label = 'Apply'\n params.tooltip= 'Left click to apply image, right click to revert to default.'\n params.position = {0,0.05,-1.6}\n params.rotation = {0,0,0}\n params.height = 250\n params.width = 580\n params.color = {0,0,0}\n params.font_color = {1,1,1}\n self.createButton(params)\nend\n\n function updateSurface(obj, color, alt_click)\n obj_surface = getObjectFromGUID(\"721ba2\")\n local customInfo = obj_surface.getCustomObject()\n if alt_click == false then\n customInfo.image = \"https://i.ibb.co/hFQMm7N/Innsmouth-2-Vanishing-of-Elina-Harper-Richard-Wright.jpg\"\n else\n customInfo.image = \"http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/\"\n end\n obj_surface.setCustomObject(customInfo)\n obj_surface = obj_surface.reload()\n broadcastToAll(\"New Playmat Image Applied\", {0.2,0.9,0.2})\n end\n",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "979352",
"Name": "Custom_Token",
"Transform": {
"posX": 36.6241951,
"posY": 1.38932073,
"posZ": -52.0084267,
"rotX": 358.4464,
"rotY": 269.985138,
"rotZ": 0.0167949367,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "TIC - 2B",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"ticmat_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,
"CustomImage": {
"ImageURL": "https://i.ibb.co/2j74cVn/Innsmouth-2-Vanishing-of-Elina-Harper-Konstantin-Vohwinkel.jpg",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "function onLoad()\n local params = {}\n params.click_function = 'updateSurface'\n params.function_owner = self\n params.label = 'Apply'\n params.tooltip= 'Left click to apply image, right click to revert to default.'\n params.position = {0,0.05,-1.6}\n params.rotation = {0,0,0}\n params.height = 250\n params.width = 580\n params.color = {0,0,0}\n params.font_color = {1,1,1}\n self.createButton(params)\nend\n\n function updateSurface(obj, color, alt_click)\n obj_surface = getObjectFromGUID(\"721ba2\")\n local customInfo = obj_surface.getCustomObject()\n if alt_click == false then\n customInfo.image = \"https://i.ibb.co/2j74cVn/Innsmouth-2-Vanishing-of-Elina-Harper-Konstantin-Vohwinkel.jpg\"\n else\n customInfo.image = \"http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/\"\n end\n obj_surface.setCustomObject(customInfo)\n obj_surface = obj_surface.reload()\n broadcastToAll(\"New Playmat Image Applied\", {0.2,0.9,0.2})\n end\n",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "7486a3",
"Name": "Custom_Token",
"Transform": {
"posX": 32.9846878,
"posY": 1.387914,
"posZ": -52.00955,
"rotX": 358.448975,
"rotY": 269.984619,
"rotZ": 0.0167653449,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "TIC - 2C",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"ticmat_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,
"CustomImage": {
"ImageURL": "https://i.ibb.co/2nZKGN6/Innsmouth-2-Vanishing-of-Elina-Harper-Tomasz-Jedruszek-1.jpg",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "function onLoad()\n local params = {}\n params.click_function = 'updateSurface'\n params.function_owner = self\n params.label = 'Apply'\n params.tooltip= 'Left click to apply image, right click to revert to default.'\n params.position = {0,0.05,-1.6}\n params.rotation = {0,0,0}\n params.height = 250\n params.width = 580\n params.color = {0,0,0}\n params.font_color = {1,1,1}\n self.createButton(params)\nend\n\n function updateSurface(obj, color, alt_click)\n obj_surface = getObjectFromGUID(\"721ba2\")\n local customInfo = obj_surface.getCustomObject()\n if alt_click == false then\n customInfo.image = \"https://i.ibb.co/2nZKGN6/Innsmouth-2-Vanishing-of-Elina-Harper-Tomasz-Jedruszek-1.jpg\"\n else\n customInfo.image = \"http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/\"\n end\n obj_surface.setCustomObject(customInfo)\n obj_surface = obj_surface.reload()\n broadcastToAll(\"New Playmat Image Applied\", {0.2,0.9,0.2})\n end\n",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "c53204",
"Name": "Custom_Token",
"Transform": {
"posX": 29.3396912,
"posY": 1.33480108,
"posZ": -52.00959,
"rotX": 0.0208715927,
"rotY": 269.988983,
"rotZ": 0.0166536476,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "TIC - 2D",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"ticmat_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,
"CustomImage": {
"ImageURL": "https://i.ibb.co/WxLpKrM/Innsmouth-2-Vanishing-of-Elina-Harper-Tomasz-Jedruszek-2.jpg",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "function onLoad()\n local params = {}\n params.click_function = 'updateSurface'\n params.function_owner = self\n params.label = 'Apply'\n params.tooltip= 'Left click to apply image, right click to revert to default.'\n params.position = {0,0.05,-1.6}\n params.rotation = {0,0,0}\n params.height = 250\n params.width = 580\n params.color = {0,0,0}\n params.font_color = {1,1,1}\n self.createButton(params)\nend\n\n function updateSurface(obj, color, alt_click)\n obj_surface = getObjectFromGUID(\"721ba2\")\n local customInfo = obj_surface.getCustomObject()\n if alt_click == false then\n customInfo.image = \"https://i.ibb.co/WxLpKrM/Innsmouth-2-Vanishing-of-Elina-Harper-Tomasz-Jedruszek-2.jpg\"\n else\n customInfo.image = \"http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/\"\n end\n obj_surface.setCustomObject(customInfo)\n obj_surface = obj_surface.reload()\n broadcastToAll(\"New Playmat Image Applied\", {0.2,0.9,0.2})\n end\n",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "77a94c",
"Name": "Custom_Token",
"Transform": {
"posX": 40.29156,
"posY": 1.38890886,
"posZ": -56.61988,
"rotX": 358.4583,
"rotY": 270.019073,
"rotZ": 0.0167922266,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "TIC - 3A",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"ticmat_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,
"CustomImage": {
"ImageURL": "https://i.ibb.co/jgQ8zQN/Innsmouth-3-In-Too-Deep-Klaudia-Bezak.jpg",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "function onLoad()\n local params = {}\n params.click_function = 'updateSurface'\n params.function_owner = self\n params.label = 'Apply'\n params.tooltip= 'Left click to apply image, right click to revert to default.'\n params.position = {0,0.05,-1.6}\n params.rotation = {0,0,0}\n params.height = 250\n params.width = 580\n params.color = {0,0,0}\n params.font_color = {1,1,1}\n self.createButton(params)\nend\n\n function updateSurface(obj, color, alt_click)\n obj_surface = getObjectFromGUID(\"721ba2\")\n local customInfo = obj_surface.getCustomObject()\n if alt_click == false then\n customInfo.image = \"https://i.ibb.co/jgQ8zQN/Innsmouth-3-In-Too-Deep-Klaudia-Bezak.jpg\"\n else\n customInfo.image = \"http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/\"\n end\n obj_surface.setCustomObject(customInfo)\n obj_surface = obj_surface.reload()\n broadcastToAll(\"New Playmat Image Applied\", {0.2,0.9,0.2})\n end\n",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "9c79a5",
"Name": "Custom_Token",
"Transform": {
"posX": 36.6241951,
"posY": 1.38796759,
"posZ": -56.6085129,
"rotX": 358.446655,
"rotY": 269.9894,
"rotZ": 0.0168509856,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "TIC - 3B",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"ticmat_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,
"CustomImage": {
"ImageURL": "https://i.ibb.co/SsQ3my4/Innsmouth-3-In-Too-Deep-David-Frasheski.jpg",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "function onLoad()\n local params = {}\n params.click_function = 'updateSurface'\n params.function_owner = self\n params.label = 'Apply'\n params.tooltip= 'Left click to apply image, right click to revert to default.'\n params.position = {0,0.05,-1.6}\n params.rotation = {0,0,0}\n params.height = 250\n params.width = 580\n params.color = {0,0,0}\n params.font_color = {1,1,1}\n self.createButton(params)\nend\n\n function updateSurface(obj, color, alt_click)\n obj_surface = getObjectFromGUID(\"721ba2\")\n local customInfo = obj_surface.getCustomObject()\n if alt_click == false then\n customInfo.image = \"https://i.ibb.co/SsQ3my4/Innsmouth-3-In-Too-Deep-David-Frasheski.jpg\"\n else\n customInfo.image = \"http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/\"\n end\n obj_surface.setCustomObject(customInfo)\n obj_surface = obj_surface.reload()\n broadcastToAll(\"New Playmat Image Applied\", {0.2,0.9,0.2})\n end\n",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "a8957d",
"Name": "Custom_Token",
"Transform": {
"posX": 32.9840279,
"posY": 1.33477926,
"posZ": -56.60843,
"rotX": 0.02085374,
"rotY": 269.9881,
"rotZ": 0.0166679658,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "TIC - 3C",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"ticmat_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,
"CustomImage": {
"ImageURL": "https://i.ibb.co/VVgtNM1/Innsmouth-3-In-Too-Deep-Patrik-Antonescu.jpg",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "function onLoad()\n local params = {}\n params.click_function = 'updateSurface'\n params.function_owner = self\n params.label = 'Apply'\n params.tooltip= 'Left click to apply image, right click to revert to default.'\n params.position = {0,0.05,-1.6}\n params.rotation = {0,0,0}\n params.height = 250\n params.width = 580\n params.color = {0,0,0}\n params.font_color = {1,1,1}\n self.createButton(params)\nend\n\n function updateSurface(obj, color, alt_click)\n obj_surface = getObjectFromGUID(\"721ba2\")\n local customInfo = obj_surface.getCustomObject()\n if alt_click == false then\n customInfo.image = \"https://i.ibb.co/VVgtNM1/Innsmouth-3-In-Too-Deep-Patrik-Antonescu.jpg\"\n else\n customInfo.image = \"http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/\"\n end\n obj_surface.setCustomObject(customInfo)\n obj_surface = obj_surface.reload()\n broadcastToAll(\"New Playmat Image Applied\", {0.2,0.9,0.2})\n end\n",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "3f0496",
"Name": "Custom_Token",
"Transform": {
"posX": 36.62406,
"posY": 1.33475566,
"posZ": -61.2084846,
"rotX": 0.0207954664,
"rotY": 269.997528,
"rotZ": 0.016712822,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "TIC - 4B",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"ticmat_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,
"CustomImage": {
"ImageURL": "https://i.ibb.co/4jfwDZR/Innsmouth-4-Devil-Reef-Marc-Stewart.jpg",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "function onLoad()\n local params = {}\n params.click_function = 'updateSurface'\n params.function_owner = self\n params.label = 'Apply'\n params.tooltip= 'Left click to apply image, right click to revert to default.'\n params.position = {0,0.05,-1.6}\n params.rotation = {0,0,0}\n params.height = 250\n params.width = 580\n params.color = {0,0,0}\n params.font_color = {1,1,1}\n self.createButton(params)\nend\n\n function updateSurface(obj, color, alt_click)\n obj_surface = getObjectFromGUID(\"721ba2\")\n local customInfo = obj_surface.getCustomObject()\n if alt_click == false then\n customInfo.image = \"https://i.ibb.co/4jfwDZR/Innsmouth-4-Devil-Reef-Marc-Stewart.jpg\"\n else\n customInfo.image = \"http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/\"\n end\n obj_surface.setCustomObject(customInfo)\n obj_surface = obj_surface.reload()\n broadcastToAll(\"New Playmat Image Applied\", {0.2,0.9,0.2})\n end\n",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "957b29",
"Name": "Custom_Token",
"Transform": {
"posX": 40.290226,
"posY": 1.38758206,
"posZ": -61.21993,
"rotX": 358.4578,
"rotY": 269.9922,
"rotZ": 0.016803015,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "TIC - 4A",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"ticmat_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,
"CustomImage": {
"ImageURL": "https://i.ibb.co/Jrf6CJ0/Innsmouth-4-Devil-Reef-Ludovic-Sanson.jpg",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "function onLoad()\n local params = {}\n params.click_function = 'updateSurface'\n params.function_owner = self\n params.label = 'Apply'\n params.tooltip= 'Left click to apply image, right click to revert to default.'\n params.position = {0,0.05,-1.6}\n params.rotation = {0,0,0}\n params.height = 250\n params.width = 580\n params.color = {0,0,0}\n params.font_color = {1,1,1}\n self.createButton(params)\nend\n\n function updateSurface(obj, color, alt_click)\n obj_surface = getObjectFromGUID(\"721ba2\")\n local customInfo = obj_surface.getCustomObject()\n if alt_click == false then\n customInfo.image = \"https://i.ibb.co/Jrf6CJ0/Innsmouth-4-Devil-Reef-Ludovic-Sanson.jpg\"\n else\n customInfo.image = \"http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/\"\n end\n obj_surface.setCustomObject(customInfo)\n obj_surface = obj_surface.reload()\n broadcastToAll(\"New Playmat Image Applied\", {0.2,0.9,0.2})\n end\n",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "9a7d80",
"Name": "Custom_Token",
"Transform": {
"posX": 40.2900734,
"posY": 1.33473516,
"posZ": -65.81984,
"rotX": 0.02082684,
"rotY": 270.009064,
"rotZ": 0.0166479163,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "TIC - 5A",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"ticmat_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,
"CustomImage": {
"ImageURL": "https://i.ibb.co/vqYJjYJ/Innsmouth-5-Horror-in-High-Gear-Greg-Bobrowski.jpg",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "function onLoad()\n local params = {}\n params.click_function = 'updateSurface'\n params.function_owner = self\n params.label = 'Apply'\n params.tooltip= 'Left click to apply image, right click to revert to default.'\n params.position = {0,0.05,-1.6}\n params.rotation = {0,0,0}\n params.height = 250\n params.width = 580\n params.color = {0,0,0}\n params.font_color = {1,1,1}\n self.createButton(params)\nend\n\n function updateSurface(obj, color, alt_click)\n obj_surface = getObjectFromGUID(\"721ba2\")\n local customInfo = obj_surface.getCustomObject()\n if alt_click == false then\n customInfo.image = \"https://i.ibb.co/vqYJjYJ/Innsmouth-5-Horror-in-High-Gear-Greg-Bobrowski.jpg\"\n else\n customInfo.image = \"http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/\"\n end\n obj_surface.setCustomObject(customInfo)\n obj_surface = obj_surface.reload()\n broadcastToAll(\"New Playmat Image Applied\", {0.2,0.9,0.2})\n end\n",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "0118ae",
"Name": "Custom_Token",
"Transform": {
"posX": 36.618,
"posY": 1.38481867,
"posZ": -65.8079,
"rotX": 1.58113885,
"rotY": 270.013153,
"rotZ": 0.016888041,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "TIC - 5B",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"ticmat_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,
"CustomImage": {
"ImageURL": "https://i.ibb.co/yYrzbYS/Innsmouth-5-Horror-in-High-Gear-Greg-Bobrowski-2.jpg",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "function onLoad()\n local params = {}\n params.click_function = 'updateSurface'\n params.function_owner = self\n params.label = 'Apply'\n params.tooltip= 'Left click to apply image, right click to revert to default.'\n params.position = {0,0.05,-1.6}\n params.rotation = {0,0,0}\n params.height = 250\n params.width = 580\n params.color = {0,0,0}\n params.font_color = {1,1,1}\n self.createButton(params)\nend\n\n function updateSurface(obj, color, alt_click)\n obj_surface = getObjectFromGUID(\"721ba2\")\n local customInfo = obj_surface.getCustomObject()\n if alt_click == false then\n customInfo.image = \"https://i.ibb.co/yYrzbYS/Innsmouth-5-Horror-in-High-Gear-Greg-Bobrowski-2.jpg\"\n else\n customInfo.image = \"http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/\"\n end\n obj_surface.setCustomObject(customInfo)\n obj_surface = obj_surface.reload()\n broadcastToAll(\"New Playmat Image Applied\", {0.2,0.9,0.2})\n end\n",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "ebe3a7",
"Name": "Custom_Token",
"Transform": {
"posX": 32.9844971,
"posY": 1.38402522,
"posZ": -65.80823,
"rotX": 1.59724891,
"rotY": 269.9771,
"rotZ": 0.016761234,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "TIC - 5C",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"ticmat_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,
"CustomImage": {
"ImageURL": "https://i.ibb.co/YkLFy7y/Innsmouth-5-Horror-in-High-Gear-Rostyslav-Zagornov.jpg",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "function onLoad()\n local params = {}\n params.click_function = 'updateSurface'\n params.function_owner = self\n params.label = 'Apply'\n params.tooltip= 'Left click to apply image, right click to revert to default.'\n params.position = {0,0.05,-1.6}\n params.rotation = {0,0,0}\n params.height = 250\n params.width = 580\n params.color = {0,0,0}\n params.font_color = {1,1,1}\n self.createButton(params)\nend\n\n function updateSurface(obj, color, alt_click)\n obj_surface = getObjectFromGUID(\"721ba2\")\n local customInfo = obj_surface.getCustomObject()\n if alt_click == false then\n customInfo.image = \"https://i.ibb.co/YkLFy7y/Innsmouth-5-Horror-in-High-Gear-Rostyslav-Zagornov.jpg\"\n else\n customInfo.image = \"http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/\"\n end\n obj_surface.setCustomObject(customInfo)\n obj_surface = obj_surface.reload()\n broadcastToAll(\"New Playmat Image Applied\", {0.2,0.9,0.2})\n end\n",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "0eff3a",
"Name": "Custom_Token",
"Transform": {
"posX": 29.3395863,
"posY": 1.382563,
"posZ": -65.80848,
"rotX": 1.5930115,
"rotY": 269.992981,
"rotZ": 0.0168056637,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "TIC - 5D",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"ticmat_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,
"CustomImage": {
"ImageURL": "https://i.ibb.co/fpKWhGY/Innsmouth-5-Horror-in-High-Gear-Guillem-H-Pongiluppi.jpg",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "function onLoad()\n local params = {}\n params.click_function = 'updateSurface'\n params.function_owner = self\n params.label = 'Apply'\n params.tooltip= 'Left click to apply image, right click to revert to default.'\n params.position = {0,0.05,-1.6}\n params.rotation = {0,0,0}\n params.height = 250\n params.width = 580\n params.color = {0,0,0}\n params.font_color = {1,1,1}\n self.createButton(params)\nend\n\n function updateSurface(obj, color, alt_click)\n obj_surface = getObjectFromGUID(\"721ba2\")\n local customInfo = obj_surface.getCustomObject()\n if alt_click == false then\n customInfo.image = \"https://i.ibb.co/fpKWhGY/Innsmouth-5-Horror-in-High-Gear-Guillem-H-Pongiluppi.jpg\"\n else\n customInfo.image = \"http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/\"\n end\n obj_surface.setCustomObject(customInfo)\n obj_surface = obj_surface.reload()\n broadcastToAll(\"New Playmat Image Applied\", {0.2,0.9,0.2})\n end\n",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "092468",
"Name": "Custom_Token",
"Transform": {
"posX": 40.2902565,
"posY": 1.38489079,
"posZ": -70.41981,
"rotX": 358.457733,
"rotY": 269.983154,
"rotZ": 0.0168140121,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "TIC - 6A",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"ticmat_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,
"CustomImage": {
"ImageURL": "https://i.ibb.co/Db2pRd6/Innsmouth-6-Light-in-the-Fog-JB-Caillet.jpg",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "function onLoad()\n local params = {}\n params.click_function = 'updateSurface'\n params.function_owner = self\n params.label = 'Apply'\n params.tooltip= 'Left click to apply image, right click to revert to default.'\n params.position = {0,0.05,-1.6}\n params.rotation = {0,0,0}\n params.height = 250\n params.width = 580\n params.color = {0,0,0}\n params.font_color = {1,1,1}\n self.createButton(params)\nend\n\n function updateSurface(obj, color, alt_click)\n obj_surface = getObjectFromGUID(\"721ba2\")\n local customInfo = obj_surface.getCustomObject()\n if alt_click == false then\n customInfo.image = \"https://i.ibb.co/Db2pRd6/Innsmouth-6-Light-in-the-Fog-JB-Caillet.jpg\"\n else\n customInfo.image = \"http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/\"\n end\n obj_surface.setCustomObject(customInfo)\n obj_surface = obj_surface.reload()\n broadcastToAll(\"New Playmat Image Applied\", {0.2,0.9,0.2})\n end\n",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "4f17e8",
"Name": "Custom_Token",
"Transform": {
"posX": 36.62412,
"posY": 1.33206391,
"posZ": -70.40835,
"rotX": 0.0208139978,
"rotY": 270.0027,
"rotZ": 0.016762441,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "TIC - 6B",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"ticmat_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,
"CustomImage": {
"ImageURL": "https://i.ibb.co/v1rhgqJ/Innsmouth-6-Light-in-the-Fog-Florian-Aupetit.jpg",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "function onLoad()\n local params = {}\n params.click_function = 'updateSurface'\n params.function_owner = self\n params.label = 'Apply'\n params.tooltip= 'Left click to apply image, right click to revert to default.'\n params.position = {0,0.05,-1.6}\n params.rotation = {0,0,0}\n params.height = 250\n params.width = 580\n params.color = {0,0,0}\n params.font_color = {1,1,1}\n self.createButton(params)\nend\n\n function updateSurface(obj, color, alt_click)\n obj_surface = getObjectFromGUID(\"721ba2\")\n local customInfo = obj_surface.getCustomObject()\n if alt_click == false then\n customInfo.image = \"https://i.ibb.co/v1rhgqJ/Innsmouth-6-Light-in-the-Fog-Florian-Aupetit.jpg\"\n else\n customInfo.image = \"http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/\"\n end\n obj_surface.setCustomObject(customInfo)\n obj_surface = obj_surface.reload()\n broadcastToAll(\"New Playmat Image Applied\", {0.2,0.9,0.2})\n end\n",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "08c430",
"Name": "Custom_Token",
"Transform": {
"posX": 25.5426025,
"posY": 1.33341527,
"posZ": -52.0431976,
"rotX": 0.0208029374,
"rotY": 270.020447,
"rotZ": 0.0167786032,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "TIC - 2E",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"ticmat_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,
"CustomImage": {
"ImageURL": "https://i.ibb.co/r2VqHSn/Innsmouth-2-Vanishing-of-Elina-Harper-Mihail-Bila.jpg",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "function onLoad()\n local params = {}\n params.click_function = 'updateSurface'\n params.function_owner = self\n params.label = 'Apply'\n params.tooltip= 'Left click to apply image, right click to revert to default.'\n params.position = {0,0.05,-1.6}\n params.rotation = {0,0,0}\n params.height = 250\n params.width = 580\n params.color = {0,0,0}\n params.font_color = {1,1,1}\n self.createButton(params)\nend\n\n function updateSurface(obj, color, alt_click)\n obj_surface = getObjectFromGUID(\"721ba2\")\n local customInfo = obj_surface.getCustomObject()\n if alt_click == false then\n customInfo.image = \"https://i.ibb.co/r2VqHSn/Innsmouth-2-Vanishing-of-Elina-Harper-Mihail-Bila.jpg\"\n else\n customInfo.image = \"http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/\"\n end\n obj_surface.setCustomObject(customInfo)\n obj_surface = obj_surface.reload()\n broadcastToAll(\"New Playmat Image Applied\", {0.2,0.9,0.2})\n end\n",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "7e861b",
"Name": "Custom_Token",
"Transform": {
"posX": 40.29024,
"posY": 1.38354266,
"posZ": -75.01991,
"rotX": 358.4578,
"rotY": 269.983276,
"rotZ": 0.016789671,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "TIC - 7A",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"ticmat_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,
"CustomImage": {
"ImageURL": "https://i.ibb.co/MZBpCbs/Innsmouth-7-Lair-of-Dagon-Guillem-H-Pongiluppi.jpg",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "function onLoad()\n local params = {}\n params.click_function = 'updateSurface'\n params.function_owner = self\n params.label = 'Apply'\n params.tooltip= 'Left click to apply image, right click to revert to default.'\n params.position = {0,0.05,-1.6}\n params.rotation = {0,0,0}\n params.height = 250\n params.width = 580\n params.color = {0,0,0}\n params.font_color = {1,1,1}\n self.createButton(params)\nend\n\n function updateSurface(obj, color, alt_click)\n obj_surface = getObjectFromGUID(\"721ba2\")\n local customInfo = obj_surface.getCustomObject()\n if alt_click == false then\n customInfo.image = \"https://i.ibb.co/MZBpCbs/Innsmouth-7-Lair-of-Dagon-Guillem-H-Pongiluppi.jpg\"\n else\n customInfo.image = \"http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/\"\n end\n obj_surface.setCustomObject(customInfo)\n obj_surface = obj_surface.reload()\n broadcastToAll(\"New Playmat Image Applied\", {0.2,0.9,0.2})\n end\n",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "d31f0f",
"Name": "Custom_Token",
"Transform": {
"posX": 36.6240578,
"posY": 1.33071649,
"posZ": -75.00846,
"rotX": 0.02080918,
"rotY": 269.98996,
"rotZ": 0.016723346,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "TIC - 7B",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"ticmat_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,
"CustomImage": {
"ImageURL": "https://i.ibb.co/QPwzQL5/Innsmouth-7-Lair-of-Dagon-Daria-Khlebnikova.jpg",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "function onLoad()\n local params = {}\n params.click_function = 'updateSurface'\n params.function_owner = self\n params.label = 'Apply'\n params.tooltip= 'Left click to apply image, right click to revert to default.'\n params.position = {0,0.05,-1.6}\n params.rotation = {0,0,0}\n params.height = 250\n params.width = 580\n params.color = {0,0,0}\n params.font_color = {1,1,1}\n self.createButton(params)\nend\n\n function updateSurface(obj, color, alt_click)\n obj_surface = getObjectFromGUID(\"721ba2\")\n local customInfo = obj_surface.getCustomObject()\n if alt_click == false then\n customInfo.image = \"https://i.ibb.co/QPwzQL5/Innsmouth-7-Lair-of-Dagon-Daria-Khlebnikova.jpg\"\n else\n customInfo.image = \"http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/\"\n end\n obj_surface.setCustomObject(customInfo)\n obj_surface = obj_surface.reload()\n broadcastToAll(\"New Playmat Image Applied\", {0.2,0.9,0.2})\n end\n",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "e0348a",
"Name": "Custom_Token",
"Transform": {
"posX": 40.2902565,
"posY": 1.38219655,
"posZ": -79.61984,
"rotX": 358.457733,
"rotY": 269.983215,
"rotZ": 0.0167974122,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "TIC - 8A",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"ticmat_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,
"CustomImage": {
"ImageURL": "https://i.ibb.co/k56Dn9q/Innsmouth-8-Into-the-Maelstrom-Mateusz-Michalski.jpg",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "function onLoad()\n local params = {}\n params.click_function = 'updateSurface'\n params.function_owner = self\n params.label = 'Apply'\n params.tooltip= 'Left click to apply image, right click to revert to default.'\n params.position = {0,0.05,-1.6}\n params.rotation = {0,0,0}\n params.height = 250\n params.width = 580\n params.color = {0,0,0}\n params.font_color = {1,1,1}\n self.createButton(params)\nend\n\n function updateSurface(obj, color, alt_click)\n obj_surface = getObjectFromGUID(\"721ba2\")\n local customInfo = obj_surface.getCustomObject()\n if alt_click == false then\n customInfo.image = \"https://i.ibb.co/k56Dn9q/Innsmouth-8-Into-the-Maelstrom-Mateusz-Michalski.jpg\"\n else\n customInfo.image = \"http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/\"\n end\n obj_surface.setCustomObject(customInfo)\n obj_surface = obj_surface.reload()\n broadcastToAll(\"New Playmat Image Applied\", {0.2,0.9,0.2})\n end\n",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "f1db94",
"Name": "Custom_Token",
"Transform": {
"posX": 36.6241264,
"posY": 1.3293699,
"posZ": -79.60833,
"rotX": 0.020828288,
"rotY": 269.988,
"rotZ": 0.01671506,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "TIC - 8B",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"ticmat_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,
"CustomImage": {
"ImageURL": "https://i.ibb.co/fkSXDgs/Innsmouth-8-Into-the-Maelstrom-Dimitri-Bielak.jpg",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "function onLoad()\n local params = {}\n params.click_function = 'updateSurface'\n params.function_owner = self\n params.label = 'Apply'\n params.tooltip= 'Left click to apply image, right click to revert to default.'\n params.position = {0,0.05,-1.6}\n params.rotation = {0,0,0}\n params.height = 250\n params.width = 580\n params.color = {0,0,0}\n params.font_color = {1,1,1}\n self.createButton(params)\nend\n\n function updateSurface(obj, color, alt_click)\n obj_surface = getObjectFromGUID(\"721ba2\")\n local customInfo = obj_surface.getCustomObject()\n if alt_click == false then\n customInfo.image = \"https://i.ibb.co/fkSXDgs/Innsmouth-8-Into-the-Maelstrom-Dimitri-Bielak.jpg\"\n else\n customInfo.image = \"http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/\"\n end\n obj_surface.setCustomObject(customInfo)\n obj_surface = obj_surface.reload()\n broadcastToAll(\"New Playmat Image Applied\", {0.2,0.9,0.2})\n end\n",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "f4f4be",
"Name": "Bag",
"Transform": {
"posX": 45.63946,
"posY": 1.09761083,
"posZ": -79.60859,
"rotX": 359.979156,
"rotY": 89.98569,
"rotZ": 359.983215,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Side Missions",
"Description": "sidemat",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 0.0,
"b": 0.0
},
"Tags": [
"playmat_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,
"MaterialIndex": -1,
"MeshIndex": -1,
"Bag": {
"Order": 0
},
"LuaScript": "---\r\n--- Generated by EmmyLua(https://github.com/EmmyLua)\r\n--- Created by Whimsical.\r\n--- DateTime: 2021-03-16 3:26 p.m.\r\n---\r\n\r\n--- Original Memory Bag by MrStump\r\n--- https://steamcommunity.com/sharedfiles/filedetails/?id=953770080\r\n\r\n---@class MemoryListEntry\r\n---@field public position Vector\r\n---@field public rotation Vector\r\n---@field public lock boolean\r\nlocal MemoryListEntry={}\r\n\r\n---@type table\r\nlocal memory_list = {}\r\n\r\nlocal POSTFIX = {\r\n SAVE = \"_memory_object\",\r\n ZONE = \"_memory_zone\",\r\n SHUFFLE = \"_memory_shuffle\"\r\n}\r\n\r\n---@type table\r\nlocal BUTTON = {\r\n POSITION = Vector(0, 0.3, -2),\r\n ROTATION = Vector(0, 180, 0),\r\n HEIGHT = 350,\r\n WIDTH = 800,\r\n FONT_SIZE = 250,\r\n COLOR = Color.Black,\r\n FONT_COLOR = Color.White\r\n}\r\n\r\nlocal ipairs = ipairs\r\nlocal pairs = pairs\r\n\r\n---@return string\r\nlocal function get_prefix()\r\n return self:getDescription()\r\nend\r\n\r\nlocal function updateSave()\r\n local data_to_save = {[\"ml\"]=memory_list}\r\n local saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\n---@param label string\r\n---@param action string\r\nlocal function createButton(label, action)\r\n self:clearButtons()\r\n\r\n ---@type CreateClassicUIButton\r\n local parameters = {\r\n label = label,\r\n click_function = action,\r\n function_owner = self\r\n }\r\n\r\n for key, value in pairs(BUTTON) do\r\n parameters[key:lower()] = value\r\n end\r\n\r\n self:createButton(parameters)\r\nend\r\n\r\nlocal function create_place_button() createButton(\"Place\", \"place_objects\") end\r\nlocal function create_recall_button() createButton(\"Recall\", \"recall_objects\") end\r\n\r\n---@param tag string\r\n---@param lock boolean\r\n---@return fun(object:TTSObject)\r\nlocal function create_object_callback(tag, lock)\r\n ---@param object TTSObject\r\n return function (object)\r\n object:setLock(lock)\r\n if object:hasTag(tag) then object:shuffle() end\r\n end\r\nend\r\n\r\n---@param object TTSObject\r\nlocal function record_objects(object)\r\n memory_list[object:getGUID()] = {\r\n position = object:getPosition(),\r\n rotation = object:getRotation(),\r\n lock = object:getLock()\r\n }\r\n self:putObject(object)\r\nend\r\n\r\n---@param objects TTSObject[]\r\nlocal function update_objects(objects)\r\n for _, object in ipairs(objects) do\r\n record_objects(object)\r\n end\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction place_objects()\r\n local prefix = get_prefix()\r\n local shuffle_tag = prefix .. POSTFIX.SHUFFLE\r\n local content = self.getObjects()\r\n\r\n for _, item in ipairs(content) do\r\n local entry = memory_list[item.guid]\r\n if entry then\r\n self.takeObject {\r\n guid=item.guid,\r\n position=entry.position,\r\n rotation=entry.rotation,\r\n callback_function = create_object_callback(shuffle_tag, entry.lock)\r\n }\r\n end\r\n end\r\n\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\n create_recall_button()\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction recall_objects()\r\n memory_list = {}\r\n local prefix = get_prefix()\r\n\r\n if prefix==\"\" then\r\n broadcastToAll(\"Error in Memory Bag: Tag prefix not set.\")\r\n return\r\n end\r\n\r\n local save_tag = prefix .. POSTFIX.SAVE\r\n local zone_tag = prefix .. POSTFIX.ZONE\r\n\r\n local zones = getObjectsWithTag(zone_tag)\r\n if #zones>0 then\r\n for _, zone in ipairs(zones) do\r\n update_objects(zone:getObjects())\r\n end\r\n else\r\n update_objects(getObjectsWithTag(save_tag))\r\n end\r\n updateSave()\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\n create_place_button()\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memory_list = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memory_list = {}\r\n end\r\n\r\n if self:getQuantity()==0 then\r\n create_recall_button()\r\n else\r\n create_place_button()\r\n end\r\nend",
"LuaScriptState": "{\"ml\":{\"03efce\":{\"lock\":false,\"position\":{\"x\":40.2900695800781,\"y\":1.33069908618927,\"z\":-79.6198806762695},\"rotation\":{\"x\":0.0208132974803448,\"y\":269.985595703125,\"z\":0.0167657695710659}},\"07d749\":{\"lock\":false,\"position\":{\"x\":25.6874008178711,\"y\":1.38649773597717,\"z\":-47.4359664916992},\"rotation\":{\"x\":1.58946335315704,\"y\":269.995819091797,\"z\":0.0168047267943621}},\"12dc42\":{\"lock\":false,\"position\":{\"x\":25.4973735809326,\"y\":1.38354766368866,\"z\":-56.611457824707},\"rotation\":{\"x\":358.458068847656,\"y\":269.979522705078,\"z\":0.0167995449155569}},\"1948e6\":{\"lock\":false,\"position\":{\"x\":40.2902412414551,\"y\":1.38489603996277,\"z\":-70.4197998046875},\"rotation\":{\"x\":358.459045410156,\"y\":269.983062744141,\"z\":0.0168840363621712}},\"1e0757\":{\"lock\":false,\"position\":{\"x\":40.2900772094727,\"y\":1.33877789974213,\"z\":-52.0199775695801},\"rotation\":{\"x\":0.0208132229745388,\"y\":269.985412597656,\"z\":0.0167655758559704}},\"218bf9\":{\"lock\":false,\"position\":{\"x\":40.2899436950684,\"y\":1.33742737770081,\"z\":-56.6199073791504},\"rotation\":{\"x\":0.0208304524421692,\"y\":269.998413085938,\"z\":0.0166112296283245}},\"268604\":{\"lock\":false,\"position\":{\"x\":21.8304290771484,\"y\":1.33073234558105,\"z\":-56.6004219055176},\"rotation\":{\"x\":0.0208381861448288,\"y\":269.989318847656,\"z\":0.0167312975972891}},\"2a2e57\":{\"lock\":false,\"position\":{\"x\":29.339412689209,\"y\":1.38523054122925,\"z\":-56.6081314086914},\"rotation\":{\"x\":1.59223198890686,\"y\":269.988067626953,\"z\":0.0167942885309458}},\"32c136\":{\"lock\":false,\"position\":{\"x\":40.274284362793,\"y\":1.32800400257111,\"z\":-88.8075485229492},\"rotation\":{\"x\":0.0208089184015989,\"y\":270.000030517578,\"z\":0.0167711079120636}},\"36e6f8\":{\"lock\":false,\"position\":{\"x\":40.2904167175293,\"y\":1.38623154163361,\"z\":-65.8198394775391},\"rotation\":{\"x\":358.457855224609,\"y\":269.992553710938,\"z\":0.0168309845030308}},\"46cd9b\":{\"lock\":false,\"position\":{\"x\":36.6242561340332,\"y\":1.38527739048004,\"z\":-65.8083877563477},\"rotation\":{\"x\":358.446441650391,\"y\":269.997253417969,\"z\":0.0168076418340206}},\"63b912\":{\"lock\":false,\"position\":{\"x\":36.624397277832,\"y\":1.39066636562347,\"z\":-47.4084243774414},\"rotation\":{\"x\":358.446472167969,\"y\":269.985412597656,\"z\":0.016811165958643}},\"6d39e9\":{\"lock\":false,\"position\":{\"x\":36.6240539550781,\"y\":1.33206379413605,\"z\":-70.4083557128906},\"rotation\":{\"x\":0.0199197791516781,\"y\":270.008178710938,\"z\":0.0166957136243582}},\"71c514\":{\"lock\":false,\"position\":{\"x\":40.2900657653809,\"y\":1.33204555511475,\"z\":-75.0199737548828},\"rotation\":{\"x\":0.0208129957318306,\"y\":269.985626220703,\"z\":0.0167659129947424}},\"76157c\":{\"lock\":false,\"position\":{\"x\":36.6238670349121,\"y\":1.38624775409698,\"z\":-61.2081832885742},\"rotation\":{\"x\":1.58368349075317,\"y\":269.984252929688,\"z\":0.01678685285151}},\"77cf3d\":{\"lock\":false,\"position\":{\"x\":29.3391399383545,\"y\":1.33614206314087,\"z\":-47.4095993041992},\"rotation\":{\"x\":0.0208974331617355,\"y\":269.988586425781,\"z\":0.0164421182125807}},\"969149\":{\"lock\":false,\"position\":{\"x\":40.289981842041,\"y\":1.32935261726379,\"z\":-84.2198715209961},\"rotation\":{\"x\":0.0208133328706026,\"y\":269.985595703125,\"z\":0.0167657677084208}},\"96fe2f\":{\"lock\":false,\"position\":{\"x\":32.9849624633789,\"y\":1.38926613330841,\"z\":-47.4095344543457},\"rotation\":{\"x\":358.44873046875,\"y\":270.021575927734,\"z\":0.016732944175601}},\"99ee1e\":{\"lock\":false,\"position\":{\"x\":40.2900695800781,\"y\":1.33608162403107,\"z\":-61.2199897766113},\"rotation\":{\"x\":0.0208388082683086,\"y\":269.985595703125,\"z\":0.0166375711560249}},\"a9db71\":{\"lock\":false,\"position\":{\"x\":36.6273536682129,\"y\":1.43607747554779,\"z\":-56.6083679199219},\"rotation\":{\"x\":0.0203125923871994,\"y\":269.975769042969,\"z\":0.0164733435958624}},\"be250d\":{\"lock\":false,\"position\":{\"x\":32.9853019714355,\"y\":1.33477675914764,\"z\":-56.6083221435547},\"rotation\":{\"x\":0.0208690259605646,\"y\":269.985565185547,\"z\":0.0165616199374199}},\"d39fc2\":{\"lock\":false,\"position\":{\"x\":32.9843368530273,\"y\":1.3320871591568,\"z\":-65.8083038330078},\"rotation\":{\"x\":0.0208927989006042,\"y\":270.001312255859,\"z\":0.0167022738605738}},\"fa41e2\":{\"lock\":false,\"position\":{\"x\":40.2912559509277,\"y\":1.39161586761475,\"z\":-47.4199523925781},\"rotation\":{\"x\":358.457946777344,\"y\":269.984344482422,\"z\":0.0168155580759048}}}}",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "1948e6",
"Name": "Custom_Token",
"Transform": {
"posX": 40.29024,
"posY": 1.384896,
"posZ": -70.4198,
"rotX": 358.459045,
"rotY": 269.983063,
"rotZ": 0.0168840364,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Blob A",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"sidemat_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,
"CustomImage": {
"ImageURL": "https://i.ibb.co/qJzstWF/Blob-That-Ate-Everything-Emilio-Rodriguez.jpg",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "function onLoad()\n local params = {}\n params.click_function = 'updateSurface'\n params.function_owner = self\n params.label = 'Apply'\n params.tooltip= 'Left click to apply image, right click to revert to default.'\n params.position = {0,0.05,-1.6}\n params.rotation = {0,0,0}\n params.height = 250\n params.width = 580\n params.color = {0,0,0}\n params.font_color = {1,1,1}\n self.createButton(params)\nend\n\n function updateSurface(obj, color, alt_click)\n obj_surface = getObjectFromGUID(\"721ba2\")\n local customInfo = obj_surface.getCustomObject()\n if alt_click == false then\n customInfo.image = \"https://i.ibb.co/qJzstWF/Blob-That-Ate-Everything-Emilio-Rodriguez.jpg\"\n else\n customInfo.image = \"http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/\"\n end\n obj_surface.setCustomObject(customInfo)\n obj_surface = obj_surface.reload()\n broadcastToAll(\"New Playmat Image Applied\", {0.2,0.9,0.2})\n end\n",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "6d39e9",
"Name": "Custom_Token",
"Transform": {
"posX": 36.624054,
"posY": 1.33206379,
"posZ": -70.4083557,
"rotX": 0.01991978,
"rotY": 270.008179,
"rotZ": 0.0166957136,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Blob B",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"sidemat_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,
"CustomImage": {
"ImageURL": "https://i.ibb.co/JxFV4ZN/Blob-That-Ate-Everything-Emilio-Rodriguez.jpg",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "function onLoad()\n local params = {}\n params.click_function = 'updateSurface'\n params.function_owner = self\n params.label = 'Apply'\n params.tooltip= 'Left click to apply image, right click to revert to default.'\n params.position = {0,0.05,-1.6}\n params.rotation = {0,0,0}\n params.height = 250\n params.width = 580\n params.color = {0,0,0}\n params.font_color = {1,1,1}\n self.createButton(params)\nend\n\n function updateSurface(obj, color, alt_click)\n obj_surface = getObjectFromGUID(\"721ba2\")\n local customInfo = obj_surface.getCustomObject()\n if alt_click == false then\n customInfo.image = \"https://i.ibb.co/JxFV4ZN/Blob-That-Ate-Everything-Emilio-Rodriguez.jpg\"\n else\n customInfo.image = \"http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/\"\n end\n obj_surface.setCustomObject(customInfo)\n obj_surface = obj_surface.reload()\n broadcastToAll(\"New Playmat Image Applied\", {0.2,0.9,0.2})\n end\n",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "fa41e2",
"Name": "Custom_Token",
"Transform": {
"posX": 40.291256,
"posY": 1.39161587,
"posZ": -47.4199524,
"rotX": 358.457947,
"rotY": 269.984344,
"rotZ": 0.0168155581,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Rougarou A",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"sidemat_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,
"CustomImage": {
"ImageURL": "https://i.ibb.co/Qf7Sr7P/Curse-of-the-Rougarou.jpg",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "function onLoad()\n local params = {}\n params.click_function = 'updateSurface'\n params.function_owner = self\n params.label = 'Apply'\n params.tooltip= 'Left click to apply image, right click to revert to default.'\n params.position = {0,0.05,-1.6}\n params.rotation = {0,0,0}\n params.height = 250\n params.width = 580\n params.color = {0,0,0}\n params.font_color = {1,1,1}\n self.createButton(params)\nend\n\n function updateSurface(obj, color, alt_click)\n obj_surface = getObjectFromGUID(\"721ba2\")\n local customInfo = obj_surface.getCustomObject()\n if alt_click == false then\n customInfo.image = \"https://i.ibb.co/Qf7Sr7P/Curse-of-the-Rougarou.jpg\"\n else\n customInfo.image = \"http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/\"\n end\n obj_surface.setCustomObject(customInfo)\n obj_surface = obj_surface.reload()\n broadcastToAll(\"New Playmat Image Applied\", {0.2,0.9,0.2})\n end\n",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "63b912",
"Name": "Custom_Token",
"Transform": {
"posX": 36.6243973,
"posY": 1.39066637,
"posZ": -47.4084244,
"rotX": 358.446472,
"rotY": 269.9854,
"rotZ": 0.016811166,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Rougarou B",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"sidemat_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,
"CustomImage": {
"ImageURL": "https://i.ibb.co/ZxGTC1w/Curse-of-the-Rougarou-Lachlan-Page.jpg",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "function onLoad()\n local params = {}\n params.click_function = 'updateSurface'\n params.function_owner = self\n params.label = 'Apply'\n params.tooltip= 'Left click to apply image, right click to revert to default.'\n params.position = {0,0.05,-1.6}\n params.rotation = {0,0,0}\n params.height = 250\n params.width = 580\n params.color = {0,0,0}\n params.font_color = {1,1,1}\n self.createButton(params)\nend\n\n function updateSurface(obj, color, alt_click)\n obj_surface = getObjectFromGUID(\"721ba2\")\n local customInfo = obj_surface.getCustomObject()\n if alt_click == false then\n customInfo.image = \"https://i.ibb.co/ZxGTC1w/Curse-of-the-Rougarou-Lachlan-Page.jpg\"\n else\n customInfo.image = \"http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/\"\n end\n obj_surface.setCustomObject(customInfo)\n obj_surface = obj_surface.reload()\n broadcastToAll(\"New Playmat Image Applied\", {0.2,0.9,0.2})\n end\n",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "1e0757",
"Name": "Custom_Token",
"Transform": {
"posX": 40.2900772,
"posY": 1.3387779,
"posZ": -52.0199776,
"rotX": 0.020813223,
"rotY": 269.9854,
"rotZ": 0.0167655759,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Carnevale",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"sidemat_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,
"CustomImage": {
"ImageURL": "https://i.ibb.co/ZchJBpz/Carnevale-of-Horrors.jpg",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "function onLoad()\n local params = {}\n params.click_function = 'updateSurface'\n params.function_owner = self\n params.label = 'Apply'\n params.tooltip= 'Left click to apply image, right click to revert to default.'\n params.position = {0,0.05,-1.6}\n params.rotation = {0,0,0}\n params.height = 250\n params.width = 580\n params.color = {0,0,0}\n params.font_color = {1,1,1}\n self.createButton(params)\nend\n\n function updateSurface(obj, color, alt_click)\n obj_surface = getObjectFromGUID(\"721ba2\")\n local customInfo = obj_surface.getCustomObject()\n if alt_click == false then\n customInfo.image = \"https://i.ibb.co/ZchJBpz/Carnevale-of-Horrors.jpg\"\n else\n customInfo.image = \"http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/\"\n end\n obj_surface.setCustomObject(customInfo)\n obj_surface = obj_surface.reload()\n broadcastToAll(\"New Playmat Image Applied\", {0.2,0.9,0.2})\n end\n",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "a9db71",
"Name": "Custom_Token",
"Transform": {
"posX": 36.6273537,
"posY": 1.43607748,
"posZ": -56.6083679,
"rotX": 0.0203125924,
"rotY": 269.975769,
"rotZ": 0.0164733436,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Guardians of the Abyss B",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"sidemat_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,
"CustomImage": {
"ImageURL": "https://i.ibb.co/jMHPcvz/Guardians-of-the-Abyss-Jose-Vega.jpg",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "function onLoad()\n local params = {}\n params.click_function = 'updateSurface'\n params.function_owner = self\n params.label = 'Apply'\n params.tooltip= 'Left click to apply image, right click to revert to default.'\n params.position = {0,0.05,-1.6}\n params.rotation = {0,0,0}\n params.height = 250\n params.width = 580\n params.color = {0,0,0}\n params.font_color = {1,1,1}\n self.createButton(params)\nend\n\n function updateSurface(obj, color, alt_click)\n obj_surface = getObjectFromGUID(\"721ba2\")\n local customInfo = obj_surface.getCustomObject()\n if alt_click == false then\n customInfo.image = \"https://i.ibb.co/jMHPcvz/Guardians-of-the-Abyss-Jose-Vega.jpg\"\n else\n customInfo.image = \"http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/\"\n end\n obj_surface.setCustomObject(customInfo)\n obj_surface = obj_surface.reload()\n broadcastToAll(\"New Playmat Image Applied\", {0.2,0.9,0.2})\n end\n",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "218bf9",
"Name": "Custom_Token",
"Transform": {
"posX": 40.2899437,
"posY": 1.33742738,
"posZ": -56.6199074,
"rotX": 0.0208304524,
"rotY": 269.9984,
"rotZ": 0.01661123,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Guardians of the Abyss A",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"sidemat_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,
"CustomImage": {
"ImageURL": "https://i.ibb.co/Vpzptmt/Guardians-of-the-Abyss-Yujin-Choo.jpg",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "function onLoad()\n local params = {}\n params.click_function = 'updateSurface'\n params.function_owner = self\n params.label = 'Apply'\n params.tooltip= 'Left click to apply image, right click to revert to default.'\n params.position = {0,0.05,-1.6}\n params.rotation = {0,0,0}\n params.height = 250\n params.width = 580\n params.color = {0,0,0}\n params.font_color = {1,1,1}\n self.createButton(params)\nend\n\n function updateSurface(obj, color, alt_click)\n obj_surface = getObjectFromGUID(\"721ba2\")\n local customInfo = obj_surface.getCustomObject()\n if alt_click == false then\n customInfo.image = \"https://i.ibb.co/Vpzptmt/Guardians-of-the-Abyss-Yujin-Choo.jpg\"\n else\n customInfo.image = \"http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/\"\n end\n obj_surface.setCustomObject(customInfo)\n obj_surface = obj_surface.reload()\n broadcastToAll(\"New Playmat Image Applied\", {0.2,0.9,0.2})\n end\n",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "99ee1e",
"Name": "Custom_Token",
"Transform": {
"posX": 40.29007,
"posY": 1.33608162,
"posZ": -61.21999,
"rotX": 0.0208388083,
"rotY": 269.9856,
"rotZ": 0.0166375712,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Hotel Excelsior A",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"sidemat_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,
"CustomImage": {
"ImageURL": "https://i.ibb.co/vBQRHNS/Murder-at-Excelsior-Hotel-Romain-Bayle.jpg",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "function onLoad()\n local params = {}\n params.click_function = 'updateSurface'\n params.function_owner = self\n params.label = 'Apply'\n params.tooltip= 'Left click to apply image, right click to revert to default.'\n params.position = {0,0.05,-1.6}\n params.rotation = {0,0,0}\n params.height = 250\n params.width = 580\n params.color = {0,0,0}\n params.font_color = {1,1,1}\n self.createButton(params)\nend\n\n function updateSurface(obj, color, alt_click)\n obj_surface = getObjectFromGUID(\"721ba2\")\n local customInfo = obj_surface.getCustomObject()\n if alt_click == false then\n customInfo.image = \"https://i.ibb.co/vBQRHNS/Murder-at-Excelsior-Hotel-Romain-Bayle.jpg\"\n else\n customInfo.image = \"http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/\"\n end\n obj_surface.setCustomObject(customInfo)\n obj_surface = obj_surface.reload()\n broadcastToAll(\"New Playmat Image Applied\", {0.2,0.9,0.2})\n end\n",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "76157c",
"Name": "Custom_Token",
"Transform": {
"posX": 36.623867,
"posY": 1.38624775,
"posZ": -61.2081833,
"rotX": 1.58368349,
"rotY": 269.984253,
"rotZ": 0.0167868529,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Hotel Excelsior B",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"sidemat_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,
"CustomImage": {
"ImageURL": "https://i.ibb.co/5cQ6LvN/Murder-at-Excelsior-Hotel-Alistair-Mitchell.jpg",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "function onLoad()\n local params = {}\n params.click_function = 'updateSurface'\n params.function_owner = self\n params.label = 'Apply'\n params.tooltip= 'Left click to apply image, right click to revert to default.'\n params.position = {0,0.05,-1.6}\n params.rotation = {0,0,0}\n params.height = 250\n params.width = 580\n params.color = {0,0,0}\n params.font_color = {1,1,1}\n self.createButton(params)\nend\n\n function updateSurface(obj, color, alt_click)\n obj_surface = getObjectFromGUID(\"721ba2\")\n local customInfo = obj_surface.getCustomObject()\n if alt_click == false then\n customInfo.image = \"https://i.ibb.co/5cQ6LvN/Murder-at-Excelsior-Hotel-Alistair-Mitchell.jpg\"\n else\n customInfo.image = \"http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/\"\n end\n obj_surface.setCustomObject(customInfo)\n obj_surface = obj_surface.reload()\n broadcastToAll(\"New Playmat Image Applied\", {0.2,0.9,0.2})\n end\n",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "96fe2f",
"Name": "Custom_Token",
"Transform": {
"posX": 32.9849625,
"posY": 1.38926613,
"posZ": -47.4095345,
"rotX": 358.44873,
"rotY": 270.021576,
"rotZ": 0.0167329442,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Rougarou C",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"sidemat_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,
"CustomImage": {
"ImageURL": "https://i.ibb.co/BK7rmJ9/Curse-of-the-Rougarou-Karine-Villette.jpg",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "function onLoad()\n local params = {}\n params.click_function = 'updateSurface'\n params.function_owner = self\n params.label = 'Apply'\n params.tooltip= 'Left click to apply image, right click to revert to default.'\n params.position = {0,0.05,-1.6}\n params.rotation = {0,0,0}\n params.height = 250\n params.width = 580\n params.color = {0,0,0}\n params.font_color = {1,1,1}\n self.createButton(params)\nend\n\n function updateSurface(obj, color, alt_click)\n obj_surface = getObjectFromGUID(\"721ba2\")\n local customInfo = obj_surface.getCustomObject()\n if alt_click == false then\n customInfo.image = \"https://i.ibb.co/BK7rmJ9/Curse-of-the-Rougarou-Karine-Villette.jpg\"\n else\n customInfo.image = \"http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/\"\n end\n obj_surface.setCustomObject(customInfo)\n obj_surface = obj_surface.reload()\n broadcastToAll(\"New Playmat Image Applied\", {0.2,0.9,0.2})\n end\n",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "be250d",
"Name": "Custom_Token",
"Transform": {
"posX": 32.985302,
"posY": 1.33477676,
"posZ": -56.6083221,
"rotX": 0.020869026,
"rotY": 269.985565,
"rotZ": 0.01656162,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Guardians of the Abyss C",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"sidemat_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,
"CustomImage": {
"ImageURL": "https://i.ibb.co/QbMvjbx/Guardians-of-the-Abyss-Mike-Szabados.jpg",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "function onLoad()\n local params = {}\n params.click_function = 'updateSurface'\n params.function_owner = self\n params.label = 'Apply'\n params.tooltip= 'Left click to apply image, right click to revert to default.'\n params.position = {0,0.05,-1.6}\n params.rotation = {0,0,0}\n params.height = 250\n params.width = 580\n params.color = {0,0,0}\n params.font_color = {1,1,1}\n self.createButton(params)\nend\n\n function updateSurface(obj, color, alt_click)\n obj_surface = getObjectFromGUID(\"721ba2\")\n local customInfo = obj_surface.getCustomObject()\n if alt_click == false then\n customInfo.image = \"https://i.ibb.co/QbMvjbx/Guardians-of-the-Abyss-Mike-Szabados.jpg\"\n else\n customInfo.image = \"http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/\"\n end\n obj_surface.setCustomObject(customInfo)\n obj_surface = obj_surface.reload()\n broadcastToAll(\"New Playmat Image Applied\", {0.2,0.9,0.2})\n end\n",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "2a2e57",
"Name": "Custom_Token",
"Transform": {
"posX": 29.3394127,
"posY": 1.38523054,
"posZ": -56.60813,
"rotX": 1.592232,
"rotY": 269.988068,
"rotZ": 0.0167942885,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Guardians of the Abyss D",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"sidemat_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,
"CustomImage": {
"ImageURL": "https://i.ibb.co/99pqXQP/Guardians-of-the-Abyss-Koke-Nunez.jpg",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "function onLoad()\n local params = {}\n params.click_function = 'updateSurface'\n params.function_owner = self\n params.label = 'Apply'\n params.tooltip= 'Left click to apply image, right click to revert to default.'\n params.position = {0,0.05,-1.6}\n params.rotation = {0,0,0}\n params.height = 250\n params.width = 580\n params.color = {0,0,0}\n params.font_color = {1,1,1}\n self.createButton(params)\nend\n\n function updateSurface(obj, color, alt_click)\n obj_surface = getObjectFromGUID(\"721ba2\")\n local customInfo = obj_surface.getCustomObject()\n if alt_click == false then\n customInfo.image = \"https://i.ibb.co/99pqXQP/Guardians-of-the-Abyss-Koke-Nunez.jpg\"\n else\n customInfo.image = \"http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/\"\n end\n obj_surface.setCustomObject(customInfo)\n obj_surface = obj_surface.reload()\n broadcastToAll(\"New Playmat Image Applied\", {0.2,0.9,0.2})\n end\n",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "36e6f8",
"Name": "Custom_Token",
"Transform": {
"posX": 40.2904167,
"posY": 1.38623154,
"posZ": -65.81984,
"rotX": 358.457855,
"rotY": 269.992554,
"rotZ": 0.0168309845,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Labyrinth A",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"sidemat_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,
"CustomImage": {
"ImageURL": "https://i.ibb.co/44DXfWw/Labyrinths-of-Lunacy-Richard-Wright.jpg",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "function onLoad()\n local params = {}\n params.click_function = 'updateSurface'\n params.function_owner = self\n params.label = 'Apply'\n params.tooltip= 'Left click to apply image, right click to revert to default.'\n params.position = {0,0.05,-1.6}\n params.rotation = {0,0,0}\n params.height = 250\n params.width = 580\n params.color = {0,0,0}\n params.font_color = {1,1,1}\n self.createButton(params)\nend\n\n function updateSurface(obj, color, alt_click)\n obj_surface = getObjectFromGUID(\"721ba2\")\n local customInfo = obj_surface.getCustomObject()\n if alt_click == false then\n customInfo.image = \"https://i.ibb.co/44DXfWw/Labyrinths-of-Lunacy-Richard-Wright.jpg\"\n else\n customInfo.image = \"http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/\"\n end\n obj_surface.setCustomObject(customInfo)\n obj_surface = obj_surface.reload()\n broadcastToAll(\"New Playmat Image Applied\", {0.2,0.9,0.2})\n end\n",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "46cd9b",
"Name": "Custom_Token",
"Transform": {
"posX": 36.6242561,
"posY": 1.38527739,
"posZ": -65.80839,
"rotX": 358.446442,
"rotY": 269.997253,
"rotZ": 0.0168076418,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Labyrinth B",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"sidemat_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,
"CustomImage": {
"ImageURL": "https://i.ibb.co/f17PMCC/Labyrinths-of-Lunacy-Cordelia-Wolf.jpg",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "function onLoad()\n local params = {}\n params.click_function = 'updateSurface'\n params.function_owner = self\n params.label = 'Apply'\n params.tooltip= 'Left click to apply image, right click to revert to default.'\n params.position = {0,0.05,-1.6}\n params.rotation = {0,0,0}\n params.height = 250\n params.width = 580\n params.color = {0,0,0}\n params.font_color = {1,1,1}\n self.createButton(params)\nend\n\n function updateSurface(obj, color, alt_click)\n obj_surface = getObjectFromGUID(\"721ba2\")\n local customInfo = obj_surface.getCustomObject()\n if alt_click == false then\n customInfo.image = \"https://i.ibb.co/f17PMCC/Labyrinths-of-Lunacy-Cordelia-Wolf.jpg\"\n else\n customInfo.image = \"http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/\"\n end\n obj_surface.setCustomObject(customInfo)\n obj_surface = obj_surface.reload()\n broadcastToAll(\"New Playmat Image Applied\", {0.2,0.9,0.2})\n end\n",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "d39fc2",
"Name": "Custom_Token",
"Transform": {
"posX": 32.9843369,
"posY": 1.33208716,
"posZ": -65.8083038,
"rotX": 0.0208927989,
"rotY": 270.0013,
"rotZ": 0.0167022739,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Labyrinth C",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"sidemat_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,
"CustomImage": {
"ImageURL": "https://i.ibb.co/jMQhs68/Labyrinths-of-Lunacy-Robert-Berg.jpg",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "function onLoad()\n local params = {}\n params.click_function = 'updateSurface'\n params.function_owner = self\n params.label = 'Apply'\n params.tooltip= 'Left click to apply image, right click to revert to default.'\n params.position = {0,0.05,-1.6}\n params.rotation = {0,0,0}\n params.height = 250\n params.width = 580\n params.color = {0,0,0}\n params.font_color = {1,1,1}\n self.createButton(params)\nend\n\n function updateSurface(obj, color, alt_click)\n obj_surface = getObjectFromGUID(\"721ba2\")\n local customInfo = obj_surface.getCustomObject()\n if alt_click == false then\n customInfo.image = \"https://i.ibb.co/jMQhs68/Labyrinths-of-Lunacy-Robert-Berg.jpg\"\n else\n customInfo.image = \"http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/\"\n end\n obj_surface.setCustomObject(customInfo)\n obj_surface = obj_surface.reload()\n broadcastToAll(\"New Playmat Image Applied\", {0.2,0.9,0.2})\n end\n",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "77cf3d",
"Name": "Custom_Token",
"Transform": {
"posX": 29.33914,
"posY": 1.33614206,
"posZ": -47.4096,
"rotX": 0.0208974332,
"rotY": 269.9886,
"rotZ": 0.0164421182,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Rougarou D",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"sidemat_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,
"CustomImage": {
"ImageURL": "https://i.ibb.co/HgNXJhW/Curse-of-the-Rougarou-Vladimir-Manyukhin.jpg",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "function onLoad()\n local params = {}\n params.click_function = 'updateSurface'\n params.function_owner = self\n params.label = 'Apply'\n params.tooltip= 'Left click to apply image, right click to revert to default.'\n params.position = {0,0.05,-1.6}\n params.rotation = {0,0,0}\n params.height = 250\n params.width = 580\n params.color = {0,0,0}\n params.font_color = {1,1,1}\n self.createButton(params)\nend\n\n function updateSurface(obj, color, alt_click)\n obj_surface = getObjectFromGUID(\"721ba2\")\n local customInfo = obj_surface.getCustomObject()\n if alt_click == false then\n customInfo.image = \"https://i.ibb.co/HgNXJhW/Curse-of-the-Rougarou-Vladimir-Manyukhin.jpg\"\n else\n customInfo.image = \"http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/\"\n end\n obj_surface.setCustomObject(customInfo)\n obj_surface = obj_surface.reload()\n broadcastToAll(\"New Playmat Image Applied\", {0.2,0.9,0.2})\n end\n",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "07d749",
"Name": "Custom_Token",
"Transform": {
"posX": 25.6874,
"posY": 1.38649774,
"posZ": -47.4359665,
"rotX": 1.58946335,
"rotY": 269.995819,
"rotZ": 0.0168047268,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Rougarou E",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"sidemat_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,
"CustomImage": {
"ImageURL": "https://i.ibb.co/hs1Qjp0/Curse-of-the-Rougarou-Ann-Kovaleva.jpg",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "function onLoad()\n local params = {}\n params.click_function = 'updateSurface'\n params.function_owner = self\n params.label = 'Apply'\n params.tooltip= 'Left click to apply image, right click to revert to default.'\n params.position = {0,0.05,-1.6}\n params.rotation = {0,0,0}\n params.height = 250\n params.width = 580\n params.color = {0,0,0}\n params.font_color = {1,1,1}\n self.createButton(params)\nend\n\n function updateSurface(obj, color, alt_click)\n obj_surface = getObjectFromGUID(\"721ba2\")\n local customInfo = obj_surface.getCustomObject()\n if alt_click == false then\n customInfo.image = \"https://i.ibb.co/hs1Qjp0/Curse-of-the-Rougarou-Ann-Kovaleva.jpg\"\n else\n customInfo.image = \"http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/\"\n end\n obj_surface.setCustomObject(customInfo)\n obj_surface = obj_surface.reload()\n broadcastToAll(\"New Playmat Image Applied\", {0.2,0.9,0.2})\n end\n",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "12dc42",
"Name": "Custom_Token",
"Transform": {
"posX": 25.4973736,
"posY": 1.38354766,
"posZ": -56.6114578,
"rotX": 358.458069,
"rotY": 269.979523,
"rotZ": 0.0167995449,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Guardians of the Abyss E",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"sidemat_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,
"CustomImage": {
"ImageURL": "https://i.ibb.co/gD3R6cw/Guardians-of-the-Abyss-Jake-Murray.jpg",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "function onLoad()\n local params = {}\n params.click_function = 'updateSurface'\n params.function_owner = self\n params.label = 'Apply'\n params.tooltip= 'Left click to apply image, right click to revert to default.'\n params.position = {0,0.05,-1.6}\n params.rotation = {0,0,0}\n params.height = 250\n params.width = 580\n params.color = {0,0,0}\n params.font_color = {1,1,1}\n self.createButton(params)\nend\n\n function updateSurface(obj, color, alt_click)\n obj_surface = getObjectFromGUID(\"721ba2\")\n local customInfo = obj_surface.getCustomObject()\n if alt_click == false then\n customInfo.image = \"https://i.ibb.co/gD3R6cw/Guardians-of-the-Abyss-Jake-Murray.jpg\"\n else\n customInfo.image = \"http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/\"\n end\n obj_surface.setCustomObject(customInfo)\n obj_surface = obj_surface.reload()\n broadcastToAll(\"New Playmat Image Applied\", {0.2,0.9,0.2})\n end\n",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "71c514",
"Name": "Custom_Token",
"Transform": {
"posX": 40.2900658,
"posY": 1.33204556,
"posZ": -75.01997,
"rotX": 0.0208129957,
"rotY": 269.985626,
"rotZ": 0.016765913,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "War of the Outer Gods",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"sidemat_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,
"CustomImage": {
"ImageURL": "https://i.ibb.co/wLNGFTG/War-of-the-Outer-Gods-Joshua-Cairos.jpg",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "function onLoad()\n local params = {}\n params.click_function = 'updateSurface'\n params.function_owner = self\n params.label = 'Apply'\n params.tooltip= 'Left click to apply image, right click to revert to default.'\n params.position = {0,0.05,-1.6}\n params.rotation = {0,0,0}\n params.height = 250\n params.width = 580\n params.color = {0,0,0}\n params.font_color = {1,1,1}\n self.createButton(params)\nend\n\n function updateSurface(obj, color, alt_click)\n obj_surface = getObjectFromGUID(\"721ba2\")\n local customInfo = obj_surface.getCustomObject()\n if alt_click == false then\n customInfo.image = \"https://i.ibb.co/wLNGFTG/War-of-the-Outer-Gods-Joshua-Cairos.jpg\"\n else\n customInfo.image = \"http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/\"\n end\n obj_surface.setCustomObject(customInfo)\n obj_surface = obj_surface.reload()\n broadcastToAll(\"New Playmat Image Applied\", {0.2,0.9,0.2})\n end\n",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "03efce",
"Name": "Custom_Token",
"Transform": {
"posX": 40.29007,
"posY": 1.33069909,
"posZ": -79.61988,
"rotX": 0.0208132975,
"rotY": 269.9856,
"rotZ": 0.01676577,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Kingsport",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"sidemat_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,
"CustomImage": {
"ImageURL": "https://i.ibb.co/rbkk7ys/Kingsport-Tomasz-Jedruszek.jpg",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "function onLoad()\n local params = {}\n params.click_function = 'updateSurface'\n params.function_owner = self\n params.label = 'Apply'\n params.tooltip= 'Left click to apply image, right click to revert to default.'\n params.position = {0,0.05,-1.6}\n params.rotation = {0,0,0}\n params.height = 250\n params.width = 580\n params.color = {0,0,0}\n params.font_color = {1,1,1}\n self.createButton(params)\nend\n\n function updateSurface(obj, color, alt_click)\n obj_surface = getObjectFromGUID(\"721ba2\")\n local customInfo = obj_surface.getCustomObject()\n if alt_click == false then\n customInfo.image = \"https://i.ibb.co/rbkk7ys/Kingsport-Tomasz-Jedruszek.jpg\"\n else\n customInfo.image = \"http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/\"\n end\n obj_surface.setCustomObject(customInfo)\n obj_surface = obj_surface.reload()\n broadcastToAll(\"New Playmat Image Applied\", {0.2,0.9,0.2})\n end\n",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "969149",
"Name": "Custom_Token",
"Transform": {
"posX": 40.28998,
"posY": 1.32935262,
"posZ": -84.21987,
"rotX": 0.0208133329,
"rotY": 269.9856,
"rotZ": 0.0167657677,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Erich Zann",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"sidemat_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,
"CustomImage": {
"ImageURL": "https://i.ibb.co/SNr8tqN/Symphony-of-Erich-Zann-Hazel-Yingling.jpg",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "function onLoad()\n local params = {}\n params.click_function = 'updateSurface'\n params.function_owner = self\n params.label = 'Apply'\n params.tooltip= 'Left click to apply image, right click to revert to default.'\n params.position = {0,0.05,-1.6}\n params.rotation = {0,0,0}\n params.height = 250\n params.width = 580\n params.color = {0,0,0}\n params.font_color = {1,1,1}\n self.createButton(params)\nend\n\n function updateSurface(obj, color, alt_click)\n obj_surface = getObjectFromGUID(\"721ba2\")\n local customInfo = obj_surface.getCustomObject()\n if alt_click == false then\n customInfo.image = \"https://i.ibb.co/SNr8tqN/Symphony-of-Erich-Zann-Hazel-Yingling.jpg\"\n else\n customInfo.image = \"http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/\"\n end\n obj_surface.setCustomObject(customInfo)\n obj_surface = obj_surface.reload()\n broadcastToAll(\"New Playmat Image Applied\", {0.2,0.9,0.2})\n end\n",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "268604",
"Name": "Custom_Token",
"Transform": {
"posX": 21.83043,
"posY": 1.33073235,
"posZ": -56.60042,
"rotX": 0.0208381861,
"rotY": 269.989319,
"rotZ": 0.0167312976,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Guardians of the Abyss F",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"sidemat_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,
"CustomImage": {
"ImageURL": "https://i.ibb.co/zFDt9Q8/Guardians-of-the-Abyss-Nele-Diel.jpg",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "function onLoad()\n local params = {}\n params.click_function = 'updateSurface'\n params.function_owner = self\n params.label = 'Apply'\n params.tooltip= 'Left click to apply image, right click to revert to default.'\n params.position = {0,0.05,-1.6}\n params.rotation = {0,0,0}\n params.height = 250\n params.width = 580\n params.color = {0,0,0}\n params.font_color = {1,1,1}\n self.createButton(params)\nend\n\n function updateSurface(obj, color, alt_click)\n obj_surface = getObjectFromGUID(\"721ba2\")\n local customInfo = obj_surface.getCustomObject()\n if alt_click == false then\n customInfo.image = \"https://i.ibb.co/zFDt9Q8/Guardians-of-the-Abyss-Nele-Diel.jpg\"\n else\n customInfo.image = \"http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/\"\n end\n obj_surface.setCustomObject(customInfo)\n obj_surface = obj_surface.reload()\n broadcastToAll(\"New Playmat Image Applied\", {0.2,0.9,0.2})\n end\n",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "32c136",
"Name": "Custom_Token",
"Transform": {
"posX": 40.2742844,
"posY": 1.328004,
"posZ": -88.80755,
"rotX": 0.0208089184,
"rotY": 270.000031,
"rotZ": 0.0167711079,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Consternation",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"sidemat_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,
"CustomImage": {
"ImageURL": "https://i.ibb.co/Tw2xBP1/Consternation-Constellation.jpg",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "function onLoad()\n local params = {}\n params.click_function = 'updateSurface'\n params.function_owner = self\n params.label = 'Apply'\n params.tooltip= 'Left click to apply image, right click to revert to default.'\n params.position = {0,0.05,-1.6}\n params.rotation = {0,0,0}\n params.height = 250\n params.width = 580\n params.color = {0,0,0}\n params.font_color = {1,1,1}\n self.createButton(params)\nend\n\n function updateSurface(obj, color, alt_click)\n obj_surface = getObjectFromGUID(\"721ba2\")\n local customInfo = obj_surface.getCustomObject()\n if alt_click == false then\n customInfo.image = \"https://i.ibb.co/Tw2xBP1/Consternation-Constellation.jpg\"\n else\n customInfo.image = \"http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/\"\n end\n obj_surface.setCustomObject(customInfo)\n obj_surface = obj_surface.reload()\n broadcastToAll(\"New Playmat Image Applied\", {0.2,0.9,0.2})\n end\n",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "df8e34",
"Name": "Bag",
"Transform": {
"posX": 45.63946,
"posY": 1.09626508,
"posZ": -84.2085953,
"rotX": 359.979156,
"rotY": 89.98564,
"rotZ": 359.983215,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Dark Matter",
"Description": "darkmat",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 0.8258315,
"b": 0.0
},
"Tags": [
"playmat_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,
"MaterialIndex": -1,
"MeshIndex": -1,
"Bag": {
"Order": 0
},
"LuaScript": "---\r\n--- Generated by EmmyLua(https://github.com/EmmyLua)\r\n--- Created by Whimsical.\r\n--- DateTime: 2021-03-16 3:26 p.m.\r\n---\r\n\r\n--- Original Memory Bag by MrStump\r\n--- https://steamcommunity.com/sharedfiles/filedetails/?id=953770080\r\n\r\n---@class MemoryListEntry\r\n---@field public position Vector\r\n---@field public rotation Vector\r\n---@field public lock boolean\r\nlocal MemoryListEntry={}\r\n\r\n---@type table\r\nlocal memory_list = {}\r\n\r\nlocal POSTFIX = {\r\n SAVE = \"_memory_object\",\r\n ZONE = \"_memory_zone\",\r\n SHUFFLE = \"_memory_shuffle\"\r\n}\r\n\r\n---@type table\r\nlocal BUTTON = {\r\n POSITION = Vector(0, 0.3, -2),\r\n ROTATION = Vector(0, 180, 0),\r\n HEIGHT = 350,\r\n WIDTH = 800,\r\n FONT_SIZE = 250,\r\n COLOR = Color.Black,\r\n FONT_COLOR = Color.White\r\n}\r\n\r\nlocal ipairs = ipairs\r\nlocal pairs = pairs\r\n\r\n---@return string\r\nlocal function get_prefix()\r\n return self:getDescription()\r\nend\r\n\r\nlocal function updateSave()\r\n local data_to_save = {[\"ml\"]=memory_list}\r\n local saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\n---@param label string\r\n---@param action string\r\nlocal function createButton(label, action)\r\n self:clearButtons()\r\n\r\n ---@type CreateClassicUIButton\r\n local parameters = {\r\n label = label,\r\n click_function = action,\r\n function_owner = self\r\n }\r\n\r\n for key, value in pairs(BUTTON) do\r\n parameters[key:lower()] = value\r\n end\r\n\r\n self:createButton(parameters)\r\nend\r\n\r\nlocal function create_place_button() createButton(\"Place\", \"place_objects\") end\r\nlocal function create_recall_button() createButton(\"Recall\", \"recall_objects\") end\r\n\r\n---@param tag string\r\n---@param lock boolean\r\n---@return fun(object:TTSObject)\r\nlocal function create_object_callback(tag, lock)\r\n ---@param object TTSObject\r\n return function (object)\r\n object:setLock(lock)\r\n if object:hasTag(tag) then object:shuffle() end\r\n end\r\nend\r\n\r\n---@param object TTSObject\r\nlocal function record_objects(object)\r\n memory_list[object:getGUID()] = {\r\n position = object:getPosition(),\r\n rotation = object:getRotation(),\r\n lock = object:getLock()\r\n }\r\n self:putObject(object)\r\nend\r\n\r\n---@param objects TTSObject[]\r\nlocal function update_objects(objects)\r\n for _, object in ipairs(objects) do\r\n record_objects(object)\r\n end\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction place_objects()\r\n local prefix = get_prefix()\r\n local shuffle_tag = prefix .. POSTFIX.SHUFFLE\r\n local content = self.getObjects()\r\n\r\n for _, item in ipairs(content) do\r\n local entry = memory_list[item.guid]\r\n if entry then\r\n self.takeObject {\r\n guid=item.guid,\r\n position=entry.position,\r\n rotation=entry.rotation,\r\n callback_function = create_object_callback(shuffle_tag, entry.lock)\r\n }\r\n end\r\n end\r\n\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\n create_recall_button()\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction recall_objects()\r\n memory_list = {}\r\n local prefix = get_prefix()\r\n\r\n if prefix==\"\" then\r\n broadcastToAll(\"Error in Memory Bag: Tag prefix not set.\")\r\n return\r\n end\r\n\r\n local save_tag = prefix .. POSTFIX.SAVE\r\n local zone_tag = prefix .. POSTFIX.ZONE\r\n\r\n local zones = getObjectsWithTag(zone_tag)\r\n if #zones>0 then\r\n for _, zone in ipairs(zones) do\r\n update_objects(zone:getObjects())\r\n end\r\n else\r\n update_objects(getObjectsWithTag(save_tag))\r\n end\r\n updateSave()\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\n create_place_button()\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memory_list = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memory_list = {}\r\n end\r\n\r\n if self:getQuantity()==0 then\r\n create_recall_button()\r\n else\r\n create_place_button()\r\n end\r\nend",
"LuaScriptState": "{\"ml\":{\"04ec55\":{\"lock\":false,\"position\":{\"x\":36.6237106323242,\"y\":1.38629972934723,\"z\":-61.2081680297852},\"rotation\":{\"x\":1.58245873451233,\"y\":269.985931396484,\"z\":0.016477445140481}},\"28ae75\":{\"lock\":false,\"position\":{\"x\":36.6238632202148,\"y\":1.39034843444824,\"z\":-47.4081726074219},\"rotation\":{\"x\":1.58402454853058,\"y\":269.986022949219,\"z\":0.0168890804052353}},\"28d283\":{\"lock\":false,\"position\":{\"x\":40.2900657653809,\"y\":1.33204555511475,\"z\":-75.0199737548828},\"rotation\":{\"x\":0.0208157543092966,\"y\":269.973083496094,\"z\":0.0167614053934813}},\"2c73fd\":{\"lock\":false,\"position\":{\"x\":29.3394889831543,\"y\":1.38799965381622,\"z\":-47.4095726013184},\"rotation\":{\"x\":1.59231209754944,\"y\":269.987701416016,\"z\":0.0171329416334629}},\"3531c0\":{\"lock\":false,\"position\":{\"x\":40.2900695800781,\"y\":1.33069908618927,\"z\":-79.6198806762695},\"rotation\":{\"x\":0.0208127703517675,\"y\":269.98291015625,\"z\":0.016764834523201}},\"3d76cc\":{\"lock\":false,\"position\":{\"x\":40.2900695800781,\"y\":1.33608496189117,\"z\":-61.2199897766113},\"rotation\":{\"x\":0.020814199000597,\"y\":269.983428955078,\"z\":0.0167654622346163}},\"3ef3dc\":{\"lock\":false,\"position\":{\"x\":36.6237030029297,\"y\":1.38226079940796,\"z\":-75.0081329345703},\"rotation\":{\"x\":1.58242619037628,\"y\":269.985443115234,\"z\":0.0165060572326183}},\"44139a\":{\"lock\":false,\"position\":{\"x\":32.9847183227539,\"y\":1.37999629974365,\"z\":-79.6082000732422},\"rotation\":{\"x\":1.59536278247833,\"y\":269.974487304688,\"z\":0.0170961357653141}},\"645dee\":{\"lock\":false,\"position\":{\"x\":40.2900772094727,\"y\":1.33877801895142,\"z\":-52.0199775695801},\"rotation\":{\"x\":0.0208146069198847,\"y\":269.981018066406,\"z\":0.0167646650224924}},\"7b795b\":{\"lock\":false,\"position\":{\"x\":36.623348236084,\"y\":1.38093078136444,\"z\":-79.6079330444336},\"rotation\":{\"x\":1.5840402841568,\"y\":269.966400146484,\"z\":0.0163847859948874}},\"85cf7e\":{\"lock\":false,\"position\":{\"x\":40.2900733947754,\"y\":1.33339202404022,\"z\":-70.4198455810547},\"rotation\":{\"x\":0.0208161193877459,\"y\":269.976165771484,\"z\":0.0167622994631529}},\"8832eb\":{\"lock\":false,\"position\":{\"x\":40.2900772094727,\"y\":1.34012448787689,\"z\":-47.4199867248535},\"rotation\":{\"x\":0.0208144709467888,\"y\":269.981811523438,\"z\":0.0167648885399103}},\"9a09ee\":{\"lock\":false,\"position\":{\"x\":40.2900733947754,\"y\":1.33473861217499,\"z\":-65.8198394775391},\"rotation\":{\"x\":0.0208127535879612,\"y\":269.9833984375,\"z\":0.0167650412768126}},\"a099cd\":{\"lock\":false,\"position\":{\"x\":40.2900810241699,\"y\":1.33743155002594,\"z\":-56.6199836730957},\"rotation\":{\"x\":0.0208140853792429,\"y\":269.9833984375,\"z\":0.0167653989046812}},\"acae33\":{\"lock\":false,\"position\":{\"x\":32.9845352172852,\"y\":1.38941490650177,\"z\":-47.4093360900879},\"rotation\":{\"x\":1.59626805782318,\"y\":269.982574462891,\"z\":0.0168506912887096}},\"ec4b5d\":{\"lock\":false,\"position\":{\"x\":36.6238670349121,\"y\":1.38900136947632,\"z\":-52.0081672668457},\"rotation\":{\"x\":1.58402514457703,\"y\":269.986236572266,\"z\":0.0169161967933178}}}}",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "8832eb",
"Name": "Custom_Token",
"Transform": {
"posX": 40.2900772,
"posY": 1.34012449,
"posZ": -47.4199867,
"rotX": 0.0208144709,
"rotY": 269.9818,
"rotZ": 0.0167648885,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "DM - 1A",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"darkmat_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,
"CustomImage": {
"ImageURL": "https://i.ibb.co/sQf85b8/Dark-Matter-1-Tatterdemalion-Paul-Pepera.jpg",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "function onLoad()\n local params = {}\n params.click_function = 'updateSurface'\n params.function_owner = self\n params.label = 'Apply'\n params.tooltip= 'Left click to apply image, right click to revert to default.'\n params.position = {0,0.05,-1.6}\n params.rotation = {0,0,0}\n params.height = 250\n params.width = 580\n params.color = {0,0,0}\n params.font_color = {1,1,1}\n self.createButton(params)\nend\n\n function updateSurface(obj, color, alt_click)\n obj_surface = getObjectFromGUID(\"721ba2\")\n local customInfo = obj_surface.getCustomObject()\n if alt_click == false then\n customInfo.image = \"https://i.ibb.co/sQf85b8/Dark-Matter-1-Tatterdemalion-Paul-Pepera.jpg\"\n else\n customInfo.image = \"http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/\"\n end\n obj_surface.setCustomObject(customInfo)\n obj_surface = obj_surface.reload()\n broadcastToAll(\"New Playmat Image Applied\", {0.2,0.9,0.2})\n end\n",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "645dee",
"Name": "Custom_Token",
"Transform": {
"posX": 40.2900772,
"posY": 1.338778,
"posZ": -52.0199776,
"rotX": 0.0208146069,
"rotY": 269.981018,
"rotZ": 0.016764665,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "DM - 2A",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"darkmat_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,
"CustomImage": {
"ImageURL": "https://i.ibb.co/cTKZQ61/Dark-Matter-2-Electric-Nightmares-Robert-Thoma.jpg",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "function onLoad()\n local params = {}\n params.click_function = 'updateSurface'\n params.function_owner = self\n params.label = 'Apply'\n params.tooltip= 'Left click to apply image, right click to revert to default.'\n params.position = {0,0.05,-1.6}\n params.rotation = {0,0,0}\n params.height = 250\n params.width = 580\n params.color = {0,0,0}\n params.font_color = {1,1,1}\n self.createButton(params)\nend\n\n function updateSurface(obj, color, alt_click)\n obj_surface = getObjectFromGUID(\"721ba2\")\n local customInfo = obj_surface.getCustomObject()\n if alt_click == false then\n customInfo.image = \"https://i.ibb.co/cTKZQ61/Dark-Matter-2-Electric-Nightmares-Robert-Thoma.jpg\"\n else\n customInfo.image = \"http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/\"\n end\n obj_surface.setCustomObject(customInfo)\n obj_surface = obj_surface.reload()\n broadcastToAll(\"New Playmat Image Applied\", {0.2,0.9,0.2})\n end\n",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "28ae75",
"Name": "Custom_Token",
"Transform": {
"posX": 36.6238632,
"posY": 1.39034843,
"posZ": -47.4081726,
"rotX": 1.58402455,
"rotY": 269.986023,
"rotZ": 0.01688908,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "DM - 1B",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"darkmat_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,
"CustomImage": {
"ImageURL": "https://i.ibb.co/1JzrrX2/Dark-Matter-1-Tatterdemalion-Brian-Taylor.jpg",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "function onLoad()\n local params = {}\n params.click_function = 'updateSurface'\n params.function_owner = self\n params.label = 'Apply'\n params.tooltip= 'Left click to apply image, right click to revert to default.'\n params.position = {0,0.05,-1.6}\n params.rotation = {0,0,0}\n params.height = 250\n params.width = 580\n params.color = {0,0,0}\n params.font_color = {1,1,1}\n self.createButton(params)\nend\n\n function updateSurface(obj, color, alt_click)\n obj_surface = getObjectFromGUID(\"721ba2\")\n local customInfo = obj_surface.getCustomObject()\n if alt_click == false then\n customInfo.image = \"https://i.ibb.co/1JzrrX2/Dark-Matter-1-Tatterdemalion-Brian-Taylor.jpg\"\n else\n customInfo.image = \"http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/\"\n end\n obj_surface.setCustomObject(customInfo)\n obj_surface = obj_surface.reload()\n broadcastToAll(\"New Playmat Image Applied\", {0.2,0.9,0.2})\n end\n",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "ec4b5d",
"Name": "Custom_Token",
"Transform": {
"posX": 36.623867,
"posY": 1.38900137,
"posZ": -52.0081673,
"rotX": 1.58402514,
"rotY": 269.986237,
"rotZ": 0.0169161968,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "DM - 2B",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"darkmat_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,
"CustomImage": {
"ImageURL": "https://i.ibb.co/hLGVBt7/Dark-Matter-2-Electric-Nightmares-Dean-Lawrence.jpg",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "function onLoad()\n local params = {}\n params.click_function = 'updateSurface'\n params.function_owner = self\n params.label = 'Apply'\n params.tooltip= 'Left click to apply image, right click to revert to default.'\n params.position = {0,0.05,-1.6}\n params.rotation = {0,0,0}\n params.height = 250\n params.width = 580\n params.color = {0,0,0}\n params.font_color = {1,1,1}\n self.createButton(params)\nend\n\n function updateSurface(obj, color, alt_click)\n obj_surface = getObjectFromGUID(\"721ba2\")\n local customInfo = obj_surface.getCustomObject()\n if alt_click == false then\n customInfo.image = \"https://i.ibb.co/hLGVBt7/Dark-Matter-2-Electric-Nightmares-Dean-Lawrence.jpg\"\n else\n customInfo.image = \"http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/\"\n end\n obj_surface.setCustomObject(customInfo)\n obj_surface = obj_surface.reload()\n broadcastToAll(\"New Playmat Image Applied\", {0.2,0.9,0.2})\n end\n",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "a099cd",
"Name": "Custom_Token",
"Transform": {
"posX": 40.29008,
"posY": 1.33743155,
"posZ": -56.6199837,
"rotX": 0.0208140854,
"rotY": 269.9834,
"rotZ": 0.0167653989,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "DM - 3",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"darkmat_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,
"CustomImage": {
"ImageURL": "https://i.ibb.co/6vyXv90/Dark-Matter-3-Lost-Quantum-Michael-Rajecki.jpg",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "function onLoad()\n local params = {}\n params.click_function = 'updateSurface'\n params.function_owner = self\n params.label = 'Apply'\n params.tooltip= 'Left click to apply image, right click to revert to default.'\n params.position = {0,0.05,-1.6}\n params.rotation = {0,0,0}\n params.height = 250\n params.width = 580\n params.color = {0,0,0}\n params.font_color = {1,1,1}\n self.createButton(params)\nend\n\n function updateSurface(obj, color, alt_click)\n obj_surface = getObjectFromGUID(\"721ba2\")\n local customInfo = obj_surface.getCustomObject()\n if alt_click == false then\n customInfo.image = \"https://i.ibb.co/6vyXv90/Dark-Matter-3-Lost-Quantum-Michael-Rajecki.jpg\"\n else\n customInfo.image = \"http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/\"\n end\n obj_surface.setCustomObject(customInfo)\n obj_surface = obj_surface.reload()\n broadcastToAll(\"New Playmat Image Applied\", {0.2,0.9,0.2})\n end\n",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "3d76cc",
"Name": "Custom_Token",
"Transform": {
"posX": 40.29007,
"posY": 1.336085,
"posZ": -61.21999,
"rotX": 0.020814199,
"rotY": 269.983429,
"rotZ": 0.0167654622,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "DM - 4A",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"darkmat_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,
"CustomImage": {
"ImageURL": "https://i.ibb.co/DfbTKHP/Dark-Matter-4-In-the-Shadow-of-Earth-Jihoo-Kim.jpg",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "function onLoad()\n local params = {}\n params.click_function = 'updateSurface'\n params.function_owner = self\n params.label = 'Apply'\n params.tooltip= 'Left click to apply image, right click to revert to default.'\n params.position = {0,0.05,-1.6}\n params.rotation = {0,0,0}\n params.height = 250\n params.width = 580\n params.color = {0,0,0}\n params.font_color = {1,1,1}\n self.createButton(params)\nend\n\n function updateSurface(obj, color, alt_click)\n obj_surface = getObjectFromGUID(\"721ba2\")\n local customInfo = obj_surface.getCustomObject()\n if alt_click == false then\n customInfo.image = \"https://i.ibb.co/DfbTKHP/Dark-Matter-4-In-the-Shadow-of-Earth-Jihoo-Kim.jpg\"\n else\n customInfo.image = \"http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/\"\n end\n obj_surface.setCustomObject(customInfo)\n obj_surface = obj_surface.reload()\n broadcastToAll(\"New Playmat Image Applied\", {0.2,0.9,0.2})\n end\n",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "04ec55",
"Name": "Custom_Token",
"Transform": {
"posX": 36.62371,
"posY": 1.38629973,
"posZ": -61.208168,
"rotX": 1.58245873,
"rotY": 269.985931,
"rotZ": 0.0164774451,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "DM - 4B",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"darkmat_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,
"CustomImage": {
"ImageURL": "https://i.ibb.co/MCvPmCb/Dark-Matter-4-In-the-Shadow-of-Earth-N5-Luckybuuncle.jpg",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "function onLoad()\n local params = {}\n params.click_function = 'updateSurface'\n params.function_owner = self\n params.label = 'Apply'\n params.tooltip= 'Left click to apply image, right click to revert to default.'\n params.position = {0,0.05,-1.6}\n params.rotation = {0,0,0}\n params.height = 250\n params.width = 580\n params.color = {0,0,0}\n params.font_color = {1,1,1}\n self.createButton(params)\nend\n\n function updateSurface(obj, color, alt_click)\n obj_surface = getObjectFromGUID(\"721ba2\")\n local customInfo = obj_surface.getCustomObject()\n if alt_click == false then\n customInfo.image = \"https://i.ibb.co/MCvPmCb/Dark-Matter-4-In-the-Shadow-of-Earth-N5-Luckybuuncle.jpg\"\n else\n customInfo.image = \"http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/\"\n end\n obj_surface.setCustomObject(customInfo)\n obj_surface = obj_surface.reload()\n broadcastToAll(\"New Playmat Image Applied\", {0.2,0.9,0.2})\n end\n",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "9a09ee",
"Name": "Custom_Token",
"Transform": {
"posX": 40.2900734,
"posY": 1.33473861,
"posZ": -65.81984,
"rotX": 0.0208127536,
"rotY": 269.9834,
"rotZ": 0.0167650413,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "DM - 5",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"darkmat_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,
"CustomImage": {
"ImageURL": "https://i.ibb.co/b2d8qvg/Dark-Matter-5-Strange-Moons-Hongyu-Yin.jpg",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "function onLoad()\n local params = {}\n params.click_function = 'updateSurface'\n params.function_owner = self\n params.label = 'Apply'\n params.tooltip= 'Left click to apply image, right click to revert to default.'\n params.position = {0,0.05,-1.6}\n params.rotation = {0,0,0}\n params.height = 250\n params.width = 580\n params.color = {0,0,0}\n params.font_color = {1,1,1}\n self.createButton(params)\nend\n\n function updateSurface(obj, color, alt_click)\n obj_surface = getObjectFromGUID(\"721ba2\")\n local customInfo = obj_surface.getCustomObject()\n if alt_click == false then\n customInfo.image = \"https://i.ibb.co/b2d8qvg/Dark-Matter-5-Strange-Moons-Hongyu-Yin.jpg\"\n else\n customInfo.image = \"http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/\"\n end\n obj_surface.setCustomObject(customInfo)\n obj_surface = obj_surface.reload()\n broadcastToAll(\"New Playmat Image Applied\", {0.2,0.9,0.2})\n end\n",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "28d283",
"Name": "Custom_Token",
"Transform": {
"posX": 40.2900658,
"posY": 1.33204556,
"posZ": -75.01997,
"rotX": 0.0208157543,
"rotY": 269.973083,
"rotZ": 0.0167614054,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "DM - 7A",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"darkmat_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,
"CustomImage": {
"ImageURL": "https://i.ibb.co/7WnTyYT/Dark-Matter-7-Fragment-of-Carcosa-Colin-Moore.jpg",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "function onLoad()\n local params = {}\n params.click_function = 'updateSurface'\n params.function_owner = self\n params.label = 'Apply'\n params.tooltip= 'Left click to apply image, right click to revert to default.'\n params.position = {0,0.05,-1.6}\n params.rotation = {0,0,0}\n params.height = 250\n params.width = 580\n params.color = {0,0,0}\n params.font_color = {1,1,1}\n self.createButton(params)\nend\n\n function updateSurface(obj, color, alt_click)\n obj_surface = getObjectFromGUID(\"721ba2\")\n local customInfo = obj_surface.getCustomObject()\n if alt_click == false then\n customInfo.image = \"https://i.ibb.co/7WnTyYT/Dark-Matter-7-Fragment-of-Carcosa-Colin-Moore.jpg\"\n else\n customInfo.image = \"http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/\"\n end\n obj_surface.setCustomObject(customInfo)\n obj_surface = obj_surface.reload()\n broadcastToAll(\"New Playmat Image Applied\", {0.2,0.9,0.2})\n end\n",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "3ef3dc",
"Name": "Custom_Token",
"Transform": {
"posX": 36.623703,
"posY": 1.3822608,
"posZ": -75.00813,
"rotX": 1.58242619,
"rotY": 269.985443,
"rotZ": 0.0165060572,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "DM - 7B",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"darkmat_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,
"CustomImage": {
"ImageURL": "https://i.ibb.co/mG2Brrd/Dark-Matter-7-Fragments-of-Carcosa-Matthieu-Rebuffat.jpg",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "function onLoad()\n local params = {}\n params.click_function = 'updateSurface'\n params.function_owner = self\n params.label = 'Apply'\n params.tooltip= 'Left click to apply image, right click to revert to default.'\n params.position = {0,0.05,-1.6}\n params.rotation = {0,0,0}\n params.height = 250\n params.width = 580\n params.color = {0,0,0}\n params.font_color = {1,1,1}\n self.createButton(params)\nend\n\n function updateSurface(obj, color, alt_click)\n obj_surface = getObjectFromGUID(\"721ba2\")\n local customInfo = obj_surface.getCustomObject()\n if alt_click == false then\n customInfo.image = \"https://i.ibb.co/mG2Brrd/Dark-Matter-7-Fragments-of-Carcosa-Matthieu-Rebuffat.jpg\"\n else\n customInfo.image = \"http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/\"\n end\n obj_surface.setCustomObject(customInfo)\n obj_surface = obj_surface.reload()\n broadcastToAll(\"New Playmat Image Applied\", {0.2,0.9,0.2})\n end\n",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "acae33",
"Name": "Custom_Token",
"Transform": {
"posX": 32.9845352,
"posY": 1.38941491,
"posZ": -47.4093361,
"rotX": 1.596268,
"rotY": 269.982574,
"rotZ": 0.0168506913,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "DM - 1C",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"darkmat_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,
"CustomImage": {
"ImageURL": "https://i.ibb.co/DzvvgGf/Dark-Matter-1-Tatterdemalion-John-Wallin-Liberto.jpg",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "function onLoad()\n local params = {}\n params.click_function = 'updateSurface'\n params.function_owner = self\n params.label = 'Apply'\n params.tooltip= 'Left click to apply image, right click to revert to default.'\n params.position = {0,0.05,-1.6}\n params.rotation = {0,0,0}\n params.height = 250\n params.width = 580\n params.color = {0,0,0}\n params.font_color = {1,1,1}\n self.createButton(params)\nend\n\n function updateSurface(obj, color, alt_click)\n obj_surface = getObjectFromGUID(\"721ba2\")\n local customInfo = obj_surface.getCustomObject()\n if alt_click == false then\n customInfo.image = \"https://i.ibb.co/DzvvgGf/Dark-Matter-1-Tatterdemalion-John-Wallin-Liberto.jpg\"\n else\n customInfo.image = \"http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/\"\n end\n obj_surface.setCustomObject(customInfo)\n obj_surface = obj_surface.reload()\n broadcastToAll(\"New Playmat Image Applied\", {0.2,0.9,0.2})\n end\n",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "3531c0",
"Name": "Custom_Token",
"Transform": {
"posX": 40.29007,
"posY": 1.33069909,
"posZ": -79.61988,
"rotX": 0.02081277,
"rotY": 269.9829,
"rotZ": 0.0167648345,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "DM - 8A",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"darkmat_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,
"CustomImage": {
"ImageURL": "https://i.ibb.co/CJ3LKL7/Dark-Matter-8-Starfall-Vadim-Sadovski.jpg",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "function onLoad()\n local params = {}\n params.click_function = 'updateSurface'\n params.function_owner = self\n params.label = 'Apply'\n params.tooltip= 'Left click to apply image, right click to revert to default.'\n params.position = {0,0.05,-1.6}\n params.rotation = {0,0,0}\n params.height = 250\n params.width = 580\n params.color = {0,0,0}\n params.font_color = {1,1,1}\n self.createButton(params)\nend\n\n function updateSurface(obj, color, alt_click)\n obj_surface = getObjectFromGUID(\"721ba2\")\n local customInfo = obj_surface.getCustomObject()\n if alt_click == false then\n customInfo.image = \"https://i.ibb.co/CJ3LKL7/Dark-Matter-8-Starfall-Vadim-Sadovski.jpg\"\n else\n customInfo.image = \"http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/\"\n end\n obj_surface.setCustomObject(customInfo)\n obj_surface = obj_surface.reload()\n broadcastToAll(\"New Playmat Image Applied\", {0.2,0.9,0.2})\n end\n",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "7b795b",
"Name": "Custom_Token",
"Transform": {
"posX": 36.62335,
"posY": 1.38093078,
"posZ": -79.60793,
"rotX": 1.58404028,
"rotY": 269.9664,
"rotZ": 0.016384786,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "DM - 8B",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"darkmat_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,
"CustomImage": {
"ImageURL": "https://i.ibb.co/Njd1FcB/Dark-Matter-8-Starfall-Vadim-Sadovski-2.jpg",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "function onLoad()\n local params = {}\n params.click_function = 'updateSurface'\n params.function_owner = self\n params.label = 'Apply'\n params.tooltip= 'Left click to apply image, right click to revert to default.'\n params.position = {0,0.05,-1.6}\n params.rotation = {0,0,0}\n params.height = 250\n params.width = 580\n params.color = {0,0,0}\n params.font_color = {1,1,1}\n self.createButton(params)\nend\n\n function updateSurface(obj, color, alt_click)\n obj_surface = getObjectFromGUID(\"721ba2\")\n local customInfo = obj_surface.getCustomObject()\n if alt_click == false then\n customInfo.image = \"https://i.ibb.co/Njd1FcB/Dark-Matter-8-Starfall-Vadim-Sadovski-2.jpg\"\n else\n customInfo.image = \"http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/\"\n end\n obj_surface.setCustomObject(customInfo)\n obj_surface = obj_surface.reload()\n broadcastToAll(\"New Playmat Image Applied\", {0.2,0.9,0.2})\n end\n",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "44139a",
"Name": "Custom_Token",
"Transform": {
"posX": 32.98472,
"posY": 1.3799963,
"posZ": -79.6082,
"rotX": 1.59536278,
"rotY": 269.9745,
"rotZ": 0.0170961358,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "DM - 8C",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"darkmat_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,
"CustomImage": {
"ImageURL": "https://i.ibb.co/W0Cx7bb/Dark-Matter-8-Starfall-Vadim-Sadovski-3.jpg",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "function onLoad()\n local params = {}\n params.click_function = 'updateSurface'\n params.function_owner = self\n params.label = 'Apply'\n params.tooltip= 'Left click to apply image, right click to revert to default.'\n params.position = {0,0.05,-1.6}\n params.rotation = {0,0,0}\n params.height = 250\n params.width = 580\n params.color = {0,0,0}\n params.font_color = {1,1,1}\n self.createButton(params)\nend\n\n function updateSurface(obj, color, alt_click)\n obj_surface = getObjectFromGUID(\"721ba2\")\n local customInfo = obj_surface.getCustomObject()\n if alt_click == false then\n customInfo.image = \"https://i.ibb.co/W0Cx7bb/Dark-Matter-8-Starfall-Vadim-Sadovski-3.jpg\"\n else\n customInfo.image = \"http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/\"\n end\n obj_surface.setCustomObject(customInfo)\n obj_surface = obj_surface.reload()\n broadcastToAll(\"New Playmat Image Applied\", {0.2,0.9,0.2})\n end\n",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "2c73fd",
"Name": "Custom_Token",
"Transform": {
"posX": 29.339489,
"posY": 1.38799965,
"posZ": -47.4095726,
"rotX": 1.5923121,
"rotY": 269.9877,
"rotZ": 0.0171329416,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "DM - 1D",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"darkmat_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,
"CustomImage": {
"ImageURL": "https://i.ibb.co/DRMPGVt/Dark-Matter-1-Tatterdemalion-Andrey-Vozny.jpg",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "function onLoad()\n local params = {}\n params.click_function = 'updateSurface'\n params.function_owner = self\n params.label = 'Apply'\n params.tooltip= 'Left click to apply image, right click to revert to default.'\n params.position = {0,0.05,-1.6}\n params.rotation = {0,0,0}\n params.height = 250\n params.width = 580\n params.color = {0,0,0}\n params.font_color = {1,1,1}\n self.createButton(params)\nend\n\n function updateSurface(obj, color, alt_click)\n obj_surface = getObjectFromGUID(\"721ba2\")\n local customInfo = obj_surface.getCustomObject()\n if alt_click == false then\n customInfo.image = \"https://i.ibb.co/DRMPGVt/Dark-Matter-1-Tatterdemalion-Andrey-Vozny.jpg\"\n else\n customInfo.image = \"http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/\"\n end\n obj_surface.setCustomObject(customInfo)\n obj_surface = obj_surface.reload()\n broadcastToAll(\"New Playmat Image Applied\", {0.2,0.9,0.2})\n end\n",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "85cf7e",
"Name": "Custom_Token",
"Transform": {
"posX": 40.2900734,
"posY": 1.333392,
"posZ": -70.4198456,
"rotX": 0.02081612,
"rotY": 269.976166,
"rotZ": 0.0167623,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "DM - 6",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"darkmat_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,
"CustomImage": {
"ImageURL": "https://i.ibb.co/TcnKXJD/Carcosa-1-Curtain-Call-Mark-Molnar.jpg",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "function onLoad()\n local params = {}\n params.click_function = 'updateSurface'\n params.function_owner = self\n params.label = 'Apply'\n params.tooltip= 'Left click to apply image, right click to revert to default.'\n params.position = {0,0.05,-1.6}\n params.rotation = {0,0,0}\n params.height = 250\n params.width = 580\n params.color = {0,0,0}\n params.font_color = {1,1,1}\n self.createButton(params)\nend\n\n function updateSurface(obj, color, alt_click)\n obj_surface = getObjectFromGUID(\"721ba2\")\n local customInfo = obj_surface.getCustomObject()\n if alt_click == false then\n customInfo.image = \"https://i.ibb.co/TcnKXJD/Carcosa-1-Curtain-Call-Mark-Molnar.jpg\"\n else\n customInfo.image = \"http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/\"\n end\n obj_surface.setCustomObject(customInfo)\n obj_surface = obj_surface.reload()\n broadcastToAll(\"New Playmat Image Applied\", {0.2,0.9,0.2})\n end\n",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "c87ef3",
"Name": "Bag",
"Transform": {
"posX": 45.62378,
"posY": 1.09491587,
"posZ": -88.79805,
"rotX": 359.979156,
"rotY": 89.98545,
"rotZ": 359.983215,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Cyclopean Foundations",
"Description": "cfmat",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.0,
"g": 0.476049125,
"b": 1.0
},
"Tags": [
"playmat_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,
"MaterialIndex": -1,
"MeshIndex": -1,
"Bag": {
"Order": 0
},
"LuaScript": "---\r\n--- Generated by EmmyLua(https://github.com/EmmyLua)\r\n--- Created by Whimsical.\r\n--- DateTime: 2021-03-16 3:26 p.m.\r\n---\r\n\r\n--- Original Memory Bag by MrStump\r\n--- https://steamcommunity.com/sharedfiles/filedetails/?id=953770080\r\n\r\n---@class MemoryListEntry\r\n---@field public position Vector\r\n---@field public rotation Vector\r\n---@field public lock boolean\r\nlocal MemoryListEntry={}\r\n\r\n---@type table\r\nlocal memory_list = {}\r\n\r\nlocal POSTFIX = {\r\n SAVE = \"_memory_object\",\r\n ZONE = \"_memory_zone\",\r\n SHUFFLE = \"_memory_shuffle\"\r\n}\r\n\r\n---@type table\r\nlocal BUTTON = {\r\n POSITION = Vector(0, 0.3, -2),\r\n ROTATION = Vector(0, 180, 0),\r\n HEIGHT = 350,\r\n WIDTH = 800,\r\n FONT_SIZE = 250,\r\n COLOR = Color.Black,\r\n FONT_COLOR = Color.White\r\n}\r\n\r\nlocal ipairs = ipairs\r\nlocal pairs = pairs\r\n\r\n---@return string\r\nlocal function get_prefix()\r\n return self:getDescription()\r\nend\r\n\r\nlocal function updateSave()\r\n local data_to_save = {[\"ml\"]=memory_list}\r\n local saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\n---@param label string\r\n---@param action string\r\nlocal function createButton(label, action)\r\n self:clearButtons()\r\n\r\n ---@type CreateClassicUIButton\r\n local parameters = {\r\n label = label,\r\n click_function = action,\r\n function_owner = self\r\n }\r\n\r\n for key, value in pairs(BUTTON) do\r\n parameters[key:lower()] = value\r\n end\r\n\r\n self:createButton(parameters)\r\nend\r\n\r\nlocal function create_place_button() createButton(\"Place\", \"place_objects\") end\r\nlocal function create_recall_button() createButton(\"Recall\", \"recall_objects\") end\r\n\r\n---@param tag string\r\n---@param lock boolean\r\n---@return fun(object:TTSObject)\r\nlocal function create_object_callback(tag, lock)\r\n ---@param object TTSObject\r\n return function (object)\r\n object:setLock(lock)\r\n if object:hasTag(tag) then object:shuffle() end\r\n end\r\nend\r\n\r\n---@param object TTSObject\r\nlocal function record_objects(object)\r\n memory_list[object:getGUID()] = {\r\n position = object:getPosition(),\r\n rotation = object:getRotation(),\r\n lock = object:getLock()\r\n }\r\n self:putObject(object)\r\nend\r\n\r\n---@param objects TTSObject[]\r\nlocal function update_objects(objects)\r\n for _, object in ipairs(objects) do\r\n record_objects(object)\r\n end\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction place_objects()\r\n local prefix = get_prefix()\r\n local shuffle_tag = prefix .. POSTFIX.SHUFFLE\r\n local content = self.getObjects()\r\n\r\n for _, item in ipairs(content) do\r\n local entry = memory_list[item.guid]\r\n if entry then\r\n self.takeObject {\r\n guid=item.guid,\r\n position=entry.position,\r\n rotation=entry.rotation,\r\n callback_function = create_object_callback(shuffle_tag, entry.lock)\r\n }\r\n end\r\n end\r\n\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\n create_recall_button()\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction recall_objects()\r\n memory_list = {}\r\n local prefix = get_prefix()\r\n\r\n if prefix==\"\" then\r\n broadcastToAll(\"Error in Memory Bag: Tag prefix not set.\")\r\n return\r\n end\r\n\r\n local save_tag = prefix .. POSTFIX.SAVE\r\n local zone_tag = prefix .. POSTFIX.ZONE\r\n\r\n local zones = getObjectsWithTag(zone_tag)\r\n if #zones>0 then\r\n for _, zone in ipairs(zones) do\r\n update_objects(zone:getObjects())\r\n end\r\n else\r\n update_objects(getObjectsWithTag(save_tag))\r\n end\r\n updateSave()\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\n create_place_button()\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memory_list = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memory_list = {}\r\n end\r\n\r\n if self:getQuantity()==0 then\r\n create_recall_button()\r\n else\r\n create_place_button()\r\n end\r\nend",
"LuaScriptState": "{\"ml\":{\"03efce\":{\"lock\":false,\"position\":{\"x\":40.2917404174805,\"y\":1.33473932743073,\"z\":-65.8198928833008},\"rotation\":{\"x\":0.0208113938570023,\"y\":269.979309082031,\"z\":0.016780711710453}},\"0b7844\":{\"lock\":false,\"position\":{\"x\":36.624340057373,\"y\":1.24727845191956,\"z\":-65.8082962036133},\"rotation\":{\"x\":0.020821338519454,\"y\":269.961608886719,\"z\":0.0167570598423481}},\"0e1a24\":{\"lock\":false,\"position\":{\"x\":40.2900581359863,\"y\":1.30259644985199,\"z\":-70.4198532104492},\"rotation\":{\"x\":0.0207981672137976,\"y\":270.036834716797,\"z\":0.0167842991650105}},\"64ef6f\":{\"lock\":false,\"position\":{\"x\":40.2900733947754,\"y\":1.330695271492,\"z\":-79.6198806762695},\"rotation\":{\"x\":0.0208465345203877,\"y\":269.971069335938,\"z\":0.016609201207757}},\"698ba7\":{\"lock\":false,\"position\":{\"x\":32.9850578308105,\"y\":1.37680625915527,\"z\":-79.6083908081055},\"rotation\":{\"x\":1.59656393527985,\"y\":269.971252441406,\"z\":0.0168016385287046}},\"6eaeea\":{\"lock\":false,\"position\":{\"x\":40.2900695800781,\"y\":1.33608603477478,\"z\":-61.2199897766113},\"rotation\":{\"x\":0.0208010878413916,\"y\":269.990325927734,\"z\":0.0168091915547848}},\"752c9c\":{\"lock\":false,\"position\":{\"x\":36.6258506774902,\"y\":1.26609814167023,\"z\":-75.0082168579102},\"rotation\":{\"x\":0.0207465998828411,\"y\":270.038269042969,\"z\":0.0168867725878954}},\"868e4d\":{\"lock\":false,\"position\":{\"x\":36.6237869262695,\"y\":1.39028429985046,\"z\":-47.4081611633301},\"rotation\":{\"x\":1.58362686634064,\"y\":269.983947753906,\"z\":0.016801105812192}},\"940388\":{\"lock\":false,\"position\":{\"x\":40.3040618896484,\"y\":1.33743906021118,\"z\":-56.6114540100098},\"rotation\":{\"x\":0.0208999495953321,\"y\":269.68798828125,\"z\":0.0166574865579605}},\"b23c0a\":{\"lock\":false,\"position\":{\"x\":36.6238670349121,\"y\":1.38624823093414,\"z\":-61.2081985473633},\"rotation\":{\"x\":1.58365762233734,\"y\":270.049377441406,\"z\":0.0168784018605947}},\"c05b71\":{\"lock\":false,\"position\":{\"x\":36.6243591308594,\"y\":1.38086724281311,\"z\":-79.608268737793},\"rotation\":{\"x\":1.58390593528748,\"y\":269.96142578125,\"z\":0.0167695078998804}},\"d5b33e\":{\"lock\":false,\"position\":{\"x\":40.2900199890137,\"y\":1.33877801895142,\"z\":-52.0199737548828},\"rotation\":{\"x\":0.0208130925893784,\"y\":269.985595703125,\"z\":0.016765683889389}},\"dedc73\":{\"lock\":false,\"position\":{\"x\":40.290111541748,\"y\":1.34012472629547,\"z\":-47.4108924865723},\"rotation\":{\"x\":0.0208345223218203,\"y\":269.972290039063,\"z\":0.0166684426367283}},\"ef2f78\":{\"lock\":false,\"position\":{\"x\":40.2911605834961,\"y\":1.3739629983902,\"z\":-75.0199890136719},\"rotation\":{\"x\":358.457366943359,\"y\":269.978607177734,\"z\":0.0168527159839869}}}}",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "dedc73",
"Name": "Custom_Token",
"Transform": {
"posX": 40.29011,
"posY": 1.34012473,
"posZ": -47.4108925,
"rotX": 0.0208345223,
"rotY": 269.9723,
"rotZ": 0.0166684426,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "CF - 1A",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"cfmat_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,
"CustomImage": {
"ImageURL": "https://i.ibb.co/c6LJNfr/Cyclopean-1-Lost-Moorings-Jake-Murray.png",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "function onLoad()\n local params = {}\n params.click_function = 'updateSurface'\n params.function_owner = self\n params.label = 'Apply'\n params.tooltip= 'Left click to apply image, right click to revert to default.'\n params.position = {0,0.05,-1.6}\n params.rotation = {0,0,0}\n params.height = 250\n params.width = 580\n params.color = {0,0,0}\n params.font_color = {1,1,1}\n self.createButton(params)\nend\n\n function updateSurface(obj, color, alt_click)\n obj_surface = getObjectFromGUID(\"721ba2\")\n local customInfo = obj_surface.getCustomObject()\n if alt_click == false then\n customInfo.image = \"https://i.ibb.co/c6LJNfr/Cyclopean-1-Lost-Moorings-Jake-Murray.png\"\n else\n customInfo.image = \"http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/\"\n end\n obj_surface.setCustomObject(customInfo)\n obj_surface = obj_surface.reload()\n broadcastToAll(\"New Playmat Image Applied\", {0.2,0.9,0.2})\n end\n",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "868e4d",
"Name": "Custom_Token",
"Transform": {
"posX": 36.6237869,
"posY": 1.3902843,
"posZ": -47.40816,
"rotX": 1.58362687,
"rotY": 269.983948,
"rotZ": 0.0168011058,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "CF - 1B",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"cfmat_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,
"CustomImage": {
"ImageURL": "https://i.ibb.co/DQ76z3c/Cyclopean-1-Lost-Moorings-Care-Line-Art.png",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "function onLoad()\n local params = {}\n params.click_function = 'updateSurface'\n params.function_owner = self\n params.label = 'Apply'\n params.tooltip= 'Left click to apply image, right click to revert to default.'\n params.position = {0,0.05,-1.6}\n params.rotation = {0,0,0}\n params.height = 250\n params.width = 580\n params.color = {0,0,0}\n params.font_color = {1,1,1}\n self.createButton(params)\nend\n\n function updateSurface(obj, color, alt_click)\n obj_surface = getObjectFromGUID(\"721ba2\")\n local customInfo = obj_surface.getCustomObject()\n if alt_click == false then\n customInfo.image = \"https://i.ibb.co/DQ76z3c/Cyclopean-1-Lost-Moorings-Care-Line-Art.png\"\n else\n customInfo.image = \"http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/\"\n end\n obj_surface.setCustomObject(customInfo)\n obj_surface = obj_surface.reload()\n broadcastToAll(\"New Playmat Image Applied\", {0.2,0.9,0.2})\n end\n",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "d5b33e",
"Name": "Custom_Token",
"Transform": {
"posX": 40.29002,
"posY": 1.338778,
"posZ": -52.0199738,
"rotX": 0.0208130926,
"rotY": 269.9856,
"rotZ": 0.0167656839,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "CF - 2",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"cfmat_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,
"CustomImage": {
"ImageURL": "https://i.ibb.co/P6h3vbm/Cyclopean-2-Going-Twice-Quentin-Bouilloud.png",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "function onLoad()\n local params = {}\n params.click_function = 'updateSurface'\n params.function_owner = self\n params.label = 'Apply'\n params.tooltip= 'Left click to apply image, right click to revert to default.'\n params.position = {0,0.05,-1.6}\n params.rotation = {0,0,0}\n params.height = 250\n params.width = 580\n params.color = {0,0,0}\n params.font_color = {1,1,1}\n self.createButton(params)\nend\n\n function updateSurface(obj, color, alt_click)\n obj_surface = getObjectFromGUID(\"721ba2\")\n local customInfo = obj_surface.getCustomObject()\n if alt_click == false then\n customInfo.image = \"https://i.ibb.co/P6h3vbm/Cyclopean-2-Going-Twice-Quentin-Bouilloud.png\"\n else\n customInfo.image = \"http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/\"\n end\n obj_surface.setCustomObject(customInfo)\n obj_surface = obj_surface.reload()\n broadcastToAll(\"New Playmat Image Applied\", {0.2,0.9,0.2})\n end\n",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "940388",
"Name": "Custom_Token",
"Transform": {
"posX": 40.30406,
"posY": 1.33743906,
"posZ": -56.611454,
"rotX": 0.02089995,
"rotY": 269.688,
"rotZ": 0.0166574866,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "CF - 3",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"cfmat_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,
"CustomImage": {
"ImageURL": "https://i.ibb.co/9qK9Fzd/Cyclopean-3-Private-Lives-Christian-Bravery.png",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "function onLoad()\n local params = {}\n params.click_function = 'updateSurface'\n params.function_owner = self\n params.label = 'Apply'\n params.tooltip= 'Left click to apply image, right click to revert to default.'\n params.position = {0,0.05,-1.6}\n params.rotation = {0,0,0}\n params.height = 250\n params.width = 580\n params.color = {0,0,0}\n params.font_color = {1,1,1}\n self.createButton(params)\nend\n\n function updateSurface(obj, color, alt_click)\n obj_surface = getObjectFromGUID(\"721ba2\")\n local customInfo = obj_surface.getCustomObject()\n if alt_click == false then\n customInfo.image = \"https://i.ibb.co/9qK9Fzd/Cyclopean-3-Private-Lives-Christian-Bravery.png\"\n else\n customInfo.image = \"http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/\"\n end\n obj_surface.setCustomObject(customInfo)\n obj_surface = obj_surface.reload()\n broadcastToAll(\"New Playmat Image Applied\", {0.2,0.9,0.2})\n end\n",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "6eaeea",
"Name": "Custom_Token",
"Transform": {
"posX": 40.29007,
"posY": 1.336086,
"posZ": -61.21999,
"rotX": 0.0208010878,
"rotY": 269.990326,
"rotZ": 0.0168091916,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "CF - 4A",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"cfmat_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,
"CustomImage": {
"ImageURL": "https://i.ibb.co/5RFcGyP/Cyclopean-4-Crumbling-Masonry-Simon-Craghead.png",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "function onLoad()\n local params = {}\n params.click_function = 'updateSurface'\n params.function_owner = self\n params.label = 'Apply'\n params.tooltip= 'Left click to apply image, right click to revert to default.'\n params.position = {0,0.05,-1.6}\n params.rotation = {0,0,0}\n params.height = 250\n params.width = 580\n params.color = {0,0,0}\n params.font_color = {1,1,1}\n self.createButton(params)\nend\n\n function updateSurface(obj, color, alt_click)\n obj_surface = getObjectFromGUID(\"721ba2\")\n local customInfo = obj_surface.getCustomObject()\n if alt_click == false then\n customInfo.image = \"https://i.ibb.co/5RFcGyP/Cyclopean-4-Crumbling-Masonry-Simon-Craghead.png\"\n else\n customInfo.image = \"http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/\"\n end\n obj_surface.setCustomObject(customInfo)\n obj_surface = obj_surface.reload()\n broadcastToAll(\"New Playmat Image Applied\", {0.2,0.9,0.2})\n end\n",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "b23c0a",
"Name": "Custom_Token",
"Transform": {
"posX": 36.623867,
"posY": 1.38624823,
"posZ": -61.2082,
"rotX": 1.58365762,
"rotY": 270.049377,
"rotZ": 0.0168784019,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "CF - 4B",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"cfmat_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,
"CustomImage": {
"ImageURL": "https://i.ibb.co/pdrGK6p/Cyclopean-4-Crumbling-Masonry-Pete-Amachree.png",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "function onLoad()\n local params = {}\n params.click_function = 'updateSurface'\n params.function_owner = self\n params.label = 'Apply'\n params.tooltip= 'Left click to apply image, right click to revert to default.'\n params.position = {0,0.05,-1.6}\n params.rotation = {0,0,0}\n params.height = 250\n params.width = 580\n params.color = {0,0,0}\n params.font_color = {1,1,1}\n self.createButton(params)\nend\n\n function updateSurface(obj, color, alt_click)\n obj_surface = getObjectFromGUID(\"721ba2\")\n local customInfo = obj_surface.getCustomObject()\n if alt_click == false then\n customInfo.image = \"https://i.ibb.co/pdrGK6p/Cyclopean-4-Crumbling-Masonry-Pete-Amachree.png\"\n else\n customInfo.image = \"http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/\"\n end\n obj_surface.setCustomObject(customInfo)\n obj_surface = obj_surface.reload()\n broadcastToAll(\"New Playmat Image Applied\", {0.2,0.9,0.2})\n end\n",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "0b7844",
"Name": "Custom_Token",
"Transform": {
"posX": 36.62434,
"posY": 1.24727845,
"posZ": -65.8083,
"rotX": 0.0208213385,
"rotY": 269.9616,
"rotZ": 0.01675706,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "CF - 5B",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"cfmat_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,
"CustomImage": {
"ImageURL": "https://i.ibb.co/3mYfFNB/Cyclopean-5-Across-Dreadful-Waters-Ev-Shipard.png",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "function onLoad()\n local params = {}\n params.click_function = 'updateSurface'\n params.function_owner = self\n params.label = 'Apply'\n params.tooltip= 'Left click to apply image, right click to revert to default.'\n params.position = {0,0.05,-1.6}\n params.rotation = {0,0,0}\n params.height = 250\n params.width = 580\n params.color = {0,0,0}\n params.font_color = {1,1,1}\n self.createButton(params)\nend\n\n function updateSurface(obj, color, alt_click)\n obj_surface = getObjectFromGUID(\"721ba2\")\n local customInfo = obj_surface.getCustomObject()\n if alt_click == false then\n customInfo.image = \"https://i.ibb.co/3mYfFNB/Cyclopean-5-Across-Dreadful-Waters-Ev-Shipard.png\"\n else\n customInfo.image = \"http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/\"\n end\n obj_surface.setCustomObject(customInfo)\n obj_surface = obj_surface.reload()\n broadcastToAll(\"New Playmat Image Applied\", {0.2,0.9,0.2})\n end\n",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "0e1a24",
"Name": "Custom_Token",
"Transform": {
"posX": 40.29006,
"posY": 1.30259645,
"posZ": -70.41985,
"rotX": 0.0207981672,
"rotY": 270.036835,
"rotZ": 0.0167843,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "CF - 6",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"cfmat_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,
"CustomImage": {
"ImageURL": "https://i.ibb.co/ynmQNSB/Cyclopean-6-Blood-From-Stones-Marc-Simonetti.png",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "function onLoad()\n local params = {}\n params.click_function = 'updateSurface'\n params.function_owner = self\n params.label = 'Apply'\n params.tooltip= 'Left click to apply image, right click to revert to default.'\n params.position = {0,0.05,-1.6}\n params.rotation = {0,0,0}\n params.height = 250\n params.width = 580\n params.color = {0,0,0}\n params.font_color = {1,1,1}\n self.createButton(params)\nend\n\n function updateSurface(obj, color, alt_click)\n obj_surface = getObjectFromGUID(\"721ba2\")\n local customInfo = obj_surface.getCustomObject()\n if alt_click == false then\n customInfo.image = \"https://i.ibb.co/ynmQNSB/Cyclopean-6-Blood-From-Stones-Marc-Simonetti.png\"\n else\n customInfo.image = \"http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/\"\n end\n obj_surface.setCustomObject(customInfo)\n obj_surface = obj_surface.reload()\n broadcastToAll(\"New Playmat Image Applied\", {0.2,0.9,0.2})\n end\n",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "752c9c",
"Name": "Custom_Token",
"Transform": {
"posX": 36.62585,
"posY": 1.26609814,
"posZ": -75.00822,
"rotX": 0.0207466,
"rotY": 270.038269,
"rotZ": 0.0168867726,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "CF - 7B",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"cfmat_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,
"CustomImage": {
"ImageURL": "https://i.ibb.co/qs8Sk2N/Cyclopean-7-Pyroclastic-Flow-Rachid-Lotf.png",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "function onLoad()\n local params = {}\n params.click_function = 'updateSurface'\n params.function_owner = self\n params.label = 'Apply'\n params.tooltip= 'Left click to apply image, right click to revert to default.'\n params.position = {0,0.05,-1.6}\n params.rotation = {0,0,0}\n params.height = 250\n params.width = 580\n params.color = {0,0,0}\n params.font_color = {1,1,1}\n self.createButton(params)\nend\n\n function updateSurface(obj, color, alt_click)\n obj_surface = getObjectFromGUID(\"721ba2\")\n local customInfo = obj_surface.getCustomObject()\n if alt_click == false then\n customInfo.image = \"https://i.ibb.co/qs8Sk2N/Cyclopean-7-Pyroclastic-Flow-Rachid-Lotf.png\"\n else\n customInfo.image = \"http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/\"\n end\n obj_surface.setCustomObject(customInfo)\n obj_surface = obj_surface.reload()\n broadcastToAll(\"New Playmat Image Applied\", {0.2,0.9,0.2})\n end\n",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "ef2f78",
"Name": "Custom_Token",
"Transform": {
"posX": 40.29116,
"posY": 1.373963,
"posZ": -75.01999,
"rotX": 358.457367,
"rotY": 269.9786,
"rotZ": 0.016852716,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "CF - 7A",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"cfmat_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,
"CustomImage": {
"ImageURL": "https://i.ibb.co/s1JDkFv/Cyclopean-7-Pyroclastic-Flow-Bastien-Grivet.png",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "function onLoad()\n local params = {}\n params.click_function = 'updateSurface'\n params.function_owner = self\n params.label = 'Apply'\n params.tooltip= 'Left click to apply image, right click to revert to default.'\n params.position = {0,0.05,-1.6}\n params.rotation = {0,0,0}\n params.height = 250\n params.width = 580\n params.color = {0,0,0}\n params.font_color = {1,1,1}\n self.createButton(params)\nend\n\n function updateSurface(obj, color, alt_click)\n obj_surface = getObjectFromGUID(\"721ba2\")\n local customInfo = obj_surface.getCustomObject()\n if alt_click == false then\n customInfo.image = \"https://i.ibb.co/s1JDkFv/Cyclopean-7-Pyroclastic-Flow-Bastien-Grivet.png\"\n else\n customInfo.image = \"http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/\"\n end\n obj_surface.setCustomObject(customInfo)\n obj_surface = obj_surface.reload()\n broadcastToAll(\"New Playmat Image Applied\", {0.2,0.9,0.2})\n end\n",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "64ef6f",
"Name": "Custom_Token",
"Transform": {
"posX": 40.2900734,
"posY": 1.33069527,
"posZ": -79.61988,
"rotX": 0.0208465345,
"rotY": 269.971069,
"rotZ": 0.0166092012,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "CF - 8A",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"cfmat_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,
"CustomImage": {
"ImageURL": "https://i.ibb.co/mGnKNcy/Cyclopean-8-Tomb-of-Dead-Dreams-Richard-Benning.png",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "function onLoad()\n local params = {}\n params.click_function = 'updateSurface'\n params.function_owner = self\n params.label = 'Apply'\n params.tooltip= 'Left click to apply image, right click to revert to default.'\n params.position = {0,0.05,-1.6}\n params.rotation = {0,0,0}\n params.height = 250\n params.width = 580\n params.color = {0,0,0}\n params.font_color = {1,1,1}\n self.createButton(params)\nend\n\n function updateSurface(obj, color, alt_click)\n obj_surface = getObjectFromGUID(\"721ba2\")\n local customInfo = obj_surface.getCustomObject()\n if alt_click == false then\n customInfo.image = \"https://i.ibb.co/mGnKNcy/Cyclopean-8-Tomb-of-Dead-Dreams-Richard-Benning.png\"\n else\n customInfo.image = \"http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/\"\n end\n obj_surface.setCustomObject(customInfo)\n obj_surface = obj_surface.reload()\n broadcastToAll(\"New Playmat Image Applied\", {0.2,0.9,0.2})\n end\n",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "698ba7",
"Name": "Custom_Token",
"Transform": {
"posX": 32.9850578,
"posY": 1.37680626,
"posZ": -79.60839,
"rotX": 1.59656394,
"rotY": 269.971252,
"rotZ": 0.0168016385,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "CF - 8C",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"cfmat_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,
"CustomImage": {
"ImageURL": "https://i.ibb.co/0MwX460/Cyclopean-8-Tomb-of-Dead-Dreams-Guillem-H-Pongiluppi.png",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "function onLoad()\n local params = {}\n params.click_function = 'updateSurface'\n params.function_owner = self\n params.label = 'Apply'\n params.tooltip= 'Left click to apply image, right click to revert to default.'\n params.position = {0,0.05,-1.6}\n params.rotation = {0,0,0}\n params.height = 250\n params.width = 580\n params.color = {0,0,0}\n params.font_color = {1,1,1}\n self.createButton(params)\nend\n\n function updateSurface(obj, color, alt_click)\n obj_surface = getObjectFromGUID(\"721ba2\")\n local customInfo = obj_surface.getCustomObject()\n if alt_click == false then\n customInfo.image = \"https://i.ibb.co/0MwX460/Cyclopean-8-Tomb-of-Dead-Dreams-Guillem-H-Pongiluppi.png\"\n else\n customInfo.image = \"http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/\"\n end\n obj_surface.setCustomObject(customInfo)\n obj_surface = obj_surface.reload()\n broadcastToAll(\"New Playmat Image Applied\", {0.2,0.9,0.2})\n end\n",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "c05b71",
"Name": "Custom_Token",
"Transform": {
"posX": 36.62436,
"posY": 1.38086724,
"posZ": -79.60827,
"rotX": 1.58390594,
"rotY": 269.961426,
"rotZ": 0.0167695079,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "CF - 8B",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"cfmat_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,
"CustomImage": {
"ImageURL": "https://i.ibb.co/vmBM8x2/Cyclopean-8-Tomb-of-Dead-Dreams-Walter-Brocca.png",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "function onLoad()\n local params = {}\n params.click_function = 'updateSurface'\n params.function_owner = self\n params.label = 'Apply'\n params.tooltip= 'Left click to apply image, right click to revert to default.'\n params.position = {0,0.05,-1.6}\n params.rotation = {0,0,0}\n params.height = 250\n params.width = 580\n params.color = {0,0,0}\n params.font_color = {1,1,1}\n self.createButton(params)\nend\n\n function updateSurface(obj, color, alt_click)\n obj_surface = getObjectFromGUID(\"721ba2\")\n local customInfo = obj_surface.getCustomObject()\n if alt_click == false then\n customInfo.image = \"https://i.ibb.co/vmBM8x2/Cyclopean-8-Tomb-of-Dead-Dreams-Walter-Brocca.png\"\n else\n customInfo.image = \"http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/\"\n end\n obj_surface.setCustomObject(customInfo)\n obj_surface = obj_surface.reload()\n broadcastToAll(\"New Playmat Image Applied\", {0.2,0.9,0.2})\n end\n",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "03efce",
"Name": "Custom_Token",
"Transform": {
"posX": 40.29174,
"posY": 1.33473933,
"posZ": -65.81989,
"rotX": 0.0208113939,
"rotY": 269.9793,
"rotZ": 0.0167807117,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "CF - 5A",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"cfmat_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,
"CustomImage": {
"ImageURL": "https://i.ibb.co/rbkk7ys/Kingsport-Tomasz-Jedruszek.jpg",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "function onLoad()\n local params = {}\n params.click_function = 'updateSurface'\n params.function_owner = self\n params.label = 'Apply'\n params.tooltip= 'Left click to apply image, right click to revert to default.'\n params.position = {0,0.05,-1.6}\n params.rotation = {0,0,0}\n params.height = 250\n params.width = 580\n params.color = {0,0,0}\n params.font_color = {1,1,1}\n self.createButton(params)\nend\n\n function updateSurface(obj, color, alt_click)\n obj_surface = getObjectFromGUID(\"721ba2\")\n local customInfo = obj_surface.getCustomObject()\n if alt_click == false then\n customInfo.image = \"https://i.ibb.co/rbkk7ys/Kingsport-Tomasz-Jedruszek.jpg\"\n else\n customInfo.image = \"http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/\"\n end\n obj_surface.setCustomObject(customInfo)\n obj_surface = obj_surface.reload()\n broadcastToAll(\"New Playmat Image Applied\", {0.2,0.9,0.2})\n end\n",
"LuaScriptState": "",
"XmlUI": ""
}
]
}
]
},
{
"GUID": "8ac4b2",
"Name": "Custom_Model_Bag",
"Transform": {
"posX": 28.2397614,
"posY": 2.23079085,
"posZ": -48.358345,
"rotX": 359.983246,
"rotY": 270.0014,
"rotZ": 0.00353707885,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "CYOA Campaign Guides",
"Description": "Antimarkovnikov",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"MaterialIndex": -1,
"MeshIndex": -1,
"CustomMesh": {
"MeshURL": "https://github.com/Antimarkovnikov/TTS_AHC_CYOA/blob/master/Book%20Model.obj?raw=true",
"DiffuseURL": "https://github.com/Antimarkovnikov/TTS_AHC_CYOA/blob/master/00%20CYOA.jpg?raw=true",
"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": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "3a08d9",
"Name": "Custom_Model_Bag",
"Transform": {
"posX": -0.6629186,
"posY": 2.279131,
"posZ": -0.03920669,
"rotX": -0.00191975723,
"rotY": 270.000031,
"rotZ": -0.00204945938,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "C1 Dark Matter",
"Description": "Designed by Axolotl",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"MaterialIndex": -1,
"MeshIndex": -1,
"CustomMesh": {
"MeshURL": "https://github.com/Antimarkovnikov/TTS_AHC_CYOA/blob/master/Book%20Model.obj?raw=true",
"DiffuseURL": "https://github.com/Antimarkovnikov/TTS_AHC_CYOA/blob/master/C1%20Dark%20Matter.jpg?raw=true",
"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": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "409b50",
"Name": "Custom_PDF",
"Transform": {
"posX": 10.12211,
"posY": 2.511092,
"posZ": 0.254569054,
"rotX": 0.000104222068,
"rotY": 270.0188,
"rotZ": 0.000406445353,
"scaleX": 1.76113939,
"scaleY": 1.0,
"scaleZ": 1.76113939
},
"Nickname": "C1 Dark Matter",
"Description": "Designed by Axolotl",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomPDF": {
"PDFUrl": "https://github.com/Antimarkovnikov/TTS_AHC_CYOA/blob/master/Dual%20Pages%20C1%20Dark%20Matter.pdf?raw=true",
"PDFPassword": "",
"PDFPage": 0,
"PDFPageOffset": 0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "8f7e04",
"Name": "Custom_Model_Bag",
"Transform": {
"posX": 0.326184064,
"posY": 2.2791357,
"posZ": -1.36366975,
"rotX": 0.0006686119,
"rotY": 269.999634,
"rotZ": -0.00406556157,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "P1 Challenge Scenarios",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"MaterialIndex": -1,
"MeshIndex": -1,
"CustomMesh": {
"MeshURL": "https://github.com/Antimarkovnikov/TTS_AHC_CYOA/blob/master/Book%20Model.obj?raw=true",
"DiffuseURL": "https://github.com/Antimarkovnikov/TTS_AHC_CYOA/blob/master/P1%20Challenge%20Scenarios.jpg?raw=true",
"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": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "a37a83",
"Name": "Custom_PDF",
"Transform": {
"posX": 0.6359786,
"posY": 4.50434637,
"posZ": 14.7782393,
"rotX": 0.101166129,
"rotY": 269.99,
"rotZ": 359.989227,
"scaleX": 1.76113939,
"scaleY": 1.0,
"scaleZ": 1.76113939
},
"Nickname": "P1 04 By the Book",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomPDF": {
"PDFUrl": "https://github.com/Antimarkovnikov/TTS_AHC_CYOA/blob/master/Dual%20Pages%20P1%2004%20By%20the%20Book.pdf?raw=true",
"PDFPassword": "",
"PDFPage": 0,
"PDFPageOffset": 0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "b5fcf1",
"Name": "Custom_PDF",
"Transform": {
"posX": 0.186742276,
"posY": 4.49567127,
"posZ": 16.7357712,
"rotX": 359.9888,
"rotY": 269.98,
"rotZ": 359.975922,
"scaleX": 1.76113939,
"scaleY": 1.0,
"scaleZ": 1.76113939
},
"Nickname": "P1 03 Bad Blood",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomPDF": {
"PDFUrl": "https://github.com/Antimarkovnikov/TTS_AHC_CYOA/blob/master/Dual%20Pages%20P1%2003%20Bad%20Blood.pdf?raw=true",
"PDFPassword": "",
"PDFPage": 0,
"PDFPageOffset": 0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "8950c7",
"Name": "Custom_PDF",
"Transform": {
"posX": -0.266956717,
"posY": 4.494031,
"posZ": 16.8793564,
"rotX": 359.9833,
"rotY": 270.0154,
"rotZ": 359.967224,
"scaleX": 1.76113939,
"scaleY": 1.0,
"scaleZ": 1.76113939
},
"Nickname": "P1 02 All or Nothing",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomPDF": {
"PDFUrl": "https://github.com/Antimarkovnikov/TTS_AHC_CYOA/blob/master/Dual%20Pages%20P1%2002%20All%20or%20Nothing.pdf?raw=true",
"PDFPassword": "",
"PDFPage": 0,
"PDFPageOffset": 0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "8994ea",
"Name": "Custom_PDF",
"Transform": {
"posX": 0.244521916,
"posY": 4.492498,
"posZ": 16.5810051,
"rotX": 359.9622,
"rotY": 270.019,
"rotZ": 0.0113534732,
"scaleX": 1.76113939,
"scaleY": 1.0,
"scaleZ": 1.76113939
},
"Nickname": "P1 01 Read or Die",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomPDF": {
"PDFUrl": "https://github.com/Antimarkovnikov/TTS_AHC_CYOA/blob/master/Dual%20Pages%20P1%2001%20Read%20or%20Die.pdf?raw=true",
"PDFPassword": "",
"PDFPage": 0,
"PDFPageOffset": 0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "409b50",
"Name": "Custom_PDF",
"Transform": {
"posX": 0.352817863,
"posY": 4.491575,
"posZ": 16.2162457,
"rotX": 359.955566,
"rotY": 270.010254,
"rotZ": 0.0613439567,
"scaleX": 1.76113939,
"scaleY": 1.0,
"scaleZ": 1.76113939
},
"Nickname": "P1 Challenge Scenarios",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomPDF": {
"PDFUrl": "https://github.com/Antimarkovnikov/TTS_AHC_CYOA/blob/master/Dual%20Pages%20P1%20Challenge%20Scenarios.pdf?raw=true",
"PDFPassword": "",
"PDFPage": 0,
"PDFPageOffset": 0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "4c47d8",
"Name": "Custom_Model_Bag",
"Transform": {
"posX": 0.0772091448,
"posY": 2.27897215,
"posZ": 0.03887146,
"rotX": -0.000759996357,
"rotY": 269.995026,
"rotZ": -0.0006907362,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "S2 Stand-Alones 2020-202?",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"MaterialIndex": -1,
"MeshIndex": -1,
"CustomMesh": {
"MeshURL": "https://github.com/Antimarkovnikov/TTS_AHC_CYOA/blob/master/Book%20Model.obj?raw=true",
"DiffuseURL": "https://github.com/Antimarkovnikov/TTS_AHC_CYOA/blob/master/S2%202020-202.jpg?raw=true",
"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": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "bffa04",
"Name": "Custom_PDF",
"Transform": {
"posX": 12.2436066,
"posY": 3.00484538,
"posZ": -38.0449181,
"rotX": 359.942566,
"rotY": 270.015381,
"rotZ": 0.0338468365,
"scaleX": 1.76113939,
"scaleY": 1.0,
"scaleZ": 1.76113939
},
"Nickname": "S2 08 War of the Outer Gods",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomPDF": {
"PDFUrl": "https://github.com/Antimarkovnikov/TTS_AHC_CYOA/blob/master/Dual%20Pages%20S2%2008%20War%20of%20the%20Outer%20Gods.pdf?raw=true",
"PDFPassword": "",
"PDFPage": 0,
"PDFPageOffset": 0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "409b50",
"Name": "Custom_PDF",
"Transform": {
"posX": 14.6079874,
"posY": 3.00181746,
"posZ": -37.50438,
"rotX": 359.937683,
"rotY": 270.028137,
"rotZ": 0.03236458,
"scaleX": 1.76113939,
"scaleY": 1.0,
"scaleZ": 1.76113939
},
"Nickname": "S2 07 Barkham Horror",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomPDF": {
"PDFUrl": "https://github.com/Antimarkovnikov/TTS_AHC_CYOA/blob/master/Dual%20Pages%20S2%2007%20Barkham%20Horror.pdf?raw=true",
"PDFPassword": "",
"PDFPage": 0,
"PDFPageOffset": 0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "e227ad",
"Name": "Custom_Model_Bag",
"Transform": {
"posX": 1.799722,
"posY": 2.27890873,
"posZ": 0.270533681,
"rotX": -0.000120784847,
"rotY": 269.999878,
"rotZ": -0.00101083983,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "S1 Stand-Alones 2016-2020",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"MaterialIndex": -1,
"MeshIndex": -1,
"CustomMesh": {
"MeshURL": "https://github.com/Antimarkovnikov/TTS_AHC_CYOA/blob/master/Book%20Model.obj?raw=true",
"DiffuseURL": "https://github.com/Antimarkovnikov/TTS_AHC_CYOA/blob/master/S1%202016-2020.jpg?raw=true",
"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": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "6ad284",
"Name": "Custom_PDF",
"Transform": {
"posX": 7.815417,
"posY": 2.64713359,
"posZ": 0.7984056,
"rotX": 0.07228882,
"rotY": 269.9756,
"rotZ": 1.68030453,
"scaleX": 1.76113939,
"scaleY": 1.0,
"scaleZ": 1.76113939
},
"Nickname": "S1 06 The Blob that Ate Everything",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomPDF": {
"PDFUrl": "https://github.com/Antimarkovnikov/TTS_AHC_CYOA/blob/master/Dual%20Pages%20S1%2006%20Blob.pdf?raw=true",
"PDFPassword": "",
"PDFPage": 0,
"PDFPageOffset": 0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "b13297",
"Name": "Custom_PDF",
"Transform": {
"posX": 8.414419,
"posY": 2.587217,
"posZ": -0.941289961,
"rotX": 0.0134221753,
"rotY": 269.987885,
"rotZ": 1.09709322,
"scaleX": 1.76113939,
"scaleY": 1.0,
"scaleZ": 1.76113939
},
"Nickname": "S1 05 Murder at the Excelsior Hotel",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomPDF": {
"PDFUrl": "https://github.com/Antimarkovnikov/TTS_AHC_CYOA/blob/master/Dual%20Pages%20S1%2005%20Murder%20Hotel.pdf?raw=true",
"PDFPassword": "",
"PDFPage": 0,
"PDFPageOffset": 0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "6611a9",
"Name": "Custom_PDF",
"Transform": {
"posX": 7.317685,
"posY": 2.6579,
"posZ": -1.46477222,
"rotX": 2.56370473,
"rotY": 269.947266,
"rotZ": 0.0139508573,
"scaleX": 1.76113939,
"scaleY": 1.0,
"scaleZ": 1.76113939
},
"Nickname": "S1 04 Guardians of the Abyss",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomPDF": {
"PDFUrl": "https://github.com/Antimarkovnikov/TTS_AHC_CYOA/blob/master/Dual%20Pages%20S1%2004%20Guardians%20of%20the%20Abyss.pdf?raw=true",
"PDFPassword": "",
"PDFPage": 0,
"PDFPageOffset": 0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "d014ce",
"Name": "Custom_PDF",
"Transform": {
"posX": 6.48180771,
"posY": 2.511042,
"posZ": -0.145383462,
"rotX": 0.0142215481,
"rotY": 269.970276,
"rotZ": -0.00407798961,
"scaleX": 1.76113939,
"scaleY": 1.0,
"scaleZ": 1.76113939
},
"Nickname": "S1 03 The Labyrinths of Lunacy",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomPDF": {
"PDFUrl": "https://github.com/Antimarkovnikov/TTS_AHC_CYOA/blob/master/Dual%20Pages%20S1%2003%20Labyrinths.pdf?raw=true",
"PDFPassword": "",
"PDFPage": 0,
"PDFPageOffset": 0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "538f32",
"Name": "Custom_PDF",
"Transform": {
"posX": 9.315358,
"posY": 2.511101,
"posZ": -1.39843929,
"rotX": 0.009436362,
"rotY": 269.967865,
"rotZ": -0.00402385043,
"scaleX": 1.76113939,
"scaleY": 1.0,
"scaleZ": 1.76113939
},
"Nickname": "S01 02 Carinvale of Horrors",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomPDF": {
"PDFUrl": "https://github.com/Antimarkovnikov/TTS_AHC_CYOA/blob/master/Dual%20Pages%20S1%2002%20Carnivale.pdf?raw=true",
"PDFPassword": "",
"PDFPage": 0,
"PDFPageOffset": 0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "39bf7c",
"Name": "Custom_PDF",
"Transform": {
"posX": 8.758332,
"posY": 2.78749371,
"posZ": -0.989757,
"rotX": 4.512612,
"rotY": 269.969574,
"rotZ": -0.0016912322,
"scaleX": 1.76113939,
"scaleY": 1.0,
"scaleZ": 1.76113939
},
"Nickname": "S1 01 Curse of the Rougarou",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomPDF": {
"PDFUrl": "https://github.com/Antimarkovnikov/TTS_AHC_CYOA/blob/master/Dual%20Pages%20S1%2001%20Rougarou.pdf?raw=true",
"PDFPassword": "",
"PDFPage": 0,
"PDFPageOffset": 0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "00a430",
"Name": "Custom_PDF",
"Transform": {
"posX": 7.132598,
"posY": 2.51110268,
"posZ": 0.0239084624,
"rotX": 0.000532303355,
"rotY": 269.972443,
"rotZ": -0.000261556153,
"scaleX": 1.76113939,
"scaleY": 1.0,
"scaleZ": 1.76113939
},
"Nickname": "S1 Stand-Alone Scenarios 2016-2020",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomPDF": {
"PDFUrl": "https://github.com/Antimarkovnikov/TTS_AHC_CYOA/blob/master/Dual%20Pages%20S1%20Stand-Alones.pdf?raw=true",
"PDFPassword": "",
"PDFPage": 0,
"PDFPageOffset": 0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "f5f3b5",
"Name": "Custom_Model_Bag",
"Transform": {
"posX": -0.4917608,
"posY": 2.27897954,
"posZ": -0.07761117,
"rotX": -0.0004471714,
"rotY": 270.004578,
"rotZ": -0.000394107134,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "07 The Innsmouth Conspiracy",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"MaterialIndex": -1,
"MeshIndex": -1,
"CustomMesh": {
"MeshURL": "https://github.com/Antimarkovnikov/TTS_AHC_CYOA/blob/master/Book%20Model.obj?raw=true",
"DiffuseURL": "https://github.com/Antimarkovnikov/TTS_AHC_CYOA/blob/master/07%20Innsmouth%20Conspiracy.jpg?raw=true",
"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": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "f42179",
"Name": "Custom_PDF",
"Transform": {
"posX": 0.8473894,
"posY": 2.81823659,
"posZ": 73.95661,
"rotX": 0.0208434314,
"rotY": 269.999451,
"rotZ": 0.0167749524,
"scaleX": 1.76113939,
"scaleY": 1.0,
"scaleZ": 1.76113939
},
"Nickname": "07 The Innsmouth Conspiracy - Play Order",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomPDF": {
"PDFUrl": "https://github.com/Antimarkovnikov/TTS_AHC_CYOA/blob/master/Dual%20Pages%2007%20The%20Innsmouth%20Conspiracy%20-%20Play%20Order.pdf?raw=true",
"PDFPassword": "",
"PDFPage": 0,
"PDFPageOffset": 0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "c50a3a",
"Name": "Custom_PDF",
"Transform": {
"posX": 0.7205106,
"posY": 2.52243352,
"posZ": -5.84371042,
"rotX": 359.965332,
"rotY": 270.0076,
"rotZ": 359.84137,
"scaleX": 1.76113939,
"scaleY": 1.0,
"scaleZ": 1.76113939
},
"Nickname": "07 The Innsmouth Conspiracy - Chronological",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomPDF": {
"PDFUrl": "https://github.com/Antimarkovnikov/TTS_AHC_CYOA/blob/master/Dual%20Pages%2007%20The%20Innsmouth%20Conspiracy%20-%20Chronolognical.pdf?raw=true",
"PDFPassword": "",
"PDFPage": 0,
"PDFPageOffset": 0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "963f0c",
"Name": "Custom_Model",
"Transform": {
"posX": 0.992910445,
"posY": 2.8032155,
"posZ": 2.01193213,
"rotX": 7.20983267,
"rotY": 268.987152,
"rotZ": 352.093384,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "06B The Web of Dreams",
"Description": "The Dream-Eaters",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomMesh": {
"MeshURL": "https://github.com/Antimarkovnikov/TTS_AHC_CYOA/blob/master/Book%20Model.obj?raw=true",
"DiffuseURL": "https://github.com/Antimarkovnikov/TTS_AHC_CYOA/blob/master/06B%20Web%20of%20Dreams.jpg?raw=true",
"NormalURL": "",
"ColliderURL": "",
"Convex": true,
"MaterialIndex": 3,
"TypeIndex": 0,
"CustomShader": {
"SpecularColor": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"SpecularIntensity": 0.0,
"SpecularSharpness": 2.0,
"FresnelStrength": 0.0
},
"CastShadows": true
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "88be58",
"Name": "Custom_Model",
"Transform": {
"posX": 0.00609352253,
"posY": 2.27895761,
"posZ": 1.62451649,
"rotX": -0.00217117649,
"rotY": 269.9997,
"rotZ": 359.974945,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "06A The Dream-Quest",
"Description": "The Dream-Eaters",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomMesh": {
"MeshURL": "https://github.com/Antimarkovnikov/TTS_AHC_CYOA/blob/master/Book%20Model.obj?raw=true",
"DiffuseURL": "https://github.com/Antimarkovnikov/TTS_AHC_CYOA/blob/master/06A%20Dream%20Quest.jpg?raw=true",
"NormalURL": "",
"ColliderURL": "",
"Convex": true,
"MaterialIndex": 3,
"TypeIndex": 0,
"CustomShader": {
"SpecularColor": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"SpecularIntensity": 0.0,
"SpecularSharpness": 2.0,
"FresnelStrength": 0.0
},
"CastShadows": true
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "20d53c",
"Name": "Custom_Model_Bag",
"Transform": {
"posX": -0.8915523,
"posY": 2.27906322,
"posZ": 0.247318283,
"rotX": -0.000288283656,
"rotY": 270.0005,
"rotZ": 0.0006523587,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "05 The Circle Undone",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"MaterialIndex": -1,
"MeshIndex": -1,
"CustomMesh": {
"MeshURL": "https://github.com/Antimarkovnikov/TTS_AHC_CYOA/blob/master/Book%20Model.obj?raw=true",
"DiffuseURL": "https://github.com/Antimarkovnikov/TTS_AHC_CYOA/blob/master/05%20Circle%20Undone.jpg?raw=true",
"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": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "692219",
"Name": "Custom_PDF",
"Transform": {
"posX": 2.73664951,
"posY": 2.51085782,
"posZ": -7.43552256,
"rotX": -0.00172228471,
"rotY": 269.9945,
"rotZ": -0.0011991791,
"scaleX": 1.76113939,
"scaleY": 1.0,
"scaleZ": 1.76113939
},
"Nickname": "The Circle Undone",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomPDF": {
"PDFUrl": "https://github.com/Antimarkovnikov/TTS_AHC_CYOA/blob/master/Dual%20Pages%2005%20The%20Circle%20Undone.pdf?raw=true",
"PDFPassword": "",
"PDFPage": 0,
"PDFPageOffset": 0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "9e9944",
"Name": "Custom_PDF",
"Transform": {
"posX": 2.22784424,
"posY": 2.70419717,
"posZ": -9.378246,
"rotX": 2.83747888,
"rotY": 270.1141,
"rotZ": 2.074432,
"scaleX": 1.76113939,
"scaleY": 1.0,
"scaleZ": 1.76113939
},
"Nickname": "The Circle Undone (Return to)",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomPDF": {
"PDFUrl": "https://github.com/Antimarkovnikov/TTS_AHC_CYOA/blob/master/Dual%20Pages%2005%20The%20Circle%20Undone%20-%20Return%20To.pdf?raw=true",
"PDFPassword": "",
"PDFPage": 0,
"PDFPageOffset": 0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "d5cd12",
"Name": "Custom_Model_Bag",
"Transform": {
"posX": -1.85002363,
"posY": 2.27909517,
"posZ": 0.073236,
"rotX": 0.0068481504,
"rotY": 269.9992,
"rotZ": 0.000433307025,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "04 The Forgotten Age",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"MaterialIndex": -1,
"MeshIndex": -1,
"CustomMesh": {
"MeshURL": "https://github.com/Antimarkovnikov/TTS_AHC_CYOA/blob/master/Book%20Model.obj?raw=true",
"DiffuseURL": "https://github.com/Antimarkovnikov/TTS_AHC_CYOA/blob/master/04%20Forgotten%20Age.jpg?raw=true",
"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": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "20c2ad",
"Name": "Custom_PDF",
"Transform": {
"posX": -8.236445,
"posY": 2.51093245,
"posZ": -5.47922754,
"rotX": -0.00232542586,
"rotY": 270.0012,
"rotZ": 0.006925432,
"scaleX": 1.76113939,
"scaleY": 1.0,
"scaleZ": 1.76113939
},
"Nickname": "The Forgotten Age",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomPDF": {
"PDFUrl": "https://github.com/Antimarkovnikov/TTS_AHC_CYOA/blob/master/Dual%20Pages%2004%20The%20Forgotten%20Age.pdf?raw=true",
"PDFPassword": "",
"PDFPage": 0,
"PDFPageOffset": 0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "908cbf",
"Name": "Custom_PDF",
"Transform": {
"posX": -8.07939148,
"posY": 2.51086283,
"posZ": -5.590797,
"rotX": -0.000548336538,
"rotY": 269.994965,
"rotZ": 0.009538756,
"scaleX": 1.76113939,
"scaleY": 1.0,
"scaleZ": 1.76113939
},
"Nickname": "The Forgotten Age (Return to)",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomPDF": {
"PDFUrl": "https://github.com/Antimarkovnikov/TTS_AHC_CYOA/blob/master/Dual%20Pages%2004%20The%20Forgotten%20Age%20-%20Return%20to.pdf?raw=true",
"PDFPassword": "",
"PDFPage": 0,
"PDFPageOffset": 0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "06a742",
"Name": "Custom_Model_Bag",
"Transform": {
"posX": -1.2784754,
"posY": 2.27930021,
"posZ": 0.4413665,
"rotX": 0.008172667,
"rotY": 269.999878,
"rotZ": -0.00239366572,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "03 The Path to Carcosa",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"MaterialIndex": -1,
"MeshIndex": -1,
"CustomMesh": {
"MeshURL": "https://github.com/Antimarkovnikov/TTS_AHC_CYOA/blob/master/Book%20Model.obj?raw=true",
"DiffuseURL": "https://github.com/Antimarkovnikov/TTS_AHC_CYOA/blob/master/03%20Path%20to%20Carcosa.jpg?raw=true",
"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": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "df45c0",
"Name": "Custom_PDF",
"Transform": {
"posX": 12.2520981,
"posY": 3.00909185,
"posZ": 11.986434,
"rotX": 359.9417,
"rotY": 269.997925,
"rotZ": 0.006959856,
"scaleX": 1.76113939,
"scaleY": 1.0,
"scaleZ": 1.76113939
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomPDF": {
"PDFUrl": "https://github.com/Antimarkovnikov/TTS_AHC_CYOA/blob/51eeefcbe1d1eded152916465d88296faf66528b/Dual%20Pages%2003%20The%20Path%20to%20Carcosa.pdf?raw=true",
"PDFPassword": "",
"PDFPage": 0,
"PDFPageOffset": 0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "38d1cd",
"Name": "Custom_Model_Bag",
"Transform": {
"posX": -2.367984,
"posY": 2.27829456,
"posZ": 1.78760242,
"rotX": 0.0108459136,
"rotY": 270.005219,
"rotZ": 359.981476,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "02 The Dunwich Legacy",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"MaterialIndex": -1,
"MeshIndex": -1,
"CustomMesh": {
"MeshURL": "https://github.com/Antimarkovnikov/TTS_AHC_CYOA/blob/master/Book%20Model.obj?raw=true",
"DiffuseURL": "https://github.com/Antimarkovnikov/TTS_AHC_CYOA/blob/master/02%20Dunwich%20Legacy.jpg?raw=true",
"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": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "8df5fc",
"Name": "Custom_PDF",
"Transform": {
"posX": 12.2500381,
"posY": 3.0293684,
"posZ": 19.9863625,
"rotX": 359.987366,
"rotY": 269.999237,
"rotZ": 0.0169135239,
"scaleX": 1.76113939,
"scaleY": 1.0,
"scaleZ": 1.76113939
},
"Nickname": "The Dunwich Legacy",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomPDF": {
"PDFUrl": "https://github.com/Antimarkovnikov/TTS_AHC_CYOA/blob/51eeefcbe1d1eded152916465d88296faf66528b/Dual%20Pages%2002%20The%20Dunwich%20Legacy.pdf?raw=true",
"PDFPassword": "",
"PDFPage": 0,
"PDFPageOffset": 0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "56a91d",
"Name": "Custom_Model_Bag",
"Transform": {
"posX": -0.175905079,
"posY": 2.27908945,
"posZ": 0.743201733,
"rotX": 0.00239874423,
"rotY": 270.0,
"rotZ": -0.003920078,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "01 Night of the Zealot",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"MaterialIndex": -1,
"MeshIndex": -1,
"CustomMesh": {
"MeshURL": "https://github.com/Antimarkovnikov/TTS_AHC_CYOA/blob/master/Book%20Model.obj?raw=true",
"DiffuseURL": "https://github.com/Antimarkovnikov/TTS_AHC_CYOA/blob/master/01%20Night%20of%20the%20Zealot.jpg?raw=true",
"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": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "276907",
"Name": "Custom_PDF",
"Transform": {
"posX": -7.020806,
"posY": 3.809006,
"posZ": 9.379702,
"rotX": 2.092207,
"rotY": 269.670776,
"rotZ": 350.3749,
"scaleX": 1.76113939,
"scaleY": 1.0,
"scaleZ": 1.76113939
},
"Nickname": "Night of the Zealot",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomPDF": {
"PDFUrl": "https://github.com/Antimarkovnikov/TTS_AHC_CYOA/blob/master/Dual%20Pages%2001%20Night%20of%20the%20Zealot.pdf?raw=true",
"PDFPassword": "",
"PDFPage": 0,
"PDFPageOffset": 0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "2275ed",
"Name": "Notecard",
"Transform": {
"posX": 0.453350484,
"posY": 2.58099532,
"posZ": 0.6212434,
"rotX": -0.0007103943,
"rotY": 90.00757,
"rotZ": 0.003601901,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Return to Expansions",
"Description": "When playing with the Return to Versions of the CYOA guides you will need to use the Return to setup card avaliable above the scenario card to modify the original setup of the game.\r\n\r\nEither version can be used to play a Standard campaign. Howevever, for Return to The Forgotten Age and The Circle Undone you will need the Return to guide.",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "966c07",
"Name": "Custom_Model_Bag",
"Transform": {
"posX": 41.0040741,
"posY": 2.29868364,
"posZ": -59.1223946,
"rotX": 359.983246,
"rotY": 269.999969,
"rotZ": 0.00354007538,
"scaleX": 1.19999993,
"scaleY": 1.19999993,
"scaleZ": 1.19999993
},
"Nickname": "Arkham Fantasy - Pixel Art Mini-Cards",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"MaterialIndex": -1,
"MeshIndex": -1,
"CustomMesh": {
"MeshURL": "https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/1786216803655030730/FB25E1090FC3F69A55E021CB1A31B64FBB50BD23/",
"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": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "7f8782",
"Name": "Bag",
"Transform": {
"posX": 0.319901377,
"posY": 1.98927867,
"posZ": 0.155970156,
"rotX": 0.0008989061,
"rotY": 5.40258479E-05,
"rotZ": -0.00195662677,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "For Other Fan Content",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.7058823,
"g": 0.366520882,
"b": 0.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": false,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"MaterialIndex": -1,
"MeshIndex": -1,
"Bag": {
"Order": 0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "ed079d",
"Name": "Bag",
"Transform": {
"posX": 4.712565,
"posY": 2.86044288,
"posZ": -4.792329,
"rotX": 0.1560028,
"rotY": -0.004108194,
"rotZ": 0.289891,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Monogatari",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.7058823,
"g": 0.366520882,
"b": 0.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": false,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"MaterialIndex": -1,
"MeshIndex": -1,
"Bag": {
"Order": 0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "395836",
"Name": "Custom_Tile",
"Transform": {
"posX": 23.2425442,
"posY": 1.9711355,
"posZ": -4.643974,
"rotX": 2.21136088E-05,
"rotY": 180.000092,
"rotZ": 9.224825E-06,
"scaleX": 0.5657107,
"scaleY": 1.0,
"scaleZ": 0.5657107
},
"Nickname": "Black Hanekawa",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1696157607127641434/3B605FA81140800D2929A2F4FC605C61113815ED/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1696157607127826278/41B14E1673F5F709A93FDAF0F142B53E18AEA3C9/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": true,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"1": {
"GUID": "53a482",
"Name": "Custom_Tile",
"Transform": {
"posX": -10.236248,
"posY": 0.960002661,
"posZ": -2.48673582,
"rotX": -2.41597045E-05,
"rotY": 180.0,
"rotZ": 1.29868076E-05,
"scaleX": 0.5657107,
"scaleY": 1.0,
"scaleZ": 0.5657107
},
"Nickname": "Tsubusa Hanekawa",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1696157607127641670/CAB545E928EDC617CA1314223774D88A2CFA2E19/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1696157607127826516/584635E992B674121F4E8C62F1CA259D8D33A9C2/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": true,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "2eea14",
"Name": "Custom_Tile",
"Transform": {
"posX": 21.8786125,
"posY": 1.971136,
"posZ": -4.19885159,
"rotX": 2.150843E-05,
"rotY": 180.000015,
"rotZ": -7.342048E-05,
"scaleX": 0.5657107,
"scaleY": 1.0,
"scaleZ": 0.5657107
},
"Nickname": "Hitagi Senjougahara",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1696157607127641507/8115C513A8A814EB45C429400A4E9679A4AA27C7/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1696157607127826334/69C1571BD3ED38E6837B38FC2A9784C90D6686EA/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": true,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "148edc",
"Name": "Custom_Tile",
"Transform": {
"posX": -12.1176805,
"posY": 1.12415206,
"posZ": -5.36991358,
"rotX": 351.7117,
"rotY": 270.756348,
"rotZ": 349.5606,
"scaleX": 0.5657107,
"scaleY": 1.0,
"scaleZ": 0.5657107
},
"Nickname": "Bob Jenkins",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1696157607127588327/419EF2D650774CCB0500C73CFC43AC77D234747F/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1696157607127589908/773A07E5D19FAFDA6AF71CEBC069175C769EF9ED/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": true,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "ea25c3",
"Name": "Custom_Tile",
"Transform": {
"posX": 20.0169811,
"posY": 1.9710964,
"posZ": -4.01483774,
"rotX": 1.47185629E-05,
"rotY": 179.999985,
"rotZ": -5.011704E-05,
"scaleX": 0.5657107,
"scaleY": 1.0,
"scaleZ": 0.5657107
},
"Nickname": "Yotsugi Ononoki",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1696157607127642047/17C45A9A42806A38F1B15D4358DDA48258D819C4/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1696157607127826572/5AB6F8CD81E839C6CFD9555918A3E264300CBF04/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": true,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "29e06e",
"Name": "Custom_Tile",
"Transform": {
"posX": -12.1023951,
"posY": 1.01172352,
"posZ": -4.403691,
"rotX": 357.53363,
"rotY": 270.0128,
"rotZ": 356.5814,
"scaleX": 0.5657107,
"scaleY": 1.0,
"scaleZ": 0.5657107
},
"Nickname": "Lily Chen",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1696157607127588477/F570ACBA35CB2F916284EFF8F671646235DA822C/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1696157607127590872/69AEF24314609C572C8EC2443582BE04F2186806/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": true,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "d9a9ba",
"Name": "Custom_Tile",
"Transform": {
"posX": 19.493782,
"posY": 1.97108293,
"posZ": -4.497726,
"rotX": 6.21772961E-06,
"rotY": 179.999863,
"rotZ": 9.986557E-07,
"scaleX": 0.5657107,
"scaleY": 1.0,
"scaleZ": 0.5657107
},
"Nickname": "Suruga Kanbaru",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1696157607127641618/DCD566DE13398919BD5F836857CCE5E1B15A4D7A/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1696157607127826462/33429FB27677A30F054B0ACF868F9CB80879046C/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": true,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "b183e2",
"Name": "Custom_Tile",
"Transform": {
"posX": -12.0660648,
"posY": 0.960000038,
"posZ": -3.44189286,
"rotX": 0.000154525638,
"rotY": 270.00824,
"rotZ": 0.000190097417,
"scaleX": 0.5657107,
"scaleY": 1.0,
"scaleZ": 0.5657107
},
"Nickname": "Monterey Jack",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1696157607127588525/D4FA9699B6ED018ED996622689AD6384CA7833D2/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1696157607127593415/FA319D0449914FDED7A263FBECEF3FA4714C1905/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": true,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "3fc084",
"Name": "Custom_Tile",
"Transform": {
"posX": 24.6174679,
"posY": 1.97113562,
"posZ": -1.600543,
"rotX": -4.025363E-05,
"rotY": 180.0,
"rotZ": 7.409564E-07,
"scaleX": 0.5657107,
"scaleY": 1.0,
"scaleZ": 0.5657107
},
"Nickname": "Tsubusa Hanekawa",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1696157607127641670/CAB545E928EDC617CA1314223774D88A2CFA2E19/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1696157607127826516/584635E992B674121F4E8C62F1CA259D8D33A9C2/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": true,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "395836",
"Name": "Custom_Tile",
"Transform": {
"posX": -10.2106543,
"posY": 0.9600028,
"posZ": -1.2446934,
"rotX": -3.62714854E-06,
"rotY": 180.000015,
"rotZ": -8.925218E-05,
"scaleX": 0.5657107,
"scaleY": 1.0,
"scaleZ": 0.5657107
},
"Nickname": "Black Hanekawa",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1696157607127641434/3B605FA81140800D2929A2F4FC605C61113815ED/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1696157607127826278/41B14E1673F5F709A93FDAF0F142B53E18AEA3C9/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": true,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "38912e",
"Name": "Custom_Tile",
"Transform": {
"posX": 23.6409416,
"posY": 1.9711355,
"posZ": -0.705713153,
"rotX": 2.17997658E-05,
"rotY": 180.000015,
"rotZ": -3.058872E-05,
"scaleX": 0.5657107,
"scaleY": 1.0,
"scaleZ": 0.5657107
},
"Nickname": "Shinobu Oshino",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1696157607127641576/396D35B8A84FBE0C49EEFAE98BD94E15A277FB88/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1696157607127826395/B3FDC858139FA6C9554725D93DDB9DCFB9D5B29D/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": true,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "37e0fc",
"Name": "Figurine_Custom",
"Transform": {
"posX": 20.773798,
"posY": 2.06718755,
"posZ": -1.26458418,
"rotX": 4.10567081E-05,
"rotY": 0.02928817,
"rotZ": -0.00015612322,
"scaleX": 0.5750004,
"scaleY": 0.5750004,
"scaleZ": 0.5750004
},
"Nickname": "Black Hanekawa",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 0.4572487,
"b": 0.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1696157607127783370/C8476BFEDBE29BCB732F8B405EB4C3EE690F6407/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1696157607127783438/7915A66641DDEEC59738335A0569F7BAECFA5709/",
"ImageScalar": 1.0,
"WidthScale": 0.0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"1": {
"GUID": "27d1be",
"Name": "Figurine_Custom",
"Transform": {
"posX": -6.09006,
"posY": 1.05605137,
"posZ": 0.427373916,
"rotX": -3.82384969E-05,
"rotY": 0.0361007527,
"rotZ": -6.50055663E-05,
"scaleX": 0.5750004,
"scaleY": 0.5750004,
"scaleZ": 0.5750004
},
"Nickname": "Tsubusa Hanekawa",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 0.4572487,
"b": 0.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1696157607127785872/67138C40F1DE5CE32201F2C85003B8FE670F1604/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1696157607127785929/29B7336804A600EE42390063183E9F387A8CC5E6/",
"ImageScalar": 1.0,
"WidthScale": 0.0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "d799b1",
"Name": "Figurine_Custom",
"Transform": {
"posX": 17.9146576,
"posY": 2.52779579,
"posZ": -0.4512622,
"rotX": -0.000230883,
"rotY": 0.0247055721,
"rotZ": -4.7434045E-05,
"scaleX": 0.5750004,
"scaleY": 0.5750004,
"scaleZ": 0.5750004
},
"Nickname": "Hitagi Senjougahara",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.587107956,
"g": 0.0,
"b": 0.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1696157607127784053/AA580BC3F93E7E83936844AFCBAC40CC0EE563C1/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1696157607127784126/6CF27249FEF4F54E8DAD96DA6C3A3BBD24756AF0/",
"ImageScalar": 1.0,
"WidthScale": 0.0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "2808c1",
"Name": "Figurine_Custom",
"Transform": {
"posX": 26.1218433,
"posY": 2.067188,
"posZ": 1.90922952,
"rotX": -0.000113932823,
"rotY": 0.0124335913,
"rotZ": -9.350058E-05,
"scaleX": 0.5750004,
"scaleY": 0.5750004,
"scaleZ": 0.5750004
},
"Nickname": "Yotsugi Ononoki",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.337583244,
"g": 0.0,
"b": 0.653310061
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1696157607127785008/9650915EDD064263792CFBD6711E037764ECA60E/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1696157607127785226/0CBE7413D09EF71C304561E69D488973B2675AE4/",
"ImageScalar": 1.0,
"WidthScale": 0.0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "ca919a",
"Name": "Figurine_Custom",
"Transform": {
"posX": 25.0972519,
"posY": 2.06718731,
"posZ": 2.04276633,
"rotX": -6.265167E-05,
"rotY": -0.00334793329,
"rotZ": -9.049818E-05,
"scaleX": 0.5750004,
"scaleY": 0.5750004,
"scaleZ": 0.5750004
},
"Nickname": "Suruga Kanbaru",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.174363732,
"g": 0.430312455,
"b": 0.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1696157607127784553/636A86A9E948668712A9061BE31FA9E43BB1098B/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1696157607127784614/C1212DA66187F0A55704B0296256EB1F870C74F6/",
"ImageScalar": 1.0,
"WidthScale": 0.0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "c9242b",
"Name": "Figurine_Custom",
"Transform": {
"posX": 23.5629177,
"posY": 2.067093,
"posZ": 1.684539,
"rotX": -4.29755637E-05,
"rotY": 0.0294556953,
"rotZ": -3.5549223E-05,
"scaleX": 0.5750004,
"scaleY": 0.5750004,
"scaleZ": 0.5750004
},
"Nickname": "Tsubusa Hanekawa",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 0.4572487,
"b": 0.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1696157607127785872/67138C40F1DE5CE32201F2C85003B8FE670F1604/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1696157607127785929/29B7336804A600EE42390063183E9F387A8CC5E6/",
"ImageScalar": 1.0,
"WidthScale": 0.0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "37e0fc",
"Name": "Figurine_Custom",
"Transform": {
"posX": -10.2388783,
"posY": 1.05605257,
"posZ": 0.388642371,
"rotX": 5.24104371E-06,
"rotY": 0.03614551,
"rotZ": -2.475761E-05,
"scaleX": 0.5750004,
"scaleY": 0.5750004,
"scaleZ": 0.5750004
},
"Nickname": "Black Hanekawa",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 0.4572487,
"b": 0.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1696157607127783370/C8476BFEDBE29BCB732F8B405EB4C3EE690F6407/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1696157607127783438/7915A66641DDEEC59738335A0569F7BAECFA5709/",
"ImageScalar": 1.0,
"WidthScale": 0.0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "4a725c",
"Name": "Figurine_Custom",
"Transform": {
"posX": 19.5521755,
"posY": 2.06667352,
"posZ": 0.94879365,
"rotX": -4.397496E-06,
"rotY": 359.976837,
"rotZ": -4.919782E-05,
"scaleX": 0.5750004,
"scaleY": 0.5750004,
"scaleZ": 0.5750004
},
"Nickname": "Shinobu Oshino",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.0,
"g": 0.04088851,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1696157607127786470/DF776DA59AEB125A32EF513421DB73B525CBAFAB/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1696157607127786535/1374F15B948BFAFDE4DAD8140DC8DDD8BD509C87/",
"ImageScalar": 1.0,
"WidthScale": 0.0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
}
]
},
{
"GUID": "4564ef",
"Name": "Notecard",
"Transform": {
"posX": -21.3821754,
"posY": 2.70786,
"posZ": -16.101778,
"rotX": 0.079906024,
"rotY": 90.02968,
"rotZ": 359.983215,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "[b]Arkham Fantasy - Pixel Art Mini-Cards[/b]",
"Description": "Designed by William \"Lemmingrad\" Jung\n\nTo properly illuminate stands.\n[b]Options[/b]: [b]Lighting[/b]\n1) Set [b]Ambient[/b] to [b]Gradient[/b]. \n2) Turn down [b]Reflection Intensity[/b] to your preference. \n3) Adjust [b]Ambient Intensity[/b] to your preference.\n",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "2e2375",
"Name": "Bag",
"Transform": {
"posX": -0.197321162,
"posY": 1.98911834,
"posZ": 0.342549771,
"rotX": 0.0044563706,
"rotY": 269.998627,
"rotZ": -0.00100412511,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Tokens",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.0,
"g": 0.32578367,
"b": 0.0569212362
},
"LayoutGroupSortIndex": 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,
"Bag": {
"Order": 0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "f8c290",
"Name": "Bag",
"Transform": {
"posX": -7.84672451,
"posY": 2.85987258,
"posZ": -6.35957336,
"rotX": 0.09336103,
"rotY": 359.9926,
"rotZ": 0.4081754,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Alternatives",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.7058823,
"g": 0.366520882,
"b": 0.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,
"Bag": {
"Order": 0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "f5c62d",
"Name": "Custom_Tile",
"Transform": {
"posX": -0.337734818,
"posY": 3.0130806,
"posZ": -4.4168973,
"rotX": 358.4424,
"rotY": 179.94606,
"rotZ": 359.204163,
"scaleX": 0.5657107,
"scaleY": 1.0,
"scaleZ": 0.5657107
},
"Nickname": "Sister \"of Battle\" Mary",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1786217534351135554/A6535EC60FCCA481D469A5DC1362D9E6CBAAED92/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1786217534351136953/2E52D40BC0FFD36491AC73AE2DE98B8C0187C977/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": true,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "329445",
"Name": "Custom_Tile",
"Transform": {
"posX": -1.76786017,
"posY": 0.9600004,
"posZ": -0.2475957,
"rotX": -1.99428159E-05,
"rotY": 180.0,
"rotZ": 9.04094E-06,
"scaleX": 0.5657107,
"scaleY": 1.0,
"scaleZ": 0.5657107
},
"Nickname": "Sister \"of Battle\" Mary",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1786217534351135608/EF64E1FB541E98B2110568E80521F909FCC65B6A/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1786217534351137004/0BDCE801CF3CFFE731ECBF3C6CA42D36DD6E6A6F/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": true,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "a0c8aa",
"Name": "Custom_Tile",
"Transform": {
"posX": 0.8466925,
"posY": 3.00689,
"posZ": -4.412681,
"rotX": -2.44768344E-05,
"rotY": 180.000015,
"rotZ": 1.12348271E-05,
"scaleX": 0.5657107,
"scaleY": 1.0,
"scaleZ": 0.5657107
},
"Nickname": "Ursula Downs",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1786217534351153507/40687A48B0B38B8FC6B2EBF1B1A584F664FF7B82/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1786217534351154638/AD7164AEFA42443372544B9AE244200A7A6C0701/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": true,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "ef5e1e",
"Name": "Custom_Tile",
"Transform": {
"posX": 7.01594162,
"posY": 0.959999561,
"posZ": 1.3719486,
"rotX": -7.631986E-05,
"rotY": 179.999985,
"rotZ": 1.59252013E-05,
"scaleX": 0.5657107,
"scaleY": 1.0,
"scaleZ": 0.5657107
},
"Nickname": "Ursula Downs",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1786217534351153563/23860331AAF2DAA0CD5587DB287DDAEEAD6CC70F/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1786217534351154679/8FCE2FFA8B295B437C5862861B8BBB71B805405D/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": true,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "be4f57",
"Name": "Custom_Tile",
"Transform": {
"posX": 2.02589,
"posY": 3.00689,
"posZ": -4.3285656,
"rotX": -1.88035647E-05,
"rotY": 180.000031,
"rotZ": 1.47612209E-05,
"scaleX": 0.5657107,
"scaleY": 1.0,
"scaleZ": 0.5657107
},
"Nickname": "\"Ashcan\" Pete",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1786217534351178860/0726567002C8338E97BB3E3746675E696FDC8721/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1786217534351180402/300B84479A7E7FBD938886E6FFF983BE099DF983/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": true,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "8902b4",
"Name": "Custom_Tile",
"Transform": {
"posX": 3.13925147,
"posY": 3.00689,
"posZ": -4.333758,
"rotX": -1.501711E-05,
"rotY": 180.0,
"rotZ": 1.5511625E-05,
"scaleX": 0.5657107,
"scaleY": 1.0,
"scaleZ": 0.5657107
},
"Nickname": "Duke",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1786217534351191818/BFC802E32AE2A38228739510216AE1D4A4E4BB69/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1786217534351193465/CE9301CD15AFA8A7B5AF34C950714AB39213DDE6/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": true,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "7ef8b0",
"Name": "Bag",
"Transform": {
"posX": 14.22693,
"posY": 3.278553,
"posZ": -2.70788455,
"rotX": 1.981688E-05,
"rotY": -4.79514019E-05,
"rotZ": -1.93133037E-05,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "The Novellas Only",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.7058823,
"g": 0.366520882,
"b": 0.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,
"Bag": {
"Order": 0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "41af3c",
"Name": "Custom_Tile",
"Transform": {
"posX": -8.775501,
"posY": 3.029045,
"posZ": -1.85789132,
"rotX": 359.953583,
"rotY": 180.004364,
"rotZ": 358.863678,
"scaleX": 0.5657107,
"scaleY": 1.0,
"scaleZ": 0.5657107
},
"Nickname": "Gloria Goldberg",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698230708453946/632737736F711F40CB028160C41BEA9ABB0E5452/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698230708456674/D0BD072E388A816E723E14099DB0C0F0F29D1B4A/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": true,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "bdbebb",
"Name": "Custom_Tile",
"Transform": {
"posX": -2.72389579,
"posY": 0.960001349,
"posZ": -2.41127372,
"rotX": -2.58430046E-05,
"rotY": 180.0,
"rotZ": 1.10427845E-05,
"scaleX": 0.5657107,
"scaleY": 1.0,
"scaleZ": 0.5657107
},
"Nickname": "Gloria Goldberg",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698230708454002/B6EE6E9D045F421A99CD5935D3B0DB8359889E89/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698230708456715/2E1B1D504A7EA17F427E5277185836A03C6F4979/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": true,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "1d37ae",
"Name": "Custom_Tile",
"Transform": {
"posX": -4.75271463,
"posY": 3.02592444,
"posZ": -2.2036128,
"rotX": -2.10541948E-05,
"rotY": 180.0,
"rotZ": 5.55953329E-06,
"scaleX": 0.5657107,
"scaleY": 1.0,
"scaleZ": 0.5657107
},
"Nickname": "Norman Withers",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698230708454043/58DCCF75F91563D964F0DE40E0466E7C1E397304/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698230708457497/56FD4FA183C86788EF3F0D7109C75D61A711BD29/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": true,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "2db65b",
"Name": "Custom_Tile",
"Transform": {
"posX": 1.29944789,
"posY": 0.9600009,
"posZ": -2.7570343,
"rotX": -1.74139932E-05,
"rotY": 180.000015,
"rotZ": -1.32418131E-06,
"scaleX": 0.5657107,
"scaleY": 1.0,
"scaleZ": 0.5657107
},
"Nickname": "Norman Withers",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698230708454082/88D4671EDA79C9A7580390D1CEABD439B3DFE7A8/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698230708457543/F21AA4447E954D0BF945B0C65AEAC3147B94956C/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": true,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
}
]
},
{
"GUID": "b08c1f",
"Name": "Bag",
"Transform": {
"posX": 5.66126776,
"posY": 1.78610146,
"posZ": 0.9855542,
"rotX": 1.32069624E-06,
"rotY": 5.00591268E-05,
"rotZ": -3.61653038E-05,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Barkham Horror",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"MaterialIndex": -1,
"MeshIndex": -1,
"Bag": {
"Order": 0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "df5fd1",
"Name": "Custom_Tile",
"Transform": {
"posX": -5.192352,
"posY": 3.02661872,
"posZ": -0.304523379,
"rotX": 1.37155439E-05,
"rotY": 180.000046,
"rotZ": -8.718616E-05,
"scaleX": 0.5657107,
"scaleY": 1.0,
"scaleZ": 0.5657107
},
"Nickname": "Duke",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698230708410170/D4127E3D1255D89CD6829131FC60722471D2434D/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698230708406881/374951AF62E93DB10E32237BE4E98F7C2C94314D/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": true,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "5bd561",
"Name": "Custom_Tile",
"Transform": {
"posX": 1.37280273,
"posY": 1.06000113,
"posZ": -2.25585771,
"rotX": -4.8685044E-05,
"rotY": 180.0,
"rotZ": 180.000031,
"scaleX": 0.5657107,
"scaleY": 1.0,
"scaleZ": 0.5657107
},
"Nickname": "Duke",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698230708410213/7D3454C8CD3E81CB7AFADBEE3555DA6CF80A5D16/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698230708406916/3FAEBBD786FAB3E42E02D9A7DF4C73F89A5FE9FE/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": true,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "7aeca6",
"Name": "Custom_Tile",
"Transform": {
"posX": -6.655418,
"posY": 3.02661872,
"posZ": -0.34365,
"rotX": -5.07636141E-05,
"rotY": 180.0,
"rotZ": -2.57174124E-05,
"scaleX": 0.5657107,
"scaleY": 1.0,
"scaleZ": 0.5657107
},
"Nickname": "Jacqueline Canine",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698230708409781/C504CD93965EC04EBCAD7440CEE2F5CC0CEF9B8A/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698230708406425/5A57CC74B357FC9826F5E433109A5D7506AF5B0D/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": true,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "9b1574",
"Name": "Custom_Tile",
"Transform": {
"posX": -0.09026277,
"posY": 0.9600017,
"posZ": -2.29498529,
"rotX": -6.1689534E-05,
"rotY": 180.0,
"rotZ": -3.79493031E-05,
"scaleX": 0.5657107,
"scaleY": 1.0,
"scaleZ": 0.5657107
},
"Nickname": "Jacqueline Canine",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698230708409829/5B9442CA3BD4B0F37F58505B84EEA6E1AD76A4D9/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698230708406473/27D805A6B11B91691FDA338CA981D264C92D98B4/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": true,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "35a602",
"Name": "Custom_Tile",
"Transform": {
"posX": -8.072751,
"posY": 3.03606224,
"posZ": -0.385422766,
"rotX": 1.29104328,
"rotY": 180.0159,
"rotZ": 1.40805721,
"scaleX": 0.5657107,
"scaleY": 1.0,
"scaleZ": 0.5657107
},
"Nickname": "\"Skids\" O'Droole",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698230708409369/88D089A83D503494EAC46DE1D41B6852D37C7518/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698230708405998/57C5A19E3FDDE6159F7D4C319C40F83CAA9E2958/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": true,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "81d8c5",
"Name": "Custom_Tile",
"Transform": {
"posX": -1.36366594,
"posY": 0.960001945,
"posZ": -2.128488,
"rotX": -7.556884E-05,
"rotY": 180.0,
"rotZ": -5.03773372E-05,
"scaleX": 0.5657107,
"scaleY": 1.0,
"scaleZ": 0.5657107
},
"Nickname": "\"Skids\" O'Droole",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698230708409413/2C5B4CA5C5308BCA94B02FDA37446D2476434744/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698230708406061/324040CFDCAD02FA8C33585794D71751C3CCF6FB/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": true,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "ccff5a",
"Name": "Custom_Tile",
"Transform": {
"posX": -9.45316,
"posY": 3.02661467,
"posZ": -0.405957371,
"rotX": -2.21245555E-05,
"rotY": 180.000015,
"rotZ": -6.067223E-06,
"scaleX": 0.5657107,
"scaleY": 1.0,
"scaleZ": 0.5657107
},
"Nickname": "Kate Winthpup",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698230708408923/70406CED274C9EE96A5275083C1472EEB7F42655/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698230708405508/E5578DBC5D96CA60DF4FCD962958B3AB48FBB7FF/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": true,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "7ee00e",
"Name": "Custom_Tile",
"Transform": {
"posX": -2.76785517,
"posY": 0.9600023,
"posZ": -2.31039453,
"rotX": -1.90496849E-05,
"rotY": 180.000015,
"rotZ": -6.25381972E-06,
"scaleX": 0.5657107,
"scaleY": 1.0,
"scaleZ": 0.5657107
},
"Nickname": "Kate Winthpup",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698230708408969/3B7B47E8D072406708C65F819662ECC5F4B43CA7/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698230708405554/F313FAF23B1125C6E1F064177146B0C1726D732B/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": true,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "41af3c",
"Name": "Custom_Tile",
"Transform": {
"posX": -7.923065,
"posY": 3.0105617,
"posZ": 0.640935957,
"rotX": 4.41430855,
"rotY": 179.8796,
"rotZ": 357.884644,
"scaleX": 0.5657107,
"scaleY": 1.0,
"scaleZ": 0.5657107
},
"Nickname": "Bark Harrigan",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698230708408532/033B521E7599C6A651B9BB92D13880FAF1974002/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698230708404997/A7821E94249324720D9EEC18F51C6E0F32511F20/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": true,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "5887bc",
"Name": "Custom_Tile",
"Transform": {
"posX": -4.230135,
"posY": 0.960002542,
"posZ": -2.34120679,
"rotX": -2.02591837E-05,
"rotY": 180.0,
"rotZ": 9.68632048E-06,
"scaleX": 0.5657107,
"scaleY": 1.0,
"scaleZ": 0.5657107
},
"Nickname": "Bark Harrigan",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698230708408571/623901B6B223E8DAD4C28A007D34A10B54DD873C/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698230708405075/B15AEA5DC9BC8532704ADE17AB22E90A2FAA021E/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": true,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
}
]
},
{
"GUID": "c4deec",
"Name": "Bag",
"Transform": {
"posX": 1.677063,
"posY": 1.78610146,
"posZ": 4.03038836,
"rotX": -8.431008E-06,
"rotY": 1.48276422E-05,
"rotZ": -2.230983E-05,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Edge of the Earth",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.162807077,
"g": 0.820583344,
"b": 0.9634146
},
"LayoutGroupSortIndex": 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,
"Bag": {
"Order": 0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "2eea14",
"Name": "Custom_Tile",
"Transform": {
"posX": 3.56290865,
"posY": 1.9711504,
"posZ": 7.137725,
"rotX": 1.60829713E-05,
"rotY": 179.999985,
"rotZ": -0.000163895427,
"scaleX": 0.5657107,
"scaleY": 1.0,
"scaleZ": 0.5657107
},
"Nickname": "Bob Jenkins",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1696157607127523334/29041B1A9ECCAD66934F7394C1BAAD5A29419D5C/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1696157607127589857/8350D4B8CA0167FD63AE6F4252DB131DCF02068F/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": true,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "5bd561",
"Name": "Custom_Tile",
"Transform": {
"posX": -3.87873745,
"posY": 0.9599999,
"posZ": 4.86478758,
"rotX": -6.98059E-05,
"rotY": 180.0,
"rotZ": 2.13232343E-05,
"scaleX": 0.5657107,
"scaleY": 1.0,
"scaleZ": 0.5657107
},
"Nickname": "Bob Jenkins",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1696157607127588327/419EF2D650774CCB0500C73CFC43AC77D234747F/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1696157607127589908/773A07E5D19FAFDA6AF71CEBC069175C769EF9ED/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": true,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "ea25c3",
"Name": "Custom_Tile",
"Transform": {
"posX": 2.59121227,
"posY": 1.97113514,
"posZ": 8.901775,
"rotX": 5.20634649E-06,
"rotY": 179.996384,
"rotZ": 8.813474E-06,
"scaleX": 0.5657107,
"scaleY": 1.0,
"scaleZ": 0.5657107
},
"Nickname": "Lily Chen",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1696157607127522876/4B0FEBAFA852F2D0A8C5496CF467EEB190EABD6C/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1696157607127590802/89F9AF2C4EAFD5ABDB3E877213F79C0D4A410C78/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": true,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "9b1574",
"Name": "Custom_Tile",
"Transform": {
"posX": -8.392661,
"posY": 0.9600003,
"posZ": 4.193834,
"rotX": 3.06895781E-05,
"rotY": 270.008423,
"rotZ": -3.147807E-05,
"scaleX": 0.5657107,
"scaleY": 1.0,
"scaleZ": 0.5657107
},
"Nickname": "Lily Chen",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1696157607127588477/F570ACBA35CB2F916284EFF8F671646235DA822C/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1696157607127590872/69AEF24314609C572C8EC2443582BE04F2186806/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": true,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "d9a9ba",
"Name": "Custom_Tile",
"Transform": {
"posX": 2.01203322,
"posY": 3.52307224,
"posZ": 9.508248,
"rotX": -1.960488E-05,
"rotY": 180.0,
"rotZ": -6.822164E-05,
"scaleX": 0.5657107,
"scaleY": 1.0,
"scaleZ": 0.5657107
},
"Nickname": "Monterey Jack",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1696157607127522568/63253F03CECE5EDF2042D17AFFA5A1F082DD7ECC/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1696157607127593370/DD3BE0CB11F4308ED5C966D8B6620BB50BD11186/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": true,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "81d8c5",
"Name": "Custom_Tile",
"Transform": {
"posX": -7.180552,
"posY": 0.960000157,
"posZ": 4.300206,
"rotX": -2.00522372E-05,
"rotY": 179.999969,
"rotZ": -6.758973E-05,
"scaleX": 0.5657107,
"scaleY": 1.0,
"scaleZ": 0.5657107
},
"Nickname": "Monterey Jack",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1696157607127588525/D4FA9699B6ED018ED996622689AD6384CA7833D2/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1696157607127593415/FA319D0449914FDED7A263FBECEF3FA4714C1905/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": true,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "3fc084",
"Name": "Custom_Tile",
"Transform": {
"posX": 2.72916317,
"posY": 1.97243357,
"posZ": 9.875451,
"rotX": -2.7846605E-05,
"rotY": 180.0,
"rotZ": 3.8195376E-05,
"scaleX": 0.5657107,
"scaleY": 1.0,
"scaleZ": 0.5657107
},
"Nickname": "Norman Withers",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1696157607127522098/E3BE272A6CDA2AD18B26FD9A8A2553006DB02EF3/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1696157607127592641/5C7D4DBFC0F62886306691D6596E87C064F353D9/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": true,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "7ee00e",
"Name": "Custom_Tile",
"Transform": {
"posX": -8.154894,
"posY": 0.960001349,
"posZ": 4.303051,
"rotX": -3.42380154E-05,
"rotY": 180.000061,
"rotZ": 1.63141249E-05,
"scaleX": 0.5657107,
"scaleY": 1.0,
"scaleZ": 0.5657107
},
"Nickname": "Norman Withers",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1696157607127588586/8BC5F352FA3F5C2D4BF09F424A1649604D3974B7/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1696157607127592732/BB9E64CC70B4E6BD61EEBDD74839B8E2CBA72E2C/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": true,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "38912e",
"Name": "Custom_Tile",
"Transform": {
"posX": 1.6195662,
"posY": 3.92683959,
"posZ": 9.388586,
"rotX": -3.714078E-05,
"rotY": 180.0,
"rotZ": 1.64233512E-07,
"scaleX": 0.5657107,
"scaleY": 1.0,
"scaleZ": 0.5657107
},
"Nickname": "Daniella Reyes",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1696157607127521616/39573C71B46B811A60950D96773E901A90970259/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1696157607127591539/554A5A800A2C267F06CD7E9916E7DDAFEC381EF8/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": true,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "5887bc",
"Name": "Custom_Tile",
"Transform": {
"posX": -9.118571,
"posY": 0.960001349,
"posZ": 4.295325,
"rotX": -7.119444E-05,
"rotY": 180.0,
"rotZ": 5.381034E-06,
"scaleX": 0.5657107,
"scaleY": 1.0,
"scaleZ": 0.5657107
},
"Nickname": "Daniella Reyes",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1696157607127588406/F938D09732F8FDBDAD79625BDA22820D52B6A5C5/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1696157607127591604/10ED90016BFAA3922CD739B54BD7CBF3BD34C6D5/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": true,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
}
]
},
{
"GUID": "151d53",
"Name": "Bag",
"Transform": {
"posX": 8.636114,
"posY": 1.78610218,
"posZ": 2.39806414,
"rotX": 6.627087E-05,
"rotY": 4.581697E-05,
"rotZ": -1.296333E-05,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "The Starter Decks",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.7058823,
"g": 0.366520882,
"b": 0.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,
"Bag": {
"Order": 0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "68c7c8",
"Name": "Custom_Tile",
"Transform": {
"posX": -2.5629015,
"posY": 3.02577019,
"posZ": -3.21738338,
"rotX": -6.19366E-05,
"rotY": 180.0001,
"rotZ": -3.72802751E-05,
"scaleX": 0.5657107,
"scaleY": 1.0,
"scaleZ": 0.5657107
},
"Nickname": "Stella Clark",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698230708341095/86B5B824E926576A815D31D26AE3D0A855D78A2E/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698230708355417/A1FCE73454122F3B14CBCFC313660D9D032624F6/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": true,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "0da48f",
"Name": "Custom_Tile",
"Transform": {
"posX": 2.90033984,
"posY": 0.960001469,
"posZ": -2.64144874,
"rotX": -5.352913E-05,
"rotY": 180.000015,
"rotZ": -2.38037519E-05,
"scaleX": 0.5657107,
"scaleY": 1.0,
"scaleZ": 0.5657107
},
"Nickname": "Stella Clark",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698230708341146/6372AE92829917C3270E03943CAB54DC19B2F7B0/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698230708355469/E91F08E1796B1E0E4F21E2E1B7EEF68CB35D433B/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": true,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "8007d3",
"Name": "Custom_Tile",
"Transform": {
"posX": -3.89311028,
"posY": 3.02577043,
"posZ": -3.18947029,
"rotX": -5.33700222E-05,
"rotY": 180.000015,
"rotZ": -2.166608E-05,
"scaleX": 0.5657107,
"scaleY": 1.0,
"scaleZ": 0.5657107
},
"Nickname": "Jacqueline Fine",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698230708340666/402C6AA9EACD3D74A286A7BB3F59FADFED47D95E/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698230708354798/23612793AE012CDFD906D19FAC167E81F3ED78F7/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": true,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "0896ca",
"Name": "Custom_Tile",
"Transform": {
"posX": -0.402367145,
"posY": 0.9600022,
"posZ": -2.61121845,
"rotX": -1.754304E-05,
"rotY": 180.0,
"rotZ": -1.87718229E-06,
"scaleX": 0.5657107,
"scaleY": 1.0,
"scaleZ": 0.5657107
},
"Nickname": "Jacqueline Fine",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698230708340716/31853BB4E6FB5C7C6EB93B48698DEB3DB9198DFD/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698230708354840/A8B4F12E6DD0A1BC641627FD3170671F34551F10/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": true,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "801e8a",
"Name": "Custom_Tile",
"Transform": {
"posX": -5.19586754,
"posY": 3.02577043,
"posZ": -3.200858,
"rotX": 3.69615045E-05,
"rotY": 180.000076,
"rotZ": 5.26018121E-05,
"scaleX": 0.5657107,
"scaleY": 1.0,
"scaleZ": 0.5657107
},
"Nickname": "Winifred Habbamock",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698230708340350/3880B5C3B9AEA9B05CA358A0DBAAB87D57E33BF7/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698230708353668/6FFADF9E7F21046DAEDDCC7C7B049831353C8329/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": true,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "ee63fb",
"Name": "Custom_Tile",
"Transform": {
"posX": -1.52050519,
"posY": 0.9600022,
"posZ": -2.68199062,
"rotX": -2.17946163E-05,
"rotY": 180.000015,
"rotZ": -9.511086E-06,
"scaleX": 0.5657107,
"scaleY": 1.0,
"scaleZ": 0.5657107
},
"Nickname": "Winifred Habbamock",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698230708340389/3602C2AD31DB9A9120811C379C432C1924EB9471/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698230708353726/A9E04180C3AE495EA6CB2FA331CEBA034B83EB30/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": true,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "98607a",
"Name": "Custom_Tile",
"Transform": {
"posX": -6.48838139,
"posY": 3.03031683,
"posZ": -3.20749736,
"rotX": 0.5148575,
"rotY": 179.979477,
"rotZ": 358.3363,
"scaleX": 0.5657107,
"scaleY": 1.0,
"scaleZ": 0.5657107
},
"Nickname": "Harvey Walters",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698230708339924/8530773A311DEA65FB59380D60635DC1510E1D3F/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698230708352413/D2D829214A3D78A3CFE97319A3D3C2B1CAD66AED/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": true,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "f22888",
"Name": "Custom_Tile",
"Transform": {
"posX": -2.77317119,
"posY": 0.960002542,
"posZ": -2.53136683,
"rotX": -1.77730763E-05,
"rotY": 180.0,
"rotZ": -3.75366676E-06,
"scaleX": 0.5657107,
"scaleY": 1.0,
"scaleZ": 0.5657107
},
"Nickname": "Harvey Walters",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698230708339987/528F0AB144F2CFA1F81E13B0BA38590D0B2D87B3/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698230708352462/AB9320A7EFEAABB89C81402FE25E2B86D56518D1/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": true,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "41af3c",
"Name": "Custom_Tile",
"Transform": {
"posX": -7.91137028,
"posY": 3.025761,
"posZ": -3.230036,
"rotX": -1.66946065E-05,
"rotY": 180.000031,
"rotZ": -1.19486831E-05,
"scaleX": 0.5657107,
"scaleY": 1.0,
"scaleZ": 0.5657107
},
"Nickname": "Nathaniel Cho",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698230708339555/596AB8F4AC36C120431CE65AE962919660CF7F2D/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698230708344319/1CBFAE08EF3FDD939AEEC1195F53B6E57F05D098/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": true,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "312943",
"Name": "Custom_Tile",
"Transform": {
"posX": -4.185497,
"posY": 1.06000245,
"posZ": -2.944681,
"rotX": -1.985872E-05,
"rotY": 180.000015,
"rotZ": 180.0,
"scaleX": 0.5657107,
"scaleY": 1.0,
"scaleZ": 0.5657107
},
"Nickname": "Nathaniel Cho",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698230708339610/369551E19D2D282ACDEFE9E828B5693736415C60/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698230708344373/47E1455D596285DA9AC591B8CBBA8A6BBC3A399D/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": true,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
}
]
},
{
"GUID": "e65163",
"Name": "Bag",
"Transform": {
"posX": 14.2114115,
"posY": 3.287636,
"posZ": -4.09314537,
"rotX": 8.447202E-06,
"rotY": 359.98465,
"rotZ": -0.000115605741,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "The Innsmouth Conspiracy",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.7019608,
"g": 0.0,
"b": 0.1487425
},
"LayoutGroupSortIndex": 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,
"Bag": {
"Order": 0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "ea374e",
"Name": "Custom_Tile",
"Transform": {
"posX": -1.65811491,
"posY": 3.02613,
"posZ": -3.20819783,
"rotX": -2.124964E-05,
"rotY": 180.000122,
"rotZ": 7.900475E-06,
"scaleX": 0.5657107,
"scaleY": 1.0,
"scaleZ": 0.5657107
},
"Nickname": "Silas Marsh",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1689372753836133538/08468DD39631F30C51A0D315DBE9827C3C2BC1F7/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698230708277471/62E0152FFC85349404B3B952366F83AC3D730133/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": true,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "4a5e7a",
"Name": "Custom_Tile",
"Transform": {
"posX": 3.31860137,
"posY": 0.960001469,
"posZ": -2.99149966,
"rotX": -5.28490418E-05,
"rotY": 180.000031,
"rotZ": -3.02718163E-05,
"scaleX": 0.5657107,
"scaleY": 1.0,
"scaleZ": 0.5657107
},
"Nickname": "Silas Marsh",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698230708269049/E0FAA98DADFB179B943E24145E590BD71A1779BF/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698230708277518/28DA0C3837F55D1D6C6E08FF0B60C09E5ED8E33A/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": true,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "cc7ebf",
"Name": "Custom_Tile",
"Transform": {
"posX": -2.89709,
"posY": 3.02612948,
"posZ": -3.24587846,
"rotX": -6.398001E-05,
"rotY": 180.000015,
"rotZ": -9.814086E-06,
"scaleX": 0.5657107,
"scaleY": 1.0,
"scaleZ": 0.5657107
},
"Nickname": "Dexter Drake",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698230708268582/D82F61CFBC8EC78B52B91DC150B694AEAA8786F8/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698230708276933/1F855BF79C7F245CD86DF20A6DF3EFD003937DD8/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": true,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "bae011",
"Name": "Custom_Tile",
"Transform": {
"posX": 1.53126442,
"posY": 0.9600016,
"posZ": -2.534034,
"rotX": -4.97978253E-05,
"rotY": 180.0,
"rotZ": -3.80652418E-05,
"scaleX": 0.5657107,
"scaleY": 1.0,
"scaleZ": 0.5657107
},
"Nickname": "Dexter Drake",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698230708268635/F1EF016E4474C1EC62988C8E36B1BF096DE05A5C/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698230708276987/583BFF57285786963195B100877F2C46A36E0C63/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": true,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "54285c",
"Name": "Custom_Tile",
"Transform": {
"posX": -4.23289776,
"posY": 3.02613,
"posZ": -3.23679328,
"rotX": -1.76501562E-05,
"rotY": 180.000031,
"rotZ": -5.406599E-06,
"scaleX": 0.5657107,
"scaleY": 1.0,
"scaleZ": 0.5657107
},
"Nickname": "Trish Scarborough",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698230708268082/2B7A49FAE3A48E06D00848FC1E13228836AD72D9/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698230708275800/C622A40AC5C14098BFB7B0ABE377E6A8A978A76F/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": true,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "1187f5",
"Name": "Custom_Tile",
"Transform": {
"posX": 2.2628448,
"posY": 0.9600018,
"posZ": -3.1409502,
"rotX": -2.1589367E-05,
"rotY": 180.000015,
"rotZ": 4.40210943E-06,
"scaleX": 0.5657107,
"scaleY": 1.0,
"scaleZ": 0.5657107
},
"Nickname": "Trish Scarborough",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698230708268124/F4AFECA42E7336BC62B6D92FBDE56CA5B0C8D099/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698230708275836/000C6C99DB78208FD56EFE36A6F5E8895BFC67F0/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": true,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "41af3c",
"Name": "Custom_Tile",
"Transform": {
"posX": 19.5051441,
"posY": 1.9711355,
"posZ": 15.45004,
"rotX": -3.28437022E-06,
"rotY": 180.000031,
"rotZ": 6.323037E-06,
"scaleX": 0.5657107,
"scaleY": 1.0,
"scaleZ": 0.5657107
},
"Nickname": "Sister Mary",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698230708267155/357D4F44C80BF3EDA4DE2571580CD51AD0409DAD/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698230708274860/6D669E6A0635375970BFFA53B8E4827C1217CD86/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": true,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "c0b80a",
"Name": "Custom_Tile",
"Transform": {
"posX": -1.37668073,
"posY": 0.960002065,
"posZ": -2.78234076,
"rotX": -0.000101334554,
"rotY": 180.0,
"rotZ": -4.245368E-05,
"scaleX": 0.5657107,
"scaleY": 1.0,
"scaleZ": 0.5657107
},
"Nickname": "Sister Mary",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698230708267218/AE7FE2333D8324CE16E72FEA3C75834F077C9E81/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698230708274917/53943BB118CED98CCEFFF4E775A364D6153D8BAD/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": true,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "e23b96",
"Name": "Custom_Tile",
"Transform": {
"posX": -5.61150169,
"posY": 3.03114676,
"posZ": -3.277402,
"rotX": 358.496826,
"rotY": 180.000076,
"rotZ": 359.968079,
"scaleX": 0.5657107,
"scaleY": 1.0,
"scaleZ": 0.5657107
},
"Nickname": "Amanda Sharpe",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698230708267572/13622DE74585FC4876A8EFEE8420F8C836BA8519/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698230708275352/896FBACDC6BBDCD438BA962B9A02B0D13B597989/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": true,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "c396fd",
"Name": "Custom_Tile",
"Transform": {
"posX": -1.09815109,
"posY": 1.06000173,
"posZ": -2.77054262,
"rotX": -2.325564E-05,
"rotY": 180.0,
"rotZ": 180.0,
"scaleX": 0.5657107,
"scaleY": 1.0,
"scaleZ": 0.5657107
},
"Nickname": "Amanda Sharpe",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698230708267631/1D18D69C99B182A73C6A5FA575DE99B44852E846/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698230708275387/ADA399872F35C5633E24ED2963532A2AA50928EA/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": true,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
}
]
},
{
"GUID": "0c3907",
"Name": "Bag",
"Transform": {
"posX": 9.417372,
"posY": 1.78671467,
"posZ": 2.65215588,
"rotX": 0.0175033286,
"rotY": 359.9654,
"rotZ": 0.0207480062,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "The Dream-Eaters",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.391425878,
"g": 0.205845147,
"b": 0.837979138
},
"LayoutGroupSortIndex": 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,
"Bag": {
"Order": 0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "766ad4",
"Name": "Custom_Tile",
"Transform": {
"posX": -5.20704126,
"posY": 3.02657342,
"posZ": -5.76645327,
"rotX": -2.11784663E-05,
"rotY": 180.0,
"rotZ": -2.99936619E-06,
"scaleX": 0.5657107,
"scaleY": 1.0,
"scaleZ": 0.5657107
},
"Nickname": "Patrice Hathaway",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698230708201644/A0164787739161D57DAE1776D9385A761A6DCCA8/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698230708197974/23DC99948D8444641D9196853ED669B80B4E1458/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": true,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "f1af3a",
"Name": "Custom_Tile",
"Transform": {
"posX": 1.75974548,
"posY": 0.960001945,
"posZ": -2.82789421,
"rotX": -2.6050433E-05,
"rotY": 180.000015,
"rotZ": 1.294456E-05,
"scaleX": 0.5657107,
"scaleY": 1.0,
"scaleZ": 0.5657107
},
"Nickname": "Tony Morgan",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698230708201716/30C452E02E8909A9B104CE8ACC0E66DC41976DE2/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698230708198074/6B49DCCBADD6BC03EA4E6564C5D49ABA6E5DD745/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": true,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "1554fb",
"Name": "Custom_Tile",
"Transform": {
"posX": -6.512238,
"posY": 3.026572,
"posZ": -5.7778573,
"rotX": -8.191492E-05,
"rotY": 180.000031,
"rotZ": -1.23614291E-05,
"scaleX": 0.5657107,
"scaleY": 1.0,
"scaleZ": 0.5657107
},
"Nickname": "Luke Robinson",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698230708201100/5858E2373A89F6CB16FEBE701D3946BA9C965997/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698230708197291/94ABB4D5AA7291F65EDFB7B2C3CCA6AA3EF0522F/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": true,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "f1af3a",
"Name": "Custom_Tile",
"Transform": {
"posX": 0.454549,
"posY": 0.960002065,
"posZ": -2.839298,
"rotX": -2.40172212E-05,
"rotY": 180.000015,
"rotZ": 1.1604704E-05,
"scaleX": 0.5657107,
"scaleY": 1.0,
"scaleZ": 0.5657107
},
"Nickname": "Luke Robinson",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698230708201147/2B427DD014C4FC5209B9AF01F1BC19C79AB0C1F0/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698230708197345/58932A027E2D20CB188338F45734A0818F3EB38C/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": true,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "4ac15b",
"Name": "Custom_Tile",
"Transform": {
"posX": -7.796151,
"posY": 3.04508734,
"posZ": -5.86724234,
"rotX": 0.552633345,
"rotY": 179.9961,
"rotZ": 359.187958,
"scaleX": 0.5657107,
"scaleY": 1.0,
"scaleZ": 0.5657107
},
"Nickname": "Tony Morgan",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698230708200588/B83243F3620B8A3F857EF19BD6C918DB791535E5/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698230708196300/FB58ECD4C705DDBE1292D2697D813C23C24C9BB9/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": true,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "f1af3a",
"Name": "Custom_Tile",
"Transform": {
"posX": -0.8300723,
"posY": 1.06000137,
"posZ": -2.92916632,
"rotX": -1.88975428E-05,
"rotY": 179.999985,
"rotZ": 180.000031,
"scaleX": 0.5657107,
"scaleY": 1.0,
"scaleZ": 0.5657107
},
"Nickname": "Tony Morgan",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698230708200641/15C6BAF9B845A1180C9C02DFD64D8D4466B5B3B9/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698230708196357/33B209F29895F79441FD38C527C7B547347C095D/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": true,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "7c5bee",
"Name": "Custom_Tile",
"Transform": {
"posX": -9.053331,
"posY": 3.02657342,
"posZ": -5.91006136,
"rotX": -2.077964E-05,
"rotY": 180.000061,
"rotZ": -7.207009E-06,
"scaleX": 0.5657107,
"scaleY": 1.0,
"scaleZ": 0.5657107
},
"Nickname": "Mandy Thompson",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698230708199818/DD1907BF3605BF9326C4346C159A2A37E7DAC3BF/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698230708195342/5351DA7E5E49F475C713410A0E987F1D630C0319/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": true,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "f1af3a",
"Name": "Custom_Tile",
"Transform": {
"posX": -0.6790991,
"posY": 0.9600009,
"posZ": -2.9580245,
"rotX": -0.000123189631,
"rotY": 180.000015,
"rotZ": -1.606895E-05,
"scaleX": 0.5657107,
"scaleY": 1.0,
"scaleZ": 0.5657107
},
"Nickname": "Mandy Thompson",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698230708199872/294C8959E21BED5D48F93E30897485028A4B7174/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698230708195418/3027FAE236F7533F31123C4A2151F1C88BF800F7/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": true,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "83023e",
"Name": "Custom_Tile",
"Transform": {
"posX": -12.1463318,
"posY": 3.03385377,
"posZ": 1.96651542,
"rotX": 359.316345,
"rotY": 180.011154,
"rotZ": 358.1306,
"scaleX": 0.5657107,
"scaleY": 1.0,
"scaleZ": 0.5657107
},
"Nickname": "Tommy Muldoon",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698230708199362/4BD038D582CFD3330C47C61F58EF6A7CE9E1CE1B/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698230708194665/A34C45D69EC2BE7C20E1805631BB915C013B88F4/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": true,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "2ba63a",
"Name": "Custom_Tile",
"Transform": {
"posX": -3.34762859,
"posY": 1.06000113,
"posZ": -2.98036647,
"rotX": 2.02197152E-05,
"rotY": 179.999954,
"rotZ": 180.000214,
"scaleX": 0.5657107,
"scaleY": 1.0,
"scaleZ": 0.5657107
},
"Nickname": "Tommy Muldoon",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698230708199413/555A8115D647A95F0B148ECF884E01C708EF6016/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698230708194721/C86B6842A9D4FB9D48FB9D37DAC53258A957403D/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": true,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
}
]
},
{
"GUID": "f2acef",
"Name": "Bag",
"Transform": {
"posX": 8.805073,
"posY": 1.78610194,
"posZ": 2.84395719,
"rotX": -3.09292773E-05,
"rotY": -1.16728E-06,
"rotZ": 4.29954962E-05,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "The Circle Undone",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.1079944,
"g": 0.0,
"b": 0.200348377
},
"LayoutGroupSortIndex": 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,
"Bag": {
"Order": 0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "b47207",
"Name": "Custom_Tile",
"Transform": {
"posX": -4.90270424,
"posY": 3.026563,
"posZ": -4.2625556,
"rotX": -1.59064984E-05,
"rotY": 180.000031,
"rotZ": 3.69665554E-06,
"scaleX": 0.5657107,
"scaleY": 1.0,
"scaleZ": 0.5657107
},
"Nickname": "Marie Lambeau",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698230708059931/C11E59927991E198A6551EAE10D576C21427CFE0/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698230708064666/3B3FCB362F89D258EA5CE949974064DEB781AAC7/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": true,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "662b2f",
"Name": "Custom_Tile",
"Transform": {
"posX": 3.57860065,
"posY": 0.960001945,
"posZ": -3.67193651,
"rotX": -2.29221332E-05,
"rotY": 180.000015,
"rotZ": 8.347389E-06,
"scaleX": 0.5657107,
"scaleY": 1.0,
"scaleZ": 0.5657107
},
"Nickname": "Marie Lambeau",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698230708059970/29895A4A8B99A7FF1A2BA4AD494F291C4694998B/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698230708064716/CF414F2E1AEA52AC319C8EFA22763DDCA6443BCA/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": true,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "eb0c23",
"Name": "Custom_Tile",
"Transform": {
"posX": -6.03322458,
"posY": 3.026563,
"posZ": -4.30099964,
"rotX": -0.000113393966,
"rotY": 179.999985,
"rotZ": 1.50861688E-05,
"scaleX": 0.5657107,
"scaleY": 1.0,
"scaleZ": 0.5657107
},
"Nickname": "Rita Young",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698230708059477/A3B4AAD4C8173EF3EE8F99DC1F943E4A55D231EB/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698230708064098/9E1DB28CC00E4CD43B52E8814A990EC6C1439028/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": true,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "b96925",
"Name": "Custom_Tile",
"Transform": {
"posX": 1.22831357,
"posY": 0.9600022,
"posZ": -3.73485827,
"rotX": -2.3794717E-05,
"rotY": 180.0,
"rotZ": -1.85044613E-07,
"scaleX": 0.5657107,
"scaleY": 1.0,
"scaleZ": 0.5657107
},
"Nickname": "Rita Young",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698230708059524/2F6A680EF130769312A480970BB67A7AF0AE694A/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698230708064139/800CD01A0EE5917CA4D6AA0AEEBB960ECDFD3768/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": true,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "ca7ab1",
"Name": "Custom_Tile",
"Transform": {
"posX": -7.17200136,
"posY": 3.02656341,
"posZ": -4.28163767,
"rotX": -2.017862E-05,
"rotY": 180.000015,
"rotZ": -1.09526945E-05,
"scaleX": 0.5657107,
"scaleY": 1.0,
"scaleZ": 0.5657107
},
"Nickname": "Diana Stanley",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698230708059083/FE0F13EC3BC4129B83902B4ADDD765A5E197B365/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698230708063555/2F9E266C40AE0397082EFDD464CEFB434AAA239F/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": true,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "dc1db5",
"Name": "Custom_Tile",
"Transform": {
"posX": -0.123398937,
"posY": 0.960001349,
"posZ": -3.721062,
"rotX": -2.01119165E-05,
"rotY": 180.0,
"rotZ": -1.17004083E-05,
"scaleX": 0.5657107,
"scaleY": 1.0,
"scaleZ": 0.5657107
},
"Nickname": "Diana Stanley",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698230708059120/46F8A254A2FF410E3089A56C4A26649D1A4333CA/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698230708063597/B87F1B817B0D73543775B5CB291408FA791716E8/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": true,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "d37624",
"Name": "Custom_Tile",
"Transform": {
"posX": -8.403086,
"posY": 3.03143454,
"posZ": -4.313308,
"rotX": 359.209,
"rotY": 180.0107,
"rotZ": 358.4501,
"scaleX": 0.5657107,
"scaleY": 1.0,
"scaleZ": 0.5657107
},
"Nickname": "Preston Fairmount",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698230708058707/B20EB03B233EF19F3DCE2DF867F9F8FCEF02D9E2/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698230708062694/41602A79A70F570C0B2BDD3F48EB3E0C7277547D/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": true,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "27b98a",
"Name": "Custom_Tile",
"Transform": {
"posX": -1.1744051,
"posY": 0.9600011,
"posZ": -3.82854247,
"rotX": -0.000163961755,
"rotY": 180.0,
"rotZ": -2.39470028E-05,
"scaleX": 0.5657107,
"scaleY": 1.0,
"scaleZ": 0.5657107
},
"Nickname": "Preston Fairmount",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698230708058754/667A445AD0EAF7962759D5BD349F7B6C53662D28/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698230708062739/B79E2EFBDC5344261BD995937C005CE0DDE6AFC7/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": true,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "5f7f8b",
"Name": "Custom_Tile",
"Transform": {
"posX": -9.555416,
"posY": 3.02655721,
"posZ": -4.3187294,
"rotX": -6.03635453E-05,
"rotY": 180.000046,
"rotZ": -7.075351E-05,
"scaleX": 0.5657107,
"scaleY": 1.0,
"scaleZ": 0.5657107
},
"Nickname": "Joe Diamond",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698230708058198/E270E67DFC8D0CCF6B3F27ADF8252017F35860C5/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698230708061628/BD683C1BBF4D6284DBF6456B9BF21CDE56875D38/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": true,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "e4d96a",
"Name": "Custom_Tile",
"Transform": {
"posX": -2.83795786,
"posY": 0.9600017,
"posZ": -4.145151,
"rotX": -7.161909E-05,
"rotY": 180.000015,
"rotZ": -9.196562E-05,
"scaleX": 0.5657107,
"scaleY": 1.0,
"scaleZ": 0.5657107
},
"Nickname": "Joe Diamond",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698230708058234/BFDAF1FB116F6CB0DBAC6E5E2EA4C6D169270B07/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698230708061703/26265EF57B419FD1EE547B539BA791A34010DA6D/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": true,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "a038ff",
"Name": "Custom_Tile",
"Transform": {
"posX": -9.927176,
"posY": 3.036228,
"posZ": -4.345206,
"rotX": 359.379059,
"rotY": 180.010818,
"rotZ": 358.015259,
"scaleX": 0.5657107,
"scaleY": 1.0,
"scaleZ": 0.5657107
},
"Nickname": "Carolyn Fern",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698230708057800/291702BF8534F8B2243E83E9A26970495545BE76/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698230708060895/93E0CEC02A71E77B025DEBE04062D565ABD65D11/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": true,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "bba1b0",
"Name": "Custom_Tile",
"Transform": {
"posX": -4.584668,
"posY": 0.960001945,
"posZ": -3.87626958,
"rotX": -1.32751647E-05,
"rotY": 180.000046,
"rotZ": -3.45373155E-05,
"scaleX": 0.5657107,
"scaleY": 1.0,
"scaleZ": 0.5657107
},
"Nickname": "Carolyn Fern",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698230708057853/34252766A27380A65E779226890EA55F9C08818E/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698230708060953/2D7FA90625496CF0D2AD658E89B1853964C842EC/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": true,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "bf6b32",
"Name": "Bag",
"Transform": {
"posX": 7.59838724,
"posY": 2.85897422,
"posZ": 6.620731,
"rotX": 359.646759,
"rotY": -0.00101750263,
"rotZ": 0.366782427,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Prologue",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.0,
"g": 0.0,
"b": 0.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,
"Bag": {
"Order": 0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "7aeedd",
"Name": "Custom_Tile",
"Transform": {
"posX": 5.87577868,
"posY": 2.48326778,
"posZ": 6.450569,
"rotX": 3.53676769E-05,
"rotY": 179.998047,
"rotZ": -9.806492E-05,
"scaleX": 0.5657107,
"scaleY": 1.0,
"scaleZ": 0.5657107
},
"Nickname": "Penny White",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698230708044314/922727E14CC8730ADE0AB75353A4B64C60638667/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698230708041558/B18C704D029D487F5144ED43C59EFA59663CA809/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": true,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "69a021",
"Name": "Custom_Tile",
"Transform": {
"posX": 0.586978257,
"posY": 0.9599977,
"posZ": 9.179146,
"rotX": 0.0001862956,
"rotY": 179.998123,
"rotZ": 0.000128975968,
"scaleX": 0.5657107,
"scaleY": 1.0,
"scaleZ": 0.5657107
},
"Nickname": "Penny White",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698230708044371/943EA7598178161B4718C9DD5D64C65F489CE35F/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698230708041617/715DCD1F1ACB93954D25583FD9544D29271A015E/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": true,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "8b4fcc",
"Name": "Custom_Tile",
"Transform": {
"posX": 4.80392551,
"posY": 2.57051468,
"posZ": 6.466729,
"rotX": -0.000130098619,
"rotY": 179.9977,
"rotZ": 2.42991318E-05,
"scaleX": 0.5657107,
"scaleY": 1.0,
"scaleZ": 0.5657107
},
"Nickname": "Valentino Rivas",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698230708044431/AEFDF24400F85B660E1510B6A9546BEF8AE33A82/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698230708040670/D6E2F0956336D577BC309FEF99BA4F6A8BEA10B8/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": true,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "57e394",
"Name": "Custom_Tile",
"Transform": {
"posX": -0.422660261,
"posY": 0.960000038,
"posZ": 9.16702652,
"rotX": -0.000156121721,
"rotY": 179.99794,
"rotZ": -4.16127332E-05,
"scaleX": 0.5657107,
"scaleY": 1.0,
"scaleZ": 0.5657107
},
"Nickname": "Valentino Rivas",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698230708044475/DAAE1705D3922D41DA166661D2BBC990470CFF61/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698230708040724/4EC16CEEFEC119C5BEB75F6E7444FE4515CA36D4/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": true,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "eb6c8f",
"Name": "Custom_Tile",
"Transform": {
"posX": 3.738228,
"posY": 2.8012774,
"posZ": 6.36712,
"rotX": 14.0684776,
"rotY": 177.348389,
"rotZ": 7.173565,
"scaleX": 0.5657107,
"scaleY": 1.0,
"scaleZ": 0.5657107
},
"Nickname": "Jerome Davids",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698230708044217/CE2E92945A690E13C7FE95586387811FA95048ED/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698230708043081/D91383186F9B8AA422B0811DD8F5522EDB5A14D7/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": true,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "0d9632",
"Name": "Custom_Tile",
"Transform": {
"posX": -3.16228342,
"posY": 0.959998369,
"posZ": 9.223023,
"rotX": -8.221584E-05,
"rotY": 179.999969,
"rotZ": -8.264612E-05,
"scaleX": 0.5657107,
"scaleY": 1.0,
"scaleZ": 0.5657107
},
"Nickname": "Jerome Davids",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698230708044267/AB7EE8AA3481039EB6F147FA7626D0076C3188E3/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698230708043122/B0840FC4C8EC8E3971B33A0E14A8E43D8C4EEE6A/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": true,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "f9cba2",
"Name": "Custom_Tile",
"Transform": {
"posX": 3.32163143,
"posY": 3.02855849,
"posZ": 7.752668,
"rotX": 358.669159,
"rotY": 179.988037,
"rotZ": 359.336,
"scaleX": 0.5657107,
"scaleY": 1.0,
"scaleZ": 0.5657107
},
"Nickname": "Gavriella Mizrah",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698230708044131/DC186D07DAB34575B1A3544784FBE993C11E229B/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698230708042402/D2901AC03697A42E54228B5D8D7F96B34DBD5720/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": true,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "77f37b",
"Name": "Custom_Tile",
"Transform": {
"posX": -0.490250677,
"posY": 0.960000038,
"posZ": 9.250848,
"rotX": -0.000178494083,
"rotY": 179.998016,
"rotZ": -4.01837751E-05,
"scaleX": 0.5657107,
"scaleY": 1.0,
"scaleZ": 0.5657107
},
"Nickname": "Gavriella Mizrah",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698230708044175/0876392599AB0CAF855CA828A4F72E8B01F6B056/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698230708042460/684FE39DC4954AAA65F13CE0E7776ED1480DD717/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": true,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
}
]
}
]
},
{
"GUID": "d32231",
"Name": "Bag",
"Transform": {
"posX": 15.5851,
"posY": 3.28763342,
"posZ": 1.9350841,
"rotX": -1.8884768E-05,
"rotY": 5.3500924E-05,
"rotZ": 6.038281E-05,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "The Forgotten Age",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.412891835,
"g": 0.0,
"b": 0.1519565
},
"LayoutGroupSortIndex": 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,
"Bag": {
"Order": 0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "cdd5b5",
"Name": "Bag",
"Transform": {
"posX": 17.62209,
"posY": 1.79164362,
"posZ": -9.514808,
"rotX": -6.134997E-05,
"rotY": -4.67174E-05,
"rotZ": -2.88515148E-05,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "City of Archives",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.411764681,
"g": 0.0,
"b": 0.152941138
},
"LayoutGroupSortIndex": 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,
"Bag": {
"Order": 0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "db5660",
"Name": "Custom_Tile",
"Transform": {
"posX": -0.2017562,
"posY": 3.021236,
"posZ": -5.5629797,
"rotX": -2.506373E-05,
"rotY": 180.000092,
"rotZ": 1.43295729E-05,
"scaleX": 0.5657107,
"scaleY": 1.0,
"scaleZ": 0.5657107
},
"Nickname": "Body of a Yithian",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698230708494885/788378B90865B37A2AAF16F0E5E78F04E4B02828/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698230708508538/25188B78E433A1487103B4D7FEBF8660AEBDB017/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": true,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "ab31aa",
"Name": "Custom_Tile",
"Transform": {
"posX": 4.855447,
"posY": 0.9600004,
"posZ": -3.09236574,
"rotX": 1.00537472E-05,
"rotY": 180.000076,
"rotZ": -2.682792E-05,
"scaleX": 0.5657107,
"scaleY": 1.0,
"scaleZ": 0.5657107
},
"Nickname": "Body of a Yithian",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698230708494922/D8FB1A9F81A9280B7FE5DBD7B4C2AB7F47ACFDCE/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698230708508579/64A0C0B09767C447CC1441E1B54BA67FB66DA3BA/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": true,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "ae05ab",
"Name": "Custom_Tile",
"Transform": {
"posX": -1.94033563,
"posY": 3.02123713,
"posZ": -5.623254,
"rotX": -2.64477349E-05,
"rotY": 180.000122,
"rotZ": 1.61515254E-05,
"scaleX": 0.5657107,
"scaleY": 1.0,
"scaleZ": 0.5657107
},
"Nickname": "Body of a Yithian",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698230708495147/5E40C14ABB1F144C335EDF3C38B474546EF9945F/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698230708508538/25188B78E433A1487103B4D7FEBF8660AEBDB017/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": true,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "ab31aa",
"Name": "Custom_Tile",
"Transform": {
"posX": 3.1168685,
"posY": 0.9600005,
"posZ": -3.15264,
"rotX": -2.5679552E-05,
"rotY": 180.0001,
"rotZ": 1.33664835E-05,
"scaleX": 0.5657107,
"scaleY": 1.0,
"scaleZ": 0.5657107
},
"Nickname": "Body of a Yithian",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698230708495191/C7765026DA0DC1C0CA01830224F04468A6B5CBBD/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698230708508579/64A0C0B09767C447CC1441E1B54BA67FB66DA3BA/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": true,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "7edb33",
"Name": "Custom_Tile",
"Transform": {
"posX": -5.25653124,
"posY": 3.02662063,
"posZ": -5.736763,
"rotX": 358.463043,
"rotY": 179.986053,
"rotZ": 1.0422188,
"scaleX": 0.5657107,
"scaleY": 1.0,
"scaleZ": 0.5657107
},
"Nickname": "Body of a Yithian",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698230708494812/35FCC25E42DEEFBDEE5532239458267C6A2249FE/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698230708508538/25188B78E433A1487103B4D7FEBF8660AEBDB017/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": true,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "ab31aa",
"Name": "Custom_Tile",
"Transform": {
"posX": -0.1984168,
"posY": 0.96000123,
"posZ": -3.264808,
"rotX": -2.00939721E-05,
"rotY": 180.0,
"rotZ": -9.9067E-06,
"scaleX": 0.5657107,
"scaleY": 1.0,
"scaleZ": 0.5657107
},
"Nickname": "Body of a Yithian",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698230708494846/558E4AE3FCAB615FF4DD53792BC437859380AB97/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698230708508579/64A0C0B09767C447CC1441E1B54BA67FB66DA3BA/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": true,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "864f65",
"Name": "Custom_Tile",
"Transform": {
"posX": -3.75160885,
"posY": 3.02123618,
"posZ": -5.870718,
"rotX": -1.83445882E-05,
"rotY": 180.000046,
"rotZ": -5.13951545E-06,
"scaleX": 0.5657107,
"scaleY": 1.0,
"scaleZ": 0.5657107
},
"Nickname": "Body of a Yithian",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698230708494976/72A53130063D24E953167BE7B0CA1AAC70C79DB6/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698230708508538/25188B78E433A1487103B4D7FEBF8660AEBDB017/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": true,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "ab31aa",
"Name": "Custom_Tile",
"Transform": {
"posX": 1.30559611,
"posY": 0.9600012,
"posZ": -3.40010428,
"rotX": -2.09806967E-05,
"rotY": 180.000046,
"rotZ": -8.162348E-06,
"scaleX": 0.5657107,
"scaleY": 1.0,
"scaleZ": 0.5657107
},
"Nickname": "Body of a Yithian",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698230708495014/AF340EF63C3FA81AB77B57C304505D3D1E45D42A/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698230708508579/64A0C0B09767C447CC1441E1B54BA67FB66DA3BA/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": true,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "59d9b9",
"Name": "Custom_Tile",
"Transform": {
"posX": -7.19022465,
"posY": 3.02071357,
"posZ": -6.041224,
"rotX": 0.000121095749,
"rotY": 179.996185,
"rotZ": 0.0003022165,
"scaleX": 0.5657107,
"scaleY": 1.0,
"scaleZ": 0.5657107
},
"Nickname": "Body of a Yithian",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698230708495053/9F1C7D1CF0A5F67422EB475891FFBC8B4AAE7332/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698230708508538/25188B78E433A1487103B4D7FEBF8660AEBDB017/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": true,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "ab31aa",
"Name": "Custom_Tile",
"Transform": {
"posX": -2.87626529,
"posY": 1.01478851,
"posZ": -3.51791,
"rotX": -0.00464852853,
"rotY": 179.888611,
"rotZ": 6.892589,
"scaleX": 0.5657107,
"scaleY": 1.0,
"scaleZ": 0.5657107
},
"Nickname": "Body of a Yithian",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698230708495101/BC22F1A3252365C98CD5E4CF8B90D5B7BF5D5D94/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698230708508579/64A0C0B09767C447CC1441E1B54BA67FB66DA3BA/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": true,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "41af3c",
"Name": "Custom_Tile",
"Transform": {
"posX": -8.760236,
"posY": 3.020717,
"posZ": -6.16893053,
"rotX": 9.595745E-05,
"rotY": 179.999817,
"rotZ": 0.000283613132,
"scaleX": 0.5657107,
"scaleY": 1.0,
"scaleZ": 0.5657107
},
"Nickname": "Body of a Yithian",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698230708494679/FCF06130784FD5EDD0694D5794017F9ACB052315/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698230708508538/25188B78E433A1487103B4D7FEBF8660AEBDB017/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": true,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "ab31aa",
"Name": "Custom_Tile",
"Transform": {
"posX": -3.70303059,
"posY": 0.960002065,
"posZ": -3.69831514,
"rotX": -2.12357427E-05,
"rotY": 180.000015,
"rotZ": 1.23184545E-05,
"scaleX": 0.5657107,
"scaleY": 1.0,
"scaleZ": 0.5657107
},
"Nickname": "Body of a Yithian",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698230708494734/076A18365A14C7E7F89184FDFFBB50B3B539C586/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698230708508579/64A0C0B09767C447CC1441E1B54BA67FB66DA3BA/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": true,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
}
]
},
{
"GUID": "c1f75b",
"Name": "Custom_Tile",
"Transform": {
"posX": -1.61931956,
"posY": 3.01627,
"posZ": -7.014375,
"rotX": 358.320984,
"rotY": 179.975739,
"rotZ": 1.65652049,
"scaleX": 0.5657107,
"scaleY": 1.0,
"scaleZ": 0.5657107
},
"Nickname": "Calvin Wright",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698230707750962/F45A0066CD7BE9E910401289D2F9BB1F313A5299/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698230707758465/E5CA9A3BF3B3179F1A10B02570EC798997022E8D/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": true,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "57c445",
"Name": "Custom_Tile",
"Transform": {
"posX": 4.716913,
"posY": 0.960000038,
"posZ": -2.35708261,
"rotX": -1.48394292E-05,
"rotY": 180.000015,
"rotZ": -2.52172267E-05,
"scaleX": 0.5657107,
"scaleY": 1.0,
"scaleZ": 0.5657107
},
"Nickname": "Calvin Wright",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698230707751017/03DB96699627ADEB657478D40C69B39A9ED58B61/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698230707758516/DE0C25D639BA250F1233C2E23C9556A7475ACCB8/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": true,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "f8d9b3",
"Name": "Custom_Tile",
"Transform": {
"posX": -1.340311,
"posY": 3.0233357,
"posZ": -7.005806,
"rotX": 359.424957,
"rotY": 179.9403,
"rotZ": 0.7522174,
"scaleX": 0.5657107,
"scaleY": 1.0,
"scaleZ": 0.5657107
},
"Nickname": "Father Mateo",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698230707750559/FFC924E25985685F14BACCD3B2ADF1CB37D9B1C4/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698230707758059/FF47A21028678562DF0ED3B4DF7D7814FE0281E0/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": true,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "00daa5",
"Name": "Custom_Tile",
"Transform": {
"posX": 1.89721358,
"posY": 0.960000753,
"posZ": -3.04599237,
"rotX": 2.85328788E-05,
"rotY": 180.000015,
"rotZ": -4.14255665E-05,
"scaleX": 0.5657107,
"scaleY": 1.0,
"scaleZ": 0.5657107
},
"Nickname": "Father Mateo",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698230707750616/8FE56DC4942B76B85B58969A9C4C31D15BE83DFB/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698230707758100/8FC7921B1688B0C0059DBA6E920FB97740065E72/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": true,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "46ca51",
"Name": "Custom_Tile",
"Transform": {
"posX": -2.61756253,
"posY": 3.02188635,
"posZ": -7.047781,
"rotX": 359.787659,
"rotY": 180.028687,
"rotZ": 359.69986,
"scaleX": 0.5657107,
"scaleY": 1.0,
"scaleZ": 0.5657107
},
"Nickname": "Finn Edwards",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698230707750170/5332C0513469EABC4C2F1B07EDAAE32F39770E70/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698230707757545/03D2D6CD390A00A82423C49D687A8CC47DFA43D5/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": true,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "fc0b63",
"Name": "Custom_Tile",
"Transform": {
"posX": 0.196925431,
"posY": 0.9600012,
"posZ": -2.99892831,
"rotX": -1.80291991E-05,
"rotY": 180.0,
"rotZ": -2.61345076E-06,
"scaleX": 0.5657107,
"scaleY": 1.0,
"scaleZ": 0.5657107
},
"Nickname": "Finn Edwards",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698230707750209/A710646322E7116EC3EBBB1254E9B4A68D6B7CE2/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698230707757588/3537B8A94D9A6F042DA905329477EFD81391474A/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": true,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "56e051",
"Name": "Custom_Tile",
"Transform": {
"posX": 26.7085686,
"posY": 1.97113526,
"posZ": 23.6386147,
"rotX": 7.41406529E-06,
"rotY": 180.000031,
"rotZ": -2.31601443E-05,
"scaleX": 0.5657107,
"scaleY": 1.0,
"scaleZ": 0.5657107
},
"Nickname": "Ursula Downs",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698230707749650/EDF46057C37CA94C52D4A3AF49BE78028530E121/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698230707756935/8D43B642B7250E7AFE9AD3B4AE6D49EE01EA3665/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": true,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "ba45a3",
"Name": "Custom_Tile",
"Transform": {
"posX": 0.201306313,
"posY": 0.960001,
"posZ": -2.90807033,
"rotX": -7.7487E-05,
"rotY": 180.0,
"rotZ": -5.331672E-05,
"scaleX": 0.5657107,
"scaleY": 1.0,
"scaleZ": 0.5657107
},
"Nickname": "Ursula Downs",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698230707749696/773DAB8DB22BE7297D18D94B2940525FBBE17307/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698230707756990/F7769C9D015E6143276B37701234D4AD282B5404/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": true,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "0d621f",
"Name": "Custom_Tile",
"Transform": {
"posX": -8.374089,
"posY": 3.03399682,
"posZ": -0.189263374,
"rotX": 358.7159,
"rotY": 179.985214,
"rotZ": 1.32161307,
"scaleX": 0.5657107,
"scaleY": 1.0,
"scaleZ": 0.5657107
},
"Nickname": "Leo Anderson",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698230707749544/BD7A64A90A1FFA471FA4856CB29CCC273B18C7AE/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698230707756335/CC5AFDEA8E26679935805BC32838833E8B12F215/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": true,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "839a34",
"Name": "Custom_Tile",
"Transform": {
"posX": -2.64729381,
"posY": 0.960001469,
"posZ": -2.82980585,
"rotX": -2.17961933E-05,
"rotY": 180.0,
"rotZ": 1.16313149E-05,
"scaleX": 0.5657107,
"scaleY": 1.0,
"scaleZ": 0.5657107
},
"Nickname": "Leo Anderson",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698230707749604/41DB7C12949B64EA6051C07CF09126D37A16D951/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698230707756395/E57E07E9A854840BE33D61949BC2B4E3BAC1BFBA/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": true,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
}
]
},
{
"GUID": "b491bc",
"Name": "Bag",
"Transform": {
"posX": 13.8925562,
"posY": 2.28296566,
"posZ": 1.395967,
"rotX": -7.443503E-05,
"rotY": 5.26204822E-05,
"rotZ": -2.306526E-05,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "The Path to Carcosa",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.942508638,
"g": 0.8934557,
"b": 0.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,
"Bag": {
"Order": 0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "cbf983",
"Name": "Custom_Tile",
"Transform": {
"posX": -2.98034358,
"posY": 3.02657151,
"posZ": -5.823371,
"rotX": -5.949335E-05,
"rotY": 180.000046,
"rotZ": -2.74371869E-05,
"scaleX": 0.5657107,
"scaleY": 1.0,
"scaleZ": 0.5657107
},
"Nickname": "Lola Hayes (Neutral)",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698230707579964/900F66C54FA2AB64A74E93569BB414CA3C4BC281/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698230707599222/202D33AD1FFA1D282B483A6EDC7CC03D85595E38/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": true,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "5f42f1",
"Name": "Custom_Tile",
"Transform": {
"posX": 3.67580843,
"posY": 0.9600007,
"posZ": -3.740093,
"rotX": -1.53140772E-05,
"rotY": 180.0,
"rotZ": -9.69686662E-05,
"scaleX": 0.5657107,
"scaleY": 1.0,
"scaleZ": 0.5657107
},
"Nickname": "Lola Hayes (Guardian)",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698230707580357/8291134B86F73EE0134CA1C7BB672B9B3F04ADC6/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698230707599222/202D33AD1FFA1D282B483A6EDC7CC03D85595E38/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": true,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"3": {
"GUID": "47736a",
"Name": "Custom_Tile",
"Transform": {
"posX": 3.67581034,
"posY": 0.960000753,
"posZ": -3.740094,
"rotX": -6.143066E-05,
"rotY": 180.000015,
"rotZ": -3.19443279E-05,
"scaleX": 0.5657107,
"scaleY": 1.0,
"scaleZ": 0.5657107
},
"Nickname": "Lola Hayes (Seeker)",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698230707580485/4B830419B7F3AEB58666165001877E1A415B47C9/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698230707599222/202D33AD1FFA1D282B483A6EDC7CC03D85595E38/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": true,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"4": {
"GUID": "b7003f",
"Name": "Custom_Tile",
"Transform": {
"posX": 3.67581224,
"posY": 0.9600008,
"posZ": -3.74009514,
"rotX": -1.81608866E-05,
"rotY": 180.000031,
"rotZ": -9.431026E-05,
"scaleX": 0.5657107,
"scaleY": 1.0,
"scaleZ": 0.5657107
},
"Nickname": "Lola Hayes (Rogue)",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698230707580435/C82EAFF3B0E5C77E27118419AD91257EFF8EF922/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698230707599222/202D33AD1FFA1D282B483A6EDC7CC03D85595E38/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": true,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"5": {
"GUID": "09fa62",
"Name": "Custom_Tile",
"Transform": {
"posX": 3.67581367,
"posY": 0.9600006,
"posZ": -3.740096,
"rotX": -1.848765E-05,
"rotY": 180.000061,
"rotZ": -0.000100223086,
"scaleX": 0.5657107,
"scaleY": 1.0,
"scaleZ": 0.5657107
},
"Nickname": "Lola Hayes (Mystic)",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698230707580397/65C490DDEF18EDEAD3EDD3AFE943C78B506B0044/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698230707599222/202D33AD1FFA1D282B483A6EDC7CC03D85595E38/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": true,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"6": {
"GUID": "ecb749",
"Name": "Custom_Tile",
"Transform": {
"posX": 3.675815,
"posY": 0.9600008,
"posZ": -3.74009681,
"rotX": -5.98378974E-05,
"rotY": 180.000046,
"rotZ": -2.76226965E-05,
"scaleX": 0.5657107,
"scaleY": 1.0,
"scaleZ": 0.5657107
},
"Nickname": "Lola Hayes (Survivor)",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698230707580532/FCF2E57178A974ADCAF999CC50134D280CD16AE0/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698230707599222/202D33AD1FFA1D282B483A6EDC7CC03D85595E38/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": true,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "0c7474",
"Name": "Custom_Tile",
"Transform": {
"posX": -4.396082,
"posY": 3.02657175,
"posZ": -5.88589144,
"rotX": -6.52764938E-05,
"rotY": 180.0,
"rotZ": -3.986671E-05,
"scaleX": 0.5657107,
"scaleY": 1.0,
"scaleZ": 0.5657107
},
"Nickname": "William Yorick",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698230707579404/BF94E6FC0D4EC9C4916F23C8A1923A0CD558398A/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698230707593832/B8C4E2D75CEFB6C2CC167855163F2A6904E751FE/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": true,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "dacc50",
"Name": "Custom_Tile",
"Transform": {
"posX": 4.68896341,
"posY": 0.9600022,
"posZ": -7.654583,
"rotX": -2.45705087E-05,
"rotY": 180.0,
"rotZ": 1.108417E-05,
"scaleX": 0.5657107,
"scaleY": 1.0,
"scaleZ": 0.5657107
},
"Nickname": "William Yorick",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698230707579454/B5C11E1718148750AA9BD6EBEFA3B61A28940D6A/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698230707593898/33285F298EF3C32C8DE080A330129CFFC3B34BFC/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": true,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "f88bf1",
"Name": "Custom_Tile",
"Transform": {
"posX": -5.789423,
"posY": 3.02657247,
"posZ": -5.84781456,
"rotX": -1.60759882E-05,
"rotY": 180.0,
"rotZ": -1.28362453E-05,
"scaleX": 0.5657107,
"scaleY": 1.0,
"scaleZ": 0.5657107
},
"Nickname": "Akachi Onyele",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698230707578462/CCF763DA8A203AD1F5BE8ABB07AEAEA4C1B3ABD8/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698230707592723/70375E6B3B8398F8882538F8F5681685B0F77222/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": true,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "cd565d",
"Name": "Custom_Tile",
"Transform": {
"posX": 2.07932115,
"posY": 0.960002065,
"posZ": -6.579502,
"rotX": -1.75458481E-05,
"rotY": 180.000015,
"rotZ": -2.34869785E-05,
"scaleX": 0.5657107,
"scaleY": 1.0,
"scaleZ": 0.5657107
},
"Nickname": "Akachi Onyele",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698230707578505/A04B17BD536BC2DC33F5F070E5D58694A9527032/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698230707592774/0A9B3E42B422F90108EFABC21379DB6E26051F17/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": true,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "7b1d63",
"Name": "Custom_Tile",
"Transform": {
"posX": -7.05745745,
"posY": 3.03289938,
"posZ": -5.89594,
"rotX": 359.1187,
"rotY": 179.987259,
"rotZ": 1.65929,
"scaleX": 0.5657107,
"scaleY": 1.0,
"scaleZ": 0.5657107
},
"Nickname": "Sefina Rousseau",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698230707579295/FB9F7FD8DC7DC451E702FB89303BF5869C1D6219/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698230707593340/B0EED020029C8BE786CC86AC0950DE92EB8A0DE1/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": true,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "117a1f",
"Name": "Custom_Tile",
"Transform": {
"posX": 0.7471178,
"posY": 0.960002542,
"posZ": -7.25411367,
"rotX": -1.40798393E-05,
"rotY": 180.000015,
"rotZ": -3.45095068E-05,
"scaleX": 0.5657107,
"scaleY": 1.0,
"scaleZ": 0.5657107
},
"Nickname": "Sefina Rousseau",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698230707579352/48339D32236F9D45D41870ECB9FEDD39649491BF/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698230707593391/4DF8A84A64A495829361DB6CE123BD576D52F290/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": true,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "96d784",
"Name": "Custom_Tile",
"Transform": {
"posX": -8.326553,
"posY": 3.02657247,
"posZ": -5.968801,
"rotX": -1.75114328E-05,
"rotY": 180.000076,
"rotZ": -2.02814263E-05,
"scaleX": 0.5657107,
"scaleY": 1.0,
"scaleZ": 0.5657107
},
"Nickname": "Minh Thi Phan",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698230707575701/89C1B8B59FCD52612A43D9817898F3472C190416/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698230707583229/302295141EC60FA90CB2CA97A4DB56EDDB7B9CEA/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": true,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "179489",
"Name": "Custom_Tile",
"Transform": {
"posX": -0.5513342,
"posY": 0.9600035,
"posZ": -6.75175858,
"rotX": -1.96382116E-05,
"rotY": 180.0,
"rotZ": -3.02018616E-05,
"scaleX": 0.5657107,
"scaleY": 1.0,
"scaleZ": 0.5657107
},
"Nickname": "Minh Thi Phan",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698230707575755/A90C4EA9E4ACCAAEA025F88F4367700F1605BF10/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698230707583273/7EB0882BCC380F605F3A35394A5468FB16AA1822/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": true,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "0d621f",
"Name": "Custom_Tile",
"Transform": {
"posX": -9.579997,
"posY": 3.02657247,
"posZ": -6.02523327,
"rotX": -2.41149173E-05,
"rotY": 180.000015,
"rotZ": 1.36598883E-05,
"scaleX": 0.5657107,
"scaleY": 1.0,
"scaleZ": 0.5657107
},
"Nickname": "Mark Harrigan",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698230707575606/D310D938F2F80BE2AA945D11D5A00DE859E0B7D2/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698230707582720/274DE982E6EF7CC6CE291A5501F0529FAF89D8FD/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": true,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "ecf2a7",
"Name": "Custom_Tile",
"Transform": {
"posX": -2.923844,
"posY": 0.960001945,
"posZ": -3.94195914,
"rotX": -2.43047252E-05,
"rotY": 180.0,
"rotZ": 1.12649741E-05,
"scaleX": 0.5657107,
"scaleY": 1.0,
"scaleZ": 0.5657107
},
"Nickname": "Mark Harrigan",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698230707575664/8F44118C6EB1153BA870842D850CF23029766D92/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698230707582776/E9038E182C6A99AFB84404CAD53D74B5EB214B47/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": true,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
}
]
},
{
"GUID": "315223",
"Name": "Bag",
"Transform": {
"posX": 10.7305822,
"posY": 1.78610265,
"posZ": 2.23044157,
"rotX": -1.73424087E-05,
"rotY": 0.0005798524,
"rotZ": 2.60250017E-05,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "The Dunwich Legacy",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.0,
"g": 0.252613157,
"b": 0.173730284
},
"LayoutGroupSortIndex": 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,
"Bag": {
"Order": 0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "0d621f",
"Name": "Custom_Tile",
"Transform": {
"posX": 4.812634,
"posY": 1.971137,
"posZ": -4.712335,
"rotX": -0.0001742942,
"rotY": 179.999985,
"rotZ": 3.57272329E-05,
"scaleX": 0.5657107,
"scaleY": 1.0,
"scaleZ": 0.5657107
},
"Nickname": "\"Ashcan\" Pete",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698230707435937/D3FD68FB9D25C45F4351E231A1A1500F8B52B0E8/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698230707437839/DF4CBA1822068BBA831D3EB8AD13474FB8DBCA81/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": true,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "b1ef91",
"Name": "Custom_Tile",
"Transform": {
"posX": -3.62513852,
"posY": 0.9600011,
"posZ": -7.34163046,
"rotX": -0.000219753332,
"rotY": 180.0,
"rotZ": -3.21620137E-05,
"scaleX": 0.5657107,
"scaleY": 1.0,
"scaleZ": 0.5657107
},
"Nickname": "\"Ashcan\" Pete",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698230707435976/099E4506B9C55A529BEE7202D3A9E62162B95C14/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698230707437877/A17FC0F81149FD5750D725CEA1CB8E2E2990CAE2/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": true,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "42a760",
"Name": "Custom_Tile",
"Transform": {
"posX": -5.52826262,
"posY": 3.02657437,
"posZ": -7.830814,
"rotX": -8.55341859E-05,
"rotY": 180.006927,
"rotZ": -5.94374978E-05,
"scaleX": 0.5657107,
"scaleY": 1.0,
"scaleZ": 0.5657107
},
"Nickname": "Jim Culver",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698230707436133/DC2C6B48A6F101ADFEDC5CA8ADDC6F2D7FA1D384/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698230707440813/6326948A8D087B2101B9B283C1856EFB54F8E580/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": true,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "682611",
"Name": "Custom_Tile",
"Transform": {
"posX": 3.24929881,
"posY": 0.960000753,
"posZ": -3.83163,
"rotX": -5.96265854E-05,
"rotY": 180.000031,
"rotZ": -3.143159E-05,
"scaleX": 0.5657107,
"scaleY": 1.0,
"scaleZ": 0.5657107
},
"Nickname": "Jim Culver",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698230707436175/12917AAB8964F6124B3CDF7FFC0FAE69BBFA4C82/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698230707440855/BC820789B1008EC280F57C9D88D56F1754B0E57F/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": true,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "56ca21",
"Name": "Custom_Tile",
"Transform": {
"posX": -6.76706457,
"posY": 3.04293418,
"posZ": -7.82100439,
"rotX": 1.31458235,
"rotY": 180.001,
"rotZ": 0.0880494937,
"scaleX": 0.5657107,
"scaleY": 1.0,
"scaleZ": 0.5657107
},
"Nickname": "Jenny Barnes",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698230707436022/F40952A2FE9BB173600E2F9CE67BCEDBCFEEABAB/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698230707439869/3AA87F4C885E1928F938394AF7754160FCC0694D/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": true,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "93e70e",
"Name": "Custom_Tile",
"Transform": {
"posX": 2.41232944,
"posY": 0.9600029,
"posZ": -6.38804436,
"rotX": -2.06030254E-05,
"rotY": 180.0,
"rotZ": -1.89492821E-05,
"scaleX": 0.5657107,
"scaleY": 1.0,
"scaleZ": 0.5657107
},
"Nickname": "Jenny Barnes",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698230707436065/6A5BB76DE8B25F6D7C83B3CDA901357B8ED083A3/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698230707439928/BDA49447868E6DC922CA397493CBBABA7C904C23/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": true,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "5996b0",
"Name": "Custom_Tile",
"Transform": {
"posX": -7.85972261,
"posY": 3.02657342,
"posZ": -7.843859,
"rotX": -0.000131056964,
"rotY": 180.000031,
"rotZ": 1.07418737E-05,
"scaleX": 0.5657107,
"scaleY": 1.0,
"scaleZ": 0.5657107
},
"Nickname": "Rex Murphy",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698230707436215/18CA3FE1CE4A7591CE9C57673CCDF38F436B1BD9/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698230707438760/FAC759B3ADCD73C2FC051AB3615E617C786D5183/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": true,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "e09522",
"Name": "Custom_Tile",
"Transform": {
"posX": -1.849555,
"posY": 0.9600011,
"posZ": -3.68585539,
"rotX": -0.000162696844,
"rotY": 180.0,
"rotZ": -2.29980924E-05,
"scaleX": 0.5657107,
"scaleY": 1.0,
"scaleZ": 0.5657107
},
"Nickname": "Rex Murphy",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698230707436256/F4B3B32406F832907733CCFDC02F9292B9232DE2/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698230707438830/73F639A55F38437B85A9B8F5E28431C5BD87989C/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": true,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "60372a",
"Name": "Custom_Tile",
"Transform": {
"posX": -8.99094,
"posY": 3.026573,
"posZ": -7.855292,
"rotX": -2.76780211E-05,
"rotY": 179.999985,
"rotZ": 0.000110573274,
"scaleX": 0.5657107,
"scaleY": 1.0,
"scaleZ": 0.5657107
},
"Nickname": "Zoey Samaras",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698230707436303/6B67F7F71CACE92D53DB204A6643392000EC5BE2/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698230707434611/45CAB2711B641D5400837665F1D6CD3D16B27C8D/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": true,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "89d111",
"Name": "Custom_Tile",
"Transform": {
"posX": -3.203708,
"posY": 0.960002065,
"posZ": -3.620548,
"rotX": -2.52560785E-05,
"rotY": 180.000015,
"rotZ": 8.123292E-06,
"scaleX": 0.5657107,
"scaleY": 1.0,
"scaleZ": 0.5657107
},
"Nickname": "Zoey Samaras",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698230707436343/8E7FB54B7D1A9FD6D037A4AE044A257580EC7BB8/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698230707434655/CE8F32FF4549A14B8BADE3C0E48F68F0E61B72FC/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": true,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
}
]
},
{
"GUID": "177b26",
"Name": "Bag",
"Transform": {
"posX": -7.66644669,
"posY": 2.574967,
"posZ": -6.404429,
"rotX": 359.994,
"rotY": 0.000419879856,
"rotZ": 359.9714,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "The Core Set",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.0,
"g": 0.08468825,
"b": 0.653310061
},
"LayoutGroupSortIndex": 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,
"Bag": {
"Order": 0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "e6d299",
"Name": "Custom_Tile",
"Transform": {
"posX": 13.549612,
"posY": 1.99717867,
"posZ": -1.641384,
"rotX": -3.82749568E-05,
"rotY": 180.000046,
"rotZ": 3.84425E-05,
"scaleX": 0.5657107,
"scaleY": 1.0,
"scaleZ": 0.5657107
},
"Nickname": "Wendy Adams",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698230707202088/2216F76282F4A4FCB1778C7E5E574B88B001D379/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698230707202899/CFBE0B6D3BA95995F379A602C5A8A1A583D00793/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": true,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "29385d",
"Name": "Custom_Tile",
"Transform": {
"posX": 1.96192133,
"posY": 1.060002,
"posZ": -5.86200142,
"rotX": -0.000135441631,
"rotY": 180.0,
"rotZ": 180.0001,
"scaleX": 0.5657107,
"scaleY": 1.0,
"scaleZ": 0.5657107
},
"Nickname": "Wendy Adams",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698230707202149/4A0FD0F0B7A2D889E50B39F972595AC00A2C8A8F/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698230707202960/E1CD12C981BBAAFACA669288E245EE18EA70323E/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": true,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "01470e",
"Name": "Custom_Tile",
"Transform": {
"posX": 28.4816666,
"posY": 1.9711355,
"posZ": 8.308708,
"rotX": -2.01354233E-05,
"rotY": 180.000031,
"rotZ": 7.02083025E-06,
"scaleX": 0.5657107,
"scaleY": 1.0,
"scaleZ": 0.5657107
},
"Nickname": "Agnes Baker",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698230707198420/4DFF0CA80A65CF166F3455373A5226C153CE7A7A/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698230708116857/F6525F4381108EA389FCB0A907025891D3C0A560/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": true,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "920f62",
"Name": "Custom_Tile",
"Transform": {
"posX": 4.53456926,
"posY": 1.06000042,
"posZ": -2.58590031,
"rotX": -4.193393E-06,
"rotY": 180.0,
"rotZ": 180.0,
"scaleX": 0.5657107,
"scaleY": 1.0,
"scaleZ": 0.5657107
},
"Nickname": "Agnes Baker",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698230707198474/49327AD91E6F8064ACB52160E7AA58D26241A7A8/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698230708116942/214E8832F3F632A6092FB4D9788B42C73EA70A4E/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": true,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "e8f6cd",
"Name": "Custom_Tile",
"Transform": {
"posX": -7.139098,
"posY": 3.03184724,
"posZ": -5.461819,
"rotX": 358.894257,
"rotY": 180.012512,
"rotZ": 358.704132,
"scaleX": 0.5657107,
"scaleY": 1.0,
"scaleZ": 0.5657107
},
"Nickname": "\"Skids\" O'Toole",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698230707186936/7AE575933AB57B52351134E4952A625D6D2297A4/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698230707188729/E4081F8F55E530E269E390A35613A8D4D311BD02/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": true,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "150597",
"Name": "Custom_Tile",
"Transform": {
"posX": -0.395289838,
"posY": 1.06000257,
"posZ": -5.907174,
"rotX": -0.000165865713,
"rotY": 179.999985,
"rotZ": 180.000122,
"scaleX": 0.5657107,
"scaleY": 1.0,
"scaleZ": 0.5657107
},
"Nickname": "\"Skids\" O'Toole",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698230707186988/9C5CF0742C6EBC8238C92E195B1D5AAB1B4D7B22/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698230707188794/AF0E4CD6B11F907B85D09F26651E3B0EE961FCA3/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": true,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "5bc05f",
"Name": "Custom_Tile",
"Transform": {
"posX": 27.30868,
"posY": 2.07113552,
"posZ": 3.37975287,
"rotX": -2.07958965E-05,
"rotY": 180.000015,
"rotZ": 180.000015,
"scaleX": 0.5657107,
"scaleY": 1.0,
"scaleZ": 0.5657107
},
"Nickname": "Daisy Walker",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698230707154662/243E17ADB4A0E7510E07DD354F805D349E03E287/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698230707152276/A9BCA599A2FAA24875E29E091F8EED45D1E9F905/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": true,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "bc30ce",
"Name": "Custom_Tile",
"Transform": {
"posX": -1.526291,
"posY": 1.06000268,
"posZ": -5.908639,
"rotX": -1.18843254E-05,
"rotY": 180.0,
"rotZ": 180.000046,
"scaleX": 0.5657107,
"scaleY": 1.0,
"scaleZ": 0.5657107
},
"Nickname": "Daisy Walker",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698230707154723/4CEE958BF7444019B4C4AC3186006C76C4314545/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698230707152339/6A5CB834C2F0D64D0932908D87BD789D695DED00/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": true,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "e876b4",
"Name": "Custom_Tile",
"Transform": {
"posX": -20.55996,
"posY": 2.61767,
"posZ": -12.0693226,
"rotX": 359.914459,
"rotY": 270.007629,
"rotZ": -0.000165278761,
"scaleX": 0.5657107,
"scaleY": 1.0,
"scaleZ": 0.5657107
},
"Nickname": "Roland Banks",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698230707184473/85338D56A64A03F43794AB8EF5F3A5763AE140B1/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698230707105818/DFA0311033860DD6A8E14C0A40B4BD71F2B06697/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": true,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "1ca5e3",
"Name": "Custom_Tile",
"Transform": {
"posX": 4.39903641,
"posY": 0.960003,
"posZ": -7.088509,
"rotX": -1.44364685E-05,
"rotY": 180.000015,
"rotZ": -1.90262035E-05,
"scaleX": 0.5657107,
"scaleY": 1.0,
"scaleZ": 0.5657107
},
"Nickname": "Roland Banks",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698230707104892/3E08D3A6B8BE778339739AF6AE2D2E70A8D2877A/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698230706030974/1E4B02FA9FF5641454726CD0253815C27811BCAE/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": true,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
}
]
}
]
},
{
"GUID": "9d354b",
"Name": "Bag",
"Transform": {
"posX": -0.8244516,
"posY": 1.98916531,
"posZ": 0.354632437,
"rotX": 0.0180912968,
"rotY": 269.999817,
"rotZ": 0.00692850258,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Stands",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.0,
"g": 0.122646816,
"b": 0.7019608
},
"LayoutGroupSortIndex": 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,
"Bag": {
"Order": 0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "5b8959",
"Name": "Bag",
"Transform": {
"posX": 10.5994005,
"posY": 3.287645,
"posZ": -10.2588444,
"rotX": 3.01537311E-05,
"rotY": -0.0004875713,
"rotZ": -3.3735847E-05,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Alternatives",
"Description": "Alternate Versions of Various Investigators",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.7058823,
"g": 0.366520882,
"b": 0.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,
"Bag": {
"Order": 0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "dc366b",
"Name": "Figurine_Custom",
"Transform": {
"posX": 0.938605547,
"posY": 3.13963437,
"posZ": -6.599105,
"rotX": 0.488236427,
"rotY": 359.990875,
"rotZ": 359.1168,
"scaleX": 0.5750004,
"scaleY": 0.5750004,
"scaleZ": 0.5750004
},
"Nickname": "Ursula Downs",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 0.4572487,
"b": 0.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1786217534351027111/EC77E0839D2BF35011E726F6B056C604B1BC0957/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1786217534351027159/2DBB796009E69901F3C1D1B8473BB3672936A415/",
"ImageScalar": 1.0,
"WidthScale": 0.0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "376b04",
"Name": "Figurine_Custom",
"Transform": {
"posX": -0.53544873,
"posY": 1.056051,
"posZ": 1.079134,
"rotX": -1.3576212E-05,
"rotY": 180.007568,
"rotZ": 2.72131547E-05,
"scaleX": 0.5750004,
"scaleY": 0.5750004,
"scaleZ": 0.5750004
},
"Nickname": "Ursula Downs",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.559233367,
"g": 0.251961648,
"b": 0.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1786217534351206096/3EBB1E7FBDB4A0E73B5EDC9270115DC7BD37BCDE/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1786217534351206144/BF48660D48BA4D7E209EB1C77314516200863872/",
"ImageScalar": 1.0,
"WidthScale": 0.0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "8d2a57",
"Name": "Figurine_Custom",
"Transform": {
"posX": -0.339574337,
"posY": 3.12262344,
"posZ": -6.588738,
"rotX": 6.733579E-06,
"rotY": 359.982635,
"rotZ": -1.09933562E-05,
"scaleX": 0.5750004,
"scaleY": 0.5750004,
"scaleZ": 0.5750004
},
"Nickname": "Sister \"of Battle\" Mary",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.0,
"g": 0.0408881679,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1786217534350341026/33A1107FCBE63B79954F6233949CCD92075E8168/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1786217534350346256/CC27F5FD13BD3C0EE00298D3448F2132B07D2F59/",
"ImageScalar": 1.0,
"WidthScale": 0.0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "b49b1e",
"Name": "Figurine_Custom",
"Transform": {
"posX": -1.85660493,
"posY": 1.05605114,
"posZ": 1.132718,
"rotX": -4.78298753E-05,
"rotY": 359.982635,
"rotZ": -3.08779613E-06,
"scaleX": 0.5750004,
"scaleY": 0.5750004,
"scaleZ": 0.5750004
},
"Nickname": "Sister \"of Battle\" Mary",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.0,
"g": 0.0107875289,
"b": 0.3257833
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1786217534351222568/AA5B1E986CA44C9A16A52D159FB81F2C1C9A3FCF/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1786217534351206055/6177641413E66D4DC5088B9FAC86C421999A50D9/",
"ImageScalar": 1.0,
"WidthScale": 0.0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "66a610",
"Name": "Figurine_Custom",
"Transform": {
"posX": 3.185802,
"posY": 3.12262249,
"posZ": -6.705356,
"rotX": 1.33329661E-06,
"rotY": 0.0128096119,
"rotZ": 2.988357E-06,
"scaleX": 0.5750004,
"scaleY": 0.5750004,
"scaleZ": 0.5750004
},
"Nickname": "Duke",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.587107956,
"g": 0.0,
"b": 0.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1786217534351095787/538D7D90695B47562A96E19B4F47482429CF6EBF/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1786217534351095851/70F53C72CA6DE8070E52CA366CBB7B80264BF5B6/",
"ImageScalar": 1.0,
"WidthScale": 0.0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "b848a3",
"Name": "Figurine_Custom",
"Transform": {
"posX": 1.66877067,
"posY": 1.05605078,
"posZ": 1.01610041,
"rotX": 2.00246959E-05,
"rotY": 0.152080789,
"rotZ": 1.06987563E-05,
"scaleX": 0.5750004,
"scaleY": 0.5750004,
"scaleZ": 0.5750004
},
"Nickname": "Duke",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.329268,
"g": 0.0,
"b": 0.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1786217534351205842/2D2DF3A1166FB07C46B4265CC67AC3B49381FB6F/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1786217534351205900/3CD8AF69B384FB0B45BDDBC6C87748DA201D7C19/",
"ImageScalar": 1.0,
"WidthScale": 0.0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "bc2b80",
"Name": "Figurine_Custom",
"Transform": {
"posX": 2.129675,
"posY": 3.12262344,
"posZ": -6.624348,
"rotX": -7.574865E-07,
"rotY": 359.978729,
"rotZ": 2.13584116E-07,
"scaleX": 0.5750004,
"scaleY": 0.5750004,
"scaleZ": 0.5750004
},
"Nickname": "\"Ashcan\" Pete",
"Description": "Duke has been Sacrificed",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.587107956,
"g": 0.0,
"b": 0.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1786217534351080066/13060798A5F3A894615E557FD8BBA2D687F3B8A2/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1786217534351080114/4D8203AF383B01CB7B302EFF49FC629C5AA11146/",
"ImageScalar": 1.0,
"WidthScale": 0.0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "a079d2",
"Name": "Figurine_Custom",
"Transform": {
"posX": 0.6126439,
"posY": 1.0560509,
"posZ": 1.097108,
"rotX": -6.30444856E-06,
"rotY": 359.845673,
"rotZ": 1.82276153E-06,
"scaleX": 0.5750004,
"scaleY": 0.5750004,
"scaleZ": 0.5750004
},
"Nickname": "\"Ashcan\" Pete",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.329268,
"g": 0.0,
"b": 0.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1786217534351205658/F4C9CEA767EB7EBFFA249DDEBA9961534C4FD0F9/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1786217534351205737/06E479385625E40513318FA7B65A3BB43B6C51CE/",
"ImageScalar": 1.0,
"WidthScale": 0.0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
}
]
},
{
"GUID": "ffb761",
"Name": "Bag",
"Transform": {
"posX": 6.27394962,
"posY": 1.78610265,
"posZ": -11.9004726,
"rotX": 7.45515E-05,
"rotY": 0.0260265172,
"rotZ": -6.4969885E-05,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Barkham Investigators",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.7058823,
"g": 0.366520882,
"b": 0.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,
"Bag": {
"Order": 0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "0a4876",
"Name": "Figurine_Custom",
"Transform": {
"posX": -1.08998287,
"posY": 3.13367343,
"posZ": -5.438465,
"rotX": 0.7530268,
"rotY": 0.00266726385,
"rotZ": 358.757965,
"scaleX": 0.5750004,
"scaleY": 0.5750004,
"scaleZ": 0.5750004
},
"Nickname": "Duke",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.587107956,
"g": 0.0,
"b": 0.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343122453/D6DAFCA7AA289916A6EAAF69E0B08D4B55D57E17/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343122497/B3DB3D61DCE74E7076DDA6AB6B3FF7DBC6CA5A87/",
"ImageScalar": 1.0,
"WidthScale": 0.0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "b848a3",
"Name": "Figurine_Custom",
"Transform": {
"posX": 5.16754961,
"posY": 1.02681947,
"posZ": 10.9790955,
"rotX": -7.267226E-06,
"rotY": 30.0019035,
"rotZ": -2.07458615E-05,
"scaleX": 0.5750004,
"scaleY": 0.5750004,
"scaleZ": 0.5750004
},
"Nickname": "Duke",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.329267859,
"g": 0.0,
"b": 0.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343110177/D5B45888598DE6C803A741BDB2285BEEC1089001/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343110221/4D271515C4BDE28EE6ACAB84479097C6B872F3A1/",
"ImageScalar": 1.0,
"WidthScale": 0.0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "370dc2",
"Name": "Figurine_Custom",
"Transform": {
"posX": -1.24065113,
"posY": 3.13966823,
"posZ": -5.54244947,
"rotX": 0.428348362,
"rotY": 0.0027234517,
"rotZ": 359.090485,
"scaleX": 0.5750004,
"scaleY": 0.5750004,
"scaleZ": 0.5750004
},
"Nickname": "Jacqueline Canine",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.337582916,
"g": 0.0,
"b": 0.653310061
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343122972/496A614B7D0455E6E1FE7FEB4DFF8C6A6A748C98/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343123015/87E6EBB0756C3E964B6F238DA3E6BBD99881EFCD/",
"ImageScalar": 1.0,
"WidthScale": 0.0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "c646b5",
"Name": "Figurine_Custom",
"Transform": {
"posX": 0.624458,
"posY": 1.02681983,
"posZ": 6.08223963,
"rotX": -7.169856E-05,
"rotY": -0.00505916635,
"rotZ": -9.209767E-05,
"scaleX": 0.5750004,
"scaleY": 0.5750004,
"scaleZ": 0.5750004
},
"Nickname": "Jacqueline Canine",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.170584351,
"g": 0.0,
"b": 0.3292678
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343110669/A0661C0A60E2112B2AACD1C24396BDD40B89C300/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343110712/9758DCD708860BB091FB1C11B77D4F8864DB45B0/",
"ImageScalar": 1.0,
"WidthScale": 0.0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "b7c253",
"Name": "Figurine_Custom",
"Transform": {
"posX": -1.40240145,
"posY": 3.143247,
"posZ": -5.519388,
"rotX": 359.5593,
"rotY": 181.048233,
"rotZ": 358.597443,
"scaleX": 0.5750004,
"scaleY": 0.5750004,
"scaleZ": 0.5750004
},
"Nickname": "\"Skids\" O'Droole",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.174363375,
"g": 0.4303121,
"b": 0.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343124527/8BD07B46684E9D56DBA93454BD516F41313D46C9/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343124568/678199B54EDC3EF4494A91B1C2178A180213A7BE/",
"ImageScalar": 1.0,
"WidthScale": 0.0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "c7119b",
"Name": "Figurine_Custom",
"Transform": {
"posX": -0.129614055,
"posY": 1.02681983,
"posZ": 6.08450127,
"rotX": -6.65585E-05,
"rotY": -0.004955965,
"rotZ": -9.775421E-05,
"scaleX": 0.5750004,
"scaleY": 0.5750004,
"scaleZ": 0.5750004
},
"Nickname": "\"Skids\" O'Droole",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.08509361,
"g": 0.210800737,
"b": 0.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343112175/10140B73067B90C02617F05014D138D39E76E9B4/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343112225/1548F58B35A11B751C99FF7D2CA936642BAE301F/",
"ImageScalar": 1.0,
"WidthScale": 0.0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "b4eab6",
"Name": "Figurine_Custom",
"Transform": {
"posX": -1.47718263,
"posY": 3.110454,
"posZ": -5.02886248,
"rotX": 1.88392222,
"rotY": 359.87677,
"rotZ": 0.4750967,
"scaleX": 0.5750004,
"scaleY": 0.5750004,
"scaleZ": 0.5750004
},
"Nickname": "Kate Winthpup",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 0.4572487,
"b": 0.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343125883/E2B1FFEDE8317BD06F54857DFB745FC7A5672740/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343125925/26224E51EFC07F9A4359A2BEC39F1AE13A5D5029/",
"ImageScalar": 1.0,
"WidthScale": 0.0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "376b04",
"Name": "Figurine_Custom",
"Transform": {
"posX": -0.8642114,
"posY": 1.02681983,
"posZ": 6.082245,
"rotX": -5.82093635E-05,
"rotY": -0.00490534632,
"rotZ": -7.865141E-05,
"scaleX": 0.5750004,
"scaleY": 0.5750004,
"scaleZ": 0.5750004
},
"Nickname": "Kate Winthpup",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.559233367,
"g": 0.251961738,
"b": 0.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343113660/4DAA98F00C8E46A7A3F4DFA1B9422201EB7C64CC/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343113695/336E479B2D4CFBB13BCF6727A02ABD9213EAB8F5/",
"ImageScalar": 1.0,
"WidthScale": 0.0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "c971c3",
"Name": "Figurine_Custom",
"Transform": {
"posX": -1.56051874,
"posY": 3.14144444,
"posZ": -5.615332,
"rotX": 359.1795,
"rotY": 89.9846954,
"rotZ": 0.7254075,
"scaleX": 0.5750004,
"scaleY": 0.5750004,
"scaleZ": 0.5750004
},
"Nickname": "Bark Harrigan",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.0,
"g": 0.0408883244,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343121985/B74860D47613A5F110FD86E2D760C660C560347C/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343122033/EA0943FD858FD7EF1188ED6363B997D9CFB7F6E4/",
"ImageScalar": 1.0,
"WidthScale": 0.0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "b49b1e",
"Name": "Figurine_Custom",
"Transform": {
"posX": -1.6265018,
"posY": 1.02682006,
"posZ": 6.088344,
"rotX": -6.72340248E-05,
"rotY": -0.005086284,
"rotZ": -8.665504E-05,
"scaleX": 0.5750004,
"scaleY": 0.5750004,
"scaleZ": 0.5750004
},
"Nickname": "Bark Harrigan",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.0,
"g": 0.0107875289,
"b": 0.3257835
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343109705/5CBC385554F9CD0389E2A07743EECD5D35409198/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343109744/C48F56B459C4D7DA169C75B638C88096C7B0D142/",
"ImageScalar": 1.0,
"WidthScale": 0.0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
}
]
},
{
"GUID": "36c3f5",
"Name": "Bag",
"Transform": {
"posX": 4.144851,
"posY": 3.2390492,
"posZ": -16.33094,
"rotX": -2.76301816E-05,
"rotY": 359.986725,
"rotZ": -3.680077E-05,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "The Circle Undone Prologue Investigators",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.7058823,
"g": 0.366520882,
"b": 0.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,
"Bag": {
"Order": 0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "45d884",
"Name": "Figurine_Custom",
"Transform": {
"posX": -0.942997336,
"posY": 3.1364882,
"posZ": -9.118254,
"rotX": 0.570367038,
"rotY": 254.970032,
"rotZ": 358.5647,
"scaleX": 0.5750004,
"scaleY": 0.5750004,
"scaleZ": 0.5750004
},
"Nickname": "Penny White",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.594076633,
"g": 0.594076633,
"b": 0.594076633
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343124689/3BD7F394964F51DE2342BB163110083CA9389E0A/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343124733/E87E89DE233547010A2303714F65A67CE1599169/",
"ImageScalar": 1.0,
"WidthScale": 0.0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "b05799",
"Name": "Figurine_Custom",
"Transform": {
"posX": 5.21406651,
"posY": 1.02681863,
"posZ": 7.840794,
"rotX": 0.000108280154,
"rotY": 29.945343,
"rotZ": 6.30313662E-05,
"scaleX": 0.5750004,
"scaleY": 0.5750004,
"scaleZ": 0.5750004
},
"Nickname": "Penny White",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.162020624,
"g": 0.162020624,
"b": 0.162020624
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343112380/E232D3010841C5E757778F8F6D032863DAB2FC9F/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343112424/E2171B84B8D68AC259E83DB8AF0D8315DED7D34A/",
"ImageScalar": 1.0,
"WidthScale": 0.0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "2b5c11",
"Name": "Figurine_Custom",
"Transform": {
"posX": -0.456136525,
"posY": 3.140187,
"posZ": -9.585673,
"rotX": 359.498169,
"rotY": -0.00538411131,
"rotZ": 359.581421,
"scaleX": 0.5750004,
"scaleY": 0.5750004,
"scaleZ": 0.5750004
},
"Nickname": "Valentino Rivas",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.594076633,
"g": 0.594076633,
"b": 0.594076633
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343125669/07A11B3AA9B849680D17A3ACA41C374F29EEB2DF/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343125728/A01F2688903AF1F172EA8F6E35C197BF080CA3FD/",
"ImageScalar": 1.0,
"WidthScale": 0.0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "5aa59a",
"Name": "Figurine_Custom",
"Transform": {
"posX": 4.266295,
"posY": 1.02681923,
"posZ": 9.360523,
"rotX": -6.0371538E-05,
"rotY": -0.004860382,
"rotZ": -7.93984E-05,
"scaleX": 0.5750004,
"scaleY": 0.5750004,
"scaleZ": 0.5750004
},
"Nickname": "Valentino Rivas",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.162020653,
"g": 0.162020653,
"b": 0.162020653
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343113479/EA4B290E0CCFB030C9D1B50061A95B1D2A975E88/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343113519/BADB45B19BB567E328DDEAB0B58B978946B6936B/",
"ImageScalar": 1.0,
"WidthScale": 0.0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "4eebfc",
"Name": "Figurine_Custom",
"Transform": {
"posX": -0.766464949,
"posY": 3.11643171,
"posZ": -9.726824,
"rotX": 357.1322,
"rotY": 359.9624,
"rotZ": 0.465817958,
"scaleX": 0.5750004,
"scaleY": 0.5750004,
"scaleZ": 0.5750004
},
"Nickname": "Jerome Davids",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.594076633,
"g": 0.594076633,
"b": 0.594076633
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343123311/601F1BAC6250D2BE1D2D8C635246778D098FF1C6/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343123355/7A11BAC58DD612E7158C8842C8AFE0BF3D8C90FB/",
"ImageScalar": 1.0,
"WidthScale": 0.0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "a44908",
"Name": "Figurine_Custom",
"Transform": {
"posX": 3.505696,
"posY": 1.02681923,
"posZ": 9.364632,
"rotX": 1.94205968E-05,
"rotY": -0.00489224726,
"rotZ": -8.50184756E-10,
"scaleX": 0.5750004,
"scaleY": 0.5750004,
"scaleZ": 0.5750004
},
"Nickname": "Jerome Davids",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.162020624,
"g": 0.162020624,
"b": 0.162020624
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343110959/47D5246EE230991A1352CE0743B10168A9ECB586/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343111005/348A8E2F0446D09998C1D72E999C9ED25D992433/",
"ImageScalar": 1.0,
"WidthScale": 0.0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "58e76c",
"Name": "Figurine_Custom",
"Transform": {
"posX": -1.24519253,
"posY": 2.94049621,
"posZ": -8.3835,
"rotX": 0.6264397,
"rotY": 359.265533,
"rotZ": 0.7613178,
"scaleX": 0.5750004,
"scaleY": 0.5750004,
"scaleZ": 0.5750004
},
"Nickname": "Gavriella Mizrah",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.594076633,
"g": 0.594076633,
"b": 0.594076633
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343122636/CCA770E23817DB041A752079D020341C3392A9B0/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343122673/7A6A0F30F2D7CF2F8F33548DE0EF94D4443F2952/",
"ImageScalar": 1.0,
"WidthScale": 0.0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "05484e",
"Name": "Figurine_Custom",
"Transform": {
"posX": 2.74845767,
"posY": 1.02681923,
"posZ": 9.401479,
"rotX": 5.19274545E-06,
"rotY": -0.004959853,
"rotZ": 1.14189979E-05,
"scaleX": 0.5750004,
"scaleY": 0.5750004,
"scaleZ": 0.5750004
},
"Nickname": "Gabriella Mizrah",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.162020653,
"g": 0.162020653,
"b": 0.162020653
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343110365/607CFC0994A129AC8452F0A6FD2BE17609E73573/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343110415/1F049FB52103B0A63A68EAD64AA4942C290440B9/",
"ImageScalar": 1.0,
"WidthScale": 0.0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
}
]
},
{
"GUID": "228120",
"Name": "Bag",
"Transform": {
"posX": 4.849327,
"posY": 3.27276969,
"posZ": -16.4397774,
"rotX": 9.503778E-05,
"rotY": 359.97934,
"rotZ": -1.58653056E-05,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "The City of Archives (SPOILERS)",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.7058823,
"g": 0.366520882,
"b": 0.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,
"Bag": {
"Order": 0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "458fc8",
"Name": "Figurine_Custom",
"Transform": {
"posX": 16.1195717,
"posY": 2.46247482,
"posZ": -5.57215929,
"rotX": -9.30369151E-06,
"rotY": -0.000116272218,
"rotZ": -6.179186E-05,
"scaleX": 0.5750004,
"scaleY": 0.5750004,
"scaleZ": 0.5750004
},
"Nickname": "Body of a Yithian",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.594076633,
"g": 0.594076633,
"b": 0.594076633
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343125963/C651F00D5A3DEEA70C450B496E271C6708710BE8/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343126008/5F98DD009140C4BD39E4461593131568BC871913/",
"ImageScalar": 1.0,
"WidthScale": 0.0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "45eb73",
"Name": "Figurine_Custom",
"Transform": {
"posX": 5.66814137,
"posY": 1.02681983,
"posZ": 10.2142458,
"rotX": 7.342901E-05,
"rotY": 359.9585,
"rotZ": 0.000199222835,
"scaleX": 0.5750004,
"scaleY": 0.5750004,
"scaleZ": 0.5750004
},
"Nickname": "Body of a Yithian",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.162020653,
"g": 0.162020653,
"b": 0.162020653
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343113735/A56ABCAA1194E052A0A976A7CF57CCD1D95BA5A4/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343113771/369BEF14B41868A935F9AE48A36B6A31B3C84112/",
"ImageScalar": 1.0,
"WidthScale": 0.0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "d4d93e",
"Name": "Figurine_Custom",
"Transform": {
"posX": 14.36152,
"posY": 2.737364,
"posZ": -7.03884459,
"rotX": 7.076669E-05,
"rotY": -1.98348357E-06,
"rotZ": 1.63284058E-05,
"scaleX": 0.5750004,
"scaleY": 0.5750004,
"scaleZ": 0.5750004
},
"Nickname": "Body of a Yithian",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.587107956,
"g": 0.0,
"b": 0.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343125963/C651F00D5A3DEEA70C450B496E271C6708710BE8/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343126008/5F98DD009140C4BD39E4461593131568BC871913/",
"ImageScalar": 1.0,
"WidthScale": 0.0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "b848a3",
"Name": "Figurine_Custom",
"Transform": {
"posX": 4.922006,
"posY": 1.02681768,
"posZ": 10.2471294,
"rotX": 8.77302737E-05,
"rotY": 359.958527,
"rotZ": 7.899584E-05,
"scaleX": 0.5750004,
"scaleY": 0.5750004,
"scaleZ": 0.5750004
},
"Nickname": "Body of a Yithian",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.329267949,
"g": 0.0,
"b": 0.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343113735/A56ABCAA1194E052A0A976A7CF57CCD1D95BA5A4/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343113771/369BEF14B41868A935F9AE48A36B6A31B3C84112/",
"ImageScalar": 1.0,
"WidthScale": 0.0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "2574ee",
"Name": "Figurine_Custom",
"Transform": {
"posX": -2.734641,
"posY": 3.14210963,
"posZ": -6.966767,
"rotX": 359.7545,
"rotY": 135.040787,
"rotZ": 359.680817,
"scaleX": 0.5750004,
"scaleY": 0.5750004,
"scaleZ": 0.5750004
},
"Nickname": "Body of a Yithian",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.337583065,
"g": 0.0,
"b": 0.653310061
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343125963/C651F00D5A3DEEA70C450B496E271C6708710BE8/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343126008/5F98DD009140C4BD39E4461593131568BC871913/",
"ImageScalar": 1.0,
"WidthScale": 0.0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "c646b5",
"Name": "Figurine_Custom",
"Transform": {
"posX": 4.181207,
"posY": 1.02682018,
"posZ": 10.2294979,
"rotX": 3.72182342E-07,
"rotY": 359.958557,
"rotZ": 3.20151662E-06,
"scaleX": 0.5750004,
"scaleY": 0.5750004,
"scaleZ": 0.5750004
},
"Nickname": "Body of a Yithian",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.17058447,
"g": 0.0,
"b": 0.329267919
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343113735/A56ABCAA1194E052A0A976A7CF57CCD1D95BA5A4/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343113771/369BEF14B41868A935F9AE48A36B6A31B3C84112/",
"ImageScalar": 1.0,
"WidthScale": 0.0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "531452",
"Name": "Figurine_Custom",
"Transform": {
"posX": -2.64942956,
"posY": 3.14205766,
"posZ": -6.91149426,
"rotX": 0.352234542,
"rotY": 0.01458105,
"rotZ": 359.807861,
"scaleX": 0.5750004,
"scaleY": 0.5750004,
"scaleZ": 0.5750004
},
"Nickname": "Body of a Yithian",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.1743635,
"g": 0.430312216,
"b": 0.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343125963/C651F00D5A3DEEA70C450B496E271C6708710BE8/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343126008/5F98DD009140C4BD39E4461593131568BC871913/",
"ImageScalar": 1.0,
"WidthScale": 0.0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "c7119b",
"Name": "Figurine_Custom",
"Transform": {
"posX": 3.427137,
"posY": 1.02682054,
"posZ": 10.2317638,
"rotX": -7.23652E-05,
"rotY": 359.958527,
"rotZ": -9.052689E-05,
"scaleX": 0.5750004,
"scaleY": 0.5750004,
"scaleZ": 0.5750004
},
"Nickname": "Body of a Yithian",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.0850936845,
"g": 0.210800856,
"b": 0.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343113735/A56ABCAA1194E052A0A976A7CF57CCD1D95BA5A4/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343113771/369BEF14B41868A935F9AE48A36B6A31B3C84112/",
"ImageScalar": 1.0,
"WidthScale": 0.0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "21dca1",
"Name": "Figurine_Custom",
"Transform": {
"posX": -2.91667175,
"posY": 3.136666,
"posZ": -7.02980328,
"rotX": 359.589264,
"rotY": 359.989563,
"rotZ": 1.27062118,
"scaleX": 0.5750004,
"scaleY": 0.5750004,
"scaleZ": 0.5750004
},
"Nickname": "Body of a Yithian",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 0.4572487,
"b": 0.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343125963/C651F00D5A3DEEA70C450B496E271C6708710BE8/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343126008/5F98DD009140C4BD39E4461593131568BC871913/",
"ImageScalar": 1.0,
"WidthScale": 0.0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "376b04",
"Name": "Figurine_Custom",
"Transform": {
"posX": 2.6925416,
"posY": 1.02682018,
"posZ": 10.2295065,
"rotX": -5.95574675E-05,
"rotY": 359.9584,
"rotZ": -9.432038E-05,
"scaleX": 0.5750004,
"scaleY": 0.5750004,
"scaleZ": 0.5750004
},
"Nickname": "Body of a Yithian",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.559233367,
"g": 0.2519618,
"b": 0.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343113735/A56ABCAA1194E052A0A976A7CF57CCD1D95BA5A4/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343113771/369BEF14B41868A935F9AE48A36B6A31B3C84112/",
"ImageScalar": 1.0,
"WidthScale": 0.0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "01d035",
"Name": "Figurine_Custom",
"Transform": {
"posX": -3.192091,
"posY": 3.10476732,
"posZ": -6.38868952,
"rotX": 0.9910869,
"rotY": 0.00187422929,
"rotZ": 0.8759219,
"scaleX": 0.5750004,
"scaleY": 0.5750004,
"scaleZ": 0.5750004
},
"Nickname": "Body of a Yithian",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.0,
"g": 0.0408883244,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343125963/C651F00D5A3DEEA70C450B496E271C6708710BE8/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343126008/5F98DD009140C4BD39E4461593131568BC871913/",
"ImageScalar": 1.0,
"WidthScale": 0.0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "b49b1e",
"Name": "Figurine_Custom",
"Transform": {
"posX": 1.91376317,
"posY": 1.02681971,
"posZ": 10.2119522,
"rotX": 0.00028008892,
"rotY": 359.958527,
"rotZ": 0.0002694775,
"scaleX": 0.5750004,
"scaleY": 0.5750004,
"scaleZ": 0.5750004
},
"Nickname": "Body of a Yithian",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.0,
"g": 0.0107875289,
"b": 0.325783521
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343113735/A56ABCAA1194E052A0A976A7CF57CCD1D95BA5A4/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343113771/369BEF14B41868A935F9AE48A36B6A31B3C84112/",
"ImageScalar": 1.0,
"WidthScale": 0.0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
}
]
},
{
"GUID": "596da1",
"Name": "Figurine_Custom",
"Transform": {
"posX": 9.137778,
"posY": 2.22444725,
"posZ": -10.1596947,
"rotX": 2.06514451E-05,
"rotY": 1.432863E-05,
"rotZ": -6.32356841E-06,
"scaleX": 0.5750004,
"scaleY": 0.5750004,
"scaleZ": 0.5750004
},
"Nickname": "Gloria Goldberg",
"Description": "Novella",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.337582916,
"g": 0.0,
"b": 0.653310061
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343122725/89A2F73B69E58215A310CCB38DD6C4CFC335D072/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343369844/741F46B92FA73AFDB7BBC76C10CC3E5ABD31D4CB/",
"ImageScalar": 1.0,
"WidthScale": 0.0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "2919ee",
"Name": "Figurine_Custom",
"Transform": {
"posX": 1.93999064,
"posY": 1.02681971,
"posZ": 4.430925,
"rotX": -6.585491E-05,
"rotY": -0.005149761,
"rotZ": -7.726023E-05,
"scaleX": 0.5750004,
"scaleY": 0.5750004,
"scaleZ": 0.5750004
},
"Nickname": "Gloria Goldberg",
"Description": "Novella",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.170584351,
"g": 0.0,
"b": 0.3292678
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343110452/64B813104A1823E356C86EE768B4C207D41F159F/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343370892/71C122A8117FFF40D9874C42BCD6D0F8B8B7892D/",
"ImageScalar": 1.0,
"WidthScale": 0.0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "84b0e7",
"Name": "Figurine_Custom",
"Transform": {
"posX": 7.529928,
"posY": 2.06718588,
"posZ": -10.2469063,
"rotX": 2.47080516E-05,
"rotY": 1.87246224E-05,
"rotZ": -1.500397E-06,
"scaleX": 0.5750004,
"scaleY": 0.5750004,
"scaleZ": 0.5750004
},
"Nickname": "Norman Withers",
"Description": "Novella",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 0.4572487,
"b": 0.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343124438/5F3C01090BFF6D46E19F15A41359A7F8AFC809AF/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343124480/072CCD17AAD9F44762EFB20DA674642F5D66958C/",
"ImageScalar": 1.0,
"WidthScale": 0.0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "5332e1",
"Name": "Figurine_Custom",
"Transform": {
"posX": 0.451320738,
"posY": 1.02681971,
"posZ": 4.430932,
"rotX": -6.245089E-05,
"rotY": -0.00515922671,
"rotZ": -7.256795E-05,
"scaleX": 0.5750004,
"scaleY": 0.5750004,
"scaleZ": 0.5750004
},
"Nickname": "Norman Withers",
"Description": "Novella",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.559233367,
"g": 0.251961678,
"b": 0.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343112089/1C1F3DC7EC4D5A03C8A5991D1940DD873521B063/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343112131/81797D3C3350D506C21AFE126DEEECC4EDDC574F/",
"ImageScalar": 1.0,
"WidthScale": 0.0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "7ce9d9",
"Name": "Figurine_Custom",
"Transform": {
"posX": 9.342708,
"posY": 2.06718636,
"posZ": -6.36327076,
"rotX": 2.07072117E-06,
"rotY": 359.992249,
"rotZ": 9.952016E-07,
"scaleX": 0.5750004,
"scaleY": 0.5750004,
"scaleZ": 0.5750004
},
"Nickname": "Bob Jenkins",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.587107956,
"g": 0.0,
"b": 0.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1696157607127498888/52A7D63128EF8CCABABCCAC25D7A161FDC87AC00/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1696157607127498935/83C60889FF4E253896F9877AA5D695B65DE9A41D/",
"ImageScalar": 1.0,
"WidthScale": 0.0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "b848a3",
"Name": "Figurine_Custom",
"Transform": {
"posX": -0.0395640954,
"posY": 1.056051,
"posZ": 2.101576,
"rotX": 1.02862041E-05,
"rotY": 21.3411922,
"rotZ": 4.41833763E-05,
"scaleX": 0.5750004,
"scaleY": 0.5750004,
"scaleZ": 0.5750004
},
"Nickname": "Bob Jenkins",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.329268217,
"g": 0.0,
"b": 0.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1696157607127498690/7767353FD52F7E52E135E1998911A5AA910FE5B1/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1696157607127498806/179CA133C12F46DEC40C21BDED8E51EBC441912D/",
"ImageScalar": 1.0,
"WidthScale": 0.0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "f58123",
"Name": "Figurine_Custom",
"Transform": {
"posX": 6.100437,
"posY": 2.06718636,
"posZ": -6.81938362,
"rotX": 1.09887674E-06,
"rotY": -0.00363823841,
"rotZ": 3.030615E-08,
"scaleX": 0.5750004,
"scaleY": 0.5750004,
"scaleZ": 0.5750004
},
"Nickname": "Lily Chen",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.337583333,
"g": 0.0,
"b": 0.653310061
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1696157607127487680/802D3885209166F8C3A68A2BC4E5F1B5DF9DE53B/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1696157607127487724/EA02F95CE17F58859603E9C3342085FFBE7E0420/",
"ImageScalar": 1.0,
"WidthScale": 0.0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "c646b5",
"Name": "Figurine_Custom",
"Transform": {
"posX": -0.897596955,
"posY": 1.056051,
"posZ": 2.064113,
"rotX": -2.04453227E-05,
"rotY": 23.9014645,
"rotZ": -1.59633655E-05,
"scaleX": 0.5750004,
"scaleY": 0.5750004,
"scaleZ": 0.5750004
},
"Nickname": "Lily Chen",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.170584738,
"g": 0.0,
"b": 0.3292682
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1696157607127487506/08986629775B03EF635165A59EAEC2FD21BFBD74/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1696157607127487606/CCEB12CA653DEB53372368FC4E28FD57A87418BD/",
"ImageScalar": 1.0,
"WidthScale": 0.0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "638f3a",
"Name": "Figurine_Custom",
"Transform": {
"posX": 3.85703135,
"posY": 2.067186,
"posZ": -7.87207651,
"rotX": 6.70895759E-07,
"rotY": -0.00363901141,
"rotZ": 1.75467861E-07,
"scaleX": 0.5750004,
"scaleY": 0.5750004,
"scaleZ": 0.5750004
},
"Nickname": "Monterey Jack",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.174363822,
"g": 0.430312544,
"b": 0.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1696157607127476746/94BE1CD298C8605CEE92CA2E8B0405C206EFCDB4/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1696157607127476794/837B28F92D4D63B23EF69D5A327A76928DC814A7/",
"ImageScalar": 1.0,
"WidthScale": 0.0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "c7119b",
"Name": "Figurine_Custom",
"Transform": {
"posX": -1.73105574,
"posY": 1.05605125,
"posZ": 2.08124447,
"rotX": -2.62166122E-06,
"rotY": 23.363678,
"rotZ": -6.426918E-06,
"scaleX": 0.5750004,
"scaleY": 0.5750004,
"scaleZ": 0.5750004
},
"Nickname": "Monterey Jack",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.08509401,
"g": 0.210801244,
"b": 0.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1696157607127476598/64CD439C4B27AF54285ECE0BABDB93C2634E5255/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1696157607127476683/6C480D8E9E8D03B8CA8154285EDE42312D1FE37B/",
"ImageScalar": 1.0,
"WidthScale": 0.0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "8d186c",
"Name": "Figurine_Custom",
"Transform": {
"posX": 12.73181,
"posY": 2.67782927,
"posZ": -5.01206064,
"rotX": 1.9635408E-07,
"rotY": -0.00363885541,
"rotZ": 9.650389E-08,
"scaleX": 0.5750004,
"scaleY": 0.5750004,
"scaleZ": 0.5750004
},
"Nickname": "Norman Withers",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 0.4572487,
"b": 0.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1696157607127435972/2096012C595D1FA26F1D91FC84266EA87FD44C5E/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1696157607127436051/77E8D22FE4EDE5A94D1CBA705DA40BEB45A1E771/",
"ImageScalar": 1.0,
"WidthScale": 0.0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "376b04",
"Name": "Figurine_Custom",
"Transform": {
"posX": -2.60013986,
"posY": 1.05605114,
"posZ": 2.02835059,
"rotX": -1.22742522E-05,
"rotY": 25.2844887,
"rotZ": 1.37622574E-05,
"scaleX": 0.5750004,
"scaleY": 0.5750004,
"scaleZ": 0.5750004
},
"Nickname": "Norman Withers",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.559233367,
"g": 0.251961946,
"b": 0.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1696157607127449099/5836DD6175D977C38D7A24FEAA4A45892F99479B/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1696157607127449192/81C48A558BC836CC34ADD31B438468E448CE81C1/",
"ImageScalar": 1.0,
"WidthScale": 0.0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "812e07",
"Name": "Figurine_Custom",
"Transform": {
"posX": 10.1677866,
"posY": 2.06718588,
"posZ": -5.195872,
"rotX": 4.38710344E-07,
"rotY": 359.99234,
"rotZ": -2.55935163E-07,
"scaleX": 0.5750004,
"scaleY": 0.5750004,
"scaleZ": 0.5750004
},
"Nickname": "Daniela Reyes",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.0,
"g": 0.0408885852,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1696157607127372136/F93D4DA4D1F8449BCFA91E53342BA39B3FCE54E7/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1696157607127372542/9DFD7E7891356D43184E9D1D80532C00E6C2C8C4/",
"ImageScalar": 1.0,
"WidthScale": 0.0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "b49b1e",
"Name": "Figurine_Custom",
"Transform": {
"posX": -3.57336688,
"posY": 1.056051,
"posZ": 2.11468887,
"rotX": 3.48761364E-06,
"rotY": 14.9798584,
"rotZ": 4.53148641E-06,
"scaleX": 0.5750004,
"scaleY": 0.5750004,
"scaleZ": 0.5750004
},
"Nickname": "Daniella Reyes",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.0,
"g": 0.0107875289,
"b": 0.325783819
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1696157607127384593/FA4F02D9F246B22593B426584366C312B382A888/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1696157607127384635/76BAC5BCC1AFB3749426C325F6C3D485C7938E50/",
"ImageScalar": 1.0,
"WidthScale": 0.0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "abd4b9",
"Name": "Figurine_Custom",
"Transform": {
"posX": 5.78883362,
"posY": 2.067186,
"posZ": -10.2405138,
"rotX": 3.01335949E-05,
"rotY": -4.88460937E-05,
"rotZ": -8.604222E-06,
"scaleX": 0.5750004,
"scaleY": 0.5750004,
"scaleZ": 0.5750004
},
"Nickname": "Stella Clark",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.587107956,
"g": 0.0,
"b": 0.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343125217/B965FA4A228DFD62F5D202E4A6DDBFBAFA1C830D/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343125258/BF68ACA30835D3152A03255FFE394BD1D844A5ED/",
"ImageScalar": 1.0,
"WidthScale": 0.0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "b848a3",
"Name": "Figurine_Custom",
"Transform": {
"posX": 1.27848661,
"posY": 1.02682006,
"posZ": 7.187135,
"rotX": -2.30956311E-06,
"rotY": 0.00765810627,
"rotZ": -1.91616482E-06,
"scaleX": 0.5750004,
"scaleY": 0.5750004,
"scaleZ": 0.5750004
},
"Nickname": "Stella Clarke",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.329267859,
"g": 0.0,
"b": 0.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343112969/8EF9EA86807895AC74C4B2D39C3AE171ED85E94B/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343113025/1272B28219E43CD1BCC990A1883B808A5CA59B1D/",
"ImageScalar": 1.0,
"WidthScale": 0.0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "755af5",
"Name": "Figurine_Custom",
"Transform": {
"posX": 4.76776743,
"posY": 2.06718731,
"posZ": -9.958641,
"rotX": -0.000114965544,
"rotY": -3.703652E-05,
"rotZ": -9.989836E-05,
"scaleX": 0.5750004,
"scaleY": 0.5750004,
"scaleZ": 0.5750004
},
"Nickname": "Jacqueline Fine",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.337582916,
"g": 0.0,
"b": 0.653310061
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343123061/6DA4E0C0B84DED83550ED40969143A242525FEFF/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343340459/F0D2B8064964B8252241DB136C794FC1B6FF4B53/",
"ImageScalar": 1.0,
"WidthScale": 0.0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "c646b5",
"Name": "Figurine_Custom",
"Transform": {
"posX": 0.5499153,
"posY": 1.0268203,
"posZ": 7.169164,
"rotX": -8.734602E-05,
"rotY": 0.00341988052,
"rotZ": -0.000114085895,
"scaleX": 0.5750004,
"scaleY": 0.5750004,
"scaleZ": 0.5750004
},
"Nickname": "Jacqueline Fine",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.170584291,
"g": 0.0,
"b": 0.3292677
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343110754/30A40B1E167B52D90D19922ADF83CBCF1C700638/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343339400/E453D38E8FE432F95339B60B4547A59EF8C6BA24/",
"ImageScalar": 1.0,
"WidthScale": 0.0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "2ede96",
"Name": "Figurine_Custom",
"Transform": {
"posX": 10.1239777,
"posY": 2.11155152,
"posZ": -7.96588469,
"rotX": 2.52992049E-05,
"rotY": -3.46628221E-05,
"rotZ": -1.30787521E-05,
"scaleX": 0.5750004,
"scaleY": 0.5750004,
"scaleZ": 0.5750004
},
"Nickname": "Winifred Habbamock",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.174363375,
"g": 0.4303121,
"b": 0.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343125782/BCC613AFBA7B0DA1250A17504464AAD6B2BAB528/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343125837/45463C0CFEC0E75C4CB0817760252B81E46D4249/",
"ImageScalar": 1.0,
"WidthScale": 0.0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "c7119b",
"Name": "Figurine_Custom",
"Transform": {
"posX": -0.216387287,
"posY": 1.02682042,
"posZ": 7.17177439,
"rotX": -8.43822854E-05,
"rotY": 0.007669506,
"rotZ": -0.00011174324,
"scaleX": 0.5750004,
"scaleY": 0.5750004,
"scaleZ": 0.5750004
},
"Nickname": "Winifred Habbamock",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.08509361,
"g": 0.210800737,
"b": 0.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343113571/5531EC31A19AD8DCAD380DA9471B3224001E4E04/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343113609/433D67A5C68762077EF84A2BEFF3B251EC84C39E/",
"ImageScalar": 1.0,
"WidthScale": 0.0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "a0293e",
"Name": "Figurine_Custom",
"Transform": {
"posX": 9.053502,
"posY": 2.067186,
"posZ": -8.127317,
"rotX": 2.401632E-05,
"rotY": 8.885493E-06,
"rotZ": -9.901741E-06,
"scaleX": 0.5750004,
"scaleY": 0.5750004,
"scaleZ": 0.5750004
},
"Nickname": "Harvey Walters",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 0.4572487,
"b": 0.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343122863/EB70BA317BF67FCF51083EBC0D8C357FF19EAB1B/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343122928/D4FBD31E1D7FBEEB07939D3DCCB1667E4D1ACA14/",
"ImageScalar": 1.0,
"WidthScale": 0.0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "376b04",
"Name": "Figurine_Custom",
"Transform": {
"posX": -0.9509883,
"posY": 1.02682018,
"posZ": 7.169526,
"rotX": -8.89513249E-05,
"rotY": 0.00762059959,
"rotZ": -9.840328E-05,
"scaleX": 0.5750004,
"scaleY": 0.5750004,
"scaleZ": 0.5750004
},
"Nickname": "Harvey Walters",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.559233367,
"g": 0.251961648,
"b": 0.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343110588/754FAC695ACFD404B80954EA68E223E454E212D8/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343110630/EBF1D33617A617E04FBD4AE37506F77867222D6C/",
"ImageScalar": 1.0,
"WidthScale": 0.0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "619a54",
"Name": "Figurine_Custom",
"Transform": {
"posX": 7.43654442,
"posY": 2.067186,
"posZ": -7.5226016,
"rotX": 2.23687039E-05,
"rotY": 1.29808359E-05,
"rotZ": -1.40024849E-05,
"scaleX": 0.5750004,
"scaleY": 0.5750004,
"scaleZ": 0.5750004
},
"Nickname": "Nathaniel Cho",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.0,
"g": 0.0408882722,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343124346/CF535E2C85E5F4D1400A96DB7BEDC7DCFC7591C1/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343124386/09CAB97763D97EFC37A1A558CEC032EEB8142754/",
"ImageScalar": 1.0,
"WidthScale": 0.0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "b49b1e",
"Name": "Figurine_Custom",
"Transform": {
"posX": -1.713281,
"posY": 1.02682006,
"posZ": 7.175626,
"rotX": -1.1563644E-05,
"rotY": 0.00344528654,
"rotZ": 6.189511E-06,
"scaleX": 0.5750004,
"scaleY": 0.5750004,
"scaleZ": 0.5750004
},
"Nickname": "Nathaniel Cho",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.0,
"g": 0.0107875289,
"b": 0.3257834
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343111987/455AD3904C7CBD6CB4AC917973B766BFACC429DB/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343112047/FB45F4E6B30D69A196C585501C4E75B435677A01/",
"ImageScalar": 1.0,
"WidthScale": 0.0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "080f71",
"Name": "Figurine_Custom",
"Transform": {
"posX": 5.71804857,
"posY": 2.06718731,
"posZ": -7.328418,
"rotX": -7.29737949E-05,
"rotY": -4.34413741E-05,
"rotZ": -0.000107088272,
"scaleX": 0.5750004,
"scaleY": 0.5750004,
"scaleZ": 0.5750004
},
"Nickname": "Silas Marsh",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.587107956,
"g": 0.0,
"b": 0.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343125169/A6DCCBFE8E038499BBDBC3E646EA176F47D2BB4C/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343125121/418C6AC1E5031B49969BD78AE05247AF806FEF1A/",
"ImageScalar": 1.0,
"WidthScale": 0.0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "b848a3",
"Name": "Figurine_Custom",
"Transform": {
"posX": 1.26874578,
"posY": 1.02682,
"posZ": 7.98725033,
"rotX": -9.505729E-05,
"rotY": 359.9731,
"rotZ": -0.00012580266,
"scaleX": 0.5750004,
"scaleY": 0.5750004,
"scaleZ": 0.5750004
},
"Nickname": "Silas Marsh",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.329267859,
"g": 0.0,
"b": 0.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343112916/0BC1B2CB47C8B5814D1EF29AEF132D972F61B509/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343112871/8EDFE0718C49CAE4155F3832571CCA7202D6479A/",
"ImageScalar": 1.0,
"WidthScale": 0.0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "6dbc60",
"Name": "Figurine_Custom",
"Transform": {
"posX": 12.7426891,
"posY": 2.73484445,
"posZ": -4.873921,
"rotX": 2.19403573E-05,
"rotY": 1.63653E-05,
"rotZ": -7.74341E-06,
"scaleX": 0.5750004,
"scaleY": 0.5750004,
"scaleZ": 0.5750004
},
"Nickname": "Dexter Drake",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.337582916,
"g": 0.0,
"b": 0.653310061
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343122282/12781D255D67BE8DC5D7DC0319C69B25FE6FE0FB/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343122330/B1CA265DC32559781219981BF4F385D423CA0702/",
"ImageScalar": 1.0,
"WidthScale": 0.0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "c646b5",
"Name": "Figurine_Custom",
"Transform": {
"posX": 0.527940869,
"posY": 1.02682,
"posZ": 7.969628,
"rotX": -8.174957E-05,
"rotY": 359.973175,
"rotZ": -0.000110224384,
"scaleX": 0.5750004,
"scaleY": 0.5750004,
"scaleZ": 0.5750004
},
"Nickname": "Dexter Drake",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.170584351,
"g": 0.0,
"b": 0.3292678
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343109980/118F2314AFF798868F18CC252405A87BD978A967/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343110029/BA54F4CD9A3A11718873A2526C95E5846D8709DC/",
"ImageScalar": 1.0,
"WidthScale": 0.0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "01631f",
"Name": "Figurine_Custom",
"Transform": {
"posX": 10.9234629,
"posY": 2.06713986,
"posZ": -4.616029,
"rotX": 2.90883381E-05,
"rotY": -2.131117E-05,
"rotZ": -1.18920161E-05,
"scaleX": 0.5750004,
"scaleY": 0.5750004,
"scaleZ": 0.5750004
},
"Nickname": "Trish Scarborough",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.174363375,
"g": 0.4303121,
"b": 0.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343125485/4E1E451CA47B9A6C4FA602597948FD6EBC4BE776/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343125535/2F16BFC124F43F9940C2A3F171E26DDA6463A212/",
"ImageScalar": 1.0,
"WidthScale": 0.0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "c7119b",
"Name": "Figurine_Custom",
"Transform": {
"posX": -0.238272026,
"posY": 1.02681971,
"posZ": 7.97210073,
"rotX": -8.332766E-05,
"rotY": 359.9732,
"rotZ": -0.0001203627,
"scaleX": 0.5750004,
"scaleY": 0.5750004,
"scaleZ": 0.5750004
},
"Nickname": "Trish Scarborough",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.08509361,
"g": 0.210800737,
"b": 0.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343113269/8A30699B302BAF982C8FE26E09705CDFF5242C2C/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343113340/C747576C358B25CEA21F2C6BBC99E958B054C988/",
"ImageScalar": 1.0,
"WidthScale": 0.0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "ef4a8b",
"Name": "Figurine_Custom",
"Transform": {
"posX": 9.08441,
"posY": 2.06718659,
"posZ": -4.570915,
"rotX": -5.77833634E-05,
"rotY": 8.07404649E-06,
"rotZ": -9.283011E-05,
"scaleX": 0.5750004,
"scaleY": 0.5750004,
"scaleZ": 0.5750004
},
"Nickname": "Amanda Sharpe",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 0.4572487,
"b": 0.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343121778/B9E73495E82666A9087D80DF78DF610AB0CEA287/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343121817/321366F4FBE2B24C8D692FDBF493A6D1B630D8A7/",
"ImageScalar": 1.0,
"WidthScale": 0.0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "376b04",
"Name": "Figurine_Custom",
"Transform": {
"posX": -0.960734367,
"posY": 1.02682018,
"posZ": 7.96963739,
"rotX": -8.332174E-05,
"rotY": 359.973175,
"rotZ": -0.000118014796,
"scaleX": 0.5750004,
"scaleY": 0.5750004,
"scaleZ": 0.5750004
},
"Nickname": "Amanda Sharpe",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.559233367,
"g": 0.251961678,
"b": 0.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343109504/E045893755B64DC1954A3EA2AB34212F56D195DC/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343109555/08705215BB0218B22B2D2FBF3D870FE043CBF9DE/",
"ImageScalar": 1.0,
"WidthScale": 0.0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "707374",
"Name": "Figurine_Custom",
"Transform": {
"posX": 17.970768,
"posY": 2.06718636,
"posZ": -3.93379,
"rotX": 5.191044E-06,
"rotY": 4.23294659E-05,
"rotZ": 4.055426E-06,
"scaleX": 0.5750004,
"scaleY": 0.5750004,
"scaleZ": 0.5750004
},
"Nickname": "Sister Mary",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.0,
"g": 0.0408882573,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343124088/F02DA60FB218E7DBC8EAE29556A4CAD9EC47657D/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343124131/B28E44DBC3463F011BF01FCD6F2E88CD43057352/",
"ImageScalar": 1.0,
"WidthScale": 0.0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "b49b1e",
"Name": "Figurine_Custom",
"Transform": {
"posX": -1.72302723,
"posY": 1.02682018,
"posZ": 7.975754,
"rotX": -1.0495859E-05,
"rotY": 359.973053,
"rotZ": 2.777137E-06,
"scaleX": 0.5750004,
"scaleY": 0.5750004,
"scaleZ": 0.5750004
},
"Nickname": "Sister Mary",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.0,
"g": 0.0107875289,
"b": 0.325783432
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343111744/D91E9AF17853E7AC5E4C32C098F6E60E4E3B2693/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343111792/58A855A135BF1CB9CC76C2C8282D75F27EDAA53B/",
"ImageScalar": 1.0,
"WidthScale": 0.0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "ef94b5",
"Name": "Figurine_Custom",
"Transform": {
"posX": 9.220792,
"posY": 2.10779452,
"posZ": -9.515298,
"rotX": -8.077384E-05,
"rotY": -2.64212322E-05,
"rotZ": -0.000108983484,
"scaleX": 0.5750004,
"scaleY": 0.5750004,
"scaleZ": 0.5750004
},
"Nickname": "Patrice Hathaway",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.587107956,
"g": 0.0,
"b": 0.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343124612/064FA25C5A7EC3F7A7752FF362462E26C3045BAD/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343124652/C352844E8CE07642B8F0D34FD4CC46FD163099BF/",
"ImageScalar": 1.0,
"WidthScale": 0.0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "b848a3",
"Name": "Figurine_Custom",
"Transform": {
"posX": 1.28675163,
"posY": 1.02682006,
"posZ": 8.563183,
"rotX": -1.78168229E-05,
"rotY": 0.09771161,
"rotZ": -1.5089422E-06,
"scaleX": 0.5750004,
"scaleY": 0.5750004,
"scaleZ": 0.5750004
},
"Nickname": "Patrice Hathaway",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.329267859,
"g": 0.0,
"b": 0.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343112272/1BAC1C83A3683725B46BAF4BD60184BA52BFB6E8/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343112332/4D2A00300C1A749C808CD8391F3E681038EDAFDB/",
"ImageScalar": 1.0,
"WidthScale": 0.0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "a908ec",
"Name": "Figurine_Custom",
"Transform": {
"posX": 7.61393833,
"posY": 2.06718755,
"posZ": -9.750056,
"rotX": -8.65910042E-05,
"rotY": 1.17860236E-05,
"rotZ": -0.00013764578,
"scaleX": 0.5750004,
"scaleY": 0.5750004,
"scaleZ": 0.5750004
},
"Nickname": "Luke Robinson",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.3375829,
"g": 0.0,
"b": 0.653310061
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343123743/7FFD073A2FE1B6346E43939B2C30CC485D4773E9/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343123788/B66846378167F716F4EC90D96FF72354A46B7B4D/",
"ImageScalar": 1.0,
"WidthScale": 0.0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "c646b5",
"Name": "Figurine_Custom",
"Transform": {
"posX": 0.545947134,
"posY": 1.02682018,
"posZ": 8.54556751,
"rotX": -9.203844E-05,
"rotY": 0.09762085,
"rotZ": -0.000135061448,
"scaleX": 0.5750004,
"scaleY": 0.5750004,
"scaleZ": 0.5750004
},
"Nickname": "Luke Robinson",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.170584321,
"g": 0.0,
"b": 0.32926777
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343111373/B5CF244E06B8E75CB81575C3E460E11388C3BE15/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343111421/31C173F4DC2F80612AC7B8A56E9ABD5581EEFFFB/",
"ImageScalar": 1.0,
"WidthScale": 0.0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "8788d0",
"Name": "Figurine_Custom",
"Transform": {
"posX": 6.205551,
"posY": 2.06718588,
"posZ": -9.63814,
"rotX": 6.13327E-06,
"rotY": -3.04296973E-05,
"rotZ": -5.308797E-06,
"scaleX": 0.5750004,
"scaleY": 0.5750004,
"scaleZ": 0.5750004
},
"Nickname": "Tony Morgan",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.174363375,
"g": 0.4303121,
"b": 0.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343125399/E8846343EE7FB81463CBA96EE1FB4EA48783478D/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343125442/09C00F6166ED8C161E8B4EDC8D6C5712BE4E5A99/",
"ImageScalar": 1.0,
"WidthScale": 0.0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "c7119b",
"Name": "Figurine_Custom",
"Transform": {
"posX": -0.208120644,
"posY": 1.02682,
"posZ": 8.547819,
"rotX": -5.45394323E-06,
"rotY": 0.09764598,
"rotZ": -2.77906065E-06,
"scaleX": 0.5750004,
"scaleY": 0.5750004,
"scaleZ": 0.5750004
},
"Nickname": "Tony Morgan",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.08509361,
"g": 0.210800737,
"b": 0.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343113164/306E90DAA180AD468A2984E850C930EE18CF2662/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343113211/50B0632176C34F7C87676B08F33D1FD47B81F866/",
"ImageScalar": 1.0,
"WidthScale": 0.0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "0d602e",
"Name": "Figurine_Custom",
"Transform": {
"posX": 4.73010731,
"posY": 2.06718588,
"posZ": -9.555138,
"rotX": 1.643955E-05,
"rotY": -1.38905752E-05,
"rotZ": 6.180536E-07,
"scaleX": 0.5750004,
"scaleY": 0.5750004,
"scaleZ": 0.5750004
},
"Nickname": "Mandy Thompson",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 0.4572487,
"b": 0.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343123832/EF70CBEF33BC038D502B78BA9A77AB07D581B30D/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343123877/541D16A7F8B1CD918142D5ED9481A0AD37271E7B/",
"ImageScalar": 1.0,
"WidthScale": 0.0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "376b04",
"Name": "Figurine_Custom",
"Transform": {
"posX": -0.9427243,
"posY": 1.02682018,
"posZ": 8.545574,
"rotX": -0.000108375389,
"rotY": 0.0977096856,
"rotZ": -0.000105106228,
"scaleX": 0.5750004,
"scaleY": 0.5750004,
"scaleZ": 0.5750004
},
"Nickname": "Mandy Thompson",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.559233367,
"g": 0.251961678,
"b": 0.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343111464/EB5F444E471B86E0CFD56020F3DBC31FF73AECF6/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343111511/9DE040757FEB58FB6F7E89805EDBCABA28C08363/",
"ImageScalar": 1.0,
"WidthScale": 0.0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "bea47e",
"Name": "Figurine_Custom",
"Transform": {
"posX": 10.4999437,
"posY": 2.11361575,
"posZ": -7.322727,
"rotX": 3.32893978E-05,
"rotY": -2.30508685E-05,
"rotZ": -3.7739818E-07,
"scaleX": 0.5750004,
"scaleY": 0.5750004,
"scaleZ": 0.5750004
},
"Nickname": "Tommy Muldoon",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.0,
"g": 0.040888302,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343125301/A93BD669C731E917A35FA5738EB136BF6671D77D/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343125343/F146511CB6A21254B2C7350694A25207323BD032/",
"ImageScalar": 1.0,
"WidthScale": 0.0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "b49b1e",
"Name": "Figurine_Custom",
"Transform": {
"posX": -1.70501757,
"posY": 1.02681828,
"posZ": 8.551668,
"rotX": 0.000446396472,
"rotY": 0.09762672,
"rotZ": 8.202271E-05,
"scaleX": 0.5750004,
"scaleY": 0.5750004,
"scaleZ": 0.5750004
},
"Nickname": "Tommy Muldoon",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.0,
"g": 0.0107875289,
"b": 0.325783432
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343113075/3A5F451FE5EEA0438A7BF83AA80087D508A95E63/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343113125/C886BBE085401CBDEDC79316126DAD04C160290D/",
"ImageScalar": 1.0,
"WidthScale": 0.0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "6bd52c",
"Name": "Figurine_Custom",
"Transform": {
"posX": 8.612793,
"posY": 2.067186,
"posZ": -7.51818848,
"rotX": 2.20905713E-05,
"rotY": -3.36519633E-06,
"rotZ": -1.0465822E-05,
"scaleX": 0.5750004,
"scaleY": 0.5750004,
"scaleZ": 0.5750004
},
"Nickname": "Marie Lambeau",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.337583035,
"g": 0.0,
"b": 0.653310061
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343123913/0FED2F578A1A3B0D7068AFA723C5BD86614D51AE/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343123948/0EE225E2455C4D60FC903AC34D5DCBE3A96E0F6E/",
"ImageScalar": 1.0,
"WidthScale": 0.0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "00f638",
"Name": "Figurine_Custom",
"Transform": {
"posX": 1.99495029,
"posY": 1.02681935,
"posZ": 9.381206,
"rotX": -4.78800757E-06,
"rotY": -0.004909135,
"rotZ": 1.21728181E-05,
"scaleX": 0.5750004,
"scaleY": 0.5750004,
"scaleZ": 0.5750004
},
"Nickname": "Marie Lambeau",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.17058447,
"g": 0.0,
"b": 0.329267919
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343111548/9D1687057358C422472126D059B5CAA1828E2DEA/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343111601/E3DB7C44A8A034D4BA7AACF2599A54DECC4C4D34/",
"ImageScalar": 1.0,
"WidthScale": 0.0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "c46146",
"Name": "Figurine_Custom",
"Transform": {
"posX": 7.26254845,
"posY": 2.067187,
"posZ": -7.43290234,
"rotX": -6.9085E-05,
"rotY": -3.791833E-05,
"rotZ": -0.0001151892,
"scaleX": 0.5750004,
"scaleY": 0.5750004,
"scaleZ": 0.5750004
},
"Nickname": "Rita Young",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.587107956,
"g": 0.0,
"b": 0.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343124955/B83959B059ED90771F6550DF20D774B6AA7B088B/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343125001/48ACCE90A8C1A957EC54B0B411DFCCE5F96E1278/",
"ImageScalar": 1.0,
"WidthScale": 0.0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "b848a3",
"Name": "Figurine_Custom",
"Transform": {
"posX": 1.22370946,
"posY": 1.02681935,
"posZ": 9.402242,
"rotX": -7.423215E-05,
"rotY": -0.004866944,
"rotZ": -8.046501E-05,
"scaleX": 0.5750004,
"scaleY": 0.5750004,
"scaleZ": 0.5750004
},
"Nickname": "Rita Young",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.329267949,
"g": 0.0,
"b": 0.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343112692/3353B6C8A7FBFBA7B834CCAF8983B69C054DF2CB/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343112745/522D275483FAF39565F28DDDBD405D585F0C23BD/",
"ImageScalar": 1.0,
"WidthScale": 0.0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "2640ba",
"Name": "Figurine_Custom",
"Transform": {
"posX": 6.08431053,
"posY": 2.06718588,
"posZ": -7.082036,
"rotX": 3.47418536E-05,
"rotY": 7.54225839E-05,
"rotZ": -3.85664644E-05,
"scaleX": 0.5750004,
"scaleY": 0.5750004,
"scaleZ": 0.5750004
},
"Nickname": "Diana Stanley",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.337583035,
"g": 0.0,
"b": 0.653310061
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343122370/E81C333FD7195F674DEA2E36024F4788B51472AA/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343122410/6B2888110D0DEBD972B1AABC1493F262DB074311/",
"ImageScalar": 1.0,
"WidthScale": 0.0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "c646b5",
"Name": "Figurine_Custom",
"Transform": {
"posX": 0.4829111,
"posY": 1.02681768,
"posZ": 9.384614,
"rotX": 0.00032247862,
"rotY": -0.005024162,
"rotZ": 6.56196353E-05,
"scaleX": 0.5750004,
"scaleY": 0.5750004,
"scaleZ": 0.5750004
},
"Nickname": "Diana Stanley",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.17058444,
"g": 0.0,
"b": 0.3292679
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343110082/76D9557C29556247A925A3526A32EB896C0915C5/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343110130/FBBAE9140E940B1875BB8141D84788EF5EA5E25C/",
"ImageScalar": 1.0,
"WidthScale": 0.0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "6e99ba",
"Name": "Figurine_Custom",
"Transform": {
"posX": 12.6191931,
"posY": 2.25781727,
"posZ": -4.26564741,
"rotX": 8.915407E-06,
"rotY": 359.975555,
"rotZ": 3.436107E-06,
"scaleX": 0.5750004,
"scaleY": 0.5750004,
"scaleZ": 0.5750004
},
"Nickname": "Preston Fairmount",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.1743635,
"g": 0.430312216,
"b": 0.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343124775/8093BCC3BB3D19C324B59EA46C83293B09B3C736/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343124816/08D840B61C1E9CD93C1720AD66D780B1D7326D10/",
"ImageScalar": 1.0,
"WidthScale": 0.0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "c7119b",
"Name": "Figurine_Custom",
"Transform": {
"posX": -0.2711577,
"posY": 1.02681839,
"posZ": 9.386873,
"rotX": 0.000328625174,
"rotY": -0.004782497,
"rotZ": 0.000219832931,
"scaleX": 0.5750004,
"scaleY": 0.5750004,
"scaleZ": 0.5750004
},
"Nickname": "Preston Fairmount",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.0850936845,
"g": 0.210800856,
"b": 0.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343112489/897B3C993413B04F475D3AD95385262A0188945C/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343112537/AE38E517BE326158E67760C17DD7BDF24BDD6C12/",
"ImageScalar": 1.0,
"WidthScale": 0.0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "bc0aa2",
"Name": "Figurine_Custom",
"Transform": {
"posX": 11.5707169,
"posY": 2.06718588,
"posZ": -4.392838,
"rotX": -1.72657678E-07,
"rotY": 0.03478752,
"rotZ": -3.851981E-08,
"scaleX": 0.5750004,
"scaleY": 0.5750004,
"scaleZ": 0.5750004
},
"Nickname": "Joe Diamond",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 0.4572487,
"b": 0.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343123488/AB5C5C45431B8CF33A784A09E265D60D4D0168CC/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343123531/ADE4594F7EACB7EE9E942D3477724E674AE1AADE/",
"ImageScalar": 1.0,
"WidthScale": 0.0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "376b04",
"Name": "Figurine_Custom",
"Transform": {
"posX": -1.005756,
"posY": 1.02681589,
"posZ": 9.384623,
"rotX": 0.000161581018,
"rotY": -0.00500129443,
"rotZ": 0.00012048176,
"scaleX": 0.5750004,
"scaleY": 0.5750004,
"scaleZ": 0.5750004
},
"Nickname": "Joe Diamond",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.559233367,
"g": 0.2519618,
"b": 0.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343111123/FFF20A721CE1B8D3C49E32DBC0A7861229012FCE/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343111172/100EC490B6AC901F4AFC48F100829575055BEE86/",
"ImageScalar": 1.0,
"WidthScale": 0.0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "99e9da",
"Name": "Figurine_Custom",
"Transform": {
"posX": 8.800307,
"posY": 2.06718588,
"posZ": -4.61854649,
"rotX": 3.03945512E-06,
"rotY": 0.02075045,
"rotZ": -3.46532829E-07,
"scaleX": 0.5750004,
"scaleY": 0.5750004,
"scaleZ": 0.5750004
},
"Nickname": "Carolyn Fern",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.0,
"g": 0.04088839,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343122187/0A3F1BFDDD7476762C6645E64A9CBDB74E0BE4BB/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343122241/ACA5D39ABF796E8BFEC57DB81EA70B8558194C3B/",
"ImageScalar": 1.0,
"WidthScale": 0.0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "b49b1e",
"Name": "Figurine_Custom",
"Transform": {
"posX": -1.76804483,
"posY": 1.02681708,
"posZ": 9.390722,
"rotX": -2.144888E-05,
"rotY": -0.004910287,
"rotZ": -5.0051578E-05,
"scaleX": 0.5750004,
"scaleY": 0.5750004,
"scaleZ": 0.5750004
},
"Nickname": "Carolyn Fern",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.0,
"g": 0.0107875289,
"b": 0.325783551
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343109894/23141F07C9E777CCA48F96486D98A8D4DAD0447E/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343109932/062A9610BF91F9E900D727CF4C278508341AD4E0/",
"ImageScalar": 1.0,
"WidthScale": 0.0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "00a0b3",
"Name": "Figurine_Custom",
"Transform": {
"posX": 5.84411526,
"posY": 2.06718564,
"posZ": -5.01650763,
"rotX": -2.42440046E-06,
"rotY": 359.986542,
"rotZ": -4.06649451E-06,
"scaleX": 0.5750004,
"scaleY": 0.5750004,
"scaleZ": 0.5750004
},
"Nickname": "Calvin Wright",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.587107956,
"g": 0.0,
"b": 0.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343122092/7E86DE74F323125CF4C743A41D5C38CD7E5E6F80/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343122138/C6DA1F44C07BF2315BEF34CE88BE2D37306D72B8/",
"ImageScalar": 1.0,
"WidthScale": 0.0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "db5e16",
"Name": "Figurine_Custom",
"Transform": {
"posX": 1.19241536,
"posY": 1.026818,
"posZ": 10.2151451,
"rotX": 0.00043980364,
"rotY": -0.001790508,
"rotZ": 7.277957E-05,
"scaleX": 0.5750004,
"scaleY": 0.5750004,
"scaleZ": 0.5750004
},
"Nickname": "Calvin Wright",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.329267949,
"g": 0.0,
"b": 0.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343109794/51E0C9D150A28AE12DBC44D081B33F8585CA252A/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343109838/295776AE6C4195E36179BFD4DC840A85F9DC5E2A/",
"ImageScalar": 1.0,
"WidthScale": 0.0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "037a27",
"Name": "Figurine_Custom",
"Transform": {
"posX": 15.6046505,
"posY": 2.84277415,
"posZ": 0.227130339,
"rotX": 3.211394E-05,
"rotY": 0.0212779213,
"rotZ": -6.17425667E-06,
"scaleX": 0.5750004,
"scaleY": 0.5750004,
"scaleZ": 0.5750004
},
"Nickname": "Father Mateo",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.337583,
"g": 0.0,
"b": 0.653310061
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343213115/923ED3CD7BAB52379528C97BA86565BC972937F2/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343213159/D07849717C07B630C290BB7810B30108A652DC52/",
"ImageScalar": 1.0,
"WidthScale": 0.0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "c646b5",
"Name": "Figurine_Custom",
"Transform": {
"posX": 0.451427639,
"posY": 1.02681625,
"posZ": 10.1980467,
"rotX": 4.25053668E-06,
"rotY": -0.00196357,
"rotZ": -4.695836E-06,
"scaleX": 0.5750004,
"scaleY": 0.5750004,
"scaleZ": 0.5750004
},
"Nickname": "Father Mateo",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.17058444,
"g": 0.0,
"b": 0.3292679
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343213028/571662D666A8333EC73EA50FA1FC52121F182D33/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343213075/853E2B0B3A7ACD28E70E4DA3CD2347E714923AC3/",
"ImageScalar": 1.0,
"WidthScale": 0.0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "259257",
"Name": "Figurine_Custom",
"Transform": {
"posX": 2.67166185,
"posY": 2.067186,
"posZ": -7.576702,
"rotX": 2.54964853E-05,
"rotY": 0.01929791,
"rotZ": -7.22663E-06,
"scaleX": 0.5750004,
"scaleY": 0.5750004,
"scaleZ": 0.5750004
},
"Nickname": "Finn Edwards",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.174363464,
"g": 0.4303122,
"b": 0.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343122544/131B9D90BBADDD3576CD4F24E88B1A9EAA084B25/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343122592/94D7B9AA767123BF2B50B1E27FAC62242DC4C1B3/",
"ImageScalar": 1.0,
"WidthScale": 0.0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "c7119b",
"Name": "Figurine_Custom",
"Transform": {
"posX": -2.869375,
"posY": 1.05605507,
"posZ": -6.68307352,
"rotX": 2.060866E-05,
"rotY": 0.0192703716,
"rotZ": -7.155507E-06,
"scaleX": 0.5750004,
"scaleY": 0.5750004,
"scaleZ": 0.5750004
},
"Nickname": "Finn Edwards",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.08509364,
"g": 0.210800767,
"b": 0.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343110275/E2025B1C14EE35E63D44BC3B5A2410B21C397D90/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343110324/4B8B05471D1F5CC0FDD294EF20DB32F386D4E59E/",
"ImageScalar": 1.0,
"WidthScale": 0.0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "556138",
"Name": "Figurine_Custom",
"Transform": {
"posX": 20.78387,
"posY": 2.06718659,
"posZ": -0.275798917,
"rotX": -9.652414E-06,
"rotY": 0.02344572,
"rotZ": -2.187984E-05,
"scaleX": 0.5750004,
"scaleY": 0.5750004,
"scaleZ": 0.5750004
},
"Nickname": "Ursula Downs",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 0.4572487,
"b": 0.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343125580/D00CFB3B16884A01FA999E0DDD6B3CBC08E65AEA/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343125624/CBE958AE77C62FC1CC2DF6663226EADDA1500B5E/",
"ImageScalar": 1.0,
"WidthScale": 0.0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "376b04",
"Name": "Figurine_Custom",
"Transform": {
"posX": -1.03705025,
"posY": 1.02681637,
"posZ": 10.1975241,
"rotX": -1.02660943E-06,
"rotY": -0.00209664949,
"rotZ": -1.99569458E-05,
"scaleX": 0.5750004,
"scaleY": 0.5750004,
"scaleZ": 0.5750004
},
"Nickname": "Ursula Downs",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.559233367,
"g": 0.251961768,
"b": 0.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343113388/3C14FD026614E265AF28D706E14EE28832B9900A/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343113425/FC55EAACC9980F12F2108FB677C8E4F98FDBC82F/",
"ImageScalar": 1.0,
"WidthScale": 0.0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "68f47f",
"Name": "Figurine_Custom",
"Transform": {
"posX": -0.8056027,
"posY": 2.06718588,
"posZ": -7.25318336,
"rotX": 7.8728E-06,
"rotY": 0.01983729,
"rotZ": 7.198577E-06,
"scaleX": 0.5750004,
"scaleY": 0.5750004,
"scaleZ": 0.5750004
},
"Nickname": "Leo Anderson",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.0,
"g": 0.04088837,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343123575/9D875BB066BBC8711A4A5B1888E6F14453B937B8/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343123611/134B3903A912E19F89379A3CAFC11B690B0F1B6B/",
"ImageScalar": 1.0,
"WidthScale": 0.0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "b49b1e",
"Name": "Figurine_Custom",
"Transform": {
"posX": -1.79934168,
"posY": 1.02681637,
"posZ": 10.2036343,
"rotX": -2.56951953E-05,
"rotY": -0.002032134,
"rotZ": -5.30376055E-05,
"scaleX": 0.5750004,
"scaleY": 0.5750004,
"scaleZ": 0.5750004
},
"Nickname": "Leo Anderson",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.0,
"g": 0.0107875289,
"b": 0.325783521
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343111208/2C442A20E3C1D6C78115F52739C30026DEA42F78/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343111248/605DA9FD3CAA488E2AF00196B4BE09173C7690F2/",
"ImageScalar": 1.0,
"WidthScale": 0.0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "392b57",
"Name": "Figurine_Custom",
"Transform": {
"posX": 2.943431,
"posY": 2.067186,
"posZ": -6.065084,
"rotX": -3.37220481E-05,
"rotY": 0.0192783251,
"rotZ": -2.61416972E-05,
"scaleX": 0.5750004,
"scaleY": 0.5750004,
"scaleZ": 0.5750004
},
"Nickname": "Lola Hayes",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.594076633,
"g": 0.594076633,
"b": 0.594076633
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343123654/CE20CB51E39AA9BB75CC988BD79B247ADE977F54/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343123699/F47718DDEAFAD66219C3F396E86EB525E8605668/",
"ImageScalar": 1.0,
"WidthScale": 0.0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "b848a3",
"Name": "Figurine_Custom",
"Transform": {
"posX": 1.95995474,
"posY": 1.02681816,
"posZ": 11.00723,
"rotX": 0.000318056555,
"rotY": 359.987244,
"rotZ": 0.000208498663,
"scaleX": 0.5750004,
"scaleY": 0.5750004,
"scaleZ": 0.5750004
},
"Nickname": "Lola Hayes",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.162020713,
"g": 0.162020713,
"b": 0.162020713
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343111296/608331BF69D48D1A17034F4399889A0132423791/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343111331/D5D959D82BD215E896625C3FB22AECCADA3F1C30/",
"ImageScalar": 1.0,
"WidthScale": 0.0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "26a0a1",
"Name": "Figurine_Custom",
"Transform": {
"posX": 1.98486531,
"posY": 2.067186,
"posZ": -5.78295231,
"rotX": -1.93583619E-05,
"rotY": 0.0136279883,
"rotZ": -2.08618985E-05,
"scaleX": 0.5750004,
"scaleY": 0.5750004,
"scaleZ": 0.5750004
},
"Nickname": "William Yorick",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.587107956,
"g": 0.0,
"b": 0.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343126049/63E0BC57F7E5141690FF1F50002837F2869FE3FA/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343126093/F7F02472038CC02E52533381E4D7AD7D31BB3FA8/",
"ImageScalar": 1.0,
"WidthScale": 0.0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "b848a3",
"Name": "Figurine_Custom",
"Transform": {
"posX": 1.21389389,
"posY": 1.02681673,
"posZ": 11.0401068,
"rotX": 1.66332375E-05,
"rotY": 359.9848,
"rotZ": 1.38512064E-06,
"scaleX": 0.5750004,
"scaleY": 0.5750004,
"scaleZ": 0.5750004
},
"Nickname": "William Yorick",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.329268,
"g": 0.0,
"b": 0.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343113810/78D2AA9C325055A8D4680125D29489A8B9B89461/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343113849/DCA3D076BFCA28D8A8638B6A4F638AA84101624E/",
"ImageScalar": 1.0,
"WidthScale": 0.0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "073478",
"Name": "Figurine_Custom",
"Transform": {
"posX": 0.469670266,
"posY": 2.06718588,
"posZ": -5.72798967,
"rotX": -1.71772044E-05,
"rotY": 359.990173,
"rotZ": -1.27540952E-05,
"scaleX": 0.5750004,
"scaleY": 0.5750004,
"scaleZ": 0.5750004
},
"Nickname": "Akachi Onyele",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.337583184,
"g": 0.0,
"b": 0.653310061
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343160053/79D9A0D7E71BB628AD26366761558E96AACA93CC/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343160099/FCE303FB3866184962E30F7245071A06425095E2/",
"ImageScalar": 1.0,
"WidthScale": 0.0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "c646b5",
"Name": "Figurine_Custom",
"Transform": {
"posX": 0.472944528,
"posY": 1.02681673,
"posZ": 11.0225353,
"rotX": 1.02060794E-05,
"rotY": -0.0008168299,
"rotZ": -5.44288E-06,
"scaleX": 0.5750004,
"scaleY": 0.5750004,
"scaleZ": 0.5750004
},
"Nickname": "Akachi Onyele",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.17058453,
"g": 0.0,
"b": 0.329267979
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343159910/4DFE2B07BE7E50D2EA69FFEB40624CF542B5E0DE/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343159970/075B54C1767060DD9A1AD24DB57938CCFDDD6585/",
"ImageScalar": 1.0,
"WidthScale": 0.0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "086503",
"Name": "Figurine_Custom",
"Transform": {
"posX": -0.352956444,
"posY": 2.06718564,
"posZ": -5.624847,
"rotX": -7.850301E-06,
"rotY": 0.0119471271,
"rotZ": -1.23973962E-06,
"scaleX": 0.5750004,
"scaleY": 0.5750004,
"scaleZ": 0.5750004
},
"Nickname": "Sefina Rousseau",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.174363613,
"g": 0.430312335,
"b": 0.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343125039/358B5898D369D0DD9B43CA63A4D814DD523B46D4/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343125078/A86918CF754A49F3634CE1906F06D2EF8050181C/",
"ImageScalar": 1.0,
"WidthScale": 0.0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "c7119b",
"Name": "Figurine_Custom",
"Transform": {
"posX": -0.2811205,
"posY": 1.02681625,
"posZ": 11.0247946,
"rotX": 1.56008318E-05,
"rotY": -0.000685103063,
"rotZ": -1.13126E-05,
"scaleX": 0.5750004,
"scaleY": 0.5750004,
"scaleZ": 0.5750004
},
"Nickname": "Sefina Rousseau",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.0850937739,
"g": 0.210800946,
"b": 0.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343112788/E93E0A9A75FF8657A9E42C3AC93A236739E8B48E/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343112830/2D14AED1F1BA6A9FA28E7093A2E738876EA80A89/",
"ImageScalar": 1.0,
"WidthScale": 0.0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "1ebf3c",
"Name": "Figurine_Custom",
"Transform": {
"posX": 3.898189,
"posY": 2.06718588,
"posZ": -3.64616942,
"rotX": -2.440314E-05,
"rotY": 0.02602674,
"rotZ": -3.03079123E-05,
"scaleX": 0.5750004,
"scaleY": 0.5750004,
"scaleZ": 0.5750004
},
"Nickname": "Minh Thi Phan",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 0.4572487,
"b": 0.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343124265/92345CAE764C3A809A9CA73F30AFF9406BC0EF5E/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343124306/A4481703DBC3C327CBE907E1149598283B7AB049/",
"ImageScalar": 1.0,
"WidthScale": 0.0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "376b04",
"Name": "Figurine_Custom",
"Transform": {
"posX": -1.015713,
"posY": 1.02681613,
"posZ": 11.0225344,
"rotX": 8.437017E-06,
"rotY": -0.0006353474,
"rotZ": -2.9882583E-06,
"scaleX": 0.5750004,
"scaleY": 0.5750004,
"scaleZ": 0.5750004
},
"Nickname": "Minh Thi Phan",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.559233367,
"g": 0.2519619,
"b": 0.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343111913/23E26016E556988D267EDD8DEB4D76E4D6D38A7C/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343111950/D44CE23B259F5B04CD2B76F44DF2BED5D41F862E/",
"ImageScalar": 1.0,
"WidthScale": 0.0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "eb793b",
"Name": "Figurine_Custom",
"Transform": {
"posX": 2.73016787,
"posY": 2.067186,
"posZ": -3.9956975,
"rotX": -2.394301E-05,
"rotY": 0.0223149974,
"rotZ": -8.439749E-06,
"scaleX": 0.5750004,
"scaleY": 0.5750004,
"scaleZ": 0.5750004
},
"Nickname": "Mark Harrigan",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.0,
"g": 0.0408884659,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343123987/395CFF93D01FE8D3E05BF0E18AF363C95F8C9870/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343124038/5DB2BE15B15ECF1B8324CCB4EA57762A5F9503D7/",
"ImageScalar": 1.0,
"WidthScale": 0.0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "b49b1e",
"Name": "Figurine_Custom",
"Transform": {
"posX": -1.77800012,
"posY": 1.02681637,
"posZ": 11.0286446,
"rotX": 5.44165632E-05,
"rotY": -0.0006005508,
"rotZ": 2.32658222E-05,
"scaleX": 0.5750004,
"scaleY": 0.5750004,
"scaleZ": 0.5750004
},
"Nickname": "Mark Harrigan",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.0,
"g": 0.0107875289,
"b": 0.3257836
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343111650/DC806BD08F8B210C3DBE0D3BE9C0A0E9819D8D54/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343111695/C7C4A01A23F187ADD085F1FDFF51FAFB0295F22A/",
"ImageScalar": 1.0,
"WidthScale": 0.0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "78f659",
"Name": "Figurine_Custom",
"Transform": {
"posX": 21.1910248,
"posY": 2.06718659,
"posZ": -2.526873,
"rotX": -2.13130152E-05,
"rotY": 359.973755,
"rotZ": -1.01961071E-07,
"scaleX": 0.5750004,
"scaleY": 0.5750004,
"scaleZ": 0.5750004
},
"Nickname": "\"Ashcan\" Pete",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.587107956,
"g": 0.0,
"b": 0.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343121862/DD3C4ACBC52C4FBD8C573B953ED0081B810FA878/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343121899/0330056F163A97214EBEDBDA800BF186EEC0B8B7/",
"ImageScalar": 1.0,
"WidthScale": 0.0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "b848a3",
"Name": "Figurine_Custom",
"Transform": {
"posX": 1.204208,
"posY": 1.02681661,
"posZ": 11.8004837,
"rotX": 8.295096E-06,
"rotY": -0.002050401,
"rotZ": -1.10992141E-05,
"scaleX": 0.5750004,
"scaleY": 0.5750004,
"scaleZ": 0.5750004
},
"Nickname": "\"Ashcan\" Pete",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.3292681,
"g": 0.0,
"b": 0.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343109608/01B9628C63EE04370742D354B11FC41708BB6C5A/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343109656/54EBB31786FD3F4119F15B55B4FFAD9108FB9C61/",
"ImageScalar": 1.0,
"WidthScale": 0.0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "4ed067",
"Name": "Figurine_Custom",
"Transform": {
"posX": 0.419476151,
"posY": 2.06718636,
"posZ": -3.64400458,
"rotX": -6.3588006E-05,
"rotY": 0.0304272827,
"rotZ": -5.401947E-05,
"scaleX": 0.5750004,
"scaleY": 0.5750004,
"scaleZ": 0.5750004
},
"Nickname": "Jim Culver",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.337583333,
"g": 0.0,
"b": 0.653310061
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343123404/7C7BBACF49827ED5D622033E6C1DEA9357096C7B/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343123446/B7327A472FBB4072DC477381E8A7A6125C99531F/",
"ImageScalar": 1.0,
"WidthScale": 0.0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "c646b5",
"Name": "Figurine_Custom",
"Transform": {
"posX": 0.463523775,
"posY": 1.02681673,
"posZ": 11.7824306,
"rotX": -3.54734016E-06,
"rotY": 0.00121953932,
"rotZ": -3.94873632E-06,
"scaleX": 0.5750004,
"scaleY": 0.5750004,
"scaleZ": 0.5750004
},
"Nickname": "Jim Culver",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.170584649,
"g": 0.0,
"b": 0.3292681
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343111046/87284B158274F1722C2161D9F9B30E214647B1BB/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343111086/FF3A031718F35B572D6C3C8C7BCCAB6C11D4BF33/",
"ImageScalar": 1.0,
"WidthScale": 0.0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "4990c5",
"Name": "Figurine_Custom",
"Transform": {
"posX": 5.699485,
"posY": 2.067186,
"posZ": -1.23741245,
"rotX": -1.8305107E-05,
"rotY": 359.9773,
"rotZ": -2.205469E-05,
"scaleX": 0.5750004,
"scaleY": 0.5750004,
"scaleZ": 0.5750004
},
"Nickname": "Jenny Barnes",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.174363792,
"g": 0.4303125,
"b": 0.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343123208/8C29DCE72C2A5DE4D7E6A79046CF24C3D74D8535/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343123260/B4FC280EE97A57E792694AC4EDAADD48E44519C9/",
"ImageScalar": 1.0,
"WidthScale": 0.0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "9ee7cf",
"Name": "Figurine_Custom",
"Transform": {
"posX": -0.290638775,
"posY": 1.02681673,
"posZ": 11.7851191,
"rotX": 1.27248541E-05,
"rotY": -0.0003152209,
"rotZ": -7.57728048E-06,
"scaleX": 0.5750004,
"scaleY": 0.5750004,
"scaleZ": 0.5750004
},
"Nickname": "Jenny Barnes",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.08509388,
"g": 0.2108011,
"b": 0.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343110878/B9FEDC01D8D9AE1AAC6B02BE02B2750BF3DF54D6/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343110916/B7228A20C559122AB8D718C0AC201FED9E85B2DE/",
"ImageScalar": 1.0,
"WidthScale": 0.0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "f96c49",
"Name": "Figurine_Custom",
"Transform": {
"posX": 4.39516735,
"posY": 2.06718659,
"posZ": -1.54929829,
"rotX": -6.48672176E-06,
"rotY": 359.9885,
"rotZ": -3.87393666E-05,
"scaleX": 0.5750004,
"scaleY": 0.5750004,
"scaleZ": 0.5750004
},
"Nickname": "Rex Murphy",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 0.4572487,
"b": 0.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343124866/20FAFD12A141BEDFA62FC7D2BBA10925863110C7/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343124908/94730221F433510D8906BBF22D7AC5F8FF979B7A/",
"ImageScalar": 1.0,
"WidthScale": 0.0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "871891",
"Name": "Figurine_Custom",
"Transform": {
"posX": -1.02522957,
"posY": 1.02681625,
"posZ": 11.78287,
"rotX": 1.1895655E-05,
"rotY": -0.0009831832,
"rotZ": -6.40340477E-06,
"scaleX": 0.5750004,
"scaleY": 0.5750004,
"scaleZ": 0.5750004
},
"Nickname": "Rex Murphy",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.559233367,
"g": 0.251961976,
"b": 0.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343112602/C78D725F74D849D4C81D09D1C9B808D1F192A6B8/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343112648/D27F29716439A7BDBF1162AB92684C32E3A221FF/",
"ImageScalar": 1.0,
"WidthScale": 0.0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "e6d68f",
"Name": "Figurine_Custom",
"Transform": {
"posX": 3.4222877,
"posY": 2.067143,
"posZ": -1.24597657,
"rotX": -3.97921553E-07,
"rotY": 0.018956339,
"rotZ": -4.82753148E-06,
"scaleX": 0.5750004,
"scaleY": 0.5750004,
"scaleZ": 0.5750004
},
"Nickname": "Zoey Samaras",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.0,
"g": 0.0408885553,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343104943/9E4F82A799BEF14E1BEC498937F2EB3BB83F6ADE/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343104997/E66355B1514163DDC8E50927F54C6C07DE63EC00/",
"ImageScalar": 1.0,
"WidthScale": 0.0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "50a1c5",
"Name": "Figurine_Custom",
"Transform": {
"posX": -1.78751993,
"posY": 1.026817,
"posZ": 11.7889805,
"rotX": 1.25525485E-05,
"rotY": 0.00384989637,
"rotZ": 6.301981E-06,
"scaleX": 0.5750004,
"scaleY": 0.5750004,
"scaleZ": 0.5750004
},
"Nickname": "Zoey Samaras",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.0,
"g": 0.0107875289,
"b": 0.3257837
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343107696/1E492CCA51ADB35F95FFF64ABBB61765E50B2B26/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698400343107739/4F5A5EE5CF79DAF68B538EEF30DB8DACC10A3565/",
"ImageScalar": 1.0,
"WidthScale": 0.0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "8f5e71",
"Name": "Figurine_Custom",
"Transform": {
"posX": 1.91039026,
"posY": 2.067187,
"posZ": 0.160574824,
"rotX": -1.32235609E-05,
"rotY": 0.0207920726,
"rotZ": 2.036748E-05,
"scaleX": 0.5750004,
"scaleY": 0.5750004,
"scaleZ": 0.5750004
},
"Nickname": "Wendy Adams",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.587107956,
"g": 0.0,
"b": 0.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698400342898443/A3C543770A98A9D55B8BF1E51B2EE143A42AE1A2/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698400342898498/10F99CF16FEBE1CD39635ABFF90F805BF5D54918/",
"ImageScalar": 1.0,
"WidthScale": 0.0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "b848a3",
"Name": "Figurine_Custom",
"Transform": {
"posX": -2.14583731,
"posY": 1.02681613,
"posZ": 12.1985855,
"rotX": 1.17557793E-05,
"rotY": 359.9842,
"rotZ": 9.49655E-06,
"scaleX": 0.5750004,
"scaleY": 0.5750004,
"scaleZ": 0.5750004
},
"Nickname": "Wendy Adams",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.329268277,
"g": 0.0,
"b": 0.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698400342911659/B0D1767C1391FEAFC991695B614304A626FCEB2C/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698400342911709/5143ADC17BEA16129B1533BE77EE79BF0BD347A5/",
"ImageScalar": 1.0,
"WidthScale": 0.0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "881def",
"Name": "Figurine_Custom",
"Transform": {
"posX": 8.928853,
"posY": 2.06718731,
"posZ": 2.63650441,
"rotX": -4.980558E-05,
"rotY": 359.9783,
"rotZ": -7.330838E-05,
"scaleX": 0.5750004,
"scaleY": 0.5750004,
"scaleZ": 0.5750004
},
"Nickname": "Agnes Baker",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.337583542,
"g": 0.0,
"b": 0.653310061
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698400342898077/CB788C381652994294C25179935B1C9A43958EF9/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698400342898124/10924A4D4866357782DFB81FFB8D67C93F064F29/",
"ImageScalar": 1.0,
"WidthScale": 0.0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "c646b5",
"Name": "Figurine_Custom",
"Transform": {
"posX": -2.91400647,
"posY": 1.02681613,
"posZ": 12.1870565,
"rotX": 1.904696E-05,
"rotY": 0.0244995523,
"rotZ": -2.34366439E-06,
"scaleX": 0.5750004,
"scaleY": 0.5750004,
"scaleZ": 0.5750004
},
"Nickname": "Agnes Baker",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.170584828,
"g": 0.0,
"b": 0.329268277
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698400342911213/3C50F1305A311942B242F56F1DF8DB6333F02EC0/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698400342911264/8125422EA13893015B535ECA5730368BC422A508/",
"ImageScalar": 1.0,
"WidthScale": 0.0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "47cbdc",
"Name": "Figurine_Custom",
"Transform": {
"posX": 6.578354,
"posY": 2.06718683,
"posZ": 2.699327,
"rotX": -4.03003251E-05,
"rotY": 0.0260326378,
"rotZ": -7.88827947E-06,
"scaleX": 0.5750004,
"scaleY": 0.5750004,
"scaleZ": 0.5750004
},
"Nickname": "\"Skids\" O'Toole",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.17436403,
"g": 0.430312783,
"b": 0.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698400342898355/9F2A2046E154557C9D35BC392DA05BCF7A5D99BF/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698400342898401/3200CDC30301B8A58B6CE31AE9BF06DF7BE59B46/",
"ImageScalar": 1.0,
"WidthScale": 0.0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "c7119b",
"Name": "Figurine_Custom",
"Transform": {
"posX": -3.66486955,
"posY": 1.02681637,
"posZ": 12.1480255,
"rotX": 4.808505E-05,
"rotY": -0.0005751834,
"rotZ": 2.99885578E-05,
"scaleX": 0.5750004,
"scaleY": 0.5750004,
"scaleZ": 0.5750004
},
"Nickname": "\"Skids\" O'Toole",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.08509409,
"g": 0.210801333,
"b": 0.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698400342911559/E9A1944160938CAC731E6ECF4E86C8A43DE4BB9E/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698400342911607/D91CC56CCF47669B649D0AB61B12957FBB790C06/",
"ImageScalar": 1.0,
"WidthScale": 0.0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "7de2d5",
"Name": "Figurine_Custom",
"Transform": {
"posX": 4.87932539,
"posY": 2.06718636,
"posZ": 3.259674,
"rotX": 1.31513374E-07,
"rotY": 0.00692263,
"rotZ": -9.823748E-07,
"scaleX": 0.5750004,
"scaleY": 0.5750004,
"scaleZ": 0.5750004
},
"Nickname": "Daisy Walker",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 0.4572487,
"b": 0.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698400342898160/BD419A43A39F1AAE574C3ED1E6BDCA059662526B/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698400342898199/50F1F2731EA74D362AFAD8157D040D2C28537FC4/",
"ImageScalar": 1.0,
"WidthScale": 0.0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "376b04",
"Name": "Figurine_Custom",
"Transform": {
"posX": -4.413311,
"posY": 1.02681649,
"posZ": 12.1634035,
"rotX": 5.90366581E-05,
"rotY": 0.00331070554,
"rotZ": 3.21872079E-07,
"scaleX": 0.5750004,
"scaleY": 0.5750004,
"scaleZ": 0.5750004
},
"Nickname": "Daisy Walker",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.559233367,
"g": 0.251962155,
"b": 0.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698400342911313/35AACEA1926713934B02DED9A74B78FFC3CE9883/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698400342911376/6F57094F6DE7748A2FECE162A8360433100F6A1A/",
"ImageScalar": 1.0,
"WidthScale": 0.0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "d68f71",
"Name": "Figurine_Custom",
"Transform": {
"posX": 3.16708279,
"posY": 2.06718659,
"posZ": 3.54935122,
"rotX": -4.76598E-06,
"rotY": 359.989349,
"rotZ": -3.25496767E-05,
"scaleX": 0.5750004,
"scaleY": 0.5750004,
"scaleZ": 0.5750004
},
"Nickname": "Roland Banks",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.0,
"g": 0.0408886969,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698400342898253/1379499E10EFB7E14365E7DB265FDEA18852D1D5/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698400342898308/F1D708F76DF5800CE765EAFA0DC09C26A74FF16B/",
"ImageScalar": 1.0,
"WidthScale": 0.0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "b49b1e",
"Name": "Figurine_Custom",
"Transform": {
"posX": -5.15518236,
"posY": 1.02681625,
"posZ": 12.1229219,
"rotX": -3.45639019E-05,
"rotY": 359.971771,
"rotZ": -6.146331E-05,
"scaleX": 0.5750004,
"scaleY": 0.5750004,
"scaleZ": 0.5750004
},
"Nickname": "Roland Banks",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.0,
"g": 0.0107875289,
"b": 0.325783879
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1763698400342911431/4F699092E6EA90370C6AC757DB37FF9D9A6A7FB8/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1763698400342911484/BCB0DA6F1D18C17D45F72A530A648BEC00C54205/",
"ImageScalar": 1.0,
"WidthScale": 0.0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
}
]
}
]
},
{
"GUID": "7bf6c3",
"Name": "Custom_Tile",
"Transform": {
"posX": 28.5612049,
"posY": 4.078023,
"posZ": -17.8068981,
"rotX": 359.918945,
"rotY": 269.998627,
"rotZ": 0.0164103936,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "White Hand Size Counter",
"Description": "First, right-click and select Bind to my color.\n\nDisplays the number of cards in hand (in white). Check the DES checkbox to display card count by title (in green).\n\nHover to briefly toggle the card count method (total # of cards vs. # of cards by title).",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1704036721123215146/E44A3B99EACF310E49E94977151A03C9A3DC7F17/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1704036721123215146/E44A3B99EACF310E49E94977151A03C9A3DC7F17/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 0,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "function onload(save_state)\n val = 0\n playerColor = \"Orange\"\n if save_state ~= nil then\n local obj = JSON.decode(save_state)\n if obj ~= nil and obj.playerColor ~= nil then\n playerColor = obj.playerColor\n end\n end\n des = false\n loopId = Wait.time(|| updateValue(), 1, -1)\n self.addContextMenuItem(\"Bind to my color\", bindColor)\nend\n\nfunction bindColor(player_color)\n playerColor = player_color\n self.setName(player_color .. \" Hand Size Counter\")\nend\n\nfunction onSave()\n return JSON.encode({ playerColor = playerColor })\nend\n\nfunction onHover(player_color)\n if not (player_color == playerColor) then return end\n Wait.stop(loopId)\n des = not des\n updateValue()\n des = not des\n loopId = Wait.time(|| updateValue(), 1, -1)\nend\n\nfunction updateDES(player, value, id)\n if (value == \"True\") then des = true\n else des = false\n end\n updateValue()\nend\n\nfunction updateValue()\n local hand = Player[playerColor].getHandObjects()\n local size = 0\n\n if (des) then\n self.UI.setAttribute(\"handSize\", \"color\", \"#00FF00\")\n -- count by name for Dream Enhancing Serum\n local cardHash = {}\n for key, obj in pairs(hand) do\n if obj != nil and obj.tag == \"Card\" then\n local name = obj.getName()\n local title, xp = string.match(name, '(.+)(%s%(%d+%))')\n if title ~= nil then name = title end\n cardHash[name] = obj\n end\n end\n for key, obj in pairs(cardHash) do\n size = size + 1\n end\n else\n self.UI.setAttribute(\"handSize\", \"color\", \"#FFFFFF\")\n -- otherwise count individually\n for key, obj in pairs(hand) do\n if obj != nil and obj.tag == \"Card\" then\n size = size + 1\n end\n end\n end\n\n val = size\n self.UI.setValue(\"handSize\", val)\nend",
"LuaScriptState": "{\"playerColor\":\"White\"}",
"XmlUI": "\n \n \n \n\n\n \n ? \n
\n \n DES \n
\n "
}
]
},
{
"GUID": "03804b",
"Name": "Checker_white",
"Transform": {
"posX": -52.3353767,
"posY": 1.53730845,
"posZ": -68.20281,
"rotX": 0.0216730367,
"rotY": 270.0003,
"rotZ": 180.0196,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Configuration",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"import_configuration_provider"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": true,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"LuaScript": "---\r\n--- Generated by EmmyLua(https://github.com/EmmyLua)\r\n--- Created by Whimsical.\r\n--- DateTime: 2021-08-19 6:39 a.m.\r\n---\r\n\r\nlocal Priority = {\r\n ERROR = 0,\r\n WARNING = 1,\r\n INFO = 2,\r\n DEBUG = 3\r\n}\r\n\r\n---@type ArkhamImportConfiguration\r\nconfiguration = {\r\n api_uri = \"https://arkhamdb.com/api/public\",\r\n priority = Priority.INFO,\r\n public_deck = \"decklist\",\r\n private_deck = \"deck\",\r\n cards = \"card\",\r\n taboo = \"taboos\",\r\n card_bag_guid = \"15bb07\",\r\n weaknesses_bag_guid = \"770c4e\",\r\n investigator_bag_guid = \"84a000\",\r\n minicard_bag_guid = \"80b12d\",\r\n ui_builder_guid = \"ddd2eb\",\r\n command_manager_guid = \"a0b1de\",\r\n bonded_cards = {\r\n [\"05313\"] = { -- Hallowed Mirror / Soothing Melody\r\n code = \"05314\",\r\n count = 3\r\n },\r\n [\"54002\"] = { -- Hallowed Mirror (3) / Soothing Melody\r\n code = \"05314\",\r\n count = 3\r\n },\r\n [\"05316\"] = { -- Occult Lexicon / Blood-Rite\r\n code = \"05317\",\r\n count = 3\r\n },\r\n [\"54004\"] = { -- Occult Lexicon (3) / Blood-Rite\r\n code = \"05317\",\r\n count = 3\r\n },\r\n [\"06018\"] = { -- The Hungering Blade / Bloodlust\r\n code = \"06019\",\r\n count = 3\r\n },\r\n [\"06330\"] = { -- Nightmare Bauble / Dream Parasite\r\n code = \"06331\",\r\n count = 3\r\n },\r\n [\"06030\"] = { -- Miss Doyle / Hope/ Zeal / Augur\r\n {\r\n code = \"06031\",\r\n count = 1\r\n },\r\n {\r\n code = \"06032\",\r\n count = 1\r\n },\r\n {\r\n code = \"06033\",\r\n count = 1\r\n }\r\n },\r\n [\"06013\"] = { -- Gate Box / Dream-Gate\r\n code = \"06015a\",\r\n count = 1\r\n },\r\n [\"06024\"] = { -- Crystallizer of Dreams / Guardian of the Crystallizer\r\n code = \"06025\",\r\n count = 2\r\n },\r\n [\"06112\"] = { -- Dream Diary / Essence of the Dream\r\n code = \"06113\",\r\n count = 1\r\n },\r\n [\"06236\"] = { -- Dream Diary / Essence of the Dream\r\n code = \"06113\",\r\n count = 1\r\n },\r\n [\"06237\"] = { -- Dream Diary / Essence of the Dream\r\n code = \"06113\",\r\n count = 1\r\n },\r\n [\"06238\"] = { -- Dream Diary / Essence of the Dream\r\n code = \"06113\",\r\n count = 1\r\n },\r\n [\"06276\"] = { -- Empty Vessel / Wish Eater\r\n code = \"06277\",\r\n count = 1\r\n },\r\n [\"06021\"] = { -- Segment of Onyx / Pendant of the Queen\r\n code = \"06022\",\r\n count = 1\r\n },\r\n [\"06027\"] = { -- Stargazing / The Stars Are Right\r\n code = \"06028\",\r\n count = 2\r\n },\r\n [\"06282\"] = { -- Summoned Hound / Unbound Beast\r\n code = \"06283\",\r\n count = 2\r\n }\r\n },\r\n default_zone_overrides = {\r\n [\"02014\"] = \"bonded\", -- Duke\r\n [\"03009\"] = \"bonded\", -- Sophie\r\n [\"06013\"] = \"bonded\", -- Gate Box\r\n [\"05014\"] = \"bonded\" -- Dark Insight\r\n },\r\n discriminators = {\r\n [\"53010\"] = \"Permanent\", -- On Your Own (Permanent)\r\n [\"01008\"] = \"Signature\", -- Daisy's Tote Bag\r\n [\"90002\"] = \"Advanced\", -- Daisy's Tote Bag Advanced\r\n [\"90003\"] = \"John Dee Translation (Advanced)\", -- The Necronomicon\r\n [\"01010\"] = \"Signature\", -- On the Lam\r\n [\"90009\"] = \"Advanced\", -- On the Lam\r\n [\"01011\"] = \"Signature\", -- Hospital Debts\r\n [\"90010\"] = \"Advanced\", -- Hospital Debts\r\n [\"01013\"] = \"Signature\", -- Dark Memory\r\n [\"90019\"] = \"Advanced\", -- Dark Memory\r\n [\"90018\"] = \"Artifact from Another Life (Advanced)\", -- Heirloom of Hyperborea\r\n [\"90030\"] = \"Advanced\", -- Roland's .38 Special\r\n\t\t[\"01006\"] = \"Signature\", -- Roland's .38 Special\r\n [\"90031\"] = \"Advanced\", -- Cover Up\r\n\t\t[\"01007\"] = \"Signature\", -- Cover Up\r\n [\"05186\"] = \"Guardian\", -- .45 Thompson\r\n [\"05187\"] = \"Rogue\", -- .45 Thompson\r\n [\"05188\"] = \"Seeker\", -- Scroll of Secrets\r\n [\"05189\"] = \"Mystic\", -- Scroll of Secrets\r\n [\"05190\"] = \"Rogue\", -- Tennessee Sour Mash\r\n [\"05191\"] = \"Survivor\", -- Tennessee Sour Mash\r\n [\"05192\"] = \"Guardian\", -- Enchanted Blade\r\n [\"05193\"] = \"Mystic\", -- Enchanted Blade\r\n [\"05194\"] = \"Seeker\", -- Grisly Totem\r\n [\"05195\"] = \"Survivor\", -- Grisly Totem\r\n [\"06015a\"] = \"\", -- Dream-Gate\r\n },\r\n zones = {\r\n default = {\r\n position = Vector(0.285, 1.5, 0.40),\r\n is_facedown = true\r\n },\r\n permanent = {\r\n position = Vector(-0.285, 1.5, 0.40),\r\n is_facedown = false\r\n },\r\n weakness = {\r\n position = Vector(-0.855, 1.5, 0.40),\r\n is_facedown = true\r\n },\r\n bonded = {\r\n position = Vector(-1.425, 1.5, 0.40),\r\n is_facedown = false\r\n },\r\n investigator = {\r\n position = Vector(1.150711, 1.5, 0.454833),\r\n is_facedown = false\r\n }\r\n },\r\n debug_deck_id = nil,\r\n}",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "ddd2eb",
"Name": "Checker_black",
"Transform": {
"posX": 76.87443,
"posY": 1.29618728,
"posZ": 8.542707,
"rotX": 359.99,
"rotY": 270.0181,
"rotZ": 179.984528,
"scaleX": 0.250000417,
"scaleY": 0.250000417,
"scaleZ": 0.250000417
},
"Nickname": "UI Builder",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.0,
"g": 0.0,
"b": 0.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": true,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"LuaScript": "---\r\n--- Generated by EmmyLua(https://github.com/EmmyLua)\r\n--- Created by Whimsical.\r\n--- DateTime: 2021-08-24 9:55 a.m.\r\n---\r\n\r\n-- Please call this first. It makes things so much easier.\r\n---@param target TTSObject\r\n---@param callback_name string\r\n---@return number\r\nlocal function make_decktype_checkbox(target, callback_name)\r\n -- Create Private/Published checkbox\r\n target:createButton {\r\n click_function = callback_name,\r\n function_owner = target,\r\n position = Vector(-0.33, 0.1, -0.255),\r\n width = 2100,\r\n height = 500,\r\n tooltip = \"Click to toggle Private/Published deck ID\",\r\n label = \"Private\",\r\n font_size = 350,\r\n scale = Vector(0.1, 0.1, 0.1),\r\n color = Color(0.9, 0.7, 0.5),\r\n hover_color = Color(0.4, 0.6, 0.8)\r\n }\r\n return target:getButtons()[1].index -- If we do this first, we know that our index is our new button\r\nend\r\n\r\nfunction noop() end\r\n\r\n---@param target TTSObject\r\n---@param debug_deck_id string|nil\r\nlocal function make_text(target, debug_deck_id)\r\n -- Create textbox\r\n target:createInput {\r\n function_owner = self,\r\n position = Vector(0.33, 0.1, -0.255),\r\n width = 2200,\r\n height = 500,\r\n scale = Vector(0.1, 0.1, 0.1),\r\n font_size = 450,\r\n tooltip = \"*****PLEASE USE AN UNPUBLISHED DECK IF JUST FOR TTS TO AVOID FLOODING ARKHAMDB PUBLISHED DECK LISTS!*****\\nInput deck ID from ArkhamDB URL of the deck\\nExample: For the URL 'https://arkhamdb.com/decklist/view/101/knowledge-overwhelming-solo-deck-1.0', you should input '101'\",\r\n alignment = 3,\r\n value = debug_deck_id or \"\",\r\n color = Color(0.9, 0.7, 0.5),\r\n validation = 2,\r\n input_function = \"noop\"\r\n }\r\nend\r\n\r\n---@param target TTSObject\r\n---@param callback_name string\r\nlocal function make_button(target, callback_name)\r\n -- Create Button\r\n target:createButton {\r\n click_function = callback_name,\r\n function_owner = target,\r\n position = Vector(0.0, 0.05, -0.1),\r\n width = 300,\r\n height = 100,\r\n tooltip = \"Click to build your deck!\",\r\n scale = Vector(1, 1, 0.6),\r\n color = Color.Black\r\n }\r\nend\r\n\r\n---@param parameters ArkhamImportUIParameters\r\n---@return number\r\nfunction create_ui(parameters)\r\n local target = getObjectFromGUID(parameters.target_guid)\r\n\r\n local index = make_decktype_checkbox(target, parameters.checkbox_toggle_callback_name)\r\n make_text(target, parameters.debug_deck_id)\r\n make_button(target, parameters.build_deck_callback_name)\r\n\r\n return index\r\nend",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "400e1a",
"Name": "Checker_white",
"Transform": {
"posX": -52.3408775,
"posY": 1.37373722,
"posZ": -70.8625946,
"rotX": 0.0208905842,
"rotY": 270.0273,
"rotZ": 180.0168,
"scaleX": 0.350000441,
"scaleY": 0.350000441,
"scaleZ": 0.350000441
},
"Nickname": "Proxy Card Command",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"import_command"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": true,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"LuaScript": "---\r\n--- Generated by EmmyLua(https://github.com/EmmyLua)\r\n--- Created by Whimsical.\r\n--- DateTime: 2021-08-24 6:11 p.m.\r\n---\r\n\r\ncommand_name = \"proxy-card\"\r\n\r\n---@type ArkhamImport_Command_RunDirectives\r\nrunOn = {\r\n instructions = true,\r\n handlers = true\r\n}\r\n\r\nlocal back_image_default = \"https://images-ext-2.discordapp.net/external/QY_dmo_UnAHEi1pgWwaRr1-HSB8AtrAv0W74Mh_Z6vg/https/i.imgur.com/EcbhVuh.jpg\"\r\n\r\n---@param parameters ArkhamImport_Command_DescriptionInstructionArguments\r\n---@return ArkhamImport_Command_DescriptionInstructionResults\r\nfunction do_instruction(parameters)\r\n local args = parameters.arguments\r\n if (#args<4 or #args>6) then\r\n return {\r\n is_successful = false,\r\n error_message = \"Move Command requires between 4 or 6 arguments. \" .. #args .. \" were provided.\"\r\n }\r\n end\r\n\r\n if not parameters.command_state[\"proxy-card\"] then\r\n parameters.command_state[\"proxy-card\"] = {}\r\n parameters.command_state[\"proxy-card-offset\"] = 0.1\r\n end\r\n\r\n parameters.command_state[\"proxy-card\"][args[1]] = {\r\n name = args[2],\r\n subtitle = args[3],\r\n image_uri = args[4],\r\n zone = args[5] or \"default\",\r\n back_image_uri = args[6] or back_image_default\r\n }\r\n\r\n return {\r\n command_state = parameters.command_state,\r\n is_successful = true\r\n }\r\nend\r\n\r\n---@param parameters ArkhamImport_Command_HandlerArguments\r\n---@return ArkhamImport_Command_HandlerResults\r\nfunction handle_card(parameters)\r\n local state = parameters.command_state[\"proxy-card\"] or {}\r\n\r\n local card_data = state[parameters.card.code]\r\n\r\n if not card_data then return { is_successful = true } end\r\n\r\n local offset = parameters.command_state[\"proxy-card-offset\"]\r\n parameters.command_state[\"proxy-card-offset\"] = offset + 0.1\r\n\r\n local zone = parameters.configuration.zones[card_data.zone]\r\n\r\n if not zone then\r\n return {\r\n is_successful = false,\r\n error_message = \"Proxy Card [\" .. tostring(parameters.card.code) .. \"]: Zone \\\"\" .. tostring(card_data.zone) .. \"\\\" was not found.\"\r\n }\r\n end\r\n\r\n local source = getObjectFromGUID(parameters.source_guid)\r\n local position = zone.is_absolute and zone.position or source:positionToWorld(zone.position)\r\n\r\n for _=1, parameters.card.count do\r\n local new = spawnObject {\r\n type = \"CardCustom\",\r\n position = position + Vector(0, offset, 0),\r\n rotation = source:getRotation() + Vector(0, 0, zone.is_facedown and 180 or 0),\r\n ---@param card TTSObject\r\n callback_function = function (card)\r\n card:setName(card_data.name)\r\n card:setDescription(card_data.subtitle)\r\n end\r\n }\r\n\r\n new:setCustomObject {\r\n type = 0,\r\n face = card_data.image_uri,\r\n back = card_data.back_image_uri\r\n }\r\n end\r\n\r\n return { handled = true, is_successful = true }\r\nend",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "0b55d8",
"Name": "Checker_white",
"Transform": {
"posX": -52.3380623,
"posY": 1.37395561,
"posZ": -70.12057,
"rotX": 0.020905504,
"rotY": 269.9767,
"rotZ": 180.016769,
"scaleX": 0.350000441,
"scaleY": 0.350000441,
"scaleZ": 0.350000441
},
"Nickname": "Move Command",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"import_command"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": true,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"LuaScript": "---\r\n--- Generated by EmmyLua(https://github.com/EmmyLua)\r\n--- Created by Whimsical.\r\n--- DateTime: 2021-08-24 6:02 p.m.\r\n---\r\n\r\ncommand_name = \"move\"\r\n\r\n---@type ArkhamImport_Command_RunDirectives\r\nrunOn = {\r\n instructions = true,\r\n handlers = true\r\n}\r\n\r\n---@param parameters ArkhamImport_Command_DescriptionInstructionArguments\r\n---@return ArkhamImport_Command_DescriptionInstructionResults\r\nfunction do_instruction(parameters)\r\n local args = parameters.arguments\r\n\r\n if (#args~=2 and #args~=3) then\r\n return { is_successful = false, error_message = \"Move Command requires 2 or 3 arguments. \" .. #args .. \" were provided.\" }\r\n end\r\n\r\n local card_id = args[1]\r\n local new_zone = args[2]\r\n local count = tonumber(args[3]) or 3\r\n\r\n if not parameters.configuration.zones[new_zone] then\r\n return { is_successful = false, error_message = \"Move Command: Zone \\\"\" .. new_zone .. \"\\\" was not found.\" }\r\n end\r\n\r\n local state = parameters.command_state[\"move\"]\r\n\r\n if not state then\r\n state = {}\r\n parameters.command_state[\"move\"] = state\r\n end\r\n\r\n local card_data = state[card_id]\r\n\r\n if not card_data then\r\n card_data = {\r\n zone = {},\r\n offset = 0\r\n }\r\n\r\n state[card_id] = card_data\r\n end\r\n\r\n local zone = card_data.zone\r\n local offset = card_data.offset\r\n\r\n for index=offset,offset+count do\r\n zone[index] = new_zone\r\n end\r\n\r\n return { command_state = parameters.command_state, is_successful = true }\r\nend\r\n\r\n---@param parameters ArkhamImport_Command_HandlerArguments\r\n---@return ArkhamImport_Command_HandlerResults\r\nfunction handle_card(parameters)\r\n local state = parameters.command_state[\"move\"] or {}\r\n\r\n local card_data = state[parameters.card.code]\r\n\r\n if not card_data then return { is_successful = true} end\r\n\r\n return { zone = card_data.zone, is_successful = true }\r\nend",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "ec5b5f",
"Name": "Checker_white",
"Transform": {
"posX": -52.3377647,
"posY": 1.37416136,
"posZ": -69.41759,
"rotX": 0.0208920315,
"rotY": 270.0241,
"rotZ": 180.0168,
"scaleX": 0.350000441,
"scaleY": 0.350000441,
"scaleZ": 0.350000441
},
"Nickname": "Zone Command",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"import_command"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": true,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"LuaScript": "---\r\n--- Generated by EmmyLua(https://github.com/EmmyLua)\r\n--- Created by Whimsical.\r\n--- DateTime: 2021-08-24 5:48 p.m.\r\n---\r\n\r\ncommand_name = \"zone\"\r\n\r\nrunOn = {\r\n instructions = true,\r\n handlers = false\r\n}\r\n\r\n---@param parameters ArkhamImport_Command_DescriptionInstructionArguments\r\n---@return ArkhamImport_Command_DescriptionInstructionResults\r\nfunction do_instruction(parameters)\r\n local args = parameters.arguments\r\n if (#args<4 or #args>6) then\r\n return {\r\n is_successful = false,\r\n error_message = \"Zone Command requires between 4 and 6 arguments. \" .. #args .. \" were provided.\"\r\n }\r\n end\r\n\r\n local name = args[1]\r\n local position = Vector(tonumber(args[2]), tonumber(args[3]), tonumber(args[4]))\r\n local is_facedown= (args[5] and args[5]:lower()==\"true\") or false\r\n local is_absolute = (args[6] and args[6]:lower() == \"true\") or false\r\n\r\n ---@type ArkhamImportZone\r\n local zone = {\r\n position = position,\r\n is_facedown = is_facedown,\r\n is_absolute = is_absolute\r\n }\r\n\r\n parameters.configuration.zones[name] = zone\r\n\r\n return {\r\n configuration = parameters.configuration,\r\n is_successful = true\r\n }\r\nend",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "80eac7",
"Name": "Checker_white",
"Transform": {
"posX": -52.33733,
"posY": 1.373546,
"posZ": -71.5202255,
"rotX": 0.0208910983,
"rotY": 270.030243,
"rotZ": 180.0168,
"scaleX": 0.350000441,
"scaleY": 0.350000441,
"scaleZ": 0.350000441
},
"Nickname": "Proxy Investigator Command",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"import_command"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": true,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"LuaScript": "---\r\n--- Generated by EmmyLua(https://github.com/EmmyLua)\r\n--- Created by Whimsical.\r\n--- DateTime: 2021-08-25 2:32 p.m.\r\n---\r\n\r\ncommand_name = \"proxy-investigator\"\r\n\r\n---@type ArkhamImport_Command_RunDirectives\r\nrunOn = {\r\n instructions = true,\r\n handlers = true\r\n}\r\n\r\n---@param parameters ArkhamImport_Command_DescriptionInstructionArguments\r\n---@return ArkhamImport_Command_DescriptionInstructionResults\r\nfunction do_instruction(parameters)\r\n local args = parameters.arguments\r\n\r\n if (#args~=6 and #args~=7) then\r\n return {\r\n is_successful = false,\r\n error_message = \"Proxy Investigator command requires either 7 or 8 arguments. \" .. #args .. \" were provided.\"\r\n }\r\n end\r\n\r\n parameters.command_state[\"proxy-investigator\"] = {\r\n name = args[1],\r\n subtitle = args[2],\r\n front_uri = args[3],\r\n back_uri = args[4],\r\n mini_front_uri = args[5],\r\n mini_back_uri = args[6],\r\n zone = args[7] or \"investigator\"\r\n }\r\n\r\n return {\r\n command_state = parameters.command_state,\r\n is_successful = true\r\n }\r\nend\r\n\r\n---@param source TTSObject\r\n---@param name string\r\n---@param subtitle string\r\n---@param offset number\r\n---@param zone ArkhamImportZone\r\n---@param front string\r\n---@param back string\r\n---@param use_minicard_scaling boolean\r\nlocal function create_card(source, name, subtitle, offset, zone, front, back, use_minicard_scaling)\r\n local position = zone.is_absolute and zone.position or source:positionToWorld(zone.position)\r\n\r\n local card = spawnObject {\r\n type = \"CardCustom\",\r\n position = position + Vector(0, offset, 0),\r\n rotation = source:getRotation() + Vector(0, 0, zone.is_facedown and 180 or 0),\r\n scale = use_minicard_scaling and Vector(0.6, 1, 0.6) or Vector(1,1,1),\r\n callback_function = function (card) card:setName(name) card:setDescription(subtitle) end\r\n }\r\n\r\n card:setCustomObject {\r\n type = 0,\r\n face = front,\r\n back = back\r\n }\r\nend\r\n\r\n---@param parameters ArkhamImport_Command_HandlerArguments\r\n---@return ArkhamImport_Command_HandlerResults\r\nfunction handle_card(parameters)\r\n if parameters.card.type_code ~= \"investigator\" then return {is_successful = true } end\r\n\r\n local card_data = parameters.command_state[\"proxy-investigator\"] or {}\r\n\r\n if not card_data then return { is_successful = true } end\r\n\r\n local zone = parameters.configuration.zones[card_data.zone]\r\n\r\n if not zone then\r\n return {\r\n is_successful = false,\r\n command_state = parameters.command_state,\r\n error_message = \"Proxy Investigator [\" .. tostring(parameters.card.code) .. \"]: Zone \\\"\" .. tostring(card_data.zone) .. \"\\\" was not found.\"\r\n }\r\n end\r\n\r\n local source = getObjectFromGUID(parameters.source_guid)\r\n\r\n for _=1, parameters.card.count do\r\n create_card(source, card_data.name, card_data.subtitle, 10, zone, card_data.front_uri, card_data.back_uri, false)\r\n create_card(source, card_data.name, card_data.subtitle, 20, zone, card_data.mini_front_uri, card_data.mini_back_uri, true)\r\n end\r\n\r\n return { handled = true, is_successful = true}\r\nend",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "cb2ce4",
"Name": "Bag",
"Transform": {
"posX": -52.4212074,
"posY": 1.18352735,
"posZ": -73.399765,
"rotX": 0.0208571982,
"rotY": 269.997,
"rotZ": 0.0167906024,
"scaleX": 0.55,
"scaleY": 0.55,
"scaleZ": 0.55
},
"Nickname": "Deck Importer Reference Guide",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"MaterialIndex": -1,
"MeshIndex": -1,
"Bag": {
"Order": 0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "775aed",
"Name": "Custom_PDF",
"Transform": {
"posX": -51.3451767,
"posY": 2.432435,
"posZ": -73.43903,
"rotX": 359.6248,
"rotY": 269.999878,
"rotZ": 0.0415544771,
"scaleX": 1.17389083,
"scaleY": 1.0,
"scaleZ": 1.17389083
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomPDF": {
"PDFUrl": "http://cloud-3.steamusercontent.com/ugc/1700659722106672329/E7690C91C2A67EE07244C7434DCCF49CCE62B51D/",
"PDFPassword": "",
"PDFPage": 0,
"PDFPageOffset": 0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "a0b1de",
"Name": "Checker_black",
"Transform": {
"posX": 77.02727,
"posY": 1.29594886,
"posZ": 9.327654,
"rotX": 359.9899,
"rotY": 270.009644,
"rotZ": 179.984467,
"scaleX": 0.250000417,
"scaleY": 0.250000417,
"scaleZ": 0.250000417
},
"Nickname": "Command Manager",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.0,
"g": 0.0,
"b": 0.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": true,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"LuaScript": "---\r\n--- Generated by EmmyLua(https://github.com/EmmyLua)\r\n--- Created by Whimsical.\r\n--- DateTime: 2021-08-22 6:36 a.m.\r\n---\r\n\r\n---@class CommandTableEntry\r\n---@field public object TTSObject\r\n---@field public runOn ArkhamImport_Command_RunDirectives\r\nlocal CommandTableEntry = {}\r\n\r\n---@type table\r\nlocal commands = {}\r\n\r\n---@type table\r\nlocal found_commands = {}\r\n\r\n---@type table\r\nlocal command_state\r\n\r\nlocal function load_commands()\r\n local command_objects = getObjectsWithTag(\"import_command\")\r\n\r\n for _, object in ipairs(command_objects) do\r\n commands[object:getVar(\"command_name\")] = {\r\n object = object,\r\n runOn = object:getTable(\"runOn\")\r\n }\r\n end\r\nend\r\n\r\n---@param configuration ArkhamImportConfiguration\r\n---@param message string\r\n---@return ArkhamImport_CommandManager_InitializationResults\r\nlocal function build_error(configuration, message)\r\n return {\r\n configuration = configuration,\r\n is_successful = false,\r\n error_message = message\r\n }\r\nend\r\n\r\n---@param source table\r\n---@param updates table\r\nlocal function merge_tables(source, updates)\r\n for key, _ in pairs(source) do\r\n local update = updates[key]\r\n if update~=nil then\r\n source[key] = update\r\n end\r\n end\r\nend\r\n\r\n---@param instruction TTSObject\r\n---@param initialization_state any\r\n---@param arguments string[]\r\n---@return ArkhamImport_CommandManager_InitializationResults|nil\r\nlocal function run_instruction(instruction, initialization_state, arguments)\r\n ---@type ArkhamImport_Command_DescriptionInstructionResults\r\n local result = instruction:call(\"do_instruction\", {\r\n configuration = initialization_state.configuration,\r\n command_state = initialization_state.command_state,\r\n arguments = arguments\r\n })\r\n\r\n if (not result) or type(result)~=\"table\" then\r\n return build_error(initialization_state.configuration, table.concat({\"Command \\\"\", instruction:getName(), \"\\\" did not return a table from do_instruction call. Type \\\"\", type(result), \"\\\" was returned.\"}))\r\n end\r\n\r\n if not result.is_successful then\r\n return build_error(result.configuration, result.error_message)\r\n end\r\n\r\n merge_tables(initialization_state, result)\r\nend\r\n\r\n---@param description string\r\n---@param initialization_state table\r\n---@return ArkhamImport_CommandManager_InitializationResults|nil\r\nlocal function initialize_instructions(description, initialization_state)\r\n for _, instruction in ipairs(parse(description)) do\r\n local command = commands[instruction.command]\r\n\r\n if command==nil then\r\n return build_error(initialization_state.configuration, table.concat({ \"Could not find command \\\"\", command, \"\\\".\"}))\r\n end\r\n\r\n found_commands[instruction.command] = true\r\n\r\n if command.runOn.instructions then\r\n local error = run_instruction(command.object, initialization_state, instruction.arguments)\r\n if error then return error end\r\n end\r\n end\r\nend\r\n\r\n---@param parameters ArkhamImport_CommandManager_InitializationArguments\r\n---@return table\r\nlocal function create_initialize_state(parameters)\r\n return {\r\n configuration = parameters.configuration,\r\n command_state = {}\r\n }\r\nend\r\n\r\n---@param parameters ArkhamImport_CommandManager_InitializationArguments\r\n---@return ArkhamImport_CommandManager_InitializationResults\r\nfunction initialize(parameters)\r\n found_commands = {}\r\n load_commands()\r\n\r\n local initialization_state = create_initialize_state(parameters)\r\n\r\n local error = initialize_instructions(parameters.description, initialization_state)\r\n if error then return error end\r\n\r\n command_state = initialization_state.command_state\r\n\r\n return {\r\n configuration = initialization_state.configuration,\r\n is_successful = true\r\n }\r\nend\r\n\r\n---@param parameters ArkhamImport_CommandManager_HandlerArguments\r\n---@return table\r\nlocal function create_handler_state(parameters)\r\n return {\r\n card = parameters.card,\r\n handled = false,\r\n zone = parameters.zone,\r\n command_state = command_state\r\n },\r\n {\r\n configuration = parameters.configuration,\r\n source_guid = parameters.source_guid\r\n }\r\nend\r\n\r\n---@param card ArkhamImportCard\r\n---@param zone = string[]\r\n---@param handled boolean\r\n---@param error_message string\r\n---@return ArkhamImport_CommandManager_HandlerResults\r\nlocal function create_handler_error(card, zone, handled, error_message)\r\n return {\r\n handled = handled,\r\n card = card,\r\n zone = zone,\r\n is_successful = false,\r\n error_message = error_message\r\n }\r\nend\r\n\r\n---@param handler TTSObject\r\n---@param handler_state table\r\n---@param handler_constants table\r\n---@return ArkhamImport_CommandManager_HandlerResults|nil\r\nlocal function call_handler(handler, handler_state, handler_constants)\r\n ---@type ArkhamImport_CommandManager_HandlerResults\r\n local results = handler:call(\"handle_card\", {\r\n configuration = handler_constants.configuration,\r\n source_guid = handler_constants.source_guid,\r\n card = handler_state.card,\r\n zone = handler_state.zone,\r\n command_state = handler_state.command_state,\r\n })\r\n\r\n if not results.is_successful then return create_handler_error(results.card, results.zone, results.handled, results.error_message) end\r\n\r\n merge_tables(handler_state, results)\r\n command_state = handler_state.command_state\r\nend\r\n\r\n---@param handler_state table\r\n---@param handler_constants table\r\n---@return ArkhamImport_CommandManager_HandlerResults|nil\r\nlocal function run_handlers(handler_state, handler_constants)\r\n for command_name, _ in pairs(found_commands) do\r\n local command = commands[command_name]\r\n if command.runOn.handlers then\r\n local error = call_handler(command.object, handler_state, handler_constants)\r\n if error then return error end\r\n\r\n if (handler_state.handled) then return end\r\n end\r\n end\r\nend\r\n\r\n---@param parameters ArkhamImport_CommandManager_HandlerArguments\r\n---@return ArkhamImport_CommandManager_HandlerResults\r\nfunction handle(parameters)\r\n local handler_state, handler_constants = create_handler_state(parameters)\r\n\r\n local error = run_handlers(handler_state, handler_constants)\r\n if error then return error end\r\n\r\n return {\r\n handled = handler_state.handled,\r\n card = handler_state.card,\r\n zone = handler_state.zone,\r\n is_successful = true\r\n }\r\nend\r\n\r\n---@param description string\r\n---@return ArkhamImportCommandParserResult[]\r\nfunction parse(description)\r\n local input = description\r\n\r\n if #input<=4 then return {} end\r\n\r\n ---@type string\r\n local current, l1, l2, l3 = \"\", \"\", \"\", \"\"\r\n\r\n local concat = table.concat\r\n\r\n local function advance()\r\n current, l1, l2, l3 = l1, l2, l3, input:sub(1,1)\r\n input = input:sub(2)\r\n end\r\n\r\n local function advance_all()\r\n current, l1, l2, l3 = input:sub(1,1), input:sub(2,2), input:sub(3,3), input:sub(4,4)\r\n input = input:sub(5)\r\n end\r\n\r\n advance_all()\r\n\r\n ---@type ArkhamImportCommandParserResult[]\r\n local results = {}\r\n\r\n ---@type string\r\n local command\r\n\r\n ---@type string[]\r\n local arguments = {}\r\n\r\n ---@type string\r\n local separator\r\n\r\n ---@type string[]\r\n local result = {}\r\n\r\n while #current>0 do\r\n if current==\"<\" and l1==\"?\" and l2 == \"?\" then\r\n command = nil\r\n arguments = {}\r\n separator = l3\r\n result = {}\r\n\r\n advance_all()\r\n elseif current == \"?\" and l1 == \"?\" and l2 == \">\" then\r\n if not command then\r\n table.insert(results, {\r\n command = concat(result),\r\n arguments = {}\r\n })\r\n else\r\n table.insert(arguments, concat(result))\r\n table.insert(results, {\r\n command = command,\r\n arguments = arguments\r\n })\r\n end\r\n\r\n separator = nil\r\n current, l1, l2, l3 = l3, input:sub(1,1), input:sub(2,2), input:sub(3,3)\r\n input = input:sub(4)\r\n elseif current == separator then\r\n if not command then\r\n command = concat(result)\r\n else\r\n table.insert(arguments, concat(result))\r\n end\r\n result = {}\r\n advance()\r\n else\r\n if separator~=nil then\r\n table.insert(result, current)\r\n end\r\n advance()\r\n end\r\n end\r\n\r\n return results\r\nend",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "f4b112",
"Name": "Checker_white",
"Transform": {
"posX": -52.34063,
"posY": 1.37334371,
"posZ": -72.20727,
"rotX": 359.983215,
"rotY": 359.978333,
"rotZ": 180.020828,
"scaleX": 0.35,
"scaleY": 0.35,
"scaleZ": 0.35
},
"Nickname": "Include Command",
"Description": "Arguments:\ncount\nname\nsubtitle\nimage_uri\nzone [Optional]\nback_image_uri [Optional]",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"import_command"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": true,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"LuaScript": "---\r\n--- Generated by EmmyLua(https://github.com/EmmyLua)\r\n--- Created by Whimsical.\r\n--- DateTime: 2021-08-30 5:05 p.m.\r\n---\r\n\r\ncommand_name = \"include\"\r\n\r\n---@type ArkhamImport_Command_RunDirectives\r\nrunOn = {\r\n instructions = true,\r\n handlers = true\r\n}\r\n\r\nlocal back_image_default = \"https://images-ext-2.discordapp.net/external/QY_dmo_UnAHEi1pgWwaRr1-HSB8AtrAv0W74Mh_Z6vg/https/i.imgur.com/EcbhVuh.jpg\"\r\n\r\n---@param parameters ArkhamImport_Command_DescriptionInstructionArguments\r\n---@return ArkhamImport_Command_DescriptionInstructionResults\r\nfunction do_instruction(parameters)\r\n local args = parameters.arguments\r\n local arg_count = #args\r\n\r\n if (arg_count<4 or arg_count>6) then\r\n return {\r\n is_successful = false,\r\n error_message = \"Include Command requires between 4 and 6 arguments. \" .. arg_count .. \" were provided.\"\r\n }\r\n end\r\n\r\n if not parameters.command_state[\"include-command\"] then\r\n parameters.command_state[\"include-command\"] = {\r\n has_run = false,\r\n includes = {},\r\n index = 1\r\n }\r\n end\r\n\r\n local index = parameters.command_state[\"include-command\"].index\r\n parameters.command_state[\"include-command\"].index = index + 1\r\n\r\n parameters.command_state[\"include-command\"].includes[index] = {\r\n count = args[1],\r\n name = args[2],\r\n subtitle = args[3],\r\n image_uri = args[4],\r\n zone = args[5] or \"default\",\r\n back_image_uri = args[6] or back_image_default\r\n }\r\n\r\n return { is_successful = true, command_state = parameters.command_state }\r\nend\r\n\r\n---@param parameters ArkhamImport_Command_HandlerArguments\r\n---@return ArkhamImport_Command_HandlerResults\r\nfunction handle_card(parameters)\r\n local state = parameters.command_state[\"include-command\"]\r\n\r\n if state.has_run then return { is_successful = true } end\r\n\r\n state.has_run = true\r\n\r\n local source = getObjectFromGUID(parameters.source_guid)\r\n local offset = 0.1\r\n\r\n for _, include in pairs(state.includes) do\r\n local zone_name = include.zone\r\n local zone = parameters.configuration.zones[zone_name]\r\n\r\n if not zone then\r\n return {\r\n is_successful = false,\r\n command_state = parameters.command_state,\r\n error_message = \"Include Card [\" .. include.name .. \"]: Zone \\\"\" .. tostring(zone_name) .. \"\\\" was not found.\"\r\n }\r\n end\r\n\r\n local position = zone.is_absolute and zone.position or source:positionToWorld(zone.position)\r\n\r\n for _=1, include.count do\r\n local new = spawnObject {\r\n type = \"CardCustom\",\r\n position = position + Vector(0, offset, 0),\r\n rotaiton = source:getRotation() + Vector(0, 0, zone.is_facedown and 180 or 0),\r\n ---@param card TTSObject\r\n callback_function = function (card)\r\n card:setName(include.name)\r\n card:setDescription(include.subtitle)\r\n end\r\n }\r\n\r\n new:setCustomObject {\r\n type = 0,\r\n face = include.image_uri,\r\n back = include.back_image_uri\r\n }\r\n offset = offset + 1\r\n end\r\n end\r\n\r\n return {\r\n handled = false, -- This is adding cards without respect to the deck content. So the card we're using to fire this command still needs proper handling\r\n command_state = parameters.command_state,\r\n is_successful = true\r\n }\r\nend",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "d932ff",
"Name": "Bag",
"Transform": {
"posX": 78.23339,
"posY": 1.06517017,
"posZ": 31.0749149,
"rotX": 0.0154570015,
"rotY": -2.515063E-05,
"rotZ": 359.989929,
"scaleX": 0.8750001,
"scaleY": 0.8750001,
"scaleZ": 0.8750001
},
"Nickname": "Metadata Helper",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.7058823,
"g": 0.366520882,
"b": 0.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": true,
"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,
"Bag": {
"Order": 0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "2c130f",
"Name": "Custom_Tile",
"Transform": {
"posX": 75.11412,
"posY": 3.35624385,
"posZ": -50.4374352,
"rotX": 359.8597,
"rotY": 180.029724,
"rotZ": 359.767822,
"scaleX": 2.25,
"scaleY": 1.0,
"scaleZ": 2.99246836
},
"Nickname": "Metadata Helper",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/dYBh01u.png",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "-- Bundled by luabundle {\"version\":\"1.6.0\"}\nlocal __bundle_require, __bundle_loaded, __bundle_register, __bundle_modules = (function(superRequire)\n\tlocal loadingPlaceholder = {[{}] = true}\n\n\tlocal register\n\tlocal modules = {}\n\n\tlocal require\n\tlocal loaded = {}\n\n\tregister = function(name, body)\n\t\tif not modules[name] then\n\t\t\tmodules[name] = body\n\t\tend\n\tend\n\n\trequire = function(name)\n\t\tlocal loadedModule = loaded[name]\n\n\t\tif loadedModule then\n\t\t\tif loadedModule == loadingPlaceholder then\n\t\t\t\treturn nil\n\t\t\tend\n\t\telse\n\t\t\tif not modules[name] then\n\t\t\t\tif not superRequire then\n\t\t\t\t\tlocal identifier = type(name) == 'string' and '\\\"' .. name .. '\\\"' or tostring(name)\n\t\t\t\t\terror('Tried to require ' .. identifier .. ', but no such module has been registered')\n\t\t\t\telse\n\t\t\t\t\treturn superRequire(name)\n\t\t\t\tend\n\t\t\tend\n\n\t\t\tloaded[name] = loadingPlaceholder\n\t\t\tloadedModule = modules[name](require, loaded, register, modules)\n\t\t\tloaded[name] = loadedModule\n\t\tend\n\n\t\treturn loadedModule\n\tend\n\n\treturn require, loaded, register, modules\nend)(nil)\n__bundle_register(\"__root\", function(require, _LOADED, __bundle_register, __bundle_modules)\nrequire(\"MassMetadataHelper\")\n\nend)\n__bundle_register(\"MassMetadataHelper\", function(require, _LOADED, __bundle_register, __bundle_modules)\nrequire(\"CardMetadata\")\r\n\r\nlocal tagTargetGuid = \"\"\r\nlocal verifyTargetGuid = \"\"\r\nlocal moveTargetGuid = \"\"\r\nlocal allCardsBagGuid = \"\"\r\n\r\nfunction allCardsGuidChanged(player, value)\r\n allCardsBagGuid = value\r\nend\r\n\r\nfunction moveTargetGuidChanged(player, value)\r\n moveTargetGuid = value\r\nend\r\n\r\nfunction verifyTargetGuidChanged(player, value)\r\n verifyTargetGuid = value\r\nend\r\n\r\nfunction tagTargetGuidChanged(player, value)\r\n tagTargetGuid = value\r\nend\r\n\r\n-- Starts the operation to tag cards identified by the Tag field GUID\r\nfunction tagCards()\r\n local tagTarget = getObjectFromGUID(tagTargetGuid)\r\n if (tagTarget.name == \"Card\") then\r\n tagSingleCard(tagTargetGuid)\r\n elseif (tagTarget.name == \"Bag\" or tagTarget.name == \"Deck\") then\r\n startLuaCoroutine(self, \"tagContainer\")\r\n else\r\n broadcastToAll(\"Tag GUID does not point to a card, deck, or bag\")\r\n return\r\n end\r\nend\r\n\r\n-- Matches a single card to the metadata entry, and sets the GM Notes field with\r\n-- the metadata. It then moves that card to either a good or bad pile, based\r\n-- on success\r\n-- Parameter targetGuid: GUID of the card to be tagged\r\nfunction tagSingleCard(targetGuid)\r\n local targetCard = getObjectFromGUID(targetGuid)\r\n local goodPosition = self.positionToWorld({3, 1, 0})\r\n local badPosition = self.positionToWorld({3, 1, -1})\r\n -- Try and match the metadata using both name and subname\r\n local name = targetCard.getName()..\"|\"\r\n if (targetCard.getDescription() ~= nil) then\r\n name = name..targetCard.getDescription()\r\n end\r\n -- If we miss name+subname, try and match based on just the name\r\n local cardJson = allCards[name]\r\n if (cardJson == nil) then\r\n name = targetCard.getName()..\"|\"\r\n end\r\n cardJson = allCards[name]\r\n -- If we still don't hit it, try and match based on ArkhamID. This will\r\n -- only work to update cards that already have metadata but will be handy\r\n -- for cards with special characters, which otherwise fail the lookup\r\n if (cardJson == nil and targetCard.getGMNotes() ~= nil) then\r\n local metadata = JSON.decode(targetCard.getGMNotes())\r\n if (metadata ~= nil and metadata.id ~= nil) then\r\n cardJson = allCards[metadata.id]\r\n end\r\n end\r\n if (cardJson == nil) then\r\n log(\"Could not find data for \"..name);\r\n targetCard.setPosition(badPosition)\r\n else\r\n targetCard.setGMNotes(cardJson)\r\n targetCard.setPosition(goodPosition)\r\n end\r\nend\r\n\r\n-- Coroutine to tag all cards in a given container. Since we can't pass\r\n-- parameters to a coroutine, uses the value in tagTargetGuid to find the\r\n-- container to be tagged. All cards will be tagged and moved to either the\r\n-- good or bad piles based on success.\r\nfunction tagContainer()\r\n local tagTarget = getObjectFromGUID(tagTargetGuid)\r\n local tempPosition = Vector(20, 1, 0)\r\n local cardsProcessed = 0\r\n local isDeck = false\r\n local deckPosition\r\n if (tagTarget.name == \"Deck\") then\r\n isDeck = true\r\n deckPosition = Vector(tagTarget.getPosition().x, 0, tagTarget.getPosition().z)\r\n end\r\n while (tagTarget.getQuantity() > 0) do\r\n local takenCard = tagTarget.takeObject({\r\n position = tempPosition,\r\n })\r\n tagSingleCard(takenCard.getGUID())\r\n coroutine.yield(0)\r\n end\r\n -- If the container is a deck it destroys itself once there's only a single\r\n -- card left. Check the position of the deck to find the card and tag it\r\n -- as well\r\n if (isDeck) then\r\n -- Have to let the second-to-last card in the deck get out of the way so the\r\n -- position check won't hit it\r\n Wait.frames(function()\r\n local everything = getAllObjects()\r\n for _, object in ipairs(everything) do\r\n if (object.name == \"Card\") then\r\n local objPosition = Vector(object.getPosition().x, 0, object.getPosition().z)\r\n if (deckPosition:distance(objPosition) < 0.1) then\r\n tagSingleCard(object.getGUID())\r\n return 1\r\n end\r\n end\r\n end\r\n end, 90)\r\n end\r\n\r\n return 1\r\nend\r\n\r\n-- Starts the verification process for a given GUID\r\nfunction verifyCards()\r\n local verifyTarget = getObjectFromGUID(verifyTargetGuid)\r\n if (verifyTarget.name == \"Card\") then\r\n verifySingleCard()\r\n elseif (verifyTarget.name == \"Bag\" or verifyTarget.name == \"Deck\") then\r\n startLuaCoroutine(self, \"verifyContainer\")\r\n else\r\n log(\"Verification target GUID does not point to a card, deck, or bag\")\r\n return\r\n end\r\nend\r\n\r\n-- Verifies the correctness of a single card using the current value of\r\n-- verifyTargetGuid. Verification will parse the JSON metadata from the card's\r\n-- GM Notes field, and check that it has an ID\r\nfunction verifySingleCard()\r\n local verifyTarget = getObjectFromGUID(verifyTargetGuid)\r\n if (verifyTarget.getGMNotes() == nil or verifyTarget.getGMNotes() == \"\") then\r\n log(verifyTarget.getName()..\" has no metadata\")\r\n else\r\n local metadata = JSON.decode(verifyTarget.getGMNotes())\r\n if (metadata.id == nil or metadata.id == \"\") then\r\n log(verifyTarget.getName()..\" has no ID set, probable bad metadata\")\r\n end\r\n end\r\n log(verifyTarget.getName()..\" has proper metadata\")\r\nend\r\n\r\n-- Verify all cards in a bag or deck. The verification logic is the same, but\r\n-- since we're doing it based on the container data rather than the card itself\r\n-- the implementation does not leverage verifySingleCard\r\nfunction verifyContainer()\r\n local verifyTarget = getObjectFromGUID(verifyTargetGuid)\r\n log(verifyTarget)\r\n local checkCount = 0\r\n local failCount = 0\r\n for _, cardData in ipairs(verifyTarget.getData().ContainedObjects) do\r\n local cardName = cardData.Nickname\r\n log(\"Checking \"..cardName)\r\n if (cardData.GMNotes == nil or cardData.GMNotes == \"\") then\r\n log(cardName..\" has no metadata\")\r\n failCount = failCount + 1\r\n else\r\n local metadata = JSON.decode(cardData.GMNotes)\r\n if (metadata.id == nil or metadata.id == \"\") then\r\n log(cardName..\" has no ID set, probable bad metadata\")\r\n failCount = failCount + 1\r\n end\r\n end\r\n checkCount = checkCount + 1\r\n coroutine.yield(0)\r\n end\r\n log(\"Finished checking \"..checkCount..\" cards, \"..failCount..\" card(s) had problems\")\r\n return 1\r\nend\r\n\r\n-- Starts the process to move all cards from one container to another\r\nfunction moveToAllCardsBag()\r\n startLuaCoroutine(self, \"moveCardsToBag\")\r\nend\r\n\r\n-- Coroutine to move all cards from one container to another. The target will\r\n-- generally be the All Cards Bag, but the allCardsBagGuid could point to any\r\n-- container. Since we can't pass parameters to a coroutine, uses the values\r\n-- stored in moveTargetGuid and allCardsBagGuid.\r\nfunction moveCardsToBag()\r\n local allCardsBag = getObjectFromGUID(allCardsBagGuid)\r\n local moveFrom = getObjectFromGUID(moveTargetGuid)\r\n local isDeck = false\r\n local deckPosition\r\n if (moveFrom.name == \"Deck\") then\r\n isDeck = true\r\n deckPosition = Vector(moveFrom.getPosition().x, 0, moveFrom.getPosition().z)\r\n end\r\n while (moveFrom.getQuantity() > 0) do\r\n allCardsBag.putObject(moveFrom.takeObject());\r\n coroutine.yield(0)\r\n end\r\n -- If the container is a deck it destroys itself once there's only a single\r\n -- card left. Check the position of the deck to find the card and move it\r\n -- as well\r\n if (isDeck) then\r\n -- Have to let the second-to-last card in the deck get out of the way so the\r\n -- position check won't hit it\r\n Wait.frames(function()\r\n local everything = getAllObjects()\r\n for _, object in ipairs(everything) do\r\n if (object.name == \"Card\") then\r\n local objPosition = Vector(object.getPosition().x, 0, object.getPosition().z)\r\n\r\n if (deckPosition:distance(objPosition) < 0.3) then\r\n allCardsBag.putObject(object)\r\n return 1\r\n end\r\n end\r\n end\r\n end, 90)\r\n end\r\n return 1\r\nend\r\n\nend)\n__bundle_register(\"CardMetadata\", function(require, _LOADED, __bundle_register, __bundle_modules)\nallCards = { }\n\nallCards[\"Daniela Reyes|The Mechanic\"] = [[{\n \"id\": \"08001\",\n \"type\": \"Investigator\",\n \"class\": \"Guardian\",\n \"traits\": \"Entrepeneur.\"\n}]]\nallCards[\"Daniela Reyes (promo version)|The Mechanic\"] = [[{\n \"id\": \"08001-promo\",\n \"type\": \"Investigator\",\n \"class\": \"Guardian\",\n \"traits\": \"Entrepeneur.\"\n}]]\nallCards[\"Daniela Reyes (Parallel)|The Mechanic\"] = [[{\n \"id\": \"08001-p\",\n \"type\": \"Investigator\",\n \"class\": \"Guardian\",\n \"traits\": \"Entrepeneur.\"\n}]]\nallCards[\"Daniela Reyes (Parallel Front)|The Mechanic\"] = [[{\n \"id\": \"08001-pf\",\n \"type\": \"Investigator\",\n \"class\": \"Guardian\",\n \"traits\": \"Entrepeneur.\"\n}]]\nallCards[\"Daniela Reyes (Parallel Back)|The Mechanic\"] = [[{\n \"id\": \"08001-pb\",\n \"type\": \"Investigator\",\n \"class\": \"Guardian\",\n \"traits\": \"Entrepeneur.\"\n}]]\nallCards[\"Daniela Reyes|\"] = [[{\n \"id\": \"08001-m\",\n \"type\": \"Minicard\"\n}]]\nallCards[\"Daniela Reyes|Promo version\"] = [[{\n \"id\": \"08001-promo-m\",\n \"type\": \"Minicard\"\n}]]\nallCards[\"Mechanic's Wrench|\"] = [[{\n \"id\": \"08002\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Tool. Melee.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\nallCards[\"Mob Goons|\"] = [[{\n \"id\": \"08003\",\n \"type\": \"Enemy\",\n \"traits\": \"Humanoid. Criminal.\",\n \"class\": \"Neutral\",\n \"permanent\": false,\n \"weakness\": true\n}]]\nallCards[\"Norman Withers|The Astronomer\"] = [[{\n \"id\": \"08004\",\n \"alternate_ids\": [ \"98007\" ],\n \"type\": \"Investigator\",\n \"class\": \"Seeker\",\n \"traits\": \"Miskatonic.\"\n}]]\nallCards[\"Norman Withers (promo version)|The Astronomer\"] = [[{\n \"id\": \"08004-promo\",\n \"alternate_ids\": [ \"98007-promo\" ],\n \"type\": \"Investigator\",\n \"class\": \"Seeker\",\n \"traits\": \"Miskatonic.\"\n}]]\nallCards[\"Norman Withers (Parallel)|The Astronomer\"] = [[{\n \"id\": \"08004-p\",\n \"type\": \"Investigator\",\n \"class\": \"Seeker\",\n \"traits\": \"Miskatonic.\"\n}]]\nallCards[\"Norman Withers (Parallel Front)|The Astronomer\"] = [[{\n \"id\": \"08004-pf\",\n \"type\": \"Investigator\",\n \"class\": \"Seeker\",\n \"traits\": \"Miskatonic.\"\n}]]\nallCards[\"Norman Withers (Parallel Back)|The Astronomer\"] = [[{\n \"id\": \"08004-pb\",\n \"type\": \"Investigator\",\n \"class\": \"Seeker\",\n \"traits\": \"Miskatonic.\"\n}]]\nallCards[\"Norman Withers|\"] = [[{\n \"id\": \"08004-m\",\n \"alternate_ids\": [ \"98007-m\" ],\n \"type\": \"Minicard\"\n}]]\nallCards[\"Norman Withers|Promo version\"] = [[{\n \"id\": \"08004-promo-m\",\n \"alternate_ids\": [ \"98007-promo-m\" ],\n \"type\": \"Minicard\"\n}]]\nallCards[\"Livre d'Eibon|Hyperborean Grimoire\"] = [[{\n \"id\": \"08005\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Relic. Tome.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\nallCards[\"Livre d'Eibon|\"] = [[{\n \"id\": \"08005\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Relic. Tome.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\nallCards[\"The Harbinger|\"] = [[{\n \"id\": \"08006\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Omen. Endtimes.\",\n \"permanent\": false,\n \"weakness\": true\n}]]\nallCards[\"Monterey Jack|The Archaeologist\"] = [[{\n \"id\": \"08007\",\n \"type\": \"Investigator\",\n \"class\": \"Rogue\",\n \"traits\": \"Wayfarer.\"\n}]]\nallCards[\"Monterey Jack (promo version)|The Archaeologist\"] = [[{\n \"id\": \"08007-promo\",\n \"type\": \"Investigator\",\n \"class\": \"Rogue\",\n \"traits\": \"Wayfarer.\"\n}]]\nallCards[\"Monterey Jack (Parallel)|The Archaeologist\"] = [[{\n \"id\": \"08007-p\",\n \"type\": \"Investigator\",\n \"class\": \"Rogue\",\n \"traits\": \"Wayfarer.\"\n}]]\nallCards[\"Monterey Jack (Parallel Front)|The Archaeologist\"] = [[{\n \"id\": \"08007-pf\",\n \"type\": \"Investigator\",\n \"class\": \"Rogue\",\n \"traits\": \"Wayfarer.\"\n}]]\nallCards[\"Monterey Jack (Parallel Back)|The Archaeologist\"] = [[{\n \"id\": \"08007-pb\",\n \"type\": \"Investigator\",\n \"class\": \"Rogue\",\n \"traits\": \"Wayfarer.\"\n}]]\nallCards[\"Monterey Jack|\"] = [[{\n \"id\": \"08007-m\",\n \"type\": \"Minicard\"\n}]]\nallCards[\"Monterey Jack|Promo version\"] = [[{\n \"id\": \"08007-promo-m\",\n \"type\": \"Minicard\"\n}]]\nallCards[\"Trusty Bullwhip|\"] = [[{\n \"id\": \"08008\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Weapon. Melee.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\nallCards[\"Buried Secrets|\"] = [[{\n \"id\": \"08009\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Mystery.\",\n \"permanent\": false,\n \"weakness\": true\n}]]\nallCards[\"Lily Chen|The Martial Artist\"] = [[{\n \"id\": \"08010\",\n \"type\": \"Investigator\",\n \"class\": \"Mystic\",\n \"traits\": \"Chosen. Warden.\"\n}]]\nallCards[\"Lily Chen (promo version)|The Martial Artist\"] = [[{\n \"id\": \"08010-promo\",\n \"type\": \"Investigator\",\n \"class\": \"Mystic\",\n \"traits\": \"Chosen. Warden.\"\n}]]\nallCards[\"Lily Chen (Parallel)|The Martial Artist\"] = [[{\n \"id\": \"08010-p\",\n \"type\": \"Investigator\",\n \"class\": \"Mystic\",\n \"traits\": \"Chosen. Warden.\"\n}]]\nallCards[\"Lily Chen (Parallel Front)|The Martial Artist\"] = [[{\n \"id\": \"08010-pf\",\n \"type\": \"Investigator\",\n \"class\": \"Mystic\",\n \"traits\": \"Chosen. Warden.\"\n}]]\nallCards[\"Lily Chen (Parallel Back)|The Martial Artist\"] = [[{\n \"id\": \"08010-pb\",\n \"type\": \"Investigator\",\n \"class\": \"Mystic\",\n \"traits\": \"Chosen. Warden.\"\n}]]\nallCards[\"Lily Chen|\"] = [[{\n \"id\": \"08010-m\",\n \"type\": \"Minicard\"\n}]]\nallCards[\"Lily Chen|Promo version\"] = [[{\n \"id\": \"08010-promo-m\",\n \"type\": \"Minicard\"\n}]]\nallCards[\"Discipline|Alignment of Spirit\"] = [[{\n \"id\": \"08011a\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Unbroken.\",\n \"permanent\": true,\n \"weakness\": false\n}]]\nallCards[\"Discipline|Quiescence of Thought\"] = [[{\n \"id\": \"08012a\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Unbroken.\",\n \"permanent\": true,\n \"weakness\": false\n}]]\nallCards[\"Discipline|Prescience of Fate\"] = [[{\n \"id\": \"08013a\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Unbroken.\",\n \"permanent\": true,\n \"weakness\": false\n}]]\nallCards[\"Discipline|Balance of Body\"] = [[{\n \"id\": \"08014a\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Unbroken.\",\n \"permanent\": true,\n \"weakness\": false\n}]]\nallCards[\"Burden of Destiny|\"] = [[{\n \"id\": \"08015\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Flaw.\",\n \"permanent\": false,\n \"weakness\": true\n}]]\nallCards[\"Bob Jenkins|The Salesman\"] = [[{\n \"id\": \"08016\",\n \"type\": \"Investigator\",\n \"class\": \"Survivor\",\n \"traits\": \"Entrepeneur.\"\n}]]\nallCards[\"Bob Jenkins (promo version)|The Salesman\"] = [[{\n \"id\": \"08016-promo\",\n \"type\": \"Investigator\",\n \"class\": \"Survivor\",\n \"traits\": \"Entrepeneur.\"\n}]]\nallCards[\"Bob Jenkins (Parallel)|The Salesman\"] = [[{\n \"id\": \"08016-p\",\n \"type\": \"Investigator\",\n \"class\": \"Survivor\",\n \"traits\": \"Entrepeneur.\"\n}]]\nallCards[\"Bob Jenkins (Parallel Front)|The Salesman\"] = [[{\n \"id\": \"08016-pf\",\n \"type\": \"Investigator\",\n \"class\": \"Survivor\",\n \"traits\": \"Entrepeneur.\"\n}]]\nallCards[\"Bob Jenkins (Parallel Back)|The Salesman\"] = [[{\n \"id\": \"08016-pb\",\n \"type\": \"Investigator\",\n \"class\": \"Survivor\",\n \"traits\": \"Entrepeneur.\"\n}]]\nallCards[\"Bob Jenkins|\"] = [[{\n \"id\": \"08016-m\",\n \"type\": \"Minicard\"\n}]]\nallCards[\"Bob Jenkins|Promo version\"] = [[{\n \"id\": \"08016-promo-m\",\n \"type\": \"Minicard\"\n}]]\nallCards[\"Shrewd Dealings|\"] = [[{\n \"id\": \"08017\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Talent.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\nallCards[\"Greed|\"] = [[{\n \"id\": \"08018\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Flaw.\",\n \"permanent\": false,\n \"weakness\": true\n}]]\nallCards[\"Geared Up\"] = [[{\n \"id\": \"08019\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"level\": 0,\n \"traits\": \"Talent.\",\n \"permanent\": true,\n \"weakness\": false\n}]]\nallCards[\"Toe to Toe|\"] = [[{\n \"id\": \"08020\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"level\": 0,\n \"traits\": \"Spirit. Tactic.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\nallCards[\"\\\"Get behind me!\\\"|\"] = [[{\n \"id\": \"08021\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"level\": 0,\n \"traits\": \"Spirit. Tactic.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\nallCards[\"Gang Up (1)|\"] = [[{\n \"id\": \"08022\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"level\": 1,\n \"traits\": \"Spirit. Synergy.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\nallCards[\"Sweeping Kick (1)|\"] = [[{\n \"id\": \"08023\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"level\": 1,\n \"traits\": \"Spirit. Tactic. Trick.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\nallCards[\"Defensive Stance (1)|\"] = [[{\n \"id\": \"08024\",\n \"type\": \"Skill\",\n \"class\": \"Guardian\",\n \"level\": 1,\n \"traits\": \"Practiced. Expert.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\nallCards[\"Butterfly Swords (2)|\"] = [[{\n \"id\": \"08025\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"level\": 2,\n \"traits\": \"Item. Weapon. Melee.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\nallCards[\"Dodge (2)|\"] = [[{\n \"id\": \"08026\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"level\": 2,\n \"traits\": \"Tactic.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\nallCards[\"Combat Training (3)|\"] = [[{\n \"id\": \"08027\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"level\": 3,\n \"traits\": \"Talent. Composure.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\nallCards[\"On the Hunt (3)|\"] = [[{\n \"id\": \"08028\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"level\": 3,\n \"traits\": \"Tactic.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\nallCards[\"Fang of Tyr'thrha (4)|\"] = [[{\n \"id\": \"08029\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"level\": 4,\n \"traits\": \"Spell.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\nallCards[\"Butterfly Swords (5)|\"] = [[{\n \"id\": \"08030\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"level\": 5,\n \"traits\": \"Item. Weapon. Melee.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\nallCards[\"Forced Learning|\"] = [[{\n \"id\": \"08031\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"level\": 0,\n \"traits\": \"Talent. Ritual..\",\n \"permanent\": true,\n \"weakness\": false\n}]]\nallCards[\"Jeremiah Kirby|Arctic Archaeologist\"] = [[{\n \"id\": \"08032\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"level\": 0,\n \"traits\": \"Ally. Miskatonic. Wayfarer.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\nallCards[\"Jeremiah Kirby|\"] = [[{\n \"id\": \"08032\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"level\": 0,\n \"traits\": \"Ally. Miskatonic. Wayfarer.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\nallCards[\"Archive of Conduits|\"] = [[{\n \"id\": \"08033\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"level\": 0,\n \"traits\": \"Item. Tome. Occult.\",\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Leyline\",\n \"count\": 4\n }\n}]]\nallCards[\"Written in the Stars|\"] = [[{\n \"id\": \"08034\",\n \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"level\": 0,\n \"traits\": \"Insight.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\nallCards[\"Hiking Boots (1)|\"] = [[{\n \"id\": \"08035\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"level\": 1,\n \"traits\": \"Item. Clothing. Footwear.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\nallCards[\"Join the Caravan (1)|\"] = [[{\n \"id\": \"08036\",\n \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"level\": 1,\n \"traits\": \"Insight. Synergy.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\nallCards[\"Survey the Area (1)|\"] = [[{\n \"id\": \"08037\",\n \"type\": \"Skill\",\n \"class\": \"Seeker\",\n \"level\": 1,\n \"traits\": \"Practiced. Expert.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\nallCards[\"Medical Texts (2)|\"] = [[{\n \"id\": \"08038\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"level\": 2,\n \"traits\": \"Item. Tome.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\nallCards[\"Unearth the Ancients (2)|\"] = [[{\n \"id\": \"08039\",\n \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"level\": 2,\n \"traits\": \"Insight.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\nallCards[\"Scientific Theory (3)\"] = [[{\n \"id\": \"08040\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"level\": 3,\n \"traits\": \"Talent. Composure.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\nallCards[\"Archive of Conduits (4)|Gateway to Tindalos\"] = [[{\n \"id\": \"08041\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"level\": 4,\n \"traits\": \"Ritual.\",\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Leyline\",\n \"count\": 4\n }\n}]]\nallCards[\"Archive of Conduits (4)|Gateway to Acheron\"] = [[{\n \"id\": \"08042\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"level\": 4,\n \"traits\": \"Ritual.\",\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Leyline\",\n \"count\": 4\n }\n}]]\nallCards[\"Archive of Conduits (4)|Gateway to Aldebaran\"] = [[{\n \"id\": \"08043\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"level\": 4,\n \"traits\": \"Ritual.\",\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Leyline\",\n \"count\": 4\n }\n}]]\nallCards[\"Archive of Conduits (4)|Gateway to Paradise\"] = [[{\n \"id\": \"08044\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"level\": 4,\n \"traits\": \"Ritual.\",\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Leyline\",\n \"count\": 4\n }\n}]]\nallCards[\"Prophesiae Profana (5)|Atlas of the Unknowable\"] = [[{\n \"id\": \"08045\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"level\": 5,\n \"permanent\": false,\n \"weakness\": false\n}]]\nallCards[\"Prophesiae Profana (5)|\"] = [[{\n \"id\": \"08045\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"level\": 5,\n \"traits\": \"Item. Relic. Tome.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\nallCards[\"Underworld Support|\"] = [[{\n \"id\": \"08046\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Favor. Illicit.\",\n \"level\": 0,\n \"permanent\": true,\n \"weakness\": false\n}]]\nallCards[\"Scout Ahead|\"] = [[{\n \"id\": \"08047\",\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"level\": 0,\n \"traits\": \"Insight. Trick.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\nallCards[\"21 or Bust|\"] = [[{\n \"id\": \"08048\",\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"traits\": \"Fortune. Gambit.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\nallCards[\"Counterespionage (1)|\"] = [[{\n \"id\": \"08049\",\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"level\": 1,\n \"traits\": \"Favor. Service.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\nallCards[\"Cheat the System (1)|\"] = [[{\n \"id\": \"08050\",\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"level\": 1,\n \"traits\": \"Trick. Synergy.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\nallCards[\"Untimely Transaction (1)|\"] = [[{\n \"id\": \"08051\",\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"level\": 1,\n \"traits\": \"Favor.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\nallCards[\"Savant (1)|\"] = [[{\n \"id\": \"08052\",\n \"type\": \"Skill\",\n \"class\": \"Rogue\",\n \"level\": 1,\n \"traits\": \"Innate. Developed.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\nallCards[\"The Red Clock (2)|Broken but Reliable\"] = [[{\n \"id\": \"08053\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"level\": 2,\n \"traits\": \"Item. Relic.\",\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Charge\",\n \"count\": 0\n }\n}]]\nallCards[\"The Red Clock (2)|\"] = [[{\n \"id\": \"08053\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"level\": 2,\n \"traits\": \"Item. Relic.\",\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Charge\",\n \"count\": 0\n }\n}]]\nallCards[\"Money Talks (2)|\"] = [[{\n \"id\": \"08054\",\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"level\": 2,\n \"traits\": \"Favor. Gambit.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\nallCards[\"Black Market (2)|\"] = [[{\n \"id\": \"08055\",\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"level\": 2,\n \"traits\": \"Favor.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\nallCards[\"Moxie (3)|\"] = [[{\n \"id\": \"08056\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"level\": 3,\n \"traits\": \"Talent. Composure.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\nallCards[\"The Black Fan (3)|\"] = [[{\n \"id\": \"08057\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"level\": 3,\n \"traits\": \"Item. Relic.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\nallCards[\"The Red Clock (5)|Broken but Reliable\"] = [[{\n \"id\": \"08058\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"level\": 5,\n \"traits\": \"Item. Relic.\",\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Charge\",\n \"count\": 0\n }\n}]]\nallCards[\"The Red Clock (5)|\"] = [[{\n \"id\": \"08058\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"level\": 5,\n \"traits\": \"Item. Relic.\",\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Charge\",\n \"count\": 0\n }\n}]]\nallCards[\"Down the Rabbit Hole|\"] = [[{\n \"id\": \"08059\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"level\": 0,\n \"traits\": \"Talent.\",\n \"permanent\": true,\n \"weakness\": false\n}]]\nallCards[\"Dragon Pole|\"] = [[{\n \"id\": \"08060\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"level\": 0,\n \"traits\": \"Item. Weapon. Melee.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\nallCards[\"Meditative Trance|\"] = [[{\n \"id\": \"08060\",\n \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"level\": 0,\n \"traits\": \"Insight. Spirit.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\nallCards[\"Close the Circle (1)|\"] = [[{\n \"id\": \"08062\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"level\": 1,\n \"traits\": \"Ritual. Synergy.\",\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Charge\",\n \"count\": 1\n }\n}]]\nallCards[\"Winds of Power (1)|\"] = [[{\n \"id\": \"08063\",\n \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"level\": 1,\n \"traits\": \"Spirit.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\nallCards[\"Foresight (1)|\"] = [[{\n \"id\": \"08064\",\n \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"level\": 1,\n \"traits\": \"Augury.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\nallCards[\"Occult Theory (1)|\"] = [[{\n \"id\": \"08065\",\n \"type\": \"Skill\",\n \"class\": \"Mystic\",\n \"level\": 1,\n \"traits\": \"Practiced. Expert.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\nallCards[\"Parallel Fates (2)|\"] = [[{\n \"id\": \"08066\",\n \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"level\": 2,\n \"traits\": \"Augury.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\nallCards[\"Astronomical Atlas (3)|\"] = [[{\n \"id\": \"08067\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"level\": 3,\n \"traits\": \"Item. Tome.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\nallCards[\"Healing Words (3)|\"] = [[{\n \"id\": \"08068\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"level\": 3,\n \"traits\": \"Spell.\",\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Charge\",\n \"count\": 4\n }\n}]]\nallCards[\"Grounded (3)|\"] = [[{\n \"id\": \"08069\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"level\": 3,\n \"traits\": \"Talent. Composure.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\nallCards[\"True Magick (5)|\"] = [[{\n \"id\": \"08070\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"level\": 5,\n \"traits\": \"Item. Relic. Tome.\",\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Charge\",\n \"count\": 1\n }\n}]]\nallCards[\"Short Supply|\"] = [[{\n \"id\": \"08071\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"level\": 0,\n \"traits\": \"Talent.\",\n \"permanent\": true,\n \"weakness\": false\n}]]\nallCards[\"Schoffner's Catalogue|\"] = [[{\n \"id\": \"08072\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"level\": 0,\n \"traits\": \"Item. Tome.\",\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Secret\",\n \"count\": 5\n }\n}]]\nallCards[\"Bandages|\"] = [[{\n \"id\": \"08073\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"level\": 0,\n \"traits\": \"Item.\",\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Supply\",\n \"count\": 3\n }\n}]]\nallCards[\"Jury-Rig|\"] = [[{\n \"id\": \"08074\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"level\": 0,\n \"traits\": \"Upgrade.\",\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Durability\",\n \"count\": 1\n }\n}]]\nallCards[\"Bangle of Jinxes (1)|\"] = [[{\n \"id\": \"08075\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"level\": 1,\n \"traits\": \"Item. Charm. Cursed.\",\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Charge\",\n \"count\": 1\n }\n}]]\nallCards[\"Burn After Reading (1)|\"] = [[{\n \"id\": \"08076\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"level\": 1,\n \"traits\": \"Insight.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\nallCards[\"Strength in Numbers (1)|\"] = [[{\n \"id\": \"08077\",\n \"type\": \"Skill\",\n \"class\": \"Survivor\",\n \"level\": 1,\n \"traits\": \"Innate. Synergy.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\nallCards[\"Dauntless Spirit (1)|\"] = [[{\n \"id\": \"08078\",\n \"type\": \"Skill\",\n \"class\": \"Survivor\",\n \"level\": 1,\n \"traits\": \"Innate. Developed.\",\n \"weakness\": false\n}]]\nallCards[\"Blood Will Have Blood (2)|\"] = [[{\n \"id\": \"08079\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"level\": 2,\n \"traits\": \"Pact. Cursed.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\nallCards[\"Fire Extinguisher (3)|\"] = [[{\n \"id\": \"08080\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"level\": 3,\n \"traits\": \"Item. Tool. Melee.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\nallCards[\"Plucky (3)|\"] = [[{\n \"id\": \"08081\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"level\": 3,\n \"traits\": \"Talent. Composure.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\nallCards[\"Fend Off (3)|\"] = [[{\n \"id\": \"08082\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"level\": 3,\n \"traits\": \"Gambit. Trick.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\nallCards[\"Medical Student|\"] = [[{\n \"id\": \"08083\",\n \"type\": \"Asset\",\n \"class\": \"Guardian|Seeker\",\n \"level\": 0,\n \"traits\": \"Ally. Miskatonic. Science.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\nallCards[\"On the Trail (1)|\"] = [[{\n \"id\": \"08084\",\n \"type\": \"Asset\",\n \"class\": \"Guardian|Seeker\",\n \"level\": 1,\n \"traits\": \"Insight. Tactic.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\nallCards[\"On the Trail (3)|\"] = [[{\n \"id\": \"08085\",\n \"type\": \"Event\",\n \"class\": \"Guardian|Seeker\",\n \"level\": 3,\n \"traits\": \"Insight. Tactic.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\nallCards[\"Michael Leigh (5)|Experienced Hunter\"] = [[{\n \"id\": \"08086\",\n \"type\": \"Asset\",\n \"class\": \"Guardian|Seeker\",\n \"level\": 5,\n \"traits\": \"Ally. Detective.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\nallCards[\"Michael Leigh (5)|\"] = [[{\n \"id\": \"08086\",\n \"type\": \"Asset\",\n \"class\": \"Guardian|Seeker\",\n \"level\": 5,\n \"traits\": \"Ally. Detective.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\nallCards[\"Snipe (1)|\"] = [[{\n \"id\": \"08087\",\n \"type\": \"Event\",\n \"class\": \"Guardian|Rogue\",\n \"level\": 1,\n \"traits\": \"Tactic.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\nallCards[\"Old Shotgun (2)|\"] = [[{\n \"id\": \"08088\",\n \"type\": \"Asset\",\n \"class\": \"Guardian|Rogue\",\n \"level\": 2,\n \"traits\": \"Item. Weapon. Firearm..\",\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Ammo\",\n \"count\": 0\n }\n}]]\nallCards[\"Quickdraw Holster (4)|\"] = [[{\n \"id\": \"08089\",\n \"type\": \"Asset\",\n \"class\": \"Guardian|Rogue\",\n \"level\": 4,\n \"traits\": \"Item. Tool. Illicit.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\nallCards[\"Brand of Cthugha (1)|\"] = [[{\n \"id\": \"08090\",\n \"type\": \"Asset\",\n \"class\": \"Guardian|Mystic\",\n \"level\": 1,\n \"traits\": \"Spell.\",\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Charge\",\n \"count\": 6\n }\n}]]\nallCards[\"Nkosi Mabati (3)|Enigmatic Warlock\"] = [[{\n \"id\": \"08091\",\n \"type\": \"Asset\",\n \"class\": \"Guardian|Mystic\",\n \"level\": 3,\n \"traits\": \"Ally. Sorcerer.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\nallCards[\"Nkosi Mabati (3)|\"] = [[{\n \"id\": \"08091\",\n \"type\": \"Asset\",\n \"class\": \"Guardian|Mystic\",\n \"level\": 3,\n \"traits\": \"Ally. Sorcerer.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\nallCards[\"Brand of Cthugha (4)|\"] = [[{\n \"id\": \"08092\",\n \"type\": \"Asset\",\n \"class\": \"Guardian|Mystic\",\n \"level\": 4,\n \"traits\": \"Spell.\",\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Charge\",\n \"count\": 9\n }\n}]]\nallCards[\"Cyclopean Hammer (5)|\"] = [[{\n \"id\": \"08093\",\n \"type\": \"Asset\",\n \"class\": \"Guardian|Mystic\",\n \"level\": 5,\n \"traits\": \"Item. Relic. Weapon. Melee.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\nallCards[\"Sledgehammer|\"] = [[{\n \"id\": \"08094\",\n \"type\": \"Asset\",\n \"class\": \"Guardian|Survivor\",\n \"level\": 0,\n \"traits\": \"Item. Tool. Weapon. Melee.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\nallCards[\"Protective Gear (2)|\"] = [[{\n \"id\": \"08095\",\n \"type\": \"Asset\",\n \"class\": \"Guardian|Survivor\",\n \"level\": 2,\n \"traits\": \"Item. Armor.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\nallCards[\"Sledgehammer (4)|\"] = [[{\n \"id\": \"08096\",\n \"type\": \"Asset\",\n \"class\": \"Guardian|Survivor\",\n \"level\": 4,\n \"traits\": \"Item. Tool. Weapon. Melee.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\nallCards[\"Pocket Telescope|\"] = [[{\n \"id\": \"08097\",\n \"type\": \"Asset\",\n \"class\": \"Seeker/Rogue\",\n \"level\": 0,\n \"traits\": \"Item. Tool.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\nallCards[\"Eon Chart (1)|\"] = [[{\n \"id\": \"08098\",\n \"type\": \"Asset\",\n \"class\": \"Seeker/Rogue\",\n \"level\": 1,\n \"traits\": \"Item. Relic.\",\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Secret\",\n \"count\": 3\n }\n}]]\nallCards[\"Gené Beauregard (3)|\"] = [[{\n \"id\": \"08099\",\n \"type\": \"Asset\",\n \"class\": \"Seeker/Rogue\",\n \"level\": 3,\n \"traits\": \"Ally. Wayfarer.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\nallCards[\"Eon Chart (4)|\"] = [[{\n \"id\": \"08100\",\n \"type\": \"Asset\",\n \"class\": \"Seeker|Rogue\",\n \"level\": 4,\n \"traits\": \"Item. Relic.\",\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Secret\",\n \"count\": 3\n }\n}]]\nallCards[\"Divination (1)|\"] = [[{\n \"id\": \"08101\",\n \"type\": \"Asset\",\n \"class\": \"Seeker|Mystic\",\n \"level\": 1,\n \"traits\": \"Spell. Augury.\",\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Charge\",\n \"count\": 4\n }\n}]]\nallCards[\"Protecting the Anirniq (2)|\"] = [[{\n \"id\": \"08102\",\n \"type\": \"Asset\",\n \"class\": \"Seeker|Mystic\",\n \"level\": 2,\n \"traits\": \"Ritual.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\nallCards[\"Divination (4)|\"] = [[{\n \"id\": \"08103\",\n \"type\": \"Asset\",\n \"class\": \"Seeker|Mystic\",\n \"level\": 3,\n \"traits\": \"Spell. Augury.\",\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Charge\",\n \"count\": 6\n }\n}]]\nallCards[\"Professor William Webb|Finder of Hidden Connections\"] = [[{\n \"id\": \"08104\",\n \"type\": \"Asset\",\n \"class\": \"Seeker|Survivor\",\n \"level\": 0,\n \"traits\": \"Ally. Miskatonic.\",\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Secret\",\n \"count\": 3\n }\n}]]\nallCards[\"Professor William Webb|\"] = [[{\n \"id\": \"08104\",\n \"type\": \"Asset\",\n \"class\": \"Seeker|Survivor\",\n \"level\": 0,\n \"traits\": \"Ally. Miskatonic.\",\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Secret\",\n \"count\": 3\n }\n}]]\nallCards[\"Ice Pick (1)|\"] = [[{\n \"id\": \"08105\",\n \"type\": \"Asset\",\n \"class\": \"Seeker|Survivor\",\n \"level\": 1,\n \"traits\": \"Item. Tool. Melee.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\nallCards[\"Professor William Webb (2)|Finder of Hidden Connections\"] = [[{\n \"id\": \"08106\",\n \"type\": \"Asset\",\n \"class\": \"Seeker|Survivor\",\n \"level\": 2,\n \"traits\": \"Ally. Miskatonic.\",\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Secret\",\n \"count\": 3\n }\n}]]\nallCards[\"Professor William Webb (2)|\"] = [[{\n \"id\": \"08106\",\n \"type\": \"Asset\",\n \"class\": \"Seeker|Survivor\",\n \"level\": 2,\n \"traits\": \"Ally. Miskatonic.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\nallCards[\"Ice Pick (3)|\"] = [[{\n \"id\": \"08107\",\n \"type\": \"Asset\",\n \"class\": \"Seeker|Survivor\",\n \"level\": 3,\n \"traits\": \"Item. Tool. Melee.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\nallCards[\"Ethereal Slip|\"] = [[{\n \"id\": \"08108\",\n \"type\": \"Event\",\n \"class\": \"Seeker|Mystic\",\n \"level\": 0,\n \"traits\": \"Spell. Trick.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\nallCards[\"Blur (1)|\"] = [[{\n \"id\": \"08109\",\n \"type\": \"Asset\",\n \"class\": \"Rogue|Mystic\",\n \"level\": 1,\n \"traits\": \"Spell.\",\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Charge\",\n \"count\": 3\n }\n}]]\nallCards[\"Ethereal Slip (2)|\"] = [[{\n \"id\": \"08110\",\n \"type\": \"Event\",\n \"class\": \"Seeker|Mystic\",\n \"level\": 2,\n \"traits\": \"Spell. Trick.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\nallCards[\"Blur (4)|\"] = [[{\n \"id\": \"08111\",\n \"type\": \"Asset\",\n \"class\": \"Rogue|Mystic\",\n \"level\": 4,\n \"traits\": \"Spell.\",\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Charge\",\n \"count\": 4\n }\n}]]\nallCards[\"\\\"Hit Me!\\\"|\"] = [[{\n \"id\": \"08112\",\n \"type\": \"Event\",\n \"class\": \"Rogue/Mystic\",\n \"level\": 0,\n \"traits\": \"Fortune. Gambit.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\nallCards[\"Unscrupulous Loan (3)|\"] = [[{\n \"id\": \"08113\",\n \"type\": \"Asset\",\n \"class\": \"Rogue/Survivor\",\n \"level\": 3,\n \"traits\": \"Pact.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\nallCards[\"Precious Memento (4)|From a Former Life\"] = [[{\n \"id\": \"08114\",\n \"type\": \"Asset\",\n \"class\": \"Rogue/Survivor\",\n \"level\": 4,\n \"traits\": \"Item. Charm. Blessed.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\nallCards[\"Precious Memento (4)|From a Future Life\"] = [[{\n \"id\": \"08115\",\n \"type\": \"Asset\",\n \"class\": \"Rogue/Survivor\",\n \"level\": 4,\n \"traits\": \"Item. Charm. Blessed.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\nallCards[\"Talisman of Protection|\"] = [[{\n \"id\": \"08116\",\n \"type\": \"Asset\",\n \"class\": \"Mystic/Survivor\",\n \"level\": 0,\n \"traits\": \"Item. Charm.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\nallCards[\"Earthly Serenity (1)|\"] = [[{\n \"id\": \"08117\",\n \"type\": \"Asset\",\n \"class\": \"Mystic/Survivor\",\n \"level\": 1,\n \"traits\": \"Spell.\",\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Charge\",\n \"count\": 4\n }\n}]]\nallCards[\"Enchanted Bow (2)|\"] = [[{\n \"id\": \"08118\",\n \"type\": \"Asset\",\n \"class\": \"Mystic|Survivor\",\n \"level\": 2,\n \"traits\": \"Spell. Blessed. Weapon. Ranged.\",\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Charge\",\n \"count\": 3\n }\n}]]\nallCards[\"Earthly Serenity (4)|\"] = [[{\n \"id\": \"08119\",\n \"type\": \"Asset\",\n \"class\": \"Mystic/Survivor\",\n \"level\": 4,\n \"traits\": \"Spell.\",\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Charge\",\n \"count\": 6\n }\n}]]\nallCards[\"Prophetic (3)|\"] = [[{\n \"id\": \"08120\",\n \"type\": \"Asset\",\n \"class\": \"Guardian|Mystic|Survivor\",\n \"level\": 3,\n \"traits\": \"Talent.\",\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Resource\",\n \"count\": 2\n }\n}]]\nallCards[\"Sleuth (3)|\"] = [[{\n \"id\": \"08121\",\n \"type\": \"Asset\",\n \"class\": \"Guardian|Seeker|Mystic\",\n \"level\": 3,\n \"traits\": \"Talent.\",\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Resource\",\n \"count\": 2\n }\n}]]\nallCards[\"Bruiser (3)|\"] = [[{\n \"id\": \"08122\",\n \"type\": \"Asset\",\n \"class\": \"Guardian|Rogue|Survivor\",\n \"level\": 3,\n \"traits\": \"Talent.\",\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Resource\",\n \"count\": 2\n }\n}]]\nallCards[\"Crafty (3)|\"] = [[{\n \"id\": \"08123\",\n \"type\": \"Asset\",\n \"class\": \"Seeker|Rogue|Survivor\",\n \"level\": 3,\n \"traits\": \"Talent.\",\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Resource\",\n \"count\": 2\n }\n}]]\nallCards[\"Antiquary (3)|\"] = [[{\n \"id\": \"08124\",\n \"type\": \"Asset\",\n \"class\": \"Seeker|Rogue|Mystic\",\n \"level\": 3,\n \"traits\": \"Talent.\",\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Resource\",\n \"count\": 2\n }\n}]]\nallCards[\"In the Thick of It|\"] = [[{\n \"id\": \"08125\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"level\": 0,\n \"traits\": \"Curse.\",\n \"permanent\": true,\n \"weakness\": false\n}]]\nallCards[\"Heavy Furs|\"] = [[{\n \"id\": \"08126\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"level\": 0,\n \"traits\": \"Item. Armor.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\nallCards[\"Sled Dog|\"] = [[{\n \"id\": \"08127\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"level\": 0,\n \"traits\": \"Ally. Creature.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\nallCards[\"Rod of Animalism (1)|\"] = [[{\n \"id\": \"08128\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"level\": 1,\n \"traits\": \"Item. Relic.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\nallCards[\"Call for Backup (2)|\"] = [[{\n \"id\": \"08129\",\n \"type\": \"Event\",\n \"class\": \"Neutral\",\n \"level\": 2,\n \"traits\": \"Favor. Synergy.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\nallCards[\"Arm Injury|\"] = [[{\n \"id\": \"08130\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Injury.\",\n \"permanent\": false,\n \"weakness\": true,\n \"basicWeaknessCount\": 1\n}]]\nallCards[\"Leg Injury|\"] = [[{\n \"id\": \"08131\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Injury.\",\n \"permanent\": false,\n \"weakness\": true,\n \"basicWeaknessCount\": 1\n}]]\nallCards[\"Panic|\"] = [[{\n \"id\": \"08132\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Madness.\",\n \"permanent\": false,\n \"weakness\": true,\n \"basicWeaknessCount\": 1\n}]]\nallCards[\"Stupor|\"] = [[{\n \"id\": \"08133\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Madness.\",\n \"permanent\": false,\n \"weakness\": true,\n \"basicWeaknessCount\": 1\n}]]\n\r\nallCards[\"Roland Banks|The Fed\"] = [[{\n \"id\": \"01001\",\n \"alternate_ids\": [ \"98004\" ],\n \"type\": \"Investigator\",\n \"class\": \"Guardian\",\n \"traits\": \"Agency. Detective.\"\n}]]\r\nallCards[\"01001\"] = [[{\n \"id\": \"01001\",\n \"alternate_ids\": [ \"98004\" ],\n \"type\": \"Investigator\",\n \"class\": \"Guardian\",\n \"traits\": \"Agency. Detective.\"\n}]]\r\nallCards[\"Roland Banks (promo version)|The Fed\"] = [[{\n \"id\": \"01001-promo\",\n \"type\": \"Investigator\",\n \"class\": \"Guardian\",\n \"traits\": \"Agency. Detective.\"\n}]]\r\nallCards[\"Roland Banks (Parallel)|The Fed\"] = [[{\n \"id\": \"01001-p\",\n \"type\": \"Investigator\",\n \"class\": \"Guardian\",\n \"traits\": \"Agency. Detective.\"\n}]]\r\nallCards[\"Roland Banks (Parallel Front)|The Fed\"] = [[{\n \"id\": \"01001-pf\",\n \"type\": \"Investigator\",\n \"class\": \"Guardian\",\n \"traits\": \"Agency. Detective.\"\n}]]\r\nallCards[\"Roland Banks (Parallel Back)|The Fed\"] = [[{\n \"id\": \"01001-pb\",\n \"type\": \"Investigator\",\n \"class\": \"Guardian\",\n \"traits\": \"Agency. Detective.\"\n}]]\r\nallCards[\"Roland Banks|\"] = [[{\n \"id\": \"01001-m\",\n \"alternate_ids\": [ \"98004-m\" ],\n \"type\": \"Minicard\"\n}]]\r\nallCards[\"Roland Banks|Promo version\"] = [[{\n \"id\": \"01001-promo-m\",\n \"type\": \"Minicard\"\n}]]\r\nallCards[\"Daisy Walker|The Librarian\"] = [[{\n \"id\": \"01002\",\n \"type\": \"Investigator\",\n \"class\": \"Seeker\",\n \"traits\": \"Miskatonic.\"\n}]]\r\nallCards[\"01002\"] = [[{\n \"id\": \"01002\",\n \"type\": \"Investigator\",\n \"class\": \"Seeker\",\n \"traits\": \"Miskatonic.\"\n}]]\r\nallCards[\"Daisy Walker (promo version)|The Librarian\"] = [[{\n \"id\": \"01002-promo\",\n \"type\": \"Investigator\",\n \"class\": \"Seeker\",\n \"traits\": \"Miskatonic.\"\n}]]\r\nallCards[\"Daisy Walker (Parallel)|The Librarian\"] = [[{\n \"id\": \"01002-p\",\n \"type\": \"Investigator\",\n \"class\": \"Seeker\",\n \"traits\": \"Miskatonic.\"\n}]]\r\nallCards[\"Daisy Walker (Parallel Front)|The Librarian\"] = [[{\n \"id\": \"01002-pf\",\n \"type\": \"Investigator\",\n \"class\": \"Seeker\",\n \"traits\": \"Miskatonic.\"\n}]]\r\nallCards[\"Daisy Walker (Parallel Back)|The Librarian\"] = [[{\n \"id\": \"01002-pb\",\n \"type\": \"Investigator\",\n \"class\": \"Seeker\",\n \"traits\": \"Miskatonic.\"\n}]]\r\nallCards[\"Daisy Walker|\"] = [[{\n \"id\": \"01002-m\",\n \"type\": \"Minicard\"\n}]]\r\nallCards[\"Daisy Walker|Promo version\"] = [[{\n \"id\": \"01002-promo-m\",\n \"type\": \"Minicard\"\n}]]\r\nallCards[\"\\\"Skids\\\" O'Toole|The Ex-Con\"] = [[{\n \"id\": \"01003\",\n \"type\": \"Investigator\",\n \"class\": \"Rogue\",\n \"traits\": \"Criminal.\"\n}]]\r\nallCards[\"01003\"] = [[{\n \"id\": \"01003\",\n \"type\": \"Investigator\",\n \"class\": \"Rogue\",\n \"traits\": \"Criminal.\"\n}]]\r\nallCards[\"\\\"Skids\\\" O'Toole (promo version)|The Ex-Con\"] = [[{\n \"id\": \"01003-promo\",\n \"type\": \"Investigator\",\n \"class\": \"Rogue\",\n \"traits\": \"Criminal.\"\n}]]\r\nallCards[\"\\\"Skids\\\" O'Toole (Parallel)|The Ex-Con\"] = [[{\n \"id\": \"01003-p\",\n \"type\": \"Investigator\",\n \"class\": \"Rogue\",\n \"traits\": \"Criminal.\"\n}]]\r\nallCards[\"\\\"Skids\\\" O'Toole (Parallel Front)|The Ex-Con\"] = [[{\n \"id\": \"01003-pf\",\n \"type\": \"Investigator\",\n \"class\": \"Rogue\",\n \"traits\": \"Criminal.\"\n}]]\r\nallCards[\"\\\"Skids\\\" O'Toole (Parallel Back)|The Ex-Con\"] = [[{\n \"id\": \"01003-pb\",\n \"type\": \"Investigator\",\n \"class\": \"Rogue\",\n \"traits\": \"Criminal.\"\n}]]\r\nallCards[\"\\\"Skids\\\" O'Toole|\"] = [[{\n \"id\": \"01003-m\",\n \"type\": \"Minicard\"\n}]]\r\nallCards[\"\\\"Skids\\\" O'Toole|Promo version\"] = [[{\n \"id\": \"01003-promo-m\",\n \"type\": \"Minicard\"\n}]]\r\nallCards[\"Agnes Baker|The Waitress\"] = [[{\n \"id\": \"01004\",\n \"type\": \"Investigator\",\n \"class\": \"Mystic\",\n \"traits\": \"Sorcerer.\"\n}]]\r\nallCards[\"01004\"] = [[{\n \"id\": \"01004\",\n \"type\": \"Investigator\",\n \"class\": \"Mystic\",\n \"traits\": \"Sorcerer.\"\n}]]\r\nallCards[\"Agnes Baker (promo version)|The Waitress\"] = [[{\n \"id\": \"01004-promo\",\n \"type\": \"Investigator\",\n \"class\": \"Mystic\",\n \"traits\": \"Sorcerer.\"\n}]]\r\nallCards[\"Agnes Baker (Parallel)|The Waitress\"] = [[{\n \"id\": \"01004-p\",\n \"type\": \"Investigator\",\n \"class\": \"Mystic\",\n \"traits\": \"Sorcerer.\"\n}]]\r\nallCards[\"Agnes Baker (Parallel Front)|The Waitress\"] = [[{\n \"id\": \"01004-pf\",\n \"type\": \"Investigator\",\n \"class\": \"Mystic\",\n \"traits\": \"Sorcerer.\"\n}]]\r\nallCards[\"Agnes Baker (Parallel Back)|The Waitress\"] = [[{\n \"id\": \"01004-pb\",\n \"type\": \"Investigator\",\n \"class\": \"Mystic\",\n \"traits\": \"Sorcerer.\"\n}]]\r\nallCards[\"Agnes Baker|\"] = [[{\n \"id\": \"01004-m\",\n \"type\": \"Minicard\"\n}]]\r\nallCards[\"Agnes Baker|Promo version\"] = [[{\n \"id\": \"01004-promo-m\",\n \"type\": \"Minicard\"\n}]]\r\nallCards[\"Wendy Adams|The Urchin\"] = [[{\n \"id\": \"01005\",\n \"type\": \"Investigator\",\n \"class\": \"Survivor\",\n \"traits\": \"Drifter.\"\n}]]\r\nallCards[\"01005\"] = [[{\n \"id\": \"01005\",\n \"type\": \"Investigator\",\n \"class\": \"Survivor\",\n \"traits\": \"Drifter.\"\n}]]\r\nallCards[\"Wendy Adams (promo version)|The Urchin\"] = [[{\n \"id\": \"01005-promo\",\n \"type\": \"Investigator\",\n \"class\": \"Survivor\",\n \"traits\": \"Drifter.\"\n}]]\r\nallCards[\"Wendy Adams (Parallel)|The Urchin\"] = [[{\n \"id\": \"01005-p\",\n \"type\": \"Investigator\",\n \"class\": \"Survivor\",\n \"traits\": \"Drifter.\"\n}]]\r\nallCards[\"Wendy Adams (Parallel Front)|The Urchin\"] = [[{\n \"id\": \"01005-pf\",\n \"type\": \"Investigator\",\n \"class\": \"Survivor\",\n \"traits\": \"Drifter.\"\n}]]\r\nallCards[\"Wendy Adams (Parallel Back)|The Urchin\"] = [[{\n \"id\": \"01005-pb\",\n \"type\": \"Investigator\",\n \"class\": \"Survivor\",\n \"traits\": \"Drifter.\"\n}]]\r\nallCards[\"Wendy Adams|\"] = [[{\n \"id\": \"01005-m\",\n \"type\": \"Minicard\"\n}]]\r\nallCards[\"Wendy Adams|Promo version\"] = [[{\n \"id\": \"01005-promo-m\",\n \"type\": \"Minicard\"\n}]]\r\nallCards[\"Roland's .38 Special|\"] = [[{\n \"id\": \"01006\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Weapon. Firearm.\",\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Ammo\",\n \"count\": 4\n }\n}]]\r\nallCards[\"01006\"] = [[{\n \"id\": \"01006\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Weapon. Firearm.\",\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Ammo\",\n \"count\": 4\n }\n}]]\r\nallCards[\"Cover Up|\"] = [[{\n \"id\": \"01007\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Task.\",\n \"permanent\": false,\n \"weakness\": true,\n \"uses\": {\n \"token\": \"clue\",\n \"type\": \"Clue\",\n \"count\": 3\n }\n}]]\r\nallCards[\"01007\"] = [[{\n \"id\": \"01007\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Task.\",\n \"permanent\": false,\n \"weakness\": true,\n \"uses\": {\n \"token\": \"clue\",\n \"type\": \"Clue\",\n \"count\": 3\n }\n}]]\r\nallCards[\"Daisy's Tote Bag|Signature\"] = [[{\n \"id\": \"01008\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"01008\"] = [[{\n \"id\": \"01008\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"The Necronomicon|John Dee Translation\"] = [[{\n \"id\": \"01009\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Tome.\",\n \"permanent\": false,\n \"weakness\": true\n}]]\r\nallCards[\"01009\"] = [[{\n \"id\": \"01009\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Tome.\",\n \"permanent\": false,\n \"weakness\": true\n}]]\r\nallCards[\"The Necronomicon|\"] = [[{\n \"id\": \"01009\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Tome.\",\n \"permanent\": false,\n \"weakness\": true\n}]]\r\nallCards[\"On the Lam|Signature\"] = [[{\n \"id\": \"01010\",\n \"type\": \"Event\",\n \"class\": \"Neutral\",\n \"traits\": \"Tactic.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"01010\"] = [[{\n \"id\": \"01010\",\n \"type\": \"Event\",\n \"class\": \"Neutral\",\n \"traits\": \"Tactic.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Hospital Debts|Signature\"] = [[{\n \"id\": \"01011\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Task.\",\n \"permanent\": false,\n \"weakness\": true\n}]]\r\nallCards[\"01011\"] = [[{\n \"id\": \"01011\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Task.\",\n \"permanent\": false,\n \"weakness\": true\n}]]\r\nallCards[\"Heirloom of Hyperborea|Artifact from Another Life\"] = [[{\n \"id\": \"01012\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Relic.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"01012\"] = [[{\n \"id\": \"01012\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Relic.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Heirloom of Hyperborea|\"] = [[{\n \"id\": \"01012\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Relic.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Dark Memory|Signature\"] = [[{\n \"id\": \"01013\",\n \"type\": \"Event\",\n \"class\": \"Neutral\",\n \"traits\": \"Spell.\",\n \"permanent\": false,\n \"weakness\": true\n}]]\r\nallCards[\"01013\"] = [[{\n \"id\": \"01013\",\n \"type\": \"Event\",\n \"class\": \"Neutral\",\n \"traits\": \"Spell.\",\n \"permanent\": false,\n \"weakness\": true\n}]]\r\nallCards[\"Wendy's Amulet|\"] = [[{\n \"id\": \"01014\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Relic.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"01014\"] = [[{\n \"id\": \"01014\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Relic.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Abandoned and Alone|\"] = [[{\n \"id\": \"01015\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Madness.\",\n \"permanent\": false,\n \"weakness\": true\n}]]\r\nallCards[\"01015\"] = [[{\n \"id\": \"01015\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Madness.\",\n \"permanent\": false,\n \"weakness\": true\n}]]\r\nallCards[\".45 Automatic|\"] = [[{\n \"id\": \"01016\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Item. Weapon. Firearm.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Ammo\",\n \"count\": 4\n }\n}]]\r\nallCards[\"01016\"] = [[{\n \"id\": \"01016\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Item. Weapon. Firearm.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Ammo\",\n \"count\": 4\n }\n}]]\r\nallCards[\"Physical Training|\"] = [[{\n \"id\": \"01017\",\n \"alternate_ids\": [ \"60108\" ],\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Talent.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"01017\"] = [[{\n \"id\": \"01017\",\n \"alternate_ids\": [ \"60108\" ],\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Talent.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Beat Cop|\"] = [[{\n \"id\": \"01018\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Ally. Police.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"01018\"] = [[{\n \"id\": \"01018\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Ally. Police.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"First Aid|\"] = [[{\n \"id\": \"01019\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Talent. Science.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Supply\",\n \"count\": 3\n }\n}]]\r\nallCards[\"01019\"] = [[{\n \"id\": \"01019\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Talent. Science.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Supply\",\n \"count\": 3\n }\n}]]\r\nallCards[\"Machete|\"] = [[{\n \"id\": \"01020\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Item. Weapon. Melee.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"01020\"] = [[{\n \"id\": \"01020\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Item. Weapon. Melee.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Machete (Taboo)|\"] = [[{\n \"id\": \"01020-t\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Item. Weapon. Melee.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Guard Dog|\"] = [[{\n \"id\": \"01021\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Ally. Creature.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"01021\"] = [[{\n \"id\": \"01021\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Ally. Creature.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Evidence!|\"] = [[{\n \"id\": \"01022\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Insight.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"01022\"] = [[{\n \"id\": \"01022\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Insight.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Dodge|\"] = [[{\n \"id\": \"01023\",\n \"alternate_ids\": [ \"60113\" ],\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Tactic.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"01023\"] = [[{\n \"id\": \"01023\",\n \"alternate_ids\": [ \"60113\" ],\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Tactic.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Dynamite Blast|\"] = [[{\n \"id\": \"01024\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Tactic.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"01024\"] = [[{\n \"id\": \"01024\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Tactic.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Vicious Blow|\"] = [[{\n \"id\": \"01025\",\n \"alternate_ids\": [ \"60119\" ],\n \"type\": \"Skill\",\n \"class\": \"Guardian\",\n \"traits\": \"Practiced.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"01025\"] = [[{\n \"id\": \"01025\",\n \"alternate_ids\": [ \"60119\" ],\n \"type\": \"Skill\",\n \"class\": \"Guardian\",\n \"traits\": \"Practiced.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Extra Ammunition (1)|\"] = [[{\n \"id\": \"01026\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Supply.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Ammo\",\n \"count\": 3\n }\n}]]\r\nallCards[\"01026\"] = [[{\n \"id\": \"01026\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Supply.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Ammo\",\n \"count\": 3\n }\n}]]\r\nallCards[\"Police Badge (2)|\"] = [[{\n \"id\": \"01027\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Item.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"01027\"] = [[{\n \"id\": \"01027\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Item.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Beat Cop (2)|\"] = [[{\n \"id\": \"01028\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Ally. Police.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"01028\"] = [[{\n \"id\": \"01028\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Ally. Police.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Shotgun (4)|\"] = [[{\n \"id\": \"01029\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Item. Weapon. Firearm.\",\n \"level\": 4,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Ammo\",\n \"count\": 2\n }\n}]]\r\nallCards[\"01029\"] = [[{\n \"id\": \"01029\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Item. Weapon. Firearm.\",\n \"level\": 4,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Ammo\",\n \"count\": 2\n }\n}]]\r\nallCards[\"Magnifying Glass|\"] = [[{\n \"id\": \"01030\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Tool.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"01030\"] = [[{\n \"id\": \"01030\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Tool.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Old Book of Lore|\"] = [[{\n \"id\": \"01031\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Tome.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"01031\"] = [[{\n \"id\": \"01031\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Tome.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Research Librarian|\"] = [[{\n \"id\": \"01032\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Ally. Miskatonic.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"01032\"] = [[{\n \"id\": \"01032\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Ally. Miskatonic.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Dr. Milan Christopher|Professor of Entomology\"] = [[{\n \"id\": \"01033\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Ally. Miskatonic.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"01033\"] = [[{\n \"id\": \"01033\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Ally. Miskatonic.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Dr. Milan Christopher (Taboo)|Professor of Entomology\"] = [[{\n \"id\": \"01033-t\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Ally. Miskatonic.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Dr. Milan Christopher|\"] = [[{\n \"id\": \"01033\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Ally. Miskatonic.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Dr. Milan Christopher (Taboo)|\"] = [[{\n \"id\": \"01033-t\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Ally. Miskatonic.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Hyperawareness|\"] = [[{\n \"id\": \"01034\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Talent.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"01034\"] = [[{\n \"id\": \"01034\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Talent.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Medical Texts|\"] = [[{\n \"id\": \"01035\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Tome.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"01035\"] = [[{\n \"id\": \"01035\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Tome.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Mind over Matter|\"] = [[{\n \"id\": \"01036\",\n \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"traits\": \"Insight.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"01036\"] = [[{\n \"id\": \"01036\",\n \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"traits\": \"Insight.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Working a Hunch|\"] = [[{\n \"id\": \"01037\",\n \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"traits\": \"Insight.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"01037\"] = [[{\n \"id\": \"01037\",\n \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"traits\": \"Insight.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Barricade|\"] = [[{\n \"id\": \"01038\",\n \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"traits\": \"Insight. Tactic.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"01038\"] = [[{\n \"id\": \"01038\",\n \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"traits\": \"Insight. Tactic.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Deduction|\"] = [[{\n \"id\": \"01039\",\n \"alternate_ids\": [ \"60219\" ],\n \"type\": \"Skill\",\n \"class\": \"Seeker\",\n \"traits\": \"Practiced.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"01039\"] = [[{\n \"id\": \"01039\",\n \"alternate_ids\": [ \"60219\" ],\n \"type\": \"Skill\",\n \"class\": \"Seeker\",\n \"traits\": \"Practiced.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Magnifying Glass (1)|\"] = [[{\n \"id\": \"01040\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Tool.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"01040\"] = [[{\n \"id\": \"01040\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Tool.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Disc of Itzamna (2)|Protective Amulet\"] = [[{\n \"id\": \"01041\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Relic.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"01041\"] = [[{\n \"id\": \"01041\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Relic.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Disc of Itzamna (2)|\"] = [[{\n \"id\": \"01041\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Relic.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Encyclopedia (2)|\"] = [[{\n \"id\": \"01042\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Tome.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"01042\"] = [[{\n \"id\": \"01042\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Tome.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Cryptic Research (4)|\"] = [[{\n \"id\": \"01043\",\n \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"traits\": \"Insight.\",\n \"level\": 4,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"01043\"] = [[{\n \"id\": \"01043\",\n \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"traits\": \"Insight.\",\n \"level\": 4,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Switchblade|\"] = [[{\n \"id\": \"01044\",\n \"alternate_ids\": [ \"60307\" ],\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Item. Weapon. Melee. Illicit.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"01044\"] = [[{\n \"id\": \"01044\",\n \"alternate_ids\": [ \"60307\" ],\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Item. Weapon. Melee. Illicit.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Burglary|\"] = [[{\n \"id\": \"01045\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Talent. Illicit.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"01045\"] = [[{\n \"id\": \"01045\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Talent. Illicit.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Pickpocketing|\"] = [[{\n \"id\": \"01046\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Talent. Illicit.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"01046\"] = [[{\n \"id\": \"01046\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Talent. Illicit.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\".41 Derringer|\"] = [[{\n \"id\": \"01047\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Item. Weapon. Firearm. Illicit.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Ammo\",\n \"count\": 3\n }\n}]]\r\nallCards[\"01047\"] = [[{\n \"id\": \"01047\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Item. Weapon. Firearm. Illicit.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Ammo\",\n \"count\": 3\n }\n}]]\r\nallCards[\"Leo De Luca|The Louisiana Lion\"] = [[{\n \"id\": \"01048\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Ally. Criminal.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"01048\"] = [[{\n \"id\": \"01048\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Ally. Criminal.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Leo De Luca|\"] = [[{\n \"id\": \"01048\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Ally. Criminal.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Hard Knocks|\"] = [[{\n \"id\": \"01049\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Talent.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"01049\"] = [[{\n \"id\": \"01049\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Talent.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Elusive|\"] = [[{\n \"id\": \"01050\",\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"traits\": \"Tactic.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"01050\"] = [[{\n \"id\": \"01050\",\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"traits\": \"Tactic.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Elusive (Taboo)|\"] = [[{\n \"id\": \"01050-t\",\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"traits\": \"Tactic.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Backstab|\"] = [[{\n \"id\": \"01051\",\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"traits\": \"Tactic.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"01051\"] = [[{\n \"id\": \"01051\",\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"traits\": \"Tactic.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Sneak Attack|\"] = [[{\n \"id\": \"01052\",\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"traits\": \"Tactic.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"01052\"] = [[{\n \"id\": \"01052\",\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"traits\": \"Tactic.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Opportunist|\"] = [[{\n \"id\": \"01053\",\n \"alternate_ids\": [ \"60319\" ],\n \"type\": \"Skill\",\n \"class\": \"Rogue\",\n \"traits\": \"Innate.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"01053\"] = [[{\n \"id\": \"01053\",\n \"alternate_ids\": [ \"60319\" ],\n \"type\": \"Skill\",\n \"class\": \"Rogue\",\n \"traits\": \"Innate.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Leo De Luca (1)|The Louisiana Lion\"] = [[{\n \"id\": \"01054\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Ally. Criminal.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"01054\"] = [[{\n \"id\": \"01054\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Ally. Criminal.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Leo De Luca (1)|\"] = [[{\n \"id\": \"01054\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Ally. Criminal.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Cat Burglar (1)|\"] = [[{\n \"id\": \"01055\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Ally. Criminal.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"01055\"] = [[{\n \"id\": \"01055\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Ally. Criminal.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Sure Gamble (3)|\"] = [[{\n \"id\": \"01056\",\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"traits\": \"Fortune. Insight.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"01056\"] = [[{\n \"id\": \"01056\",\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"traits\": \"Fortune. Insight.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Hot Streak (4)|\"] = [[{\n \"id\": \"01057\",\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"traits\": \"Fortune.\",\n \"level\": 4,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"01057\"] = [[{\n \"id\": \"01057\",\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"traits\": \"Fortune.\",\n \"level\": 4,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Forbidden Knowledge|\"] = [[{\n \"id\": \"01058\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Talent.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Secret\",\n \"count\": 4\n }\n}]]\r\nallCards[\"01058\"] = [[{\n \"id\": \"01058\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Talent.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Secret\",\n \"count\": 4\n }\n}]]\r\nallCards[\"Holy Rosary|\"] = [[{\n \"id\": \"01059\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Item. Charm.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"01059\"] = [[{\n \"id\": \"01059\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Item. Charm.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Shrivelling|\"] = [[{\n \"id\": \"01060\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Charge\",\n \"count\": 4\n }\n}]]\r\nallCards[\"01060\"] = [[{\n \"id\": \"01060\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Charge\",\n \"count\": 4\n }\n}]]\r\nallCards[\"Scrying|\"] = [[{\n \"id\": \"01061\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Charge\",\n \"count\": 3\n }\n}]]\r\nallCards[\"01061\"] = [[{\n \"id\": \"01061\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Charge\",\n \"count\": 3\n }\n}]]\r\nallCards[\"Arcane Studies|\"] = [[{\n \"id\": \"01062\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Talent.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"01062\"] = [[{\n \"id\": \"01062\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Talent.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Arcane Initiate|\"] = [[{\n \"id\": \"01063\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Ally. Sorcerer.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"doom\",\n \"type\": \"Doom\",\n \"count\": 1\n }\n}]]\r\nallCards[\"01063\"] = [[{\n \"id\": \"01063\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Ally. Sorcerer.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"doom\",\n \"type\": \"Doom\",\n \"count\": 1\n }\n}]]\r\nallCards[\"Drawn to the Flame|\"] = [[{\n \"id\": \"01064\",\n \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"traits\": \"Insight.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"01064\"] = [[{\n \"id\": \"01064\",\n \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"traits\": \"Insight.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Ward of Protection|\"] = [[{\n \"id\": \"01065\",\n \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell. Spirit.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"01065\"] = [[{\n \"id\": \"01065\",\n \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell. Spirit.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Blinding Light|\"] = [[{\n \"id\": \"01066\",\n \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"01066\"] = [[{\n \"id\": \"01066\",\n \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Fearless|\"] = [[{\n \"id\": \"01067\",\n \"type\": \"Skill\",\n \"class\": \"Mystic\",\n \"traits\": \"Innate.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"01067\"] = [[{\n \"id\": \"01067\",\n \"type\": \"Skill\",\n \"class\": \"Mystic\",\n \"traits\": \"Innate.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Mind Wipe (1)|\"] = [[{\n \"id\": \"01068\",\n \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"01068\"] = [[{\n \"id\": \"01068\",\n \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Blinding Light (2)|\"] = [[{\n \"id\": \"01069\",\n \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"01069\"] = [[{\n \"id\": \"01069\",\n \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Book of Shadows (3)|\"] = [[{\n \"id\": \"01070\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Item. Tome.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"01070\"] = [[{\n \"id\": \"01070\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Item. Tome.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Grotesque Statue (4)|\"] = [[{\n \"id\": \"01071\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Item. Relic.\",\n \"level\": 4,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Charge\",\n \"count\": 4\n }\n}]]\r\nallCards[\"01071\"] = [[{\n \"id\": \"01071\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Item. Relic.\",\n \"level\": 4,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Charge\",\n \"count\": 4\n }\n}]]\r\nallCards[\"Leather Coat|\"] = [[{\n \"id\": \"01072\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Item. Armor.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"01072\"] = [[{\n \"id\": \"01072\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Item. Armor.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Scavenging|\"] = [[{\n \"id\": \"01073\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Talent.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"01073\"] = [[{\n \"id\": \"01073\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Talent.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Baseball Bat|\"] = [[{\n \"id\": \"01074\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Item. Weapon. Melee.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"01074\"] = [[{\n \"id\": \"01074\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Item. Weapon. Melee.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Rabbit's Foot|\"] = [[{\n \"id\": \"01075\",\n \"alternate_ids\": [ \"60510\" ],\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Item. Charm.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"01075\"] = [[{\n \"id\": \"01075\",\n \"alternate_ids\": [ \"60510\" ],\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Item. Charm.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Stray Cat|\"] = [[{\n \"id\": \"01076\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Ally. Creature.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"01076\"] = [[{\n \"id\": \"01076\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Ally. Creature.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Dig Deep|\"] = [[{\n \"id\": \"01077\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Talent.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"01077\"] = [[{\n \"id\": \"01077\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Talent.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Cunning Distraction|\"] = [[{\n \"id\": \"01078\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Tactic.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"01078\"] = [[{\n \"id\": \"01078\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Tactic.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\\\"Look what I found!\\\"|\"] = [[{\n \"id\": \"01079\",\n \"alternate_ids\": [ \"60517\" ],\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Fortune.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"01079\"] = [[{\n \"id\": \"01079\",\n \"alternate_ids\": [ \"60517\" ],\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Fortune.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Lucky!|\"] = [[{\n \"id\": \"01080\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Fortune.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"01080\"] = [[{\n \"id\": \"01080\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Fortune.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Survival Instinct|\"] = [[{\n \"id\": \"01081\",\n \"type\": \"Skill\",\n \"class\": \"Survivor\",\n \"traits\": \"Innate.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"01081\"] = [[{\n \"id\": \"01081\",\n \"type\": \"Skill\",\n \"class\": \"Survivor\",\n \"traits\": \"Innate.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Aquinnah (1)|The Forgotten Daughter\"] = [[{\n \"id\": \"01082\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Ally.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"01082\"] = [[{\n \"id\": \"01082\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Ally.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Aquinnah (1)|\"] = [[{\n \"id\": \"01082\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Ally.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Close Call (2)|\"] = [[{\n \"id\": \"01083\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Fortune.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"01083\"] = [[{\n \"id\": \"01083\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Fortune.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Lucky! (2)|\"] = [[{\n \"id\": \"01084\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Fortune.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"01084\"] = [[{\n \"id\": \"01084\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Fortune.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Will to Survive (3)|\"] = [[{\n \"id\": \"01085\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Spirit.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"01085\"] = [[{\n \"id\": \"01085\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Spirit.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Knife|\"] = [[{\n \"id\": \"01086\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Weapon. Melee.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"01086\"] = [[{\n \"id\": \"01086\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Weapon. Melee.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Flashlight|\"] = [[{\n \"id\": \"01087\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Tool.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Supply\",\n \"count\": 3\n }\n}]]\r\nallCards[\"01087\"] = [[{\n \"id\": \"01087\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Tool.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Supply\",\n \"count\": 3\n }\n}]]\r\nallCards[\"Emergency Cache|\"] = [[{\n \"id\": \"01088\",\n \"type\": \"Event\",\n \"class\": \"Neutral\",\n \"traits\": \"Supply.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"01088\"] = [[{\n \"id\": \"01088\",\n \"type\": \"Event\",\n \"class\": \"Neutral\",\n \"traits\": \"Supply.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Guts|\"] = [[{\n \"id\": \"01089\",\n \"type\": \"Skill\",\n \"class\": \"Neutral\",\n \"traits\": \"Innate.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"01089\"] = [[{\n \"id\": \"01089\",\n \"type\": \"Skill\",\n \"class\": \"Neutral\",\n \"traits\": \"Innate.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Perception|\"] = [[{\n \"id\": \"01090\",\n \"type\": \"Skill\",\n \"class\": \"Neutral\",\n \"traits\": \"Practiced.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"01090\"] = [[{\n \"id\": \"01090\",\n \"type\": \"Skill\",\n \"class\": \"Neutral\",\n \"traits\": \"Practiced.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Overpower|\"] = [[{\n \"id\": \"01091\",\n \"type\": \"Skill\",\n \"class\": \"Neutral\",\n \"traits\": \"Practiced.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"01091\"] = [[{\n \"id\": \"01091\",\n \"type\": \"Skill\",\n \"class\": \"Neutral\",\n \"traits\": \"Practiced.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Manual Dexterity|\"] = [[{\n \"id\": \"01092\",\n \"type\": \"Skill\",\n \"class\": \"Neutral\",\n \"traits\": \"Innate.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"01092\"] = [[{\n \"id\": \"01092\",\n \"type\": \"Skill\",\n \"class\": \"Neutral\",\n \"traits\": \"Innate.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Unexpected Courage|\"] = [[{\n \"id\": \"01093\",\n \"type\": \"Skill\",\n \"class\": \"Neutral\",\n \"traits\": \"Innate.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"01093\"] = [[{\n \"id\": \"01093\",\n \"type\": \"Skill\",\n \"class\": \"Neutral\",\n \"traits\": \"Innate.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Bulletproof Vest (3)|\"] = [[{\n \"id\": \"01094\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Armor.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"01094\"] = [[{\n \"id\": \"01094\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Armor.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Elder Sign Amulet (3)|\"] = [[{\n \"id\": \"01095\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Relic.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"01095\"] = [[{\n \"id\": \"01095\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Relic.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Amnesia|\"] = [[{\n \"id\": \"01096\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Madness.\",\n \"permanent\": false,\n \"weakness\": true,\n \"basicWeaknessCount\": 2\n}]]\r\nallCards[\"01096\"] = [[{\n \"id\": \"01096\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Madness.\",\n \"permanent\": false,\n \"weakness\": true,\n \"basicWeaknessCount\": 2\n}]]\r\nallCards[\"Paranoia|\"] = [[{\n \"id\": \"01097\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Madness.\",\n \"permanent\": false,\n \"weakness\": true,\n \"basicWeaknessCount\": 2\n}]]\r\nallCards[\"01097\"] = [[{\n \"id\": \"01097\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Madness.\",\n \"permanent\": false,\n \"weakness\": true,\n \"basicWeaknessCount\": 2\n}]]\r\nallCards[\"Haunted|\"] = [[{\n \"id\": \"01098\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Curse.\",\n \"permanent\": false,\n \"weakness\": true,\n \"basicWeaknessCount\": 1\n}]]\r\nallCards[\"01098\"] = [[{\n \"id\": \"01098\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Curse.\",\n \"permanent\": false,\n \"weakness\": true,\n \"basicWeaknessCount\": 1\n}]]\r\nallCards[\"Psychosis|\"] = [[{\n \"id\": \"01099\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Madness.\",\n \"permanent\": false,\n \"weakness\": true,\n \"basicWeaknessCount\": 1\n}]]\r\nallCards[\"01099\"] = [[{\n \"id\": \"01099\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Madness.\",\n \"permanent\": false,\n \"weakness\": true,\n \"basicWeaknessCount\": 1\n}]]\r\nallCards[\"Hypochondria|\"] = [[{\n \"id\": \"01100\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Madness.\",\n \"permanent\": false,\n \"weakness\": true,\n \"basicWeaknessCount\": 1\n}]]\r\nallCards[\"01100\"] = [[{\n \"id\": \"01100\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Madness.\",\n \"permanent\": false,\n \"weakness\": true,\n \"basicWeaknessCount\": 1\n}]]\r\nallCards[\"Mob Enforcer|\"] = [[{\n \"id\": \"01101\",\n \"type\": \"Enemy\",\n \"class\": \"Neutral\",\n \"traits\": \"Humanoid. Criminal.\",\n \"permanent\": false,\n \"weakness\": true,\n \"basicWeaknessCount\": 1\n}]]\r\nallCards[\"01101\"] = [[{\n \"id\": \"01101\",\n \"type\": \"Enemy\",\n \"class\": \"Neutral\",\n \"traits\": \"Humanoid. Criminal.\",\n \"permanent\": false,\n \"weakness\": true,\n \"basicWeaknessCount\": 1\n}]]\r\nallCards[\"Silver Twilight Acolyte|\"] = [[{\n \"id\": \"01102\",\n \"type\": \"Enemy\",\n \"class\": \"Neutral\",\n \"traits\": \"Humanoid. Cultist. Silver Twilight.\",\n \"permanent\": false,\n \"weakness\": true,\n \"basicWeaknessCount\": 1\n}]]\r\nallCards[\"01102\"] = [[{\n \"id\": \"01102\",\n \"type\": \"Enemy\",\n \"class\": \"Neutral\",\n \"traits\": \"Humanoid. Cultist. Silver Twilight.\",\n \"permanent\": false,\n \"weakness\": true,\n \"basicWeaknessCount\": 1\n}]]\r\nallCards[\"Stubborn Detective|\"] = [[{\n \"id\": \"01103\",\n \"type\": \"Enemy\",\n \"class\": \"Neutral\",\n \"traits\": \"Humanoid. Detective.\",\n \"permanent\": false,\n \"weakness\": true,\n \"basicWeaknessCount\": 1\n}]]\r\nallCards[\"01103\"] = [[{\n \"id\": \"01103\",\n \"type\": \"Enemy\",\n \"class\": \"Neutral\",\n \"traits\": \"Humanoid. Detective.\",\n \"permanent\": false,\n \"weakness\": true,\n \"basicWeaknessCount\": 1\n}]]\r\nallCards[\"Lita Chantler|The Zealot\"] = [[{\n \"id\": \"01117\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"01117\"] = [[{\n \"id\": \"01117\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Lita Chantler|\"] = [[{\n \"id\": \"01117\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Lady Esprit|Dangerous Bokor\"] = [[{\n \"id\": \"81019\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Sorcerer.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"81019\"] = [[{\n \"id\": \"81019\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Sorcerer.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Lady Esprit|\"] = [[{\n \"id\": \"81019\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Sorcerer.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Bear Trap|\"] = [[{\n \"id\": \"81020\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Trap.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"81020\"] = [[{\n \"id\": \"81020\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Trap.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Fishing Net|\"] = [[{\n \"id\": \"81021\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Trap.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"81021\"] = [[{\n \"id\": \"81021\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Trap.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Curse of the Rougarou|\"] = [[{\n \"id\": \"81029\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Curse.\",\n \"permanent\": false,\n \"weakness\": true\n}]]\r\nallCards[\"81029\"] = [[{\n \"id\": \"81029\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Curse.\",\n \"permanent\": false,\n \"weakness\": true\n}]]\r\nallCards[\"Monstrous Transformation|\"] = [[{\n \"id\": \"81030\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Talent.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"81030\"] = [[{\n \"id\": \"81030\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Talent.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Innocent Reveler|\"] = [[{\n \"id\": \"82021\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Bystander. Carnevale.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"82021\"] = [[{\n \"id\": \"82021\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Bystander. Carnevale.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Abbess Allegria Di Biase|Most Blessed\"] = [[{\n \"id\": \"82022\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Believer.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"82022\"] = [[{\n \"id\": \"82022\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Believer.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Abbess Allegria Di Biase|\"] = [[{\n \"id\": \"82022\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Believer.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Bauta|\"] = [[{\n \"id\": \"82023\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Mask.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"82023\"] = [[{\n \"id\": \"82023\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Mask.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Medico Della Peste|\"] = [[{\n \"id\": \"82024\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Mask.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"82024\"] = [[{\n \"id\": \"82024\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Mask.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Pantalone|\"] = [[{\n \"id\": \"82025\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Mask.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"82025\"] = [[{\n \"id\": \"82025\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Mask.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Gilded Volto|\"] = [[{\n \"id\": \"82026\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Mask.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"82026\"] = [[{\n \"id\": \"82026\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Mask.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Zoey Samaras|The Chef\"] = [[{\n \"id\": \"02001\",\n \"type\": \"Investigator\",\n \"class\": \"Guardian\",\n \"traits\": \"Believer. Hunter.\"\n}]]\r\nallCards[\"02001\"] = [[{\n \"id\": \"02001\",\n \"type\": \"Investigator\",\n \"class\": \"Guardian\",\n \"traits\": \"Believer. Hunter.\"\n}]]\r\nallCards[\"Zoey Samaras (promo version)|The Chef\"] = [[{\n \"id\": \"02001-promo\",\n \"type\": \"Investigator\",\n \"class\": \"Guardian\",\n \"traits\": \"Believer. Hunter.\"\n}]]\r\nallCards[\"Zoey Samaras (Parallel)|The Chef\"] = [[{\n \"id\": \"02001-p\",\n \"type\": \"Investigator\",\n \"class\": \"Guardian\",\n \"traits\": \"Believer. Hunter.\"\n}]]\r\nallCards[\"Zoey Samaras (Parallel Front)|The Chef\"] = [[{\n \"id\": \"02001-pf\",\n \"type\": \"Investigator\",\n \"class\": \"Guardian\",\n \"traits\": \"Believer. Hunter.\"\n}]]\r\nallCards[\"Zoey Samaras (Parallel Back)|The Chef\"] = [[{\n \"id\": \"02001-pb\",\n \"type\": \"Investigator\",\n \"class\": \"Guardian\",\n \"traits\": \"Believer. Hunter.\"\n}]]\r\nallCards[\"Zoey Samaras|\"] = [[{\n \"id\": \"02001-m\",\n \"type\": \"Minicard\"\n}]]\r\nallCards[\"Zoey Samaras|Promo version\"] = [[{\n \"id\": \"02001-promo-m\",\n \"type\": \"Minicard\"\n}]]\r\nallCards[\"Rex Murphy|The Reporter\"] = [[{\n \"id\": \"02002\",\n \"type\": \"Investigator\",\n \"class\": \"Seeker\",\n \"traits\": \"Reporter.\"\n}]]\r\nallCards[\"02002\"] = [[{\n \"id\": \"02002\",\n \"type\": \"Investigator\",\n \"class\": \"Seeker\",\n \"traits\": \"Reporter.\"\n}]]\r\nallCards[\"Rex Murphy (Taboo)|The Reporter\"] = [[{\n \"id\": \"02002-t\",\n \"type\": \"Investigator\",\n \"class\": \"Seeker\",\n \"traits\": \"Reporter.\"\n}]]\r\nallCards[\"Rex Murphy (promo version)|The Reporter\"] = [[{\n \"id\": \"02002-promo\",\n \"type\": \"Investigator\",\n \"class\": \"Seeker\",\n \"traits\": \"Reporter.\"\n}]]\r\nallCards[\"Rex Murphy (Parallel)|The Reporter\"] = [[{\n \"id\": \"02002-p\",\n \"type\": \"Investigator\",\n \"class\": \"Seeker\",\n \"traits\": \"Reporter.\"\n}]]\r\nallCards[\"Rex Murphy (Parallel Front)|The Reporter\"] = [[{\n \"id\": \"02002-pf\",\n \"type\": \"Investigator\",\n \"class\": \"Seeker\",\n \"traits\": \"Reporter.\"\n}]]\r\nallCards[\"Rex Murphy (Parallel Back)|The Reporter\"] = [[{\n \"id\": \"02002-pb\",\n \"type\": \"Investigator\",\n \"class\": \"Seeker\",\n \"traits\": \"Reporter.\"\n}]]\r\nallCards[\"Rex Murphy|\"] = [[{\n \"id\": \"02002-m\",\n \"type\": \"Minicard\"\n}]]\r\nallCards[\"Rex Murphy|Promo version\"] = [[{\n \"id\": \"02002-promo-m\",\n \"type\": \"Minicard\"\n}]]\r\nallCards[\"Jenny Barnes|The Dilettante\"] = [[{\n \"id\": \"02003\",\n \"alternate_ids\": [ \"98001\" ],\n \"type\": \"Investigator\",\n \"class\": \"Rogue\",\n \"traits\": \"Drifter.\"\n}]]\r\nallCards[\"02003\"] = [[{\n \"id\": \"02003\",\n \"alternate_ids\": [ \"98001\" ],\n \"type\": \"Investigator\",\n \"class\": \"Rogue\",\n \"traits\": \"Drifter.\"\n}]]\r\nallCards[\"Jenny Barnes (promo version)|The Dilettante\"] = [[{\n \"id\": \"02003-promo\",\n \"type\": \"Investigator\",\n \"class\": \"Rogue\",\n \"traits\": \"Drifter.\"\n}]]\r\nallCards[\"Jenny Barnes (Parallel)|The Dilettante\"] = [[{\n \"id\": \"02003-p\",\n \"type\": \"Investigator\",\n \"class\": \"Rogue\",\n \"traits\": \"Drifter.\"\n}]]\r\nallCards[\"Jenny Barnes (Parallel Front)|The Dilettante\"] = [[{\n \"id\": \"02003-pf\",\n \"type\": \"Investigator\",\n \"class\": \"Rogue\",\n \"traits\": \"Drifter.\"\n}]]\r\nallCards[\"Jenny Barnes (Parallel Back)|The Dilettante\"] = [[{\n \"id\": \"02003-pb\",\n \"type\": \"Investigator\",\n \"class\": \"Rogue\",\n \"traits\": \"Drifter.\"\n}]]\r\nallCards[\"Jenny Barnes|\"] = [[{\n \"id\": \"02003-m\",\n \"alternate_ids\": [ \"98001-m\" ],\n \"type\": \"Minicard\"\n}]]\r\nallCards[\"Jenny Barnes|Promo version\"] = [[{\n \"id\": \"02003-promo-m\",\n \"type\": \"Minicard\"\n}]]\r\nallCards[\"Jim Culver|The Musician\"] = [[{\n \"id\": \"02004\",\n \"type\": \"Investigator\",\n \"class\": \"Mystic\",\n \"traits\": \"Performer.\"\n}]]\r\nallCards[\"02004\"] = [[{\n \"id\": \"02004\",\n \"type\": \"Investigator\",\n \"class\": \"Mystic\",\n \"traits\": \"Performer.\"\n}]]\r\nallCards[\"Jim Culver (promo version)|The Musician\"] = [[{\n \"id\": \"02004-promo\",\n \"type\": \"Investigator\",\n \"class\": \"Mystic\",\n \"traits\": \"Performer.\"\n}]]\r\nallCards[\"Jim Culver (Parallel)|The Musician\"] = [[{\n \"id\": \"02004-p\",\n \"type\": \"Investigator\",\n \"class\": \"Mystic\",\n \"traits\": \"Performer.\"\n}]]\r\nallCards[\"Jim Culver (Parallel Front)|The Musician\"] = [[{\n \"id\": \"02004-pf\",\n \"type\": \"Investigator\",\n \"class\": \"Mystic\",\n \"traits\": \"Performer.\"\n}]]\r\nallCards[\"Jim Culver (Parallel Back)|The Musician\"] = [[{\n \"id\": \"02004-pb\",\n \"type\": \"Investigator\",\n \"class\": \"Mystic\",\n \"traits\": \"Performer.\"\n}]]\r\nallCards[\"Jim Culver|\"] = [[{\n \"id\": \"02004-m\",\n \"type\": \"Minicard\"\n}]]\r\nallCards[\"Jim Culver|Promo version\"] = [[{\n \"id\": \"02004-promo-m\",\n \"type\": \"Minicard\"\n}]]\r\nallCards[\"\\\"Ashcan\\\" Pete|The Drifter\"] = [[{\n \"id\": \"02005\",\n \"type\": \"Investigator\",\n \"class\": \"Survivor\",\n \"traits\": \"Drifter.\"\n}]]\r\nallCards[\"02005\"] = [[{\n \"id\": \"02005\",\n \"type\": \"Investigator\",\n \"class\": \"Survivor\",\n \"traits\": \"Drifter.\"\n}]]\r\nallCards[\"\\\"Ashcan\\\" Pete (promo version)|The Drifter\"] = [[{\n \"id\": \"02005-promo\",\n \"type\": \"Investigator\",\n \"class\": \"Survivor\",\n \"traits\": \"Drifter.\"\n}]]\r\nallCards[\"\\\"Ashcan\\\" Pete (Parallel)|The Drifter\"] = [[{\n \"id\": \"02005-p\",\n \"type\": \"Investigator\",\n \"class\": \"Survivor\",\n \"traits\": \"Drifter.\"\n}]]\r\nallCards[\"\\\"Ashcan\\\" Pete (Parallel Front)|The Drifter\"] = [[{\n \"id\": \"02005-pf\",\n \"type\": \"Investigator\",\n \"class\": \"Survivor\",\n \"traits\": \"Drifter.\"\n}]]\r\nallCards[\"\\\"Ashcan\\\" Pete (Parallel Back)|The Drifter\"] = [[{\n \"id\": \"02005-pb\",\n \"type\": \"Investigator\",\n \"class\": \"Survivor\",\n \"traits\": \"Drifter.\"\n}]]\r\nallCards[\"\\\"Ashcan\\\" Pete|\"] = [[{\n \"id\": \"02005-m\",\n \"type\": \"Minicard\"\n}]]\r\nallCards[\"\\\"Ashcan\\\" Pete|Promo version\"] = [[{\n \"id\": \"02005-promo-m\",\n \"type\": \"Minicard\"\n}]]\r\nallCards[\"Zoey's Cross|Symbol of Righteousness\"] = [[{\n \"id\": \"02006\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Charm.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"02006\"] = [[{\n \"id\": \"02006\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Charm.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Zoey's Cross|\"] = [[{\n \"id\": \"02006\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Charm.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Smite the Wicked|\"] = [[{\n \"id\": \"02007\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Task.\",\n \"permanent\": false,\n \"weakness\": true\n}]]\r\nallCards[\"02007\"] = [[{\n \"id\": \"02007\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Task.\",\n \"permanent\": false,\n \"weakness\": true\n}]]\r\nallCards[\"Search for the Truth|\"] = [[{\n \"id\": \"02008\",\n \"type\": \"Event\",\n \"class\": \"Neutral\",\n \"traits\": \"Insight.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"02008\"] = [[{\n \"id\": \"02008\",\n \"type\": \"Event\",\n \"class\": \"Neutral\",\n \"traits\": \"Insight.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Rex's Curse|\"] = [[{\n \"id\": \"02009\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Curse.\",\n \"permanent\": false,\n \"weakness\": true\n}]]\r\nallCards[\"02009\"] = [[{\n \"id\": \"02009\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Curse.\",\n \"permanent\": false,\n \"weakness\": true\n}]]\r\nallCards[\"Jenny's Twin .45s|A Perfect Fit\"] = [[{\n \"id\": \"02010\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Weapon. Firearm.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"02010\"] = [[{\n \"id\": \"02010\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Weapon. Firearm.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Jenny's Twin .45s|\"] = [[{\n \"id\": \"02010\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Weapon. Firearm.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Searching for Izzie|\"] = [[{\n \"id\": \"02011\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Task.\",\n \"permanent\": false,\n \"weakness\": true\n}]]\r\nallCards[\"02011\"] = [[{\n \"id\": \"02011\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Task.\",\n \"permanent\": false,\n \"weakness\": true\n}]]\r\nallCards[\"Jim's Trumpet|The Dead Listen\"] = [[{\n \"id\": \"02012\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Instrument. Relic.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"02012\"] = [[{\n \"id\": \"02012\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Instrument. Relic.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Jim's Trumpet|\"] = [[{\n \"id\": \"02012\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Instrument. Relic.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Final Rhapsody|\"] = [[{\n \"id\": \"02013\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Endtimes.\",\n \"permanent\": false,\n \"weakness\": true\n}]]\r\nallCards[\"02013\"] = [[{\n \"id\": \"02013\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Endtimes.\",\n \"permanent\": false,\n \"weakness\": true\n}]]\r\nallCards[\"Duke|Loyal Hound\"] = [[{\n \"id\": \"02014\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Creature.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"02014\"] = [[{\n \"id\": \"02014\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Creature.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Duke|\"] = [[{\n \"id\": \"02014\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Creature.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Wracked by Nightmares|\"] = [[{\n \"id\": \"02015\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Madness.\",\n \"permanent\": false,\n \"weakness\": true\n}]]\r\nallCards[\"02015\"] = [[{\n \"id\": \"02015\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Madness.\",\n \"permanent\": false,\n \"weakness\": true\n}]]\r\nallCards[\"Blackjack|\"] = [[{\n \"id\": \"02016\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Item. Weapon. Melee.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"02016\"] = [[{\n \"id\": \"02016\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Item. Weapon. Melee.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Taunt|\"] = [[{\n \"id\": \"02017\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Tactic.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"02017\"] = [[{\n \"id\": \"02017\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Tactic.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Teamwork|\"] = [[{\n \"id\": \"02018\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Tactic.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"02018\"] = [[{\n \"id\": \"02018\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Tactic.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Taunt (2)|\"] = [[{\n \"id\": \"02019\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Tactic.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"02019\"] = [[{\n \"id\": \"02019\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Tactic.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Laboratory Assistant|\"] = [[{\n \"id\": \"02020\",\n \"alternate_ids\": [ \"60212\" ],\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Ally. Miskatonic. Science.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"02020\"] = [[{\n \"id\": \"02020\",\n \"alternate_ids\": [ \"60212\" ],\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Ally. Miskatonic. Science.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Strange Solution|Unidentified\"] = [[{\n \"id\": \"02021\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Science.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"02021\"] = [[{\n \"id\": \"02021\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Science.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Strange Solution|\"] = [[{\n \"id\": \"02021\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Science.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Shortcut|\"] = [[{\n \"id\": \"02022\",\n \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"traits\": \"Insight. Tactic.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"02022\"] = [[{\n \"id\": \"02022\",\n \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"traits\": \"Insight. Tactic.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Seeking Answers|\"] = [[{\n \"id\": \"02023\",\n \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"traits\": \"Insight.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"02023\"] = [[{\n \"id\": \"02023\",\n \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"traits\": \"Insight.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Liquid Courage|\"] = [[{\n \"id\": \"02024\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Item. Illicit.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Supply\",\n \"count\": 4\n }\n}]]\r\nallCards[\"02024\"] = [[{\n \"id\": \"02024\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Item. Illicit.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Supply\",\n \"count\": 4\n }\n}]]\r\nallCards[\"Think on Your Feet|\"] = [[{\n \"id\": \"02025\",\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"traits\": \"Trick.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"02025\"] = [[{\n \"id\": \"02025\",\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"traits\": \"Trick.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Double or Nothing|\"] = [[{\n \"id\": \"02026\",\n \"type\": \"Skill\",\n \"class\": \"Rogue\",\n \"traits\": \"Fortune.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"02026\"] = [[{\n \"id\": \"02026\",\n \"type\": \"Skill\",\n \"class\": \"Rogue\",\n \"traits\": \"Fortune.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Double or Nothing (Taboo)|\"] = [[{\n \"id\": \"02026-t\",\n \"type\": \"Skill\",\n \"class\": \"Rogue\",\n \"traits\": \"Fortune.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Hired Muscle (1)|\"] = [[{\n \"id\": \"02027\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Ally. Criminal.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"02027\"] = [[{\n \"id\": \"02027\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Ally. Criminal.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Rite of Seeking|\"] = [[{\n \"id\": \"02028\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Charge\",\n \"count\": 3\n }\n}]]\r\nallCards[\"02028\"] = [[{\n \"id\": \"02028\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Charge\",\n \"count\": 3\n }\n}]]\r\nallCards[\"Ritual Candles|\"] = [[{\n \"id\": \"02029\",\n \"alternate_ids\": [ \"60405\" ],\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Item.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"02029\"] = [[{\n \"id\": \"02029\",\n \"alternate_ids\": [ \"60405\" ],\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Item.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Clarity of Mind|\"] = [[{\n \"id\": \"02030\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Charge\",\n \"count\": 3\n }\n}]]\r\nallCards[\"02030\"] = [[{\n \"id\": \"02030\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Charge\",\n \"count\": 3\n }\n}]]\r\nallCards[\"Bind Monster (2)|\"] = [[{\n \"id\": \"02031\",\n \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"02031\"] = [[{\n \"id\": \"02031\",\n \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Fire Axe|\"] = [[{\n \"id\": \"02032\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Item. Weapon. Melee.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"02032\"] = [[{\n \"id\": \"02032\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Item. Weapon. Melee.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Peter Sylvestre|Big Man on Campus\"] = [[{\n \"id\": \"02033\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Ally. Miskatonic.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"02033\"] = [[{\n \"id\": \"02033\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Ally. Miskatonic.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Peter Sylvestre|\"] = [[{\n \"id\": \"02033\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Ally. Miskatonic.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Bait and Switch|\"] = [[{\n \"id\": \"02034\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Trick.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"02034\"] = [[{\n \"id\": \"02034\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Trick.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Peter Sylvestre (2)|Big Man on Campus\"] = [[{\n \"id\": \"02035\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Ally. Miskatonic.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"02035\"] = [[{\n \"id\": \"02035\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Ally. Miskatonic.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Peter Sylvestre (2)|\"] = [[{\n \"id\": \"02035\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Ally. Miskatonic.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Kukri|\"] = [[{\n \"id\": \"02036\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Weapon. Melee.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"02036\"] = [[{\n \"id\": \"02036\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Weapon. Melee.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Indebted|\"] = [[{\n \"id\": \"02037\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Flaw.\",\n \"permanent\": true,\n \"weakness\": true,\n \"basicWeaknessCount\": 2\n}]]\r\nallCards[\"02037\"] = [[{\n \"id\": \"02037\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Flaw.\",\n \"permanent\": true,\n \"weakness\": true,\n \"basicWeaknessCount\": 2\n}]]\r\nallCards[\"Internal Injury|\"] = [[{\n \"id\": \"02038\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Injury.\",\n \"permanent\": false,\n \"weakness\": true,\n \"basicWeaknessCount\": 2\n}]]\r\nallCards[\"02038\"] = [[{\n \"id\": \"02038\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Injury.\",\n \"permanent\": false,\n \"weakness\": true,\n \"basicWeaknessCount\": 2\n}]]\r\nallCards[\"Chronophobia|\"] = [[{\n \"id\": \"02039\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Madness.\",\n \"permanent\": false,\n \"weakness\": true,\n \"basicWeaknessCount\": 2\n}]]\r\nallCards[\"02039\"] = [[{\n \"id\": \"02039\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Madness.\",\n \"permanent\": false,\n \"weakness\": true,\n \"basicWeaknessCount\": 2\n}]]\r\nallCards[\"Dr. Henry Armitage|The Head Librarian\"] = [[{\n \"id\": \"02040\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Miskatonic.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"02040\"] = [[{\n \"id\": \"02040\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Miskatonic.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Dr. Henry Armitage|\"] = [[{\n \"id\": \"02040\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Miskatonic.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Alchemical Concoction|\"] = [[{\n \"id\": \"02059\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Science.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"02059\"] = [[{\n \"id\": \"02059\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Science.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\\\"Jazz\\\" Mulligan|The Head Janitor\"] = [[{\n \"id\": \"02060\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Miskatonic.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"02060\"] = [[{\n \"id\": \"02060\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Miskatonic.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\\\"Jazz\\\" Mulligan|\"] = [[{\n \"id\": \"02060\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Miskatonic.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Professor Warren Rice|Professor of Languages\"] = [[{\n \"id\": \"02061\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Miskatonic.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"02061\"] = [[{\n \"id\": \"02061\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Miskatonic.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Professor Warren Rice|\"] = [[{\n \"id\": \"02061\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Miskatonic.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Peter Clover|Holding All the Cards\"] = [[{\n \"id\": \"02079\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Human. Criminal.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"02079\"] = [[{\n \"id\": \"02079\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Human. Criminal.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Peter Clover|\"] = [[{\n \"id\": \"02079\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Human. Criminal.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Dr. Francis Morgan|Professor of Archaeology\"] = [[{\n \"id\": \"02080\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Miskatonic.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"02080\"] = [[{\n \"id\": \"02080\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Miskatonic.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Dr. Francis Morgan|\"] = [[{\n \"id\": \"02080\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Miskatonic.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Emergency Aid|\"] = [[{\n \"id\": \"02105\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Insight. Science.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"02105\"] = [[{\n \"id\": \"02105\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Insight. Science.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Brother Xavier (1)|Pure of Spirit\"] = [[{\n \"id\": \"02106\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Ally. \",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"02106\"] = [[{\n \"id\": \"02106\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Ally. \",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Brother Xavier (1)|\"] = [[{\n \"id\": \"02106\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Ally. \",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\\\"I've got a plan!\\\"|\"] = [[{\n \"id\": \"02107\",\n \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"traits\": \"Insight. Tactic.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"02107\"] = [[{\n \"id\": \"02107\",\n \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"traits\": \"Insight. Tactic.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Pathfinder (1)|\"] = [[{\n \"id\": \"02108\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Talent.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"02108\"] = [[{\n \"id\": \"02108\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Talent.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Pathfinder (1) (Taboo)|\"] = [[{\n \"id\": \"02108-t\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Talent.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Contraband|\"] = [[{\n \"id\": \"02109\",\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"traits\": \"Supply. Illicit.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"02109\"] = [[{\n \"id\": \"02109\",\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"traits\": \"Supply. Illicit.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Adaptable (1)|\"] = [[{\n \"id\": \"02110\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Talent.\",\n \"level\": 1,\n \"permanent\": true,\n \"weakness\": false\n}]]\r\nallCards[\"02110\"] = [[{\n \"id\": \"02110\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Talent.\",\n \"level\": 1,\n \"permanent\": true,\n \"weakness\": false\n}]]\r\nallCards[\"Delve Too Deep|\"] = [[{\n \"id\": \"02111\",\n \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"traits\": \"Insight.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"02111\"] = [[{\n \"id\": \"02111\",\n \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"traits\": \"Insight.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Delve Too Deep (Taboo)|\"] = [[{\n \"id\": \"02111-t\",\n \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"traits\": \"Insight.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Song of the Dead (2)|\"] = [[{\n \"id\": \"02112\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell. Song.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Charge\",\n \"count\": 5\n }\n}]]\r\nallCards[\"02112\"] = [[{\n \"id\": \"02112\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell. Song.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Charge\",\n \"count\": 5\n }\n}]]\r\nallCards[\"Oops!|\"] = [[{\n \"id\": \"02113\",\n \"alternate_ids\": [ \"60518\" ],\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Fortune.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"02113\"] = [[{\n \"id\": \"02113\",\n \"alternate_ids\": [ \"60518\" ],\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Fortune.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Fire Extinguisher (1)|\"] = [[{\n \"id\": \"02114\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Item. Tool. Melee.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"02114\"] = [[{\n \"id\": \"02114\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Item. Tool. Melee.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Flare (1)|\"] = [[{\n \"id\": \"02115\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Tactic.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"02115\"] = [[{\n \"id\": \"02115\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Tactic.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Smoking Pipe|\"] = [[{\n \"id\": \"02116\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Supply\",\n \"count\": 3\n }\n}]]\r\nallCards[\"02116\"] = [[{\n \"id\": \"02116\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Supply\",\n \"count\": 3\n }\n}]]\r\nallCards[\"Painkillers|\"] = [[{\n \"id\": \"02117\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Supply\",\n \"count\": 3\n }\n}]]\r\nallCards[\"02117\"] = [[{\n \"id\": \"02117\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Supply\",\n \"count\": 3\n }\n}]]\r\nallCards[\"Harold Walsted|Curator of the Museum\"] = [[{\n \"id\": \"02138\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Miskatonic.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"02138\"] = [[{\n \"id\": \"02138\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Miskatonic.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Harold Walsted|\"] = [[{\n \"id\": \"02138\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Miskatonic.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Adam Lynch|Museum Security\"] = [[{\n \"id\": \"02139\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Miskatonic.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"02139\"] = [[{\n \"id\": \"02139\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Miskatonic.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Adam Lynch|\"] = [[{\n \"id\": \"02139\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Miskatonic.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"The Necronomicon|Olaus Wormius Translation\"] = [[{\n \"id\": \"02140\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Tome.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"02140\"] = [[{\n \"id\": \"02140\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Tome.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"The Necronomicon|\"] = [[{\n \"id\": \"02140\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Tome.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Bandolier|\"] = [[{\n \"id\": \"02147\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Item.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"02147\"] = [[{\n \"id\": \"02147\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Item.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Stand Together (3)|\"] = [[{\n \"id\": \"02148\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Spirit.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"02148\"] = [[{\n \"id\": \"02148\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Spirit.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Art Student|\"] = [[{\n \"id\": \"02149\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Ally. Miskatonic.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"02149\"] = [[{\n \"id\": \"02149\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Ally. Miskatonic.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Deduction (2)|\"] = [[{\n \"id\": \"02150\",\n \"type\": \"Skill\",\n \"class\": \"Seeker\",\n \"traits\": \"Practiced. Expert.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"02150\"] = [[{\n \"id\": \"02150\",\n \"type\": \"Skill\",\n \"class\": \"Seeker\",\n \"traits\": \"Practiced. Expert.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\\\"I'm outta here!\\\"|\"] = [[{\n \"id\": \"02151\",\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"traits\": \"Trick. Spirit.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"02151\"] = [[{\n \"id\": \"02151\",\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"traits\": \"Trick. Spirit.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Switchblade (2)|\"] = [[{\n \"id\": \"02152\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Item. Weapon. Melee. Illicit.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"02152\"] = [[{\n \"id\": \"02152\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Item. Weapon. Melee. Illicit.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Switchblade (2) (Taboo)|\"] = [[{\n \"id\": \"02152-t\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Item. Weapon. Melee. Illicit.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Hypnotic Gaze|\"] = [[{\n \"id\": \"02153\",\n \"alternate_ids\": [ \"60414\" ],\n \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"02153\"] = [[{\n \"id\": \"02153\",\n \"alternate_ids\": [ \"60414\" ],\n \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Shrivelling (3)|\"] = [[{\n \"id\": \"02154\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Charge\",\n \"count\": 4\n }\n}]]\r\nallCards[\"02154\"] = [[{\n \"id\": \"02154\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Charge\",\n \"count\": 4\n }\n}]]\r\nallCards[\"Newspaper|\"] = [[{\n \"id\": \"02155\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Item.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"02155\"] = [[{\n \"id\": \"02155\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Item.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Lure (1)|\"] = [[{\n \"id\": \"02156\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Trick.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"02156\"] = [[{\n \"id\": \"02156\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Trick.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Relic Hunter (3)|\"] = [[{\n \"id\": \"02157\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Talent.\",\n \"level\": 3,\n \"permanent\": true,\n \"weakness\": false\n}]]\r\nallCards[\"02157\"] = [[{\n \"id\": \"02157\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Talent.\",\n \"level\": 3,\n \"permanent\": true,\n \"weakness\": false\n}]]\r\nallCards[\"Charisma (3)|\"] = [[{\n \"id\": \"02158\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Talent.\",\n \"level\": 3,\n \"permanent\": true,\n \"weakness\": false\n}]]\r\nallCards[\"02158\"] = [[{\n \"id\": \"02158\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Talent.\",\n \"level\": 3,\n \"permanent\": true,\n \"weakness\": false\n}]]\r\nallCards[\"Across Space and Time|\"] = [[{\n \"id\": \"02178\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Madness.\",\n \"permanent\": false,\n \"weakness\": true\n}]]\r\nallCards[\"02178\"] = [[{\n \"id\": \"02178\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Madness.\",\n \"permanent\": false,\n \"weakness\": true\n}]]\r\nallCards[\"Helpless Passenger|\"] = [[{\n \"id\": \"02179\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Bystander.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"02179\"] = [[{\n \"id\": \"02179\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Bystander.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Prepared for the Worst|\"] = [[{\n \"id\": \"02184\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Tactic.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"02184\"] = [[{\n \"id\": \"02184\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Tactic.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Keen Eye (3)|\"] = [[{\n \"id\": \"02185\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Talent.\",\n \"level\": 3,\n \"permanent\": true,\n \"weakness\": false\n}]]\r\nallCards[\"02185\"] = [[{\n \"id\": \"02185\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Talent.\",\n \"level\": 3,\n \"permanent\": true,\n \"weakness\": false\n}]]\r\nallCards[\"Preposterous Sketches|\"] = [[{\n \"id\": \"02186\",\n \"alternate_ids\": [ \"60218\" ],\n \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"traits\": \"Insight.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"02186\"] = [[{\n \"id\": \"02186\",\n \"alternate_ids\": [ \"60218\" ],\n \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"traits\": \"Insight.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Higher Education (3)|\"] = [[{\n \"id\": \"02187\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Talent.\",\n \"level\": 3,\n \"permanent\": true,\n \"weakness\": false\n}]]\r\nallCards[\"02187\"] = [[{\n \"id\": \"02187\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Talent.\",\n \"level\": 3,\n \"permanent\": true,\n \"weakness\": false\n}]]\r\nallCards[\"Higher Education (3) (Taboo)|\"] = [[{\n \"id\": \"02187-t\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Talent.\",\n \"level\": 3,\n \"permanent\": true,\n \"weakness\": false\n}]]\r\nallCards[\"Lone Wolf|\"] = [[{\n \"id\": \"02188\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Talent.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"02188\"] = [[{\n \"id\": \"02188\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Talent.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Streetwise (3)|\"] = [[{\n \"id\": \"02189\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Talent.\",\n \"level\": 3,\n \"permanent\": true,\n \"weakness\": false\n}]]\r\nallCards[\"02189\"] = [[{\n \"id\": \"02189\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Talent.\",\n \"level\": 3,\n \"permanent\": true,\n \"weakness\": false\n}]]\r\nallCards[\"Streetwise (3) (Taboo)|\"] = [[{\n \"id\": \"02189-t\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Talent.\",\n \"level\": 3,\n \"permanent\": true,\n \"weakness\": false\n}]]\r\nallCards[\"Defiance|\"] = [[{\n \"id\": \"02190\",\n \"alternate_ids\": [ \"60418\" ],\n \"type\": \"Skill\",\n \"class\": \"Mystic\",\n \"traits\": \"Innate.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"02190\"] = [[{\n \"id\": \"02190\",\n \"alternate_ids\": [ \"60418\" ],\n \"type\": \"Skill\",\n \"class\": \"Mystic\",\n \"traits\": \"Innate.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Blood Pact (3)|\"] = [[{\n \"id\": \"02191\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell. Pact.\",\n \"level\": 3,\n \"permanent\": true,\n \"weakness\": false\n}]]\r\nallCards[\"02191\"] = [[{\n \"id\": \"02191\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell. Pact.\",\n \"level\": 3,\n \"permanent\": true,\n \"weakness\": false\n}]]\r\nallCards[\"Rise to the Occasion|\"] = [[{\n \"id\": \"02192\",\n \"type\": \"Skill\",\n \"class\": \"Survivor\",\n \"traits\": \"Innate.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"02192\"] = [[{\n \"id\": \"02192\",\n \"type\": \"Skill\",\n \"class\": \"Survivor\",\n \"traits\": \"Innate.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Scrapper (3)|\"] = [[{\n \"id\": \"02193\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Talent.\",\n \"level\": 3,\n \"permanent\": true,\n \"weakness\": false\n}]]\r\nallCards[\"02193\"] = [[{\n \"id\": \"02193\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Talent.\",\n \"level\": 3,\n \"permanent\": true,\n \"weakness\": false\n}]]\r\nallCards[\"Scrapper (3) (Taboo)|\"] = [[{\n \"id\": \"02193-t\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Talent.\",\n \"level\": 3,\n \"permanent\": true,\n \"weakness\": false\n}]]\r\nallCards[\"Emergency Cache (2)|\"] = [[{\n \"id\": \"02194\",\n \"type\": \"Event\",\n \"class\": \"Neutral\",\n \"traits\": \"Supply.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"02194\"] = [[{\n \"id\": \"02194\",\n \"type\": \"Event\",\n \"class\": \"Neutral\",\n \"traits\": \"Supply.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Key to the Chamber|\"] = [[{\n \"id\": \"02215\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Key.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"02215\"] = [[{\n \"id\": \"02215\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Key.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Zebulon Whateley|Recalling Ancient Things\"] = [[{\n \"id\": \"02217\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Dunwich.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"02217\"] = [[{\n \"id\": \"02217\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Dunwich.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Zebulon Whateley|\"] = [[{\n \"id\": \"02217\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Dunwich.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Earl Sawyer|Smarter Than He Lets On\"] = [[{\n \"id\": \"02218\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Dunwich.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"02218\"] = [[{\n \"id\": \"02218\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Dunwich.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Earl Sawyer|\"] = [[{\n \"id\": \"02218\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Dunwich.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Powder of Ibn Ghazi|Seeing Things Unseen\"] = [[{\n \"id\": \"02219\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"02219\"] = [[{\n \"id\": \"02219\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Powder of Ibn Ghazi|\"] = [[{\n \"id\": \"02219\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\\\"If it bleeds...\\\"|\"] = [[{\n \"id\": \"02225\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"02225\"] = [[{\n \"id\": \"02225\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Springfield M1903 (4)|\"] = [[{\n \"id\": \"02226\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Item. Weapon. Firearm.\",\n \"level\": 4,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Ammo\",\n \"count\": 3\n }\n}]]\r\nallCards[\"02226\"] = [[{\n \"id\": \"02226\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Item. Weapon. Firearm.\",\n \"level\": 4,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Ammo\",\n \"count\": 3\n }\n}]]\r\nallCards[\"Springfield M1903 (4) (Taboo)|\"] = [[{\n \"id\": \"02226-t\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Item. Weapon. Firearm.\",\n \"level\": 4,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Ammo\",\n \"count\": 3\n }\n}]]\r\nallCards[\"Inquiring Mind|\"] = [[{\n \"id\": \"02227\",\n \"type\": \"Skill\",\n \"class\": \"Seeker\",\n \"traits\": \"Innate.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"02227\"] = [[{\n \"id\": \"02227\",\n \"type\": \"Skill\",\n \"class\": \"Seeker\",\n \"traits\": \"Innate.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Expose Weakness (1)|\"] = [[{\n \"id\": \"02228\",\n \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"traits\": \"Insight.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"02228\"] = [[{\n \"id\": \"02228\",\n \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"traits\": \"Insight.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Quick Thinking|\"] = [[{\n \"id\": \"02229\",\n \"type\": \"Skill\",\n \"class\": \"Rogue\",\n \"traits\": \"Innate.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"02229\"] = [[{\n \"id\": \"02229\",\n \"type\": \"Skill\",\n \"class\": \"Rogue\",\n \"traits\": \"Innate.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Quick Thinking (Taboo)|\"] = [[{\n \"id\": \"02229-t\",\n \"type\": \"Skill\",\n \"class\": \"Rogue\",\n \"traits\": \"Innate.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Lucky Dice (2)|...Or Are They?\"] = [[{\n \"id\": \"02230\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Item. Relic.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"02230\"] = [[{\n \"id\": \"02230\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Item. Relic.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Lucky Dice (2)|\"] = [[{\n \"id\": \"02230\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Item. Relic.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Opportunist (2)|\"] = [[{\n \"id\": \"02231\",\n \"type\": \"Skill\",\n \"class\": \"Rogue\",\n \"traits\": \"Innate. Developed.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"02231\"] = [[{\n \"id\": \"02231\",\n \"type\": \"Skill\",\n \"class\": \"Rogue\",\n \"traits\": \"Innate. Developed.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Alyssa Graham|Speaker to the Dead\"] = [[{\n \"id\": \"02232\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Ally. Sorcerer.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"02232\"] = [[{\n \"id\": \"02232\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Ally. Sorcerer.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Alyssa Graham|\"] = [[{\n \"id\": \"02232\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Ally. Sorcerer.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Rite of Seeking (4)|\"] = [[{\n \"id\": \"02233\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\",\n \"level\": 4,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Charge\",\n \"count\": 3\n }\n}]]\r\nallCards[\"02233\"] = [[{\n \"id\": \"02233\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\",\n \"level\": 4,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Charge\",\n \"count\": 3\n }\n}]]\r\nallCards[\"Dark Horse|\"] = [[{\n \"id\": \"02234\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Condition.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"02234\"] = [[{\n \"id\": \"02234\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Condition.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Survival Instinct (2)|\"] = [[{\n \"id\": \"02235\",\n \"type\": \"Skill\",\n \"class\": \"Survivor\",\n \"traits\": \"Innate. Developed.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"02235\"] = [[{\n \"id\": \"02235\",\n \"type\": \"Skill\",\n \"class\": \"Survivor\",\n \"traits\": \"Innate. Developed.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Esoteric Formula|\"] = [[{\n \"id\": \"02254\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Spell.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"02254\"] = [[{\n \"id\": \"02254\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Spell.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Leadership|\"] = [[{\n \"id\": \"02260\",\n \"type\": \"Skill\",\n \"class\": \"Guardian\",\n \"traits\": \"Practiced.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"02260\"] = [[{\n \"id\": \"02260\",\n \"type\": \"Skill\",\n \"class\": \"Guardian\",\n \"traits\": \"Practiced.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\\\"I've had worse�\\\" (4)|\"] = [[{\n \"id\": \"02261\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Spirit.\",\n \"level\": 4,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"02261\"] = [[{\n \"id\": \"02261\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Spirit.\",\n \"level\": 4,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Strange Solution (4)|Restorative Concoction\"] = [[{\n \"id\": \"02262\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Science.\",\n \"level\": 4,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"02262\"] = [[{\n \"id\": \"02262\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Science.\",\n \"level\": 4,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Strange Solution (4)|\"] = [[{\n \"id\": \"02262\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Science.\",\n \"level\": 4,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Strange Solution (4)|Acidic Ichor\"] = [[{\n \"id\": \"02263\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Science.\",\n \"level\": 4,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Supply\",\n \"count\": 3\n }\n}]]\r\nallCards[\"02263\"] = [[{\n \"id\": \"02263\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Science.\",\n \"level\": 4,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Supply\",\n \"count\": 3\n }\n}]]\r\nallCards[\"Strange Solution (4)|\"] = [[{\n \"id\": \"02263\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Science.\",\n \"level\": 4,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Supply\",\n \"count\": 3\n }\n}]]\r\nallCards[\"Strange Solution (4)|Freezing Variant\"] = [[{\n \"id\": \"02264\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Science.\",\n \"level\": 4,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"02264\"] = [[{\n \"id\": \"02264\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Science.\",\n \"level\": 4,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Strange Solution (4)|\"] = [[{\n \"id\": \"02264\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Science.\",\n \"level\": 4,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Joey \\\"The Rat\\\" Vigil|Lookin' Out for #1\"] = [[{\n \"id\": \"02265\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Ally. Criminal.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"02265\"] = [[{\n \"id\": \"02265\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Ally. Criminal.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Joey \\\"The Rat\\\" Vigil|\"] = [[{\n \"id\": \"02265\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Ally. Criminal.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Ace in the Hole (3)|\"] = [[{\n \"id\": \"02266\",\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"traits\": \"Trick.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"02266\"] = [[{\n \"id\": \"02266\",\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"traits\": \"Trick.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Ace in the Hole (3) (Taboo)|\"] = [[{\n \"id\": \"02266-t\",\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"traits\": \"Trick.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Moonlight Ritual|\"] = [[{\n \"id\": \"02267\",\n \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell. Insight.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"02267\"] = [[{\n \"id\": \"02267\",\n \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell. Insight.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Fearless (2)|\"] = [[{\n \"id\": \"02268\",\n \"type\": \"Skill\",\n \"class\": \"Mystic\",\n \"traits\": \"Innate. Developed.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"02268\"] = [[{\n \"id\": \"02268\",\n \"type\": \"Skill\",\n \"class\": \"Mystic\",\n \"traits\": \"Innate. Developed.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Jewel of Aureolus (3)|Gift of the Homunculi\"] = [[{\n \"id\": \"02269\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Item. Relic.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"02269\"] = [[{\n \"id\": \"02269\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Item. Relic.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Jewel of Aureolus (3)|\"] = [[{\n \"id\": \"02269\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Item. Relic.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"A Chance Encounter|\"] = [[{\n \"id\": \"02270\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Fortune.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"02270\"] = [[{\n \"id\": \"02270\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Fortune.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Stroke of Luck (2)|\"] = [[{\n \"id\": \"02271\",\n \"type\": \"Skill\",\n \"class\": \"Survivor\",\n \"traits\": \"Innate. Fortune.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"02271\"] = [[{\n \"id\": \"02271\",\n \"type\": \"Skill\",\n \"class\": \"Survivor\",\n \"traits\": \"Innate. Fortune.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Fine Clothes|\"] = [[{\n \"id\": \"02272\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Clothing.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"02272\"] = [[{\n \"id\": \"02272\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Clothing.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Moment of Respite (3)|\"] = [[{\n \"id\": \"02273\",\n \"type\": \"Event\",\n \"class\": \"Neutral\",\n \"traits\": \"Spirit.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"02273\"] = [[{\n \"id\": \"02273\",\n \"type\": \"Event\",\n \"class\": \"Neutral\",\n \"traits\": \"Spirit.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Vicious Blow (2)|\"] = [[{\n \"id\": \"02299\",\n \"type\": \"Skill\",\n \"class\": \"Guardian\",\n \"traits\": \"Practiced. Expert.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"02299\"] = [[{\n \"id\": \"02299\",\n \"type\": \"Skill\",\n \"class\": \"Guardian\",\n \"traits\": \"Practiced. Expert.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Monster Slayer (5)|\"] = [[{\n \"id\": \"02300\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Spirit.\",\n \"level\": 5,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"02300\"] = [[{\n \"id\": \"02300\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Spirit.\",\n \"level\": 5,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Lightning Gun (5)|\"] = [[{\n \"id\": \"02301\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Item. Weapon. Firearm.\",\n \"level\": 5,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Ammo\",\n \"count\": 3\n }\n}]]\r\nallCards[\"02301\"] = [[{\n \"id\": \"02301\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Item. Weapon. Firearm.\",\n \"level\": 5,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Ammo\",\n \"count\": 3\n }\n}]]\r\nallCards[\"Dr. William T. Maleson|Working on Something Big\"] = [[{\n \"id\": \"02302\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Ally. Miskatonic.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"02302\"] = [[{\n \"id\": \"02302\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Ally. Miskatonic.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Dr. William T. Maleson|\"] = [[{\n \"id\": \"02302\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Ally. Miskatonic.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Deciphered Reality (5)|\"] = [[{\n \"id\": \"02303\",\n \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"traits\": \"Insight.\",\n \"level\": 5,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"02303\"] = [[{\n \"id\": \"02303\",\n \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"traits\": \"Insight.\",\n \"level\": 5,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Chicago Typewriter (4)|\"] = [[{\n \"id\": \"02304\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Item. Weapon. Firearm. Illicit.\",\n \"level\": 4,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Ammo\",\n \"count\": 4\n }\n}]]\r\nallCards[\"02304\"] = [[{\n \"id\": \"02304\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Item. Weapon. Firearm. Illicit.\",\n \"level\": 4,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Ammo\",\n \"count\": 4\n }\n}]]\r\nallCards[\"The Gold Pocket Watch (4)|Stealing Time\"] = [[{\n \"id\": \"02305\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Item. Relic.\",\n \"level\": 4,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"02305\"] = [[{\n \"id\": \"02305\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Item. Relic.\",\n \"level\": 4,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"The Gold Pocket Watch (4)|\"] = [[{\n \"id\": \"02305\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Item. Relic.\",\n \"level\": 4,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Shrivelling (5)|\"] = [[{\n \"id\": \"02306\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\",\n \"level\": 5,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Charge\",\n \"count\": 4\n }\n}]]\r\nallCards[\"02306\"] = [[{\n \"id\": \"02306\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\",\n \"level\": 5,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Charge\",\n \"count\": 4\n }\n}]]\r\nallCards[\"Ward of Protection (5)|\"] = [[{\n \"id\": \"02307\",\n \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell. Spirit.\",\n \"level\": 5,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"02307\"] = [[{\n \"id\": \"02307\",\n \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell. Spirit.\",\n \"level\": 5,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Aquinnah (3)|The Forgotten Daughter\"] = [[{\n \"id\": \"02308\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Ally.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"02308\"] = [[{\n \"id\": \"02308\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Ally.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Aquinnah (3)|\"] = [[{\n \"id\": \"02308\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Ally.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Try and Try Again (3)|\"] = [[{\n \"id\": \"02309\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Talent.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"02309\"] = [[{\n \"id\": \"02309\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Talent.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"The Red-Gloved Man (5)|He Was Never There\"] = [[{\n \"id\": \"02310\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Conspirator.\",\n \"level\": 5,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"02310\"] = [[{\n \"id\": \"02310\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Conspirator.\",\n \"level\": 5,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"The Red-Gloved Man (5)|\"] = [[{\n \"id\": \"02310\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Conspirator.\",\n \"level\": 5,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Mark Harrigan|The Soldier\"] = [[{\n \"id\": \"03001\",\n \"type\": \"Investigator\",\n \"class\": \"Guardian\",\n \"traits\": \"Veteran.\"\n}]]\r\nallCards[\"03001\"] = [[{\n \"id\": \"03001\",\n \"type\": \"Investigator\",\n \"class\": \"Guardian\",\n \"traits\": \"Veteran.\"\n}]]\r\nallCards[\"Mark Harrigan (promo version)|The Soldier\"] = [[{\n \"id\": \"03001-promo\",\n \"type\": \"Investigator\",\n \"class\": \"Guardian\",\n \"traits\": \"Veteran.\"\n}]]\r\nallCards[\"Mark Harrigan (Parallel)|The Soldier\"] = [[{\n \"id\": \"03001-p\",\n \"type\": \"Investigator\",\n \"class\": \"Guardian\",\n \"traits\": \"Veteran.\"\n}]]\r\nallCards[\"Mark Harrigan (Parallel Front)|The Soldier\"] = [[{\n \"id\": \"03001-pf\",\n \"type\": \"Investigator\",\n \"class\": \"Guardian\",\n \"traits\": \"Veteran.\"\n}]]\r\nallCards[\"Mark Harrigan (Parallel Back)|The Soldier\"] = [[{\n \"id\": \"03001-pb\",\n \"type\": \"Investigator\",\n \"class\": \"Guardian\",\n \"traits\": \"Veteran.\"\n}]]\r\nallCards[\"Mark Harrigan|\"] = [[{\n \"id\": \"03001-m\",\n \"type\": \"Minicard\"\n}]]\r\nallCards[\"Mark Harrigan|Promo version\"] = [[{\n \"id\": \"03001-promo-m\",\n \"type\": \"Minicard\"\n}]]\r\nallCards[\"Minh Thi Phan|The Secretary\"] = [[{\n \"id\": \"03002\",\n \"type\": \"Investigator\",\n \"class\": \"Seeker\",\n \"traits\": \"Assistant.\"\n}]]\r\nallCards[\"03002\"] = [[{\n \"id\": \"03002\",\n \"type\": \"Investigator\",\n \"class\": \"Seeker\",\n \"traits\": \"Assistant.\"\n}]]\r\nallCards[\"Minh Thi Phan (promo version)|The Secretary\"] = [[{\n \"id\": \"03002-promo\",\n \"type\": \"Investigator\",\n \"class\": \"Seeker\",\n \"traits\": \"Assistant.\"\n}]]\r\nallCards[\"Minh Thi Phan (Parallel)|The Secretary\"] = [[{\n \"id\": \"03002-p\",\n \"type\": \"Investigator\",\n \"class\": \"Seeker\",\n \"traits\": \"Assistant.\"\n}]]\r\nallCards[\"Minh Thi Phan (Parallel Front)|The Secretary\"] = [[{\n \"id\": \"03002-pf\",\n \"type\": \"Investigator\",\n \"class\": \"Seeker\",\n \"traits\": \"Assistant.\"\n}]]\r\nallCards[\"Minh Thi Phan (Parallel Back)|The Secretary\"] = [[{\n \"id\": \"03002-pb\",\n \"type\": \"Investigator\",\n \"class\": \"Seeker\",\n \"traits\": \"Assistant.\"\n}]]\r\nallCards[\"Minh Thi Phan|\"] = [[{\n \"id\": \"03002-m\",\n \"type\": \"Minicard\"\n}]]\r\nallCards[\"Minh Thi Phan|Promo version\"] = [[{\n \"id\": \"03002-promo-m\",\n \"type\": \"Minicard\"\n}]]\r\nallCards[\"Sefina Rousseau|The Painter\"] = [[{\n \"id\": \"03003\",\n \"type\": \"Investigator\",\n \"class\": \"Rogue\",\n \"traits\": \"Artist.\"\n}]]\r\nallCards[\"03003\"] = [[{\n \"id\": \"03003\",\n \"type\": \"Investigator\",\n \"class\": \"Rogue\",\n \"traits\": \"Artist.\"\n}]]\r\nallCards[\"Sefina Rousseau (promo version)|The Painter\"] = [[{\n \"id\": \"03003-promo\",\n \"type\": \"Investigator\",\n \"class\": \"Rogue\",\n \"traits\": \"Artist.\"\n}]]\r\nallCards[\"Sefina Rousseau (Parallel)|The Painter\"] = [[{\n \"id\": \"03003-p\",\n \"type\": \"Investigator\",\n \"class\": \"Rogue\",\n \"traits\": \"Artist.\"\n}]]\r\nallCards[\"Sefina Rousseau (Parallel Front)|The Painter\"] = [[{\n \"id\": \"03003-pf\",\n \"type\": \"Investigator\",\n \"class\": \"Rogue\",\n \"traits\": \"Artist.\"\n}]]\r\nallCards[\"Sefina Rousseau (Parallel Back)|The Painter\"] = [[{\n \"id\": \"03003-pb\",\n \"type\": \"Investigator\",\n \"class\": \"Rogue\",\n \"traits\": \"Artist.\"\n}]]\r\nallCards[\"Sefina Rousseau|\"] = [[{\n \"id\": \"03003-m\",\n \"type\": \"Minicard\"\n}]]\r\nallCards[\"Sefina Rousseau|Promo version\"] = [[{\n \"id\": \"03003-promo-m\",\n \"type\": \"Minicard\"\n}]]\r\nallCards[\"Akachi Onyele|The Shaman\"] = [[{\n \"id\": \"03004\",\n \"type\": \"Investigator\",\n \"class\": \"Mystic\",\n \"traits\": \"Sorcerer.\"\n}]]\r\nallCards[\"03004\"] = [[{\n \"id\": \"03004\",\n \"type\": \"Investigator\",\n \"class\": \"Mystic\",\n \"traits\": \"Sorcerer.\"\n}]]\r\nallCards[\"Akachi Onyele (promo version)|The Shaman\"] = [[{\n \"id\": \"03004-promo\",\n \"type\": \"Investigator\",\n \"class\": \"Mystic\",\n \"traits\": \"Sorcerer.\"\n}]]\r\nallCards[\"Akachi Onyele (Parallel)|The Shaman\"] = [[{\n \"id\": \"03004-p\",\n \"type\": \"Investigator\",\n \"class\": \"Mystic\",\n \"traits\": \"Sorcerer.\"\n}]]\r\nallCards[\"Akachi Onyele (Parallel Front)|The Shaman\"] = [[{\n \"id\": \"03004-pf\",\n \"type\": \"Investigator\",\n \"class\": \"Mystic\",\n \"traits\": \"Sorcerer.\"\n}]]\r\nallCards[\"Akachi Onyele (Parallel Back)|The Shaman\"] = [[{\n \"id\": \"03004-pb\",\n \"type\": \"Investigator\",\n \"class\": \"Mystic\",\n \"traits\": \"Sorcerer.\"\n}]]\r\nallCards[\"Akachi Onyele|\"] = [[{\n \"id\": \"03004-m\",\n \"type\": \"Minicard\"\n}]]\r\nallCards[\"Akachi Onyele|Promo version\"] = [[{\n \"id\": \"03004-promo-m\",\n \"type\": \"Minicard\"\n}]]\r\nallCards[\"William Yorick|The Gravedigger\"] = [[{\n \"id\": \"03005\",\n \"type\": \"Investigator\",\n \"class\": \"Survivor\",\n \"traits\": \"Warden.\"\n}]]\r\nallCards[\"03005\"] = [[{\n \"id\": \"03005\",\n \"type\": \"Investigator\",\n \"class\": \"Survivor\",\n \"traits\": \"Warden.\"\n}]]\r\nallCards[\"William Yorick (promo version)|The Gravedigger\"] = [[{\n \"id\": \"03005-promo\",\n \"type\": \"Investigator\",\n \"class\": \"Survivor\",\n \"traits\": \"Warden.\"\n}]]\r\nallCards[\"William Yorick (Parallel)|The Gravedigger\"] = [[{\n \"id\": \"03005-p\",\n \"type\": \"Investigator\",\n \"class\": \"Survivor\",\n \"traits\": \"Warden.\"\n}]]\r\nallCards[\"William Yorick (Parallel Front)|The Gravedigger\"] = [[{\n \"id\": \"03005-pf\",\n \"type\": \"Investigator\",\n \"class\": \"Survivor\",\n \"traits\": \"Warden.\"\n}]]\r\nallCards[\"William Yorick (Parallel Back)|The Gravedigger\"] = [[{\n \"id\": \"03005-pb\",\n \"type\": \"Investigator\",\n \"class\": \"Survivor\",\n \"traits\": \"Warden.\"\n}]]\r\nallCards[\"William Yorick|\"] = [[{\n \"id\": \"03005-m\",\n \"type\": \"Minicard\"\n}]]\r\nallCards[\"William Yorick|Promo version\"] = [[{\n \"id\": \"03005-promo-m\",\n \"type\": \"Minicard\"\n}]]\r\nallCards[\"Lola Hayes|The Actress\"] = [[{\n \"id\": \"03006\",\n \"type\": \"Investigator\",\n \"class\": \"Neutral\",\n \"traits\": \"Performer.\"\n}]]\r\nallCards[\"03006\"] = [[{\n \"id\": \"03006\",\n \"type\": \"Investigator\",\n \"class\": \"Neutral\",\n \"traits\": \"Performer.\"\n}]]\r\nallCards[\"Lola Hayes (promo version)|The Actress\"] = [[{\n \"id\": \"03006-promo\",\n \"type\": \"Investigator\",\n \"class\": \"Neutral\",\n \"traits\": \"Performer.\"\n}]]\r\nallCards[\"Lola Hayes (Parallel)|The Actress\"] = [[{\n \"id\": \"03006-p\",\n \"type\": \"Investigator\",\n \"class\": \"Neutral\",\n \"traits\": \"Performer.\"\n}]]\r\nallCards[\"Lola Hayes (Parallel Front)|The Actress\"] = [[{\n \"id\": \"03006-pf\",\n \"type\": \"Investigator\",\n \"class\": \"Neutral\",\n \"traits\": \"Performer.\"\n}]]\r\nallCards[\"Lola Hayes (Parallel Back)|The Actress\"] = [[{\n \"id\": \"03006-pb\",\n \"type\": \"Investigator\",\n \"class\": \"Neutral\",\n \"traits\": \"Performer.\"\n}]]\r\nallCards[\"Lola Hayes|\"] = [[{\n \"id\": \"03006-m\",\n \"type\": \"Minicard\"\n}]]\r\nallCards[\"Lola Hayes|Promo version\"] = [[{\n \"id\": \"03006-promo-m\",\n \"type\": \"Minicard\"\n}]]\r\nallCards[\"The Home Front|\"] = [[{\n \"id\": \"03007\",\n \"type\": \"Skill\",\n \"class\": \"Neutral\",\n \"traits\": \"Practiced. Expert.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"03007\"] = [[{\n \"id\": \"03007\",\n \"type\": \"Skill\",\n \"class\": \"Neutral\",\n \"traits\": \"Practiced. Expert.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Shell Shock|\"] = [[{\n \"id\": \"03008\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Flaw.\",\n \"permanent\": false,\n \"weakness\": true\n}]]\r\nallCards[\"03008\"] = [[{\n \"id\": \"03008\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Flaw.\",\n \"permanent\": false,\n \"weakness\": true\n}]]\r\nallCards[\"Sophie|In Loving Memory\"] = [[{\n \"id\": \"03009\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Spirit.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"03009\"] = [[{\n \"id\": \"03009\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Spirit.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Sophie|\"] = [[{\n \"id\": \"03009\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Spirit.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Analytical Mind|Between the Lines\"] = [[{\n \"id\": \"03010\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Talent.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"03010\"] = [[{\n \"id\": \"03010\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Talent.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Analytical Mind|\"] = [[{\n \"id\": \"03010\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Talent.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"The King in Yellow|Act 1\"] = [[{\n \"id\": \"03011\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Tome.\",\n \"permanent\": false,\n \"weakness\": true\n}]]\r\nallCards[\"03011\"] = [[{\n \"id\": \"03011\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Tome.\",\n \"permanent\": false,\n \"weakness\": true\n}]]\r\nallCards[\"The King in Yellow|\"] = [[{\n \"id\": \"03011\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Tome.\",\n \"permanent\": false,\n \"weakness\": true\n}]]\r\nallCards[\"The Painted World|\"] = [[{\n \"id\": \"03012\",\n \"type\": \"Event\",\n \"class\": \"Neutral\",\n \"traits\": \"Spell.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"03012\"] = [[{\n \"id\": \"03012\",\n \"type\": \"Event\",\n \"class\": \"Neutral\",\n \"traits\": \"Spell.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Stars of Hyades|\"] = [[{\n \"id\": \"03013\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Curse.\",\n \"permanent\": false,\n \"weakness\": true\n}]]\r\nallCards[\"03013\"] = [[{\n \"id\": \"03013\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Curse.\",\n \"permanent\": false,\n \"weakness\": true\n}]]\r\nallCards[\"Spirit-Speaker|Envoy of the Alusi\"] = [[{\n \"id\": \"03014\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ritual.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"03014\"] = [[{\n \"id\": \"03014\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ritual.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Spirit-Speaker|\"] = [[{\n \"id\": \"03014\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ritual.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Angered Spirits|\"] = [[{\n \"id\": \"03015\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Task.\",\n \"permanent\": false,\n \"weakness\": true\n}]]\r\nallCards[\"03015\"] = [[{\n \"id\": \"03015\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Task.\",\n \"permanent\": false,\n \"weakness\": true\n}]]\r\nallCards[\"Bury Them Deep|\"] = [[{\n \"id\": \"03016\",\n \"type\": \"Event\",\n \"class\": \"Neutral\",\n \"traits\": \"Task.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"03016\"] = [[{\n \"id\": \"03016\",\n \"type\": \"Event\",\n \"class\": \"Neutral\",\n \"traits\": \"Task.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Graveyard Ghouls|\"] = [[{\n \"id\": \"03017\",\n \"type\": \"Enemy\",\n \"class\": \"Neutral\",\n \"traits\": \"Humanoid. Monster. Ghoul.\",\n \"permanent\": false,\n \"weakness\": true\n}]]\r\nallCards[\"03017\"] = [[{\n \"id\": \"03017\",\n \"type\": \"Enemy\",\n \"class\": \"Neutral\",\n \"traits\": \"Humanoid. Monster. Ghoul.\",\n \"permanent\": false,\n \"weakness\": true\n}]]\r\nallCards[\"Improvisation|\"] = [[{\n \"id\": \"03018\",\n \"type\": \"Event\",\n \"class\": \"Neutral\",\n \"traits\": \"Insight.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"03018\"] = [[{\n \"id\": \"03018\",\n \"type\": \"Event\",\n \"class\": \"Neutral\",\n \"traits\": \"Insight.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Crisis of Identity|\"] = [[{\n \"id\": \"03019\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Madness.\",\n \"permanent\": false,\n \"weakness\": true\n}]]\r\nallCards[\"03019\"] = [[{\n \"id\": \"03019\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Madness.\",\n \"permanent\": false,\n \"weakness\": true\n}]]\r\nallCards[\".32 Colt|\"] = [[{\n \"id\": \"03020\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Item. Weapon. Firearm.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Ammo\",\n \"count\": 6\n }\n}]]\r\nallCards[\"03020\"] = [[{\n \"id\": \"03020\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Item. Weapon. Firearm.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Ammo\",\n \"count\": 6\n }\n}]]\r\nallCards[\"True Grit|\"] = [[{\n \"id\": \"03021\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Talent.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"03021\"] = [[{\n \"id\": \"03021\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Talent.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\\\"Let me handle this!\\\"|\"] = [[{\n \"id\": \"03022\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Spirit.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"03022\"] = [[{\n \"id\": \"03022\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Spirit.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Ever Vigilant (1)|\"] = [[{\n \"id\": \"03023\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Tactic.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"03023\"] = [[{\n \"id\": \"03023\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Tactic.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Fieldwork|\"] = [[{\n \"id\": \"03024\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Talent.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"03024\"] = [[{\n \"id\": \"03024\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Talent.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Archaic Glyphs|Untranslated\"] = [[{\n \"id\": \"03025\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Occult. Tome.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"03025\"] = [[{\n \"id\": \"03025\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Occult. Tome.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Archaic Glyphs|\"] = [[{\n \"id\": \"03025\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Occult. Tome.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"No Stone Unturned|\"] = [[{\n \"id\": \"03026\",\n \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"traits\": \"Insight.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"03026\"] = [[{\n \"id\": \"03026\",\n \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"traits\": \"Insight.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"In the Know (1)|\"] = [[{\n \"id\": \"03027\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Talent.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Secret\",\n \"count\": 3\n }\n}]]\r\nallCards[\"03027\"] = [[{\n \"id\": \"03027\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Talent.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Secret\",\n \"count\": 3\n }\n}]]\r\nallCards[\"Stealth|\"] = [[{\n \"id\": \"03028\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Talent.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"03028\"] = [[{\n \"id\": \"03028\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Talent.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Sleight of Hand|\"] = [[{\n \"id\": \"03029\",\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"traits\": \"Trick.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"03029\"] = [[{\n \"id\": \"03029\",\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"traits\": \"Trick.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Sleight of Hand (Taboo)|\"] = [[{\n \"id\": \"03029-t\",\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"traits\": \"Trick.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Daring Maneuver|\"] = [[{\n \"id\": \"03030\",\n \"alternate_ids\": [ \"60313\" ],\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"traits\": \"Gambit.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"03030\"] = [[{\n \"id\": \"03030\",\n \"alternate_ids\": [ \"60313\" ],\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"traits\": \"Gambit.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Lockpicks (1)|\"] = [[{\n \"id\": \"03031\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Item. Tool. Illicit.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Supply\",\n \"count\": 3\n }\n}]]\r\nallCards[\"03031\"] = [[{\n \"id\": \"03031\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Item. Tool. Illicit.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Supply\",\n \"count\": 3\n }\n}]]\r\nallCards[\"Alchemical Transmutation|\"] = [[{\n \"id\": \"03032\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Charge\",\n \"count\": 3\n }\n}]]\r\nallCards[\"03032\"] = [[{\n \"id\": \"03032\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Charge\",\n \"count\": 3\n }\n}]]\r\nallCards[\"Uncage the Soul|\"] = [[{\n \"id\": \"03033\",\n \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"traits\": \"Spirit.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"03033\"] = [[{\n \"id\": \"03033\",\n \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"traits\": \"Spirit.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Astral Travel|\"] = [[{\n \"id\": \"03034\",\n \"alternate_ids\": [ \"60413\" ],\n \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"03034\"] = [[{\n \"id\": \"03034\",\n \"alternate_ids\": [ \"60413\" ],\n \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Spirit Athame (1)|\"] = [[{\n \"id\": \"03035\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Item. Relic. Weapon. Melee.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"03035\"] = [[{\n \"id\": \"03035\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Item. Relic. Weapon. Melee.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Lantern|\"] = [[{\n \"id\": \"03036\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Item. Tool.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"03036\"] = [[{\n \"id\": \"03036\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Item. Tool.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Gravedigger's Shovel|\"] = [[{\n \"id\": \"03037\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Item. Tool. Weapon. Melee.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"03037\"] = [[{\n \"id\": \"03037\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Item. Tool. Weapon. Melee.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Hiding Spot|\"] = [[{\n \"id\": \"03038\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Tactic. Trick.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"03038\"] = [[{\n \"id\": \"03038\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Tactic. Trick.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Resourceful|\"] = [[{\n \"id\": \"03039\",\n \"type\": \"Skill\",\n \"class\": \"Survivor\",\n \"traits\": \"Innate.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"03039\"] = [[{\n \"id\": \"03039\",\n \"type\": \"Skill\",\n \"class\": \"Survivor\",\n \"traits\": \"Innate.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Overzealous|\"] = [[{\n \"id\": \"03040\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Flaw.\",\n \"permanent\": false,\n \"weakness\": true,\n \"basicWeaknessCount\": 2\n}]]\r\nallCards[\"03040\"] = [[{\n \"id\": \"03040\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Flaw.\",\n \"permanent\": false,\n \"weakness\": true,\n \"basicWeaknessCount\": 2\n}]]\r\nallCards[\"Drawing the Sign|\"] = [[{\n \"id\": \"03041\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Pact. Madness.\",\n \"permanent\": false,\n \"weakness\": true,\n \"basicWeaknessCount\": 1\n}]]\r\nallCards[\"03041\"] = [[{\n \"id\": \"03041\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Pact. Madness.\",\n \"permanent\": false,\n \"weakness\": true,\n \"basicWeaknessCount\": 1\n}]]\r\nallCards[\"The Thing That Follows|\"] = [[{\n \"id\": \"03042\",\n \"type\": \"Enemy\",\n \"class\": \"Neutral\",\n \"traits\": \"Monster. Curse.\",\n \"permanent\": false,\n \"weakness\": true,\n \"basicWeaknessCount\": 1\n}]]\r\nallCards[\"03042\"] = [[{\n \"id\": \"03042\",\n \"type\": \"Enemy\",\n \"class\": \"Neutral\",\n \"traits\": \"Monster. Curse.\",\n \"permanent\": false,\n \"weakness\": true,\n \"basicWeaknessCount\": 1\n}]]\r\nallCards[\"The Man in the Pallid Mask|\"] = [[{\n \"id\": \"03059\",\n \"type\": \"Enemy\",\n \"class\": \"Neutral\",\n \"traits\": \"Humanoid. Elite.\",\n \"permanent\": false,\n \"weakness\": true\n}]]\r\nallCards[\"03059\"] = [[{\n \"id\": \"03059\",\n \"type\": \"Enemy\",\n \"class\": \"Neutral\",\n \"traits\": \"Humanoid. Elite.\",\n \"permanent\": false,\n \"weakness\": true\n}]]\r\nallCards[\"Constance Dumaine|Sociable Hostess\"] = [[{\n \"id\": \"03076a\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Bystander.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"03076a\"] = [[{\n \"id\": \"03076a\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Bystander.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Constance Dumaine|\"] = [[{\n \"id\": \"03076a\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Bystander.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Jordan Perry|Dignified Financier\"] = [[{\n \"id\": \"03077\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Bystander.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"03077\"] = [[{\n \"id\": \"03077\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Bystander.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Jordan Perry|\"] = [[{\n \"id\": \"03077\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Bystander.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Ishimaru Haruko|Costume Designer\"] = [[{\n \"id\": \"03078\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Bystander.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"03078\"] = [[{\n \"id\": \"03078\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Bystander.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Ishimaru Haruko|\"] = [[{\n \"id\": \"03078\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Bystander.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Sebastien Moreau|Impassioned Producer\"] = [[{\n \"id\": \"03079\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Bystander.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"03079\"] = [[{\n \"id\": \"03079\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Bystander.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Sebastien Moreau|\"] = [[{\n \"id\": \"03079\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Bystander.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Ashleigh Clarke|Talented Entertainer\"] = [[{\n \"id\": \"03080\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Bystander.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"03080\"] = [[{\n \"id\": \"03080\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Bystander.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Ashleigh Clarke|\"] = [[{\n \"id\": \"03080\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Bystander.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Green Man Medallion|Hour of the Huntress\"] = [[{\n \"id\": \"98002\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Relic.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"98002\"] = [[{\n \"id\": \"98002\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Relic.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Green Man Medallion|\"] = [[{\n \"id\": \"98002\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Relic.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Sacrificial Beast|\"] = [[{\n \"id\": \"98003\",\n \"type\": \"Enemy\",\n \"class\": \"Neutral\",\n \"traits\": \"Monster. Dark Young.\",\n \"permanent\": false,\n \"weakness\": true\n}]]\r\nallCards[\"98003\"] = [[{\n \"id\": \"98003\",\n \"type\": \"Enemy\",\n \"class\": \"Neutral\",\n \"traits\": \"Monster. Dark Young.\",\n \"permanent\": false,\n \"weakness\": true\n}]]\r\nallCards[\"Heroic Rescue|\"] = [[{\n \"id\": \"03106\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Spirit. Tactic.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"03106\"] = [[{\n \"id\": \"03106\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Spirit. Tactic.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Combat Training (1)|\"] = [[{\n \"id\": \"03107\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Talent. Composure.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"03107\"] = [[{\n \"id\": \"03107\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Talent. Composure.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Anatomical Diagrams|\"] = [[{\n \"id\": \"03108\",\n \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"traits\": \"Insight.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"03108\"] = [[{\n \"id\": \"03108\",\n \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"traits\": \"Insight.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Scientific Theory (1)|\"] = [[{\n \"id\": \"03109\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Talent. Composure.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"03109\"] = [[{\n \"id\": \"03109\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Talent. Composure.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Knuckleduster|\"] = [[{\n \"id\": \"03110\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Item. Weapon. Melee. Illicit.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"03110\"] = [[{\n \"id\": \"03110\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Item. Weapon. Melee. Illicit.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Moxie (1)|\"] = [[{\n \"id\": \"03111\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Talent. Composure.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"03111\"] = [[{\n \"id\": \"03111\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Talent. Composure.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"David Renfield|Esteemed Eschatologist\"] = [[{\n \"id\": \"03112\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Ally. Patron.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"03112\"] = [[{\n \"id\": \"03112\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Ally. Patron.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"David Renfield|\"] = [[{\n \"id\": \"03112\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Ally. Patron.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Grounded (1)|\"] = [[{\n \"id\": \"03113\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Talent. Composure.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"03113\"] = [[{\n \"id\": \"03113\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Talent. Composure.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Cherished Keepsake|\"] = [[{\n \"id\": \"03114\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Item. Charm.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"03114\"] = [[{\n \"id\": \"03114\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Item. Charm.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Plucky (1)|\"] = [[{\n \"id\": \"03115\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Talent. Composure.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"03115\"] = [[{\n \"id\": \"03115\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Talent. Composure.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Say Your Prayers|\"] = [[{\n \"id\": \"03116\",\n \"type\": \"Skill\",\n \"class\": \"Neutral\",\n \"traits\": \"Desperate.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"03116\"] = [[{\n \"id\": \"03116\",\n \"type\": \"Skill\",\n \"class\": \"Neutral\",\n \"traits\": \"Desperate.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Desperate Search|\"] = [[{\n \"id\": \"03117\",\n \"type\": \"Skill\",\n \"class\": \"Neutral\",\n \"traits\": \"Desperate.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"03117\"] = [[{\n \"id\": \"03117\",\n \"type\": \"Skill\",\n \"class\": \"Neutral\",\n \"traits\": \"Desperate.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Reckless Assault|\"] = [[{\n \"id\": \"03118\",\n \"type\": \"Skill\",\n \"class\": \"Neutral\",\n \"traits\": \"Desperate.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"03118\"] = [[{\n \"id\": \"03118\",\n \"type\": \"Skill\",\n \"class\": \"Neutral\",\n \"traits\": \"Desperate.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Run For Your Life|\"] = [[{\n \"id\": \"03119\",\n \"type\": \"Skill\",\n \"class\": \"Neutral\",\n \"traits\": \"Desperate.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"03119\"] = [[{\n \"id\": \"03119\",\n \"type\": \"Skill\",\n \"class\": \"Neutral\",\n \"traits\": \"Desperate.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Mr. Peabody|Historical Society Curator\"] = [[{\n \"id\": \"03141\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Historical Society.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"03141\"] = [[{\n \"id\": \"03141\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Historical Society.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Mr. Peabody|\"] = [[{\n \"id\": \"03141\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Historical Society.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Clasp of Black Onyx|A Gift Unlooked For\"] = [[{\n \"id\": \"03142\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Relic.\",\n \"permanent\": false,\n \"weakness\": true\n}]]\r\nallCards[\"03142\"] = [[{\n \"id\": \"03142\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Relic.\",\n \"permanent\": false,\n \"weakness\": true\n}]]\r\nallCards[\"Clasp of Black Onyx|\"] = [[{\n \"id\": \"03142\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Relic.\",\n \"permanent\": false,\n \"weakness\": true\n}]]\r\nallCards[\"The Tattered Cloak|Regalia Dementia\"] = [[{\n \"id\": \"03143\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Clothing.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"03143\"] = [[{\n \"id\": \"03143\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Clothing.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"The Tattered Cloak|\"] = [[{\n \"id\": \"03143\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Clothing.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Trench Knife|\"] = [[{\n \"id\": \"03147\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Item. Weapon. Melee.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"03147\"] = [[{\n \"id\": \"03147\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Item. Weapon. Melee.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Ambush (1)|\"] = [[{\n \"id\": \"03148\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Tactic.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"03148\"] = [[{\n \"id\": \"03148\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Tactic.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Charles Ross, Esq.|Acquisitions and Solicitation\"] = [[{\n \"id\": \"03149\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Ally. Patron.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"03149\"] = [[{\n \"id\": \"03149\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Ally. Patron.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Charles Ross, Esq.|\"] = [[{\n \"id\": \"03149\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Ally. Patron.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Forewarned (1)|\"] = [[{\n \"id\": \"03150\",\n \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"traits\": \"Insight.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"03150\"] = [[{\n \"id\": \"03150\",\n \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"traits\": \"Insight.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Dario El-Amin|Unscrupulous Investor\"] = [[{\n \"id\": \"03151\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Ally. Patron.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"03151\"] = [[{\n \"id\": \"03151\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Ally. Patron.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Dario El-Amin|\"] = [[{\n \"id\": \"03151\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Ally. Patron.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Sneak Attack (2)|\"] = [[{\n \"id\": \"03152\",\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"traits\": \"Tactic.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"03152\"] = [[{\n \"id\": \"03152\",\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"traits\": \"Tactic.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Storm of Spirits|\"] = [[{\n \"id\": \"03153\",\n \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"03153\"] = [[{\n \"id\": \"03153\",\n \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Book of Shadows (1)|\"] = [[{\n \"id\": \"03154\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Item. Tome.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"03154\"] = [[{\n \"id\": \"03154\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Item. Tome.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Fight or Flight|\"] = [[{\n \"id\": \"03155\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Spirit.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"03155\"] = [[{\n \"id\": \"03155\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Spirit.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"A Test of Will (1)|\"] = [[{\n \"id\": \"03156\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Spirit.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"03156\"] = [[{\n \"id\": \"03156\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Spirit.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Devil's Luck (1)|\"] = [[{\n \"id\": \"03157\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Fortune.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"03157\"] = [[{\n \"id\": \"03157\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Fortune.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Calling in Favors|\"] = [[{\n \"id\": \"03158\",\n \"type\": \"Event\",\n \"class\": \"Neutral\",\n \"traits\": \"Favor.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"03158\"] = [[{\n \"id\": \"03158\",\n \"type\": \"Event\",\n \"class\": \"Neutral\",\n \"traits\": \"Favor.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Split the Angle|Ire of the Void\"] = [[{\n \"id\": \"98008\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Spell.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"98008\"] = [[{\n \"id\": \"98008\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Spell.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Split the Angle|\"] = [[{\n \"id\": \"98008\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Spell.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Vengeful Hound|\"] = [[{\n \"id\": \"98009\",\n \"type\": \"Enemy\",\n \"class\": \"Neutral\",\n \"traits\": \"Monster. Extradimensional. Tindalos.\",\n \"permanent\": false,\n \"weakness\": true\n}]]\r\nallCards[\"98009\"] = [[{\n \"id\": \"98009\",\n \"type\": \"Enemy\",\n \"class\": \"Neutral\",\n \"traits\": \"Monster. Extradimensional. Tindalos.\",\n \"permanent\": false,\n \"weakness\": true\n}]]\r\nallCards[\"\\\"I'll see you in hell!\\\"|\"] = [[{\n \"id\": \"03189\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Spirit.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"03189\"] = [[{\n \"id\": \"03189\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Spirit.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\".45 Automatic (2)|\"] = [[{\n \"id\": \"03190\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Item. Weapon. Firearm.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Ammo\",\n \"count\": 4\n }\n}]]\r\nallCards[\"03190\"] = [[{\n \"id\": \"03190\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Item. Weapon. Firearm.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Ammo\",\n \"count\": 4\n }\n}]]\r\nallCards[\"Logical Reasoning|\"] = [[{\n \"id\": \"03191\",\n \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"traits\": \"Insight.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"03191\"] = [[{\n \"id\": \"03191\",\n \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"traits\": \"Insight.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Archaic Glyphs (3)|Guiding Stones\"] = [[{\n \"id\": \"03192\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Spell.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"03192\"] = [[{\n \"id\": \"03192\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Spell.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Archaic Glyphs (3)|\"] = [[{\n \"id\": \"03192\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Spell.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Archaic Glyphs (3)|Prophecy Foretold\"] = [[{\n \"id\": \"03193\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Spell.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"03193\"] = [[{\n \"id\": \"03193\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Spell.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Archaic Glyphs (3)|\"] = [[{\n \"id\": \"03193\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Spell.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Cheap Shot|\"] = [[{\n \"id\": \"03194\",\n \"alternate_ids\": [ \"60312\" ],\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"traits\": \"Trick.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"03194\"] = [[{\n \"id\": \"03194\",\n \"alternate_ids\": [ \"60312\" ],\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"traits\": \"Trick.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Pickpocketing (2)|\"] = [[{\n \"id\": \"03195\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Talent. Illicit.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"03195\"] = [[{\n \"id\": \"03195\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Talent. Illicit.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Quantum Flux|\"] = [[{\n \"id\": \"03196\",\n \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"traits\": \"Insight.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"03196\"] = [[{\n \"id\": \"03196\",\n \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"traits\": \"Insight.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Recharge (2)|\"] = [[{\n \"id\": \"03197\",\n \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"03197\"] = [[{\n \"id\": \"03197\",\n \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Madame Labranche|Mysterious Benefactress\"] = [[{\n \"id\": \"03198\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Ally. Patron.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"03198\"] = [[{\n \"id\": \"03198\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Ally. Patron.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Madame Labranche|\"] = [[{\n \"id\": \"03198\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Ally. Patron.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Snare Trap (2)|\"] = [[{\n \"id\": \"03199\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Trap. Improvised.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"03199\"] = [[{\n \"id\": \"03199\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Trap. Improvised.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Lost Soul|\"] = [[{\n \"id\": \"03227\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Madness. Pact.\",\n \"permanent\": false,\n \"weakness\": true\n}]]\r\nallCards[\"03227\"] = [[{\n \"id\": \"03227\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Madness. Pact.\",\n \"permanent\": false,\n \"weakness\": true\n}]]\r\nallCards[\"Inspiring Presence|\"] = [[{\n \"id\": \"03228\",\n \"type\": \"Skill\",\n \"class\": \"Guardian\",\n \"traits\": \"Innate.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"03228\"] = [[{\n \"id\": \"03228\",\n \"type\": \"Skill\",\n \"class\": \"Guardian\",\n \"traits\": \"Innate.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Mano a Mano (1)|\"] = [[{\n \"id\": \"03229\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Spirit. Bold.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"03229\"] = [[{\n \"id\": \"03229\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Spirit. Bold.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"First Aid (3)|\"] = [[{\n \"id\": \"03230\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Talent. Science.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Supply\",\n \"count\": 4\n }\n}]]\r\nallCards[\"03230\"] = [[{\n \"id\": \"03230\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Talent. Science.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Supply\",\n \"count\": 4\n }\n}]]\r\nallCards[\"Eureka!|\"] = [[{\n \"id\": \"03231\",\n \"type\": \"Skill\",\n \"class\": \"Seeker\",\n \"traits\": \"Innate.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"03231\"] = [[{\n \"id\": \"03231\",\n \"type\": \"Skill\",\n \"class\": \"Seeker\",\n \"traits\": \"Innate.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Shortcut (2)|\"] = [[{\n \"id\": \"03232\",\n \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"traits\": \"Insight. Tactic.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"03232\"] = [[{\n \"id\": \"03232\",\n \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"traits\": \"Insight. Tactic.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\\\"Watch this!\\\"|\"] = [[{\n \"id\": \"03233\",\n \"type\": \"Skill\",\n \"class\": \"Rogue\",\n \"traits\": \"Gambit.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"03233\"] = [[{\n \"id\": \"03233\",\n \"type\": \"Skill\",\n \"class\": \"Rogue\",\n \"traits\": \"Gambit.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\".41 Derringer (2)|\"] = [[{\n \"id\": \"03234\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Item. Weapon. Firearm. Illicit.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Ammo\",\n \"count\": 3\n }\n}]]\r\nallCards[\"03234\"] = [[{\n \"id\": \"03234\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Item. Weapon. Firearm. Illicit.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Ammo\",\n \"count\": 3\n }\n}]]\r\nallCards[\"Torrent of Power|\"] = [[{\n \"id\": \"03235\",\n \"type\": \"Skill\",\n \"class\": \"Mystic\",\n \"traits\": \"Practiced.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"03235\"] = [[{\n \"id\": \"03235\",\n \"type\": \"Skill\",\n \"class\": \"Mystic\",\n \"traits\": \"Practiced.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Scrying (3)|\"] = [[{\n \"id\": \"03236\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Charge\",\n \"count\": 3\n }\n}]]\r\nallCards[\"03236\"] = [[{\n \"id\": \"03236\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Charge\",\n \"count\": 3\n }\n}]]\r\nallCards[\"Waylay|\"] = [[{\n \"id\": \"03237\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Tactic.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"03237\"] = [[{\n \"id\": \"03237\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Tactic.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"A Chance Encounter (2)|\"] = [[{\n \"id\": \"03238\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Fortune.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"03238\"] = [[{\n \"id\": \"03238\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Fortune.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Emergency Cache (3)|\"] = [[{\n \"id\": \"03239\",\n \"type\": \"Event\",\n \"class\": \"Neutral\",\n \"traits\": \"Supply.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"03239\"] = [[{\n \"id\": \"03239\",\n \"type\": \"Event\",\n \"class\": \"Neutral\",\n \"traits\": \"Supply.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"On the Hunt|\"] = [[{\n \"id\": \"03263\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Tactic.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"03263\"] = [[{\n \"id\": \"03263\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Tactic.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Stick to the Plan (3)|\"] = [[{\n \"id\": \"03264\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Talent.\",\n \"level\": 3,\n \"permanent\": true,\n \"weakness\": false\n}]]\r\nallCards[\"03264\"] = [[{\n \"id\": \"03264\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Talent.\",\n \"level\": 3,\n \"permanent\": true,\n \"weakness\": false\n}]]\r\nallCards[\"Guidance|\"] = [[{\n \"id\": \"03265\",\n \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"traits\": \"Insight.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"03265\"] = [[{\n \"id\": \"03265\",\n \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"traits\": \"Insight.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Arcane Insight (4)|\"] = [[{\n \"id\": \"03266\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Spell.\",\n \"level\": 4,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Charge\",\n \"count\": 3\n }\n}]]\r\nallCards[\"03266\"] = [[{\n \"id\": \"03266\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Spell.\",\n \"level\": 4,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Charge\",\n \"count\": 3\n }\n}]]\r\nallCards[\"Narrow Escape|\"] = [[{\n \"id\": \"03267\",\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"traits\": \"Fortune.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"03267\"] = [[{\n \"id\": \"03267\",\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"traits\": \"Fortune.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Suggestion (4)|\"] = [[{\n \"id\": \"03268\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Spell.\",\n \"level\": 4,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Charge\",\n \"count\": 3\n }\n}]]\r\nallCards[\"03268\"] = [[{\n \"id\": \"03268\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Spell.\",\n \"level\": 4,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Charge\",\n \"count\": 3\n }\n}]]\r\nallCards[\"St. Hubert's Key|Cleansing Fire\"] = [[{\n \"id\": \"03269\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Item. Charm.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"03269\"] = [[{\n \"id\": \"03269\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Item. Charm.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"St. Hubert's Key|\"] = [[{\n \"id\": \"03269\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Item. Charm.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Ward of Protection (2)|\"] = [[{\n \"id\": \"03270\",\n \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell. Spirit.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"03270\"] = [[{\n \"id\": \"03270\",\n \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell. Spirit.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Arcane Initiate (3)|\"] = [[{\n \"id\": \"03271\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Ally. Sorcerer.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"doom\",\n \"type\": \"Doom\",\n \"count\": 1\n }\n}]]\r\nallCards[\"03271\"] = [[{\n \"id\": \"03271\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Ally. Sorcerer.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"doom\",\n \"type\": \"Doom\",\n \"count\": 1\n }\n}]]\r\nallCards[\"\\\"Not without a fight!\\\"|\"] = [[{\n \"id\": \"03272\",\n \"type\": \"Skill\",\n \"class\": \"Survivor\",\n \"traits\": \"Innate.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"03272\"] = [[{\n \"id\": \"03272\",\n \"type\": \"Skill\",\n \"class\": \"Survivor\",\n \"traits\": \"Innate.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"True Survivor (3)|\"] = [[{\n \"id\": \"03273\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Spirit.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"03273\"] = [[{\n \"id\": \"03273\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Spirit.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Mysteries Remain|\"] = [[{\n \"id\": \"98005\",\n \"type\": \"Event\",\n \"class\": \"Neutral\",\n \"traits\": \"Insight.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"98005\"] = [[{\n \"id\": \"98005\",\n \"type\": \"Event\",\n \"class\": \"Neutral\",\n \"traits\": \"Insight.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"The Dirge of Reason|\"] = [[{\n \"id\": \"98006\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Madness.\",\n \"permanent\": false,\n \"weakness\": true\n}]]\r\nallCards[\"98006\"] = [[{\n \"id\": \"98006\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Madness.\",\n \"permanent\": false,\n \"weakness\": true\n}]]\r\nallCards[\"\\\"Eat lead!\\\" (2)|\"] = [[{\n \"id\": \"03304\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Tactic.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"03304\"] = [[{\n \"id\": \"03304\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Tactic.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Armor of Ardennes (5)|\"] = [[{\n \"id\": \"03305\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Item. Armor. Relic.\",\n \"level\": 5,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"03305\"] = [[{\n \"id\": \"03305\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Item. Armor. Relic.\",\n \"level\": 5,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Eidetic Memory (3)|\"] = [[{\n \"id\": \"03306\",\n \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"traits\": \"Spirit.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"03306\"] = [[{\n \"id\": \"03306\",\n \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"traits\": \"Spirit.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"No Stone Unturned (5)|\"] = [[{\n \"id\": \"03307\",\n \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"traits\": \"Insight.\",\n \"level\": 5,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"03307\"] = [[{\n \"id\": \"03307\",\n \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"traits\": \"Insight.\",\n \"level\": 5,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Charon's Obol (1)|The Ferryman's Pay\"] = [[{\n \"id\": \"03308\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Item. Relic.\",\n \"level\": 1,\n \"permanent\": true,\n \"weakness\": false\n}]]\r\nallCards[\"03308\"] = [[{\n \"id\": \"03308\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Item. Relic.\",\n \"level\": 1,\n \"permanent\": true,\n \"weakness\": false\n}]]\r\nallCards[\"Charon's Obol (1)|\"] = [[{\n \"id\": \"03308\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Item. Relic.\",\n \"level\": 1,\n \"permanent\": true,\n \"weakness\": false\n}]]\r\nallCards[\"Lupara (3)|\"] = [[{\n \"id\": \"03309\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Item. Weapon. Firearm. Illicit.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Ammo\",\n \"count\": 2\n }\n}]]\r\nallCards[\"03309\"] = [[{\n \"id\": \"03309\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Item. Weapon. Firearm. Illicit.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Ammo\",\n \"count\": 2\n }\n}]]\r\nallCards[\"Cheat Death (5)|\"] = [[{\n \"id\": \"03310\",\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"traits\": \"Trick. Fated.\",\n \"level\": 5,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"03310\"] = [[{\n \"id\": \"03310\",\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"traits\": \"Trick. Fated.\",\n \"level\": 5,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Time Warp (2)|\"] = [[{\n \"id\": \"03311\",\n \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell. Paradox.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"03311\"] = [[{\n \"id\": \"03311\",\n \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell. Paradox.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Seal of the Elder Sign (5)|\"] = [[{\n \"id\": \"03312\",\n \"type\": \"Skill\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell. Expert.\",\n \"level\": 5,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"03312\"] = [[{\n \"id\": \"03312\",\n \"type\": \"Skill\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell. Expert.\",\n \"level\": 5,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Newspaper (2)|\"] = [[{\n \"id\": \"03313\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Item.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"03313\"] = [[{\n \"id\": \"03313\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Item.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Infighting (3)|\"] = [[{\n \"id\": \"03314\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Trick.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"03314\"] = [[{\n \"id\": \"03314\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Trick.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Key of Ys (5)|Let the Storm Rage\"] = [[{\n \"id\": \"03315\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Relic.\",\n \"level\": 5,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"03315\"] = [[{\n \"id\": \"03315\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Relic.\",\n \"level\": 5,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Key of Ys (5) (Taboo)|Let the Storm Rage\"] = [[{\n \"id\": \"03315-t\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Relic.\",\n \"level\": 5,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Key of Ys (5)|\"] = [[{\n \"id\": \"03315\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Relic.\",\n \"level\": 5,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Key of Ys (5) (Taboo)|\"] = [[{\n \"id\": \"03315-t\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Relic.\",\n \"level\": 5,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Foolishness|Foolish Cat of Ulthar\"] = [[{\n \"id\": \"98011\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Creature. Dreamlands.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"98011\"] = [[{\n \"id\": \"98011\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Creature. Dreamlands.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Foolishness|\"] = [[{\n \"id\": \"98011\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Creature. Dreamlands.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"To Fight the Black Wind|\"] = [[{\n \"id\": \"98012\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Task. Dreamlands.\",\n \"permanent\": false,\n \"weakness\": true\n}]]\r\nallCards[\"98012\"] = [[{\n \"id\": \"98012\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Task. Dreamlands.\",\n \"permanent\": false,\n \"weakness\": true\n}]]\r\nallCards[\"Leo Anderson|The Expedition Leader\"] = [[{\n \"id\": \"04001\",\n \"type\": \"Investigator\",\n \"class\": \"Guardian\",\n \"traits\": \"Veteran. Wayfarer.\"\n}]]\r\nallCards[\"04001\"] = [[{\n \"id\": \"04001\",\n \"type\": \"Investigator\",\n \"class\": \"Guardian\",\n \"traits\": \"Veteran. Wayfarer.\"\n}]]\r\nallCards[\"Leo Anderson (promo version)|The Expedition Leader\"] = [[{\n \"id\": \"04001-promo\",\n \"type\": \"Investigator\",\n \"class\": \"Guardian\",\n \"traits\": \"Veteran. Wayfarer.\"\n}]]\r\nallCards[\"Leo Anderson (Parallel)|The Expedition Leader\"] = [[{\n \"id\": \"04001-p\",\n \"type\": \"Investigator\",\n \"class\": \"Guardian\",\n \"traits\": \"Veteran. Wayfarer.\"\n}]]\r\nallCards[\"Leo Anderson (Parallel Front)|The Expedition Leader\"] = [[{\n \"id\": \"04001-pf\",\n \"type\": \"Investigator\",\n \"class\": \"Guardian\",\n \"traits\": \"Veteran. Wayfarer.\"\n}]]\r\nallCards[\"Leo Anderson (Parallel Back)|The Expedition Leader\"] = [[{\n \"id\": \"04001-pb\",\n \"type\": \"Investigator\",\n \"class\": \"Guardian\",\n \"traits\": \"Veteran. Wayfarer.\"\n}]]\r\nallCards[\"Leo Anderson|\"] = [[{\n \"id\": \"04001-m\",\n \"type\": \"Minicard\"\n}]]\r\nallCards[\"Leo Anderson|Promo version\"] = [[{\n \"id\": \"04001-promo-m\",\n \"type\": \"Minicard\"\n}]]\r\nallCards[\"Ursula Downs|The Explorer\"] = [[{\n \"id\": \"04002\",\n \"type\": \"Investigator\",\n \"class\": \"Seeker\",\n \"traits\": \"Wayfarer.\"\n}]]\r\nallCards[\"04002\"] = [[{\n \"id\": \"04002\",\n \"type\": \"Investigator\",\n \"class\": \"Seeker\",\n \"traits\": \"Wayfarer.\"\n}]]\r\nallCards[\"Ursula Downs (promo version)|The Explorer\"] = [[{\n \"id\": \"04002-promo\",\n \"type\": \"Investigator\",\n \"class\": \"Seeker\",\n \"traits\": \"Wayfarer.\"\n}]]\r\nallCards[\"Ursula Downs (Parallel)|The Explorer\"] = [[{\n \"id\": \"04002-p\",\n \"type\": \"Investigator\",\n \"class\": \"Seeker\",\n \"traits\": \"Wayfarer.\"\n}]]\r\nallCards[\"Ursula Downs (Parallel Front)|The Explorer\"] = [[{\n \"id\": \"04002-pf\",\n \"type\": \"Investigator\",\n \"class\": \"Seeker\",\n \"traits\": \"Wayfarer.\"\n}]]\r\nallCards[\"Ursula Downs (Parallel Back)|The Explorer\"] = [[{\n \"id\": \"04002-pb\",\n \"type\": \"Investigator\",\n \"class\": \"Seeker\",\n \"traits\": \"Wayfarer.\"\n}]]\r\nallCards[\"Ursula Downs|\"] = [[{\n \"id\": \"04002-m\",\n \"type\": \"Minicard\"\n}]]\r\nallCards[\"Ursula Downs|Promo version\"] = [[{\n \"id\": \"04002-promo-m\",\n \"type\": \"Minicard\"\n}]]\r\nallCards[\"Finn Edwards|The Bootlegger\"] = [[{\n \"id\": \"04003\",\n \"type\": \"Investigator\",\n \"class\": \"Rogue\",\n \"traits\": \"Criminal.\"\n}]]\r\nallCards[\"04003\"] = [[{\n \"id\": \"04003\",\n \"type\": \"Investigator\",\n \"class\": \"Rogue\",\n \"traits\": \"Criminal.\"\n}]]\r\nallCards[\"Finn Edwards (promo version)|The Bootlegger\"] = [[{\n \"id\": \"04003-promo\",\n \"type\": \"Investigator\",\n \"class\": \"Rogue\",\n \"traits\": \"Criminal.\"\n}]]\r\nallCards[\"Finn Edwards (Parallel)|The Bootlegger\"] = [[{\n \"id\": \"04003-p\",\n \"type\": \"Investigator\",\n \"class\": \"Rogue\",\n \"traits\": \"Criminal.\"\n}]]\r\nallCards[\"Finn Edwards (Parallel Front)|The Bootlegger\"] = [[{\n \"id\": \"04003-pf\",\n \"type\": \"Investigator\",\n \"class\": \"Rogue\",\n \"traits\": \"Criminal.\"\n}]]\r\nallCards[\"Finn Edwards (Parallel Back)|The Bootlegger\"] = [[{\n \"id\": \"04003-pb\",\n \"type\": \"Investigator\",\n \"class\": \"Rogue\",\n \"traits\": \"Criminal.\"\n}]]\r\nallCards[\"Finn Edwards|\"] = [[{\n \"id\": \"04003-m\",\n \"type\": \"Minicard\"\n}]]\r\nallCards[\"Finn Edwards|Promo version\"] = [[{\n \"id\": \"04003-promo-m\",\n \"type\": \"Minicard\"\n}]]\r\nallCards[\"Father Mateo|The Priest\"] = [[{\n \"id\": \"04004\",\n \"type\": \"Investigator\",\n \"class\": \"Mystic\",\n \"traits\": \"Believer. Warden.\"\n}]]\r\nallCards[\"04004\"] = [[{\n \"id\": \"04004\",\n \"type\": \"Investigator\",\n \"class\": \"Mystic\",\n \"traits\": \"Believer. Warden.\"\n}]]\r\nallCards[\"Father Mateo (promo version)|The Priest\"] = [[{\n \"id\": \"04004-promo\",\n \"type\": \"Investigator\",\n \"class\": \"Mystic\",\n \"traits\": \"Believer. Warden.\"\n}]]\r\nallCards[\"Father Mateo (Parallel)|The Priest\"] = [[{\n \"id\": \"04004-p\",\n \"type\": \"Investigator\",\n \"class\": \"Mystic\",\n \"traits\": \"Believer. Warden.\"\n}]]\r\nallCards[\"Father Mateo (Parallel Front)|The Priest\"] = [[{\n \"id\": \"04004-pf\",\n \"type\": \"Investigator\",\n \"class\": \"Mystic\",\n \"traits\": \"Believer. Warden.\"\n}]]\r\nallCards[\"Father Mateo (Parallel Back)|The Priest\"] = [[{\n \"id\": \"04004-pb\",\n \"type\": \"Investigator\",\n \"class\": \"Mystic\",\n \"traits\": \"Believer. Warden.\"\n}]]\r\nallCards[\"Father Mateo|\"] = [[{\n \"id\": \"04004-m\",\n \"type\": \"Minicard\"\n}]]\r\nallCards[\"Father Mateo|Promo version\"] = [[{\n \"id\": \"04004-promo-m\",\n \"type\": \"Minicard\"\n}]]\r\nallCards[\"Calvin Wright|The Haunted\"] = [[{\n \"id\": \"04005\",\n \"type\": \"Investigator\",\n \"class\": \"Survivor\",\n \"traits\": \"Cursed. Drifter.\"\n}]]\r\nallCards[\"04005\"] = [[{\n \"id\": \"04005\",\n \"type\": \"Investigator\",\n \"class\": \"Survivor\",\n \"traits\": \"Cursed. Drifter.\"\n}]]\r\nallCards[\"Calvin Wright (promo version)|The Haunted\"] = [[{\n \"id\": \"04005-promo\",\n \"type\": \"Investigator\",\n \"class\": \"Survivor\",\n \"traits\": \"Cursed. Drifter.\"\n}]]\r\nallCards[\"Calvin Wright (Parallel)|The Haunted\"] = [[{\n \"id\": \"04005-p\",\n \"type\": \"Investigator\",\n \"class\": \"Survivor\",\n \"traits\": \"Cursed. Drifter.\"\n}]]\r\nallCards[\"Calvin Wright (Parallel Front)|The Haunted\"] = [[{\n \"id\": \"04005-pf\",\n \"type\": \"Investigator\",\n \"class\": \"Survivor\",\n \"traits\": \"Cursed. Drifter.\"\n}]]\r\nallCards[\"Calvin Wright (Parallel Back)|The Haunted\"] = [[{\n \"id\": \"04005-pb\",\n \"type\": \"Investigator\",\n \"class\": \"Survivor\",\n \"traits\": \"Cursed. Drifter.\"\n}]]\r\nallCards[\"Calvin Wright|\"] = [[{\n \"id\": \"04005-m\",\n \"type\": \"Minicard\"\n}]]\r\nallCards[\"Calvin Wright|Promo version\"] = [[{\n \"id\": \"04005-promo-m\",\n \"type\": \"Minicard\"\n}]]\r\nallCards[\"Mitch Brown|Sole Survivor\"] = [[{\n \"id\": \"04006\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Wayfarer.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"04006\"] = [[{\n \"id\": \"04006\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Wayfarer.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Mitch Brown|\"] = [[{\n \"id\": \"04006\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Wayfarer.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Bought in Blood|\"] = [[{\n \"id\": \"04007\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Flaw.\",\n \"permanent\": false,\n \"weakness\": true\n}]]\r\nallCards[\"04007\"] = [[{\n \"id\": \"04007\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Flaw.\",\n \"permanent\": false,\n \"weakness\": true\n}]]\r\nallCards[\"Jake Williams|Loyal Companion\"] = [[{\n \"id\": \"04008\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Wayfarer.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"04008\"] = [[{\n \"id\": \"04008\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Wayfarer.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Jake Williams|\"] = [[{\n \"id\": \"04008\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Wayfarer.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Call of the Unknown|\"] = [[{\n \"id\": \"04009\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Task.\",\n \"permanent\": false,\n \"weakness\": true\n}]]\r\nallCards[\"04009\"] = [[{\n \"id\": \"04009\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Task.\",\n \"permanent\": false,\n \"weakness\": true\n}]]\r\nallCards[\"Smuggled Goods|\"] = [[{\n \"id\": \"04010\",\n \"type\": \"Event\",\n \"class\": \"Neutral\",\n \"traits\": \"Supply. Illicit.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"04010\"] = [[{\n \"id\": \"04010\",\n \"type\": \"Event\",\n \"class\": \"Neutral\",\n \"traits\": \"Supply. Illicit.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Finn's Trusty .38|Never Leave Home Without It\"] = [[{\n \"id\": \"04011\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Weapon. Firearm. Illicit.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"04011\"] = [[{\n \"id\": \"04011\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Weapon. Firearm. Illicit.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Finn's Trusty .38|\"] = [[{\n \"id\": \"04011\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Weapon. Firearm. Illicit.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Caught Red-Handed|\"] = [[{\n \"id\": \"04012\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Blunder.\",\n \"permanent\": false,\n \"weakness\": true\n}]]\r\nallCards[\"04012\"] = [[{\n \"id\": \"04012\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Blunder.\",\n \"permanent\": false,\n \"weakness\": true\n}]]\r\nallCards[\"The Codex of Ages|finis omnium nunc est\"] = [[{\n \"id\": \"04013\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Relic. Tome. Blessed.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"04013\"] = [[{\n \"id\": \"04013\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Relic. Tome. Blessed.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"The Codex of Ages|\"] = [[{\n \"id\": \"04013\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Relic. Tome. Blessed.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Serpents of Yig|\"] = [[{\n \"id\": \"04014\",\n \"type\": \"Enemy\",\n \"class\": \"Neutral\",\n \"traits\": \"Humanoid. Monster. Serpent.\",\n \"permanent\": false,\n \"weakness\": true\n}]]\r\nallCards[\"04014\"] = [[{\n \"id\": \"04014\",\n \"type\": \"Enemy\",\n \"class\": \"Neutral\",\n \"traits\": \"Humanoid. Monster. Serpent.\",\n \"permanent\": false,\n \"weakness\": true\n}]]\r\nallCards[\"Until the End of Time|\"] = [[{\n \"id\": \"04015\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Talent.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"04015\"] = [[{\n \"id\": \"04015\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Talent.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Voice of the Messenger|\"] = [[{\n \"id\": \"04016\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Curse. Pact.\",\n \"permanent\": false,\n \"weakness\": true\n}]]\r\nallCards[\"04016\"] = [[{\n \"id\": \"04016\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Curse. Pact.\",\n \"permanent\": false,\n \"weakness\": true\n}]]\r\nallCards[\"Survival Knife|\"] = [[{\n \"id\": \"04017\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Item. Weapon. Melee.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"04017\"] = [[{\n \"id\": \"04017\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Item. Weapon. Melee.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Venturer|\"] = [[{\n \"id\": \"04018\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Ally. Wayfarer.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Supply\",\n \"count\": 3\n }\n}]]\r\nallCards[\"04018\"] = [[{\n \"id\": \"04018\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Ally. Wayfarer.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Supply\",\n \"count\": 3\n }\n}]]\r\nallCards[\"Trusted|\"] = [[{\n \"id\": \"04019\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Upgrade.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"04019\"] = [[{\n \"id\": \"04019\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Upgrade.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Reliable (1)|\"] = [[{\n \"id\": \"04020\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Upgrade.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"04020\"] = [[{\n \"id\": \"04020\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Upgrade.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Dr. Elli Horowitz|Assistant Curator\"] = [[{\n \"id\": \"04021\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Ally. Assistant.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"04021\"] = [[{\n \"id\": \"04021\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Ally. Assistant.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Dr. Elli Horowitz|\"] = [[{\n \"id\": \"04021\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Ally. Assistant.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Ancient Stone (1)|Unidentified\"] = [[{\n \"id\": \"04022\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Relic.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"04022\"] = [[{\n \"id\": \"04022\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Relic.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Ancient Stone (1)|\"] = [[{\n \"id\": \"04022\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Relic.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Tooth of Eztli|Mortal Reminder\"] = [[{\n \"id\": \"04023\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Relic.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"04023\"] = [[{\n \"id\": \"04023\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Relic.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Tooth of Eztli|\"] = [[{\n \"id\": \"04023\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Relic.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Unearth the Ancients|\"] = [[{\n \"id\": \"04024\",\n \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"traits\": \"Insight.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"04024\"] = [[{\n \"id\": \"04024\",\n \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"traits\": \"Insight.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Treasure Hunter (1)|\"] = [[{\n \"id\": \"04025\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Ally. Wayfarer.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"04025\"] = [[{\n \"id\": \"04025\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Ally. Wayfarer.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Decorated Skull|Doom Begets Doom\"] = [[{\n \"id\": \"04026\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Item. Relic. Cursed.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"04026\"] = [[{\n \"id\": \"04026\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Item. Relic. Cursed.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Decorated Skull|\"] = [[{\n \"id\": \"04026\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Item. Relic. Cursed.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Eavesdrop|\"] = [[{\n \"id\": \"04027\",\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"traits\": \"Insight. Trick.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"04027\"] = [[{\n \"id\": \"04027\",\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"traits\": \"Insight. Trick.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\\\"You handle this one!\\\"|\"] = [[{\n \"id\": \"04028\",\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"traits\": \"Trick.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"04028\"] = [[{\n \"id\": \"04028\",\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"traits\": \"Trick.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Mists of R'lyeh|\"] = [[{\n \"id\": \"04029\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Charge\",\n \"count\": 4\n }\n}]]\r\nallCards[\"04029\"] = [[{\n \"id\": \"04029\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Charge\",\n \"count\": 4\n }\n}]]\r\nallCards[\"The Chthonian Stone|Stygian Waymark\"] = [[{\n \"id\": \"04030\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Item. Relic. Cursed.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"04030\"] = [[{\n \"id\": \"04030\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Item. Relic. Cursed.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"The Chthonian Stone|\"] = [[{\n \"id\": \"04030\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Item. Relic. Cursed.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Protective Incantation (1)|\"] = [[{\n \"id\": \"04031\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Ritual. Blessed.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"04031\"] = [[{\n \"id\": \"04031\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Ritual. Blessed.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Dark Prophecy|\"] = [[{\n \"id\": \"04032\",\n \"alternate_ids\": [ \"60417\" ],\n \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"traits\": \"Augury.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"04032\"] = [[{\n \"id\": \"04032\",\n \"alternate_ids\": [ \"60417\" ],\n \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"traits\": \"Augury.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Improvised Weapon|\"] = [[{\n \"id\": \"04033\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Tactic. Improvised.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"04033\"] = [[{\n \"id\": \"04033\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Tactic. Improvised.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Dumb Luck|\"] = [[{\n \"id\": \"04034\",\n \"alternate_ids\": [ \"60514\" ],\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Fortune.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"04034\"] = [[{\n \"id\": \"04034\",\n \"alternate_ids\": [ \"60514\" ],\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Fortune.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Yaotl (1)|Lost Son of Eztli\"] = [[{\n \"id\": \"04035\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Ally. Wayfarer.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"04035\"] = [[{\n \"id\": \"04035\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Ally. Wayfarer.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Yaotl (1)|\"] = [[{\n \"id\": \"04035\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Ally. Wayfarer.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Last Chance|\"] = [[{\n \"id\": \"04036\",\n \"type\": \"Skill\",\n \"class\": \"Survivor\",\n \"traits\": \"Gambit.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"04036\"] = [[{\n \"id\": \"04036\",\n \"type\": \"Skill\",\n \"class\": \"Survivor\",\n \"traits\": \"Gambit.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Backpack|\"] = [[{\n \"id\": \"04037\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"04037\"] = [[{\n \"id\": \"04037\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Dark Pact|\"] = [[{\n \"id\": \"04038\",\n \"type\": \"Event\",\n \"class\": \"Neutral\",\n \"traits\": \"Pact.\",\n \"permanent\": false,\n \"weakness\": true,\n \"basicWeaknessCount\": 1\n}]]\r\nallCards[\"04038\"] = [[{\n \"id\": \"04038\",\n \"type\": \"Event\",\n \"class\": \"Neutral\",\n \"traits\": \"Pact.\",\n \"permanent\": false,\n \"weakness\": true,\n \"basicWeaknessCount\": 1\n}]]\r\nallCards[\"The Price of Failure|\"] = [[{\n \"id\": \"04039\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Pact.\",\n \"permanent\": false,\n \"weakness\": true\n}]]\r\nallCards[\"04039\"] = [[{\n \"id\": \"04039\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Pact.\",\n \"permanent\": false,\n \"weakness\": true\n}]]\r\nallCards[\"Doomed|\"] = [[{\n \"id\": \"04040\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Curse.\",\n \"permanent\": false,\n \"weakness\": true,\n \"basicWeaknessCount\": 1\n}]]\r\nallCards[\"04040\"] = [[{\n \"id\": \"04040\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Curse.\",\n \"permanent\": false,\n \"weakness\": true,\n \"basicWeaknessCount\": 1\n}]]\r\nallCards[\"Accursed Fate|\"] = [[{\n \"id\": \"04041\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Curse.\",\n \"permanent\": false,\n \"weakness\": true\n}]]\r\nallCards[\"04041\"] = [[{\n \"id\": \"04041\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Curse.\",\n \"permanent\": false,\n \"weakness\": true\n}]]\r\nallCards[\"The Bell Tolls|\"] = [[{\n \"id\": \"04042\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Curse.\",\n \"permanent\": false,\n \"weakness\": true\n}]]\r\nallCards[\"04042\"] = [[{\n \"id\": \"04042\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Curse.\",\n \"permanent\": false,\n \"weakness\": true\n}]]\r\nallCards[\"Alejandro Vela|Renowned Historian\"] = [[{\n \"id\": \"04051\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Wayfarer.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"04051\"] = [[{\n \"id\": \"04051\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Wayfarer.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Alejandro Vela|\"] = [[{\n \"id\": \"04051\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Wayfarer.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Relic of Ages|�A Device, of Some Sort\"] = [[{\n \"id\": \"04061\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Relic.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"04061\"] = [[{\n \"id\": \"04061\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Relic.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Relic of Ages|\"] = [[{\n \"id\": \"04061\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Relic.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Poisoned|\"] = [[{\n \"id\": \"04102\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Poison.\",\n \"permanent\": true,\n \"weakness\": true\n}]]\r\nallCards[\"04102\"] = [[{\n \"id\": \"04102\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Poison.\",\n \"permanent\": true,\n \"weakness\": true\n}]]\r\nallCards[\"Eixodolon's Note|\"] = [[{\n \"id\": \"70039\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Script.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"70039\"] = [[{\n \"id\": \"70039\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Script.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Key of Mysteries|\"] = [[{\n \"id\": \"70040\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Key.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"70040\"] = [[{\n \"id\": \"70040\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Key.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Mysterious Syringe|\"] = [[{\n \"id\": \"70041\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"70041\"] = [[{\n \"id\": \"70041\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Rot Diagram|\"] = [[{\n \"id\": \"70042\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Script.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"70042\"] = [[{\n \"id\": \"70042\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Script.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Rot Diagram|\"] = [[{\n \"id\": \"70043\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Script.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"70043\"] = [[{\n \"id\": \"70043\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Script.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Hunger Diagram|\"] = [[{\n \"id\": \"70044\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Script.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"70044\"] = [[{\n \"id\": \"70044\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Script.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Hunger Diagram|\"] = [[{\n \"id\": \"70045\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Script.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"70045\"] = [[{\n \"id\": \"70045\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Script.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Decay Diagram|\"] = [[{\n \"id\": \"70046\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Script.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"70046\"] = [[{\n \"id\": \"70046\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Script.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Decay Diagram|\"] = [[{\n \"id\": \"70047\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Script.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"70047\"] = [[{\n \"id\": \"70047\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Script.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Nautical Prowess|\"] = [[{\n \"id\": \"98014\",\n \"type\": \"Skill\",\n \"class\": \"Neutral\",\n \"traits\": \"Innate. Developed.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"98014\"] = [[{\n \"id\": \"98014\",\n \"type\": \"Skill\",\n \"class\": \"Neutral\",\n \"traits\": \"Innate. Developed.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Dreams of the Deep|The Deep Gate\"] = [[{\n \"id\": \"98015\",\n \"type\": \"Skill\",\n \"class\": \"Neutral\",\n \"traits\": \"Curse.\",\n \"permanent\": false,\n \"weakness\": true\n}]]\r\nallCards[\"98015\"] = [[{\n \"id\": \"98015\",\n \"type\": \"Skill\",\n \"class\": \"Neutral\",\n \"traits\": \"Curse.\",\n \"permanent\": false,\n \"weakness\": true\n}]]\r\nallCards[\"Dreams of the Deep|\"] = [[{\n \"id\": \"98015\",\n \"type\": \"Skill\",\n \"class\": \"Neutral\",\n \"traits\": \"Curse.\",\n \"permanent\": false,\n \"weakness\": true\n}]]\r\nallCards[\"Scene of the Crime|\"] = [[{\n \"id\": \"04103\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Insight. Bold.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"04103\"] = [[{\n \"id\": \"04103\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Insight. Bold.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Marksmanship (1)|\"] = [[{\n \"id\": \"04104\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Tactic.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"04104\"] = [[{\n \"id\": \"04104\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Tactic.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Persuasion|\"] = [[{\n \"id\": \"04105\",\n \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"traits\": \"Insight. Trick.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"04105\"] = [[{\n \"id\": \"04105\",\n \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"traits\": \"Insight. Trick.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Shrewd Analysis|\"] = [[{\n \"id\": \"04106\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Talent.\",\n \"level\": 0,\n \"permanent\": true,\n \"weakness\": false\n}]]\r\nallCards[\"04106\"] = [[{\n \"id\": \"04106\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Talent.\",\n \"level\": 0,\n \"permanent\": true,\n \"weakness\": false\n}]]\r\nallCards[\"Lucky Cigarette Case|\"] = [[{\n \"id\": \"04107\",\n \"alternate_ids\": [ \"60308\" ],\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Item. Charm.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"04107\"] = [[{\n \"id\": \"04107\",\n \"alternate_ids\": [ \"60308\" ],\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Item. Charm.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Fence (1)|\"] = [[{\n \"id\": \"04108\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Connection. Illicit.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"04108\"] = [[{\n \"id\": \"04108\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Connection. Illicit.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Arcane Research|\"] = [[{\n \"id\": \"04109\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Talent.\",\n \"level\": 0,\n \"permanent\": true,\n \"weakness\": false\n}]]\r\nallCards[\"04109\"] = [[{\n \"id\": \"04109\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Talent.\",\n \"level\": 0,\n \"permanent\": true,\n \"weakness\": false\n}]]\r\nallCards[\"Counterspell (2)|\"] = [[{\n \"id\": \"04110\",\n \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell. Blessed.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"04110\"] = [[{\n \"id\": \"04110\",\n \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell. Blessed.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Perseverance|\"] = [[{\n \"id\": \"04111\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Spirit.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"04111\"] = [[{\n \"id\": \"04111\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Spirit.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Stunning Blow|\"] = [[{\n \"id\": \"04112\",\n \"type\": \"Skill\",\n \"class\": \"Survivor\",\n \"traits\": \"Practiced.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"04112\"] = [[{\n \"id\": \"04112\",\n \"type\": \"Skill\",\n \"class\": \"Survivor\",\n \"traits\": \"Practiced.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Ichtaca|The Forgotten Guardian\"] = [[{\n \"id\": \"04147\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Eztli. Wayfarer.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"04147\"] = [[{\n \"id\": \"04147\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Eztli. Wayfarer.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Ichtaca|\"] = [[{\n \"id\": \"04147\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Eztli. Wayfarer.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Expedition Journal|\"] = [[{\n \"id\": \"04148\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Tome.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"04148\"] = [[{\n \"id\": \"04148\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Tome.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Physical Training (2)|\"] = [[{\n \"id\": \"50001\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Talent.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"50001\"] = [[{\n \"id\": \"50001\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Talent.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Dynamite Blast (2)|\"] = [[{\n \"id\": \"50002\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Tactic.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"50002\"] = [[{\n \"id\": \"50002\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Tactic.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Hyperawareness (2)|\"] = [[{\n \"id\": \"50003\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Talent.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"50003\"] = [[{\n \"id\": \"50003\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Talent.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Barricade (3)|\"] = [[{\n \"id\": \"50004\",\n \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"traits\": \"Insight. Tactic.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"50004\"] = [[{\n \"id\": \"50004\",\n \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"traits\": \"Insight. Tactic.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Hard Knocks (2)|\"] = [[{\n \"id\": \"50005\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Talent.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"50005\"] = [[{\n \"id\": \"50005\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Talent.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Hot Streak (2)|\"] = [[{\n \"id\": \"50006\",\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"traits\": \"Fortune.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"50006\"] = [[{\n \"id\": \"50006\",\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"traits\": \"Fortune.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Arcane Studies (2)|\"] = [[{\n \"id\": \"50007\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Talent.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"50007\"] = [[{\n \"id\": \"50007\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Talent.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Mind Wipe (3)|\"] = [[{\n \"id\": \"50008\",\n \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"50008\"] = [[{\n \"id\": \"50008\",\n \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Dig Deep (2)|\"] = [[{\n \"id\": \"50009\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Talent.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"50009\"] = [[{\n \"id\": \"50009\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Talent.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Rabbit's Foot (3)|\"] = [[{\n \"id\": \"50010\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Item. Charm.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"50010\"] = [[{\n \"id\": \"50010\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Item. Charm.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Second Wind|\"] = [[{\n \"id\": \"04149\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Spirit. Bold.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"04149\"] = [[{\n \"id\": \"04149\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Spirit. Bold.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Take the Initiative|\"] = [[{\n \"id\": \"04150\",\n \"type\": \"Skill\",\n \"class\": \"Guardian\",\n \"traits\": \"Practiced. Bold.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"04150\"] = [[{\n \"id\": \"04150\",\n \"type\": \"Skill\",\n \"class\": \"Guardian\",\n \"traits\": \"Practiced. Bold.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Well Prepared (2)|\"] = [[{\n \"id\": \"04151\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Talent.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"04151\"] = [[{\n \"id\": \"04151\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Talent.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Truth from Fiction|\"] = [[{\n \"id\": \"04152\",\n \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"traits\": \"Insight.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Secret\",\n \"count\": 2\n }\n}]]\r\nallCards[\"04152\"] = [[{\n \"id\": \"04152\",\n \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"traits\": \"Insight.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Secret\",\n \"count\": 2\n }\n}]]\r\nallCards[\"True Understanding|\"] = [[{\n \"id\": \"04153\",\n \"type\": \"Skill\",\n \"class\": \"Seeker\",\n \"traits\": \"Innate.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"04153\"] = [[{\n \"id\": \"04153\",\n \"type\": \"Skill\",\n \"class\": \"Seeker\",\n \"traits\": \"Innate.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Quick Study (2)|\"] = [[{\n \"id\": \"04154\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Talent.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"04154\"] = [[{\n \"id\": \"04154\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Talent.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Hatchet Man|\"] = [[{\n \"id\": \"04155\",\n \"type\": \"Skill\",\n \"class\": \"Rogue\",\n \"traits\": \"Practiced.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"04155\"] = [[{\n \"id\": \"04155\",\n \"type\": \"Skill\",\n \"class\": \"Rogue\",\n \"traits\": \"Practiced.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"High Roller (2)|\"] = [[{\n \"id\": \"04156\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Talent.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"04156\"] = [[{\n \"id\": \"04156\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Talent.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Enraptured|\"] = [[{\n \"id\": \"04157\",\n \"type\": \"Skill\",\n \"class\": \"Mystic\",\n \"traits\": \"Practiced.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"04157\"] = [[{\n \"id\": \"04157\",\n \"type\": \"Skill\",\n \"class\": \"Mystic\",\n \"traits\": \"Practiced.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Recall the Future (2)|\"] = [[{\n \"id\": \"04158\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Augury. Ritual.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"04158\"] = [[{\n \"id\": \"04158\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Augury. Ritual.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Try and Try Again (1)|\"] = [[{\n \"id\": \"04159\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Talent.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Try\",\n \"count\": 3\n }\n}]]\r\nallCards[\"04159\"] = [[{\n \"id\": \"04159\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Talent.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Try\",\n \"count\": 3\n }\n}]]\r\nallCards[\"Cornered (2)|\"] = [[{\n \"id\": \"04160\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Talent.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"04160\"] = [[{\n \"id\": \"04160\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Talent.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Relic of Ages|Forestalling the Future\"] = [[{\n \"id\": \"04191\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Relic.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"04191\"] = [[{\n \"id\": \"04191\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Relic.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Relic of Ages|\"] = [[{\n \"id\": \"04191\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Relic.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Intrepid|\"] = [[{\n \"id\": \"04192\",\n \"type\": \"Skill\",\n \"class\": \"Guardian\",\n \"traits\": \"Innate.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"04192\"] = [[{\n \"id\": \"04192\",\n \"type\": \"Skill\",\n \"class\": \"Guardian\",\n \"traits\": \"Innate.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Custom Ammunition (3)|\"] = [[{\n \"id\": \"04193\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Upgrade. Supply. Blessed.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"04193\"] = [[{\n \"id\": \"04193\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Upgrade. Supply. Blessed.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Otherworldly Compass (2)|\"] = [[{\n \"id\": \"04194\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Relic.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"04194\"] = [[{\n \"id\": \"04194\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Relic.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Expose Weakness (3)|\"] = [[{\n \"id\": \"04195\",\n \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"traits\": \"Insight.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"04195\"] = [[{\n \"id\": \"04195\",\n \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"traits\": \"Insight.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Lola Santiago (3)|No-Nonsense Archaeologist\"] = [[{\n \"id\": \"04196\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Ally. Wayfarer.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"04196\"] = [[{\n \"id\": \"04196\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Ally. Wayfarer.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Lola Santiago (3)|\"] = [[{\n \"id\": \"04196\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Ally. Wayfarer.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Olive McBride|Will Try Anything Once\"] = [[{\n \"id\": \"04197\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Ally. Witch.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"04197\"] = [[{\n \"id\": \"04197\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Ally. Witch.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Olive McBride|\"] = [[{\n \"id\": \"04197\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Ally. Witch.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Defiance (2)|\"] = [[{\n \"id\": \"04198\",\n \"type\": \"Skill\",\n \"class\": \"Mystic\",\n \"traits\": \"Innate. Developed.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"04198\"] = [[{\n \"id\": \"04198\",\n \"type\": \"Skill\",\n \"class\": \"Mystic\",\n \"traits\": \"Innate. Developed.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Premonition|\"] = [[{\n \"id\": \"04199\",\n \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"traits\": \"Augury.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"04199\"] = [[{\n \"id\": \"04199\",\n \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"traits\": \"Augury.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Live and Learn|\"] = [[{\n \"id\": \"04200\",\n \"alternate_ids\": [ \"60516\" ],\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Spirit.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"04200\"] = [[{\n \"id\": \"04200\",\n \"alternate_ids\": [ \"60516\" ],\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Spirit.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Take Heart|\"] = [[{\n \"id\": \"04201\",\n \"alternate_ids\": [ \"60519\" ],\n \"type\": \"Skill\",\n \"class\": \"Survivor\",\n \"traits\": \"Innate.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"04201\"] = [[{\n \"id\": \"04201\",\n \"alternate_ids\": [ \"60519\" ],\n \"type\": \"Skill\",\n \"class\": \"Survivor\",\n \"traits\": \"Innate.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Against All Odds (2)|\"] = [[{\n \"id\": \"04202\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Spirit.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"04202\"] = [[{\n \"id\": \"04202\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Spirit.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Trench Coat|\"] = [[{\n \"id\": \"04203\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Clothing.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"04203\"] = [[{\n \"id\": \"04203\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Clothing.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Ornate Bow (3)|\"] = [[{\n \"id\": \"04204\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Relic. Weapon. Ranged.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Ammo\",\n \"count\": 1\n }\n}]]\r\nallCards[\"04204\"] = [[{\n \"id\": \"04204\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Relic. Weapon. Ranged.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Ammo\",\n \"count\": 1\n }\n}]]\r\nallCards[\"M1918 BAR (4)|\"] = [[{\n \"id\": \"04229\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Item. Weapon. Firearm.\",\n \"level\": 4,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Ammo\",\n \"count\": 8\n }\n}]]\r\nallCards[\"04229\"] = [[{\n \"id\": \"04229\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Item. Weapon. Firearm.\",\n \"level\": 4,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Ammo\",\n \"count\": 8\n }\n}]]\r\nallCards[\"Ancient Stone (4)|Knowledge of the Elders\"] = [[{\n \"id\": \"04230\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Relic.\",\n \"level\": 4,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"04230\"] = [[{\n \"id\": \"04230\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Relic.\",\n \"level\": 4,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Ancient Stone (4)|\"] = [[{\n \"id\": \"04230\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Relic.\",\n \"level\": 4,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Ancient Stone (4)|Minds in Harmony\"] = [[{\n \"id\": \"04231\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Relic.\",\n \"level\": 4,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"04231\"] = [[{\n \"id\": \"04231\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Relic.\",\n \"level\": 4,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Ancient Stone (4)|\"] = [[{\n \"id\": \"04231\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Relic.\",\n \"level\": 4,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Slip Away|\"] = [[{\n \"id\": \"04232\",\n \"alternate_ids\": [ \"60314\" ],\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"traits\": \"Trick.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"04232\"] = [[{\n \"id\": \"04232\",\n \"alternate_ids\": [ \"60314\" ],\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"traits\": \"Trick.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Pay Day (1)|\"] = [[{\n \"id\": \"04233\",\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"traits\": \"Illicit. Fated.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"04233\"] = [[{\n \"id\": \"04233\",\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"traits\": \"Illicit. Fated.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Sacrifice (1)|\"] = [[{\n \"id\": \"04234\",\n \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"traits\": \"Ritual.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"04234\"] = [[{\n \"id\": \"04234\",\n \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"traits\": \"Ritual.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Crystalline Elder Sign (3)|\"] = [[{\n \"id\": \"04235\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Item. Relic. Blessed.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"04235\"] = [[{\n \"id\": \"04235\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Item. Relic. Blessed.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"On Your Own (3)|\"] = [[{\n \"id\": \"04236\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Talent.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"04236\"] = [[{\n \"id\": \"04236\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Talent.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Body of a Yithian|Captive in Another Form\"] = [[{\n \"id\": \"04244\",\n \"type\": \"Investigator\",\n \"class\": \"Neutral\",\n \"traits\": \"Monster. Yithian.\"\n}]]\r\nallCards[\"04244\"] = [[{\n \"id\": \"04244\",\n \"type\": \"Investigator\",\n \"class\": \"Neutral\",\n \"traits\": \"Monster. Yithian.\"\n}]]\r\nallCards[\"Body of a Yithian (promo version)|Captive in Another Form\"] = [[{\n \"id\": \"04244-promo\",\n \"type\": \"Investigator\",\n \"class\": \"Neutral\",\n \"traits\": \"Monster. Yithian.\"\n}]]\r\nallCards[\"Body of a Yithian (Parallel)|Captive in Another Form\"] = [[{\n \"id\": \"04244-p\",\n \"type\": \"Investigator\",\n \"class\": \"Neutral\",\n \"traits\": \"Monster. Yithian.\"\n}]]\r\nallCards[\"Body of a Yithian (Parallel Front)|Captive in Another Form\"] = [[{\n \"id\": \"04244-pf\",\n \"type\": \"Investigator\",\n \"class\": \"Neutral\",\n \"traits\": \"Monster. Yithian.\"\n}]]\r\nallCards[\"Body of a Yithian (Parallel Back)|Captive in Another Form\"] = [[{\n \"id\": \"04244-pb\",\n \"type\": \"Investigator\",\n \"class\": \"Neutral\",\n \"traits\": \"Monster. Yithian.\"\n}]]\r\nallCards[\"Body of a Yithian|\"] = [[{\n \"id\": \"04244-m\",\n \"type\": \"Minicard\"\n}]]\r\nallCards[\"Body of a Yithian|Promo version\"] = [[{\n \"id\": \"04244-promo-m\",\n \"type\": \"Minicard\"\n}]]\r\nallCards[\"The Custodian|Curious Yithian\"] = [[{\n \"id\": \"04256\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Yithian.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"04256\"] = [[{\n \"id\": \"04256\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Yithian.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"The Custodian|\"] = [[{\n \"id\": \"04256\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Yithian.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Out of Body Experience|\"] = [[{\n \"id\": \"04264\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Madness. Paradox.\",\n \"permanent\": false,\n \"weakness\": true\n}]]\r\nallCards[\"04264\"] = [[{\n \"id\": \"04264\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Madness. Paradox.\",\n \"permanent\": false,\n \"weakness\": true\n}]]\r\nallCards[\"Handcuffs|\"] = [[{\n \"id\": \"04265\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Item. Police.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"04265\"] = [[{\n \"id\": \"04265\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Item. Police.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Blood Eclipse (3)|\"] = [[{\n \"id\": \"04266\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Spell. Spirit.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"04266\"] = [[{\n \"id\": \"04266\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Spell. Spirit.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Feed the Mind (3)|\"] = [[{\n \"id\": \"04267\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Spell.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Charge\",\n \"count\": 3\n }\n}]]\r\nallCards[\"04267\"] = [[{\n \"id\": \"04267\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Spell.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Charge\",\n \"count\": 3\n }\n}]]\r\nallCards[\"Colt Vest Pocket|\"] = [[{\n \"id\": \"04268\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Item. Weapon. Firearm. Illicit.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Ammo\",\n \"count\": 5\n }\n}]]\r\nallCards[\"04268\"] = [[{\n \"id\": \"04268\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Item. Weapon. Firearm. Illicit.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Ammo\",\n \"count\": 5\n }\n}]]\r\nallCards[\"Coup de Gr�ce|\"] = [[{\n \"id\": \"04269\",\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"traits\": \"Tactic. Fated.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"04269\"] = [[{\n \"id\": \"04269\",\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"traits\": \"Tactic. Fated.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"The Skeleton Key (2)|\"] = [[{\n \"id\": \"04270\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Item. Relic. Cursed.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"04270\"] = [[{\n \"id\": \"04270\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Item. Relic. Cursed.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Mists of R'lyeh (4)|\"] = [[{\n \"id\": \"04271\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\",\n \"level\": 4,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Charge\",\n \"count\": 5\n }\n}]]\r\nallCards[\"04271\"] = [[{\n \"id\": \"04271\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\",\n \"level\": 4,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Charge\",\n \"count\": 5\n }\n}]]\r\nallCards[\"Winging It|\"] = [[{\n \"id\": \"04272\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Tactic. Improvised.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"04272\"] = [[{\n \"id\": \"04272\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Tactic. Improvised.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Old Hunting Rifle (3)|\"] = [[{\n \"id\": \"04273\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Item. Weapon. Firearm.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Ammo\",\n \"count\": 3\n }\n}]]\r\nallCards[\"04273\"] = [[{\n \"id\": \"04273\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Item. Weapon. Firearm.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Ammo\",\n \"count\": 3\n }\n}]]\r\nallCards[\"Thermos|\"] = [[{\n \"id\": \"04274\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Supply\",\n \"count\": 3\n }\n}]]\r\nallCards[\"04274\"] = [[{\n \"id\": \"04274\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Supply\",\n \"count\": 3\n }\n}]]\r\nallCards[\"Hemispheric Map (3)|\"] = [[{\n \"id\": \"04275\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Relic.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"04275\"] = [[{\n \"id\": \"04275\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Relic.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Timeworn Brand (5)|\"] = [[{\n \"id\": \"04276\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Relic. Weapon. Melee.\",\n \"level\": 5,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"04276\"] = [[{\n \"id\": \"04276\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Relic. Weapon. Melee.\",\n \"level\": 5,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Relic of Ages|Repossess the Past\"] = [[{\n \"id\": \"04303\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Relic.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"04303\"] = [[{\n \"id\": \"04303\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Relic.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Relic of Ages|\"] = [[{\n \"id\": \"04303\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Relic.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Kerosene (1)|\"] = [[{\n \"id\": \"04304\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Item.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Supply\",\n \"count\": 3\n }\n}]]\r\nallCards[\"04304\"] = [[{\n \"id\": \"04304\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Item.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Supply\",\n \"count\": 3\n }\n}]]\r\nallCards[\"Flamethrower (5)|\"] = [[{\n \"id\": \"04305\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Item. Weapon. Firearm.\",\n \"level\": 5,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Ammo\",\n \"count\": 4\n }\n}]]\r\nallCards[\"04305\"] = [[{\n \"id\": \"04305\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Item. Weapon. Firearm.\",\n \"level\": 5,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Ammo\",\n \"count\": 4\n }\n}]]\r\nallCards[\"Flamethrower (5) (Taboo)|\"] = [[{\n \"id\": \"04305-t\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Item. Weapon. Firearm.\",\n \"level\": 5,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Ammo\",\n \"count\": 4\n }\n}]]\r\nallCards[\"Vantage Point|\"] = [[{\n \"id\": \"04306\",\n \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"traits\": \"Insight.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"04306\"] = [[{\n \"id\": \"04306\",\n \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"traits\": \"Insight.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Pnakotic Manuscripts (5)|Mind-Expanding Ideas\"] = [[{\n \"id\": \"04307\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Relic. Tome.\",\n \"level\": 5,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"04307\"] = [[{\n \"id\": \"04307\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Relic. Tome.\",\n \"level\": 5,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Pnakotic Manuscripts (5)|\"] = [[{\n \"id\": \"04307\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Relic. Tome.\",\n \"level\": 5,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Borrowed Time (3)|\"] = [[{\n \"id\": \"04308\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Ritual.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"04308\"] = [[{\n \"id\": \"04308\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Ritual.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"All In (5)|\"] = [[{\n \"id\": \"04309\",\n \"type\": \"Skill\",\n \"class\": \"Rogue\",\n \"traits\": \"Fortune.\",\n \"level\": 5,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"04309\"] = [[{\n \"id\": \"04309\",\n \"type\": \"Skill\",\n \"class\": \"Rogue\",\n \"traits\": \"Fortune.\",\n \"level\": 5,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"All In (5) (Taboo)|\"] = [[{\n \"id\": \"04309-t\",\n \"type\": \"Skill\",\n \"class\": \"Rogue\",\n \"traits\": \"Fortune.\",\n \"level\": 5,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Shards of the Void (3)|\"] = [[{\n \"id\": \"04310\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Charge\",\n \"count\": 3\n }\n}]]\r\nallCards[\"04310\"] = [[{\n \"id\": \"04310\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Charge\",\n \"count\": 3\n }\n}]]\r\nallCards[\"Seal of the Seventh Sign (5)|Over the Threshold and Beyond\"] = [[{\n \"id\": \"04311\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell. Ritual.\",\n \"level\": 5,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"04311\"] = [[{\n \"id\": \"04311\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell. Ritual.\",\n \"level\": 5,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Seal of the Seventh Sign (5)|\"] = [[{\n \"id\": \"04311\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell. Ritual.\",\n \"level\": 5,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Impromptu Barrier|\"] = [[{\n \"id\": \"04312\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Tactic. Improvised.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"04312\"] = [[{\n \"id\": \"04312\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Tactic. Improvised.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Alter Fate (3)|\"] = [[{\n \"id\": \"04313\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Spell. Blessed.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"04313\"] = [[{\n \"id\": \"04313\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Spell. Blessed.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Relic of Ages|Unleash the Timestream\"] = [[{\n \"id\": \"04343\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Relic.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"04343\"] = [[{\n \"id\": \"04343\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Relic.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Relic of Ages|\"] = [[{\n \"id\": \"04343\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Relic.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"John & Jessie Burke|Relentless in Pursuit\"] = [[{\n \"id\": \"83055\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Government.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"83055\"] = [[{\n \"id\": \"83055\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Government.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"John & Jessie Burke|\"] = [[{\n \"id\": \"83055\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Government.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Ancient Ankh|Aegis of the Harbinger\"] = [[{\n \"id\": \"83056\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Relic.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"83056\"] = [[{\n \"id\": \"83056\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Relic.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Ancient Ankh|\"] = [[{\n \"id\": \"83056\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Relic.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Khopesh of the Abyss|Manifested Malice\"] = [[{\n \"id\": \"83057\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Weapon. Relic. Melee.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"83057\"] = [[{\n \"id\": \"83057\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Weapon. Relic. Melee.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Khopesh of the Abyss|\"] = [[{\n \"id\": \"83057\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Weapon. Relic. Melee.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Summoned Nightgaunt|Gift from Nodens\"] = [[{\n \"id\": \"83058\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Monster. Nightgaunt. Power.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"83058\"] = [[{\n \"id\": \"83058\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Monster. Nightgaunt. Power.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Summoned Nightgaunt|\"] = [[{\n \"id\": \"83058\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Monster. Nightgaunt. Power.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Bandolier (2)|\"] = [[{\n \"id\": \"51001\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Item.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"51001\"] = [[{\n \"id\": \"51001\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Item.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Blackjack (2)|\"] = [[{\n \"id\": \"51002\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Item. Weapon. Melee.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"51002\"] = [[{\n \"id\": \"51002\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Item. Weapon. Melee.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Preposterous Sketches (2)|\"] = [[{\n \"id\": \"51003\",\n \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"traits\": \"Insight.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"51003\"] = [[{\n \"id\": \"51003\",\n \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"traits\": \"Insight.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Strange Solution (4)|Empowering Elixir\"] = [[{\n \"id\": \"51004\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Science.\",\n \"level\": 4,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Supply\",\n \"count\": 3\n }\n}]]\r\nallCards[\"51004\"] = [[{\n \"id\": \"51004\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Science.\",\n \"level\": 4,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Supply\",\n \"count\": 3\n }\n}]]\r\nallCards[\"Strange Solution (4)|\"] = [[{\n \"id\": \"51004\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Science.\",\n \"level\": 4,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Supply\",\n \"count\": 3\n }\n}]]\r\nallCards[\"Contraband (2)|\"] = [[{\n \"id\": \"51005\",\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"traits\": \"Supply. Illicit.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"51005\"] = [[{\n \"id\": \"51005\",\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"traits\": \"Supply. Illicit.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Think on Your Feet (2)|\"] = [[{\n \"id\": \"51006\",\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"traits\": \"Trick.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"51006\"] = [[{\n \"id\": \"51006\",\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"traits\": \"Trick.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Rite of Seeking (2)|\"] = [[{\n \"id\": \"51007\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Charge\",\n \"count\": 3\n }\n}]]\r\nallCards[\"51007\"] = [[{\n \"id\": \"51007\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Charge\",\n \"count\": 3\n }\n}]]\r\nallCards[\"Clarity of Mind (3)|\"] = [[{\n \"id\": \"51008\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Charge\",\n \"count\": 4\n }\n}]]\r\nallCards[\"51008\"] = [[{\n \"id\": \"51008\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Charge\",\n \"count\": 4\n }\n}]]\r\nallCards[\"Oops! (2)|\"] = [[{\n \"id\": \"51009\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Fortune.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"51009\"] = [[{\n \"id\": \"51009\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Fortune.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Rise to the Occasion (3)|\"] = [[{\n \"id\": \"51010\",\n \"type\": \"Skill\",\n \"class\": \"Survivor\",\n \"traits\": \"Innate.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"51010\"] = [[{\n \"id\": \"51010\",\n \"type\": \"Skill\",\n \"class\": \"Survivor\",\n \"traits\": \"Innate.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Through the Gates|\"] = [[{\n \"id\": \"51011\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Pact. Mystery.\",\n \"permanent\": false,\n \"weakness\": true,\n \"basicWeaknessCount\": 2\n}]]\r\nallCards[\"51011\"] = [[{\n \"id\": \"51011\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Pact. Mystery.\",\n \"permanent\": false,\n \"weakness\": true,\n \"basicWeaknessCount\": 2\n}]]\r\nallCards[\"Engineer|\"] = [[{\n \"id\": \"51031\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Bystander.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"51031\"] = [[{\n \"id\": \"51031\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Bystander.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Naomi O'Bannion|Ruthless Tactician\"] = [[{\n \"id\": \"51052\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Criminal. Syndicate.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"51052\"] = [[{\n \"id\": \"51052\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Criminal. Syndicate.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Naomi O'Bannion|\"] = [[{\n \"id\": \"51052\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Criminal. Syndicate.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Carolyn Fern|The Psychologist\"] = [[{\n \"id\": \"05001\",\n \"alternate_ids\": [ \"98010\" ],\n \"type\": \"Investigator\",\n \"class\": \"Guardian\",\n \"traits\": \"Medic.\"\n}]]\r\nallCards[\"05001\"] = [[{\n \"id\": \"05001\",\n \"alternate_ids\": [ \"98010\" ],\n \"type\": \"Investigator\",\n \"class\": \"Guardian\",\n \"traits\": \"Medic.\"\n}]]\r\nallCards[\"Carolyn Fern (promo version)|The Psychologist\"] = [[{\n \"id\": \"05001-promo\",\n \"type\": \"Investigator\",\n \"class\": \"Guardian\",\n \"traits\": \"Medic.\"\n}]]\r\nallCards[\"Carolyn Fern (Parallel)|The Psychologist\"] = [[{\n \"id\": \"05001-p\",\n \"type\": \"Investigator\",\n \"class\": \"Guardian\",\n \"traits\": \"Medic.\"\n}]]\r\nallCards[\"Carolyn Fern (Parallel Front)|The Psychologist\"] = [[{\n \"id\": \"05001-pf\",\n \"type\": \"Investigator\",\n \"class\": \"Guardian\",\n \"traits\": \"Medic.\"\n}]]\r\nallCards[\"Carolyn Fern (Parallel Back)|The Psychologist\"] = [[{\n \"id\": \"05001-pb\",\n \"type\": \"Investigator\",\n \"class\": \"Guardian\",\n \"traits\": \"Medic.\"\n}]]\r\nallCards[\"Carolyn Fern|\"] = [[{\n \"id\": \"05001-m\",\n \"alternate_ids\": [ \"98010-m\" ],\n \"type\": \"Minicard\"\n}]]\r\nallCards[\"Carolyn Fern|Promo version\"] = [[{\n \"id\": \"05001-promo-m\",\n \"type\": \"Minicard\"\n}]]\r\nallCards[\"Joe Diamond|The Private Investigator\"] = [[{\n \"id\": \"05002\",\n \"type\": \"Investigator\",\n \"class\": \"Seeker\",\n \"traits\": \"Detective.\"\n}]]\r\nallCards[\"05002\"] = [[{\n \"id\": \"05002\",\n \"type\": \"Investigator\",\n \"class\": \"Seeker\",\n \"traits\": \"Detective.\"\n}]]\r\nallCards[\"Joe Diamond (promo version)|The Private Investigator\"] = [[{\n \"id\": \"05002-promo\",\n \"type\": \"Investigator\",\n \"class\": \"Seeker\",\n \"traits\": \"Detective.\"\n}]]\r\nallCards[\"Joe Diamond (Parallel)|The Private Investigator\"] = [[{\n \"id\": \"05002-p\",\n \"type\": \"Investigator\",\n \"class\": \"Seeker\",\n \"traits\": \"Detective.\"\n}]]\r\nallCards[\"Joe Diamond (Parallel Front)|The Private Investigator\"] = [[{\n \"id\": \"05002-pf\",\n \"type\": \"Investigator\",\n \"class\": \"Seeker\",\n \"traits\": \"Detective.\"\n}]]\r\nallCards[\"Joe Diamond (Parallel Back)|The Private Investigator\"] = [[{\n \"id\": \"05002-pb\",\n \"type\": \"Investigator\",\n \"class\": \"Seeker\",\n \"traits\": \"Detective.\"\n}]]\r\nallCards[\"Joe Diamond|\"] = [[{\n \"id\": \"05002-m\",\n \"type\": \"Minicard\"\n}]]\r\nallCards[\"Joe Diamond|Promo version\"] = [[{\n \"id\": \"05002-promo-m\",\n \"type\": \"Minicard\"\n}]]\r\nallCards[\"Preston Fairmont|The Millionaire\"] = [[{\n \"id\": \"05003\",\n \"type\": \"Investigator\",\n \"class\": \"Rogue\",\n \"traits\": \"Silver Twilight. Socialite.\"\n}]]\r\nallCards[\"05003\"] = [[{\n \"id\": \"05003\",\n \"type\": \"Investigator\",\n \"class\": \"Rogue\",\n \"traits\": \"Silver Twilight. Socialite.\"\n}]]\r\nallCards[\"Preston Fairmont (promo version)|The Millionaire\"] = [[{\n \"id\": \"05003-promo\",\n \"type\": \"Investigator\",\n \"class\": \"Rogue\",\n \"traits\": \"Silver Twilight. Socialite.\"\n}]]\r\nallCards[\"Preston Fairmont (Parallel)|The Millionaire\"] = [[{\n \"id\": \"05003-p\",\n \"type\": \"Investigator\",\n \"class\": \"Rogue\",\n \"traits\": \"Silver Twilight. Socialite.\"\n}]]\r\nallCards[\"Preston Fairmont (Parallel Front)|The Millionaire\"] = [[{\n \"id\": \"05003-pf\",\n \"type\": \"Investigator\",\n \"class\": \"Rogue\",\n \"traits\": \"Silver Twilight. Socialite.\"\n}]]\r\nallCards[\"Preston Fairmont (Parallel Back)|The Millionaire\"] = [[{\n \"id\": \"05003-pb\",\n \"type\": \"Investigator\",\n \"class\": \"Rogue\",\n \"traits\": \"Silver Twilight. Socialite.\"\n}]]\r\nallCards[\"Preston Fairmont|\"] = [[{\n \"id\": \"05003-m\",\n \"type\": \"Minicard\"\n}]]\r\nallCards[\"Preston Fairmont|Promo version\"] = [[{\n \"id\": \"05003-promo-m\",\n \"type\": \"Minicard\"\n}]]\r\nallCards[\"Diana Stanley|The Redeemed Cultist\"] = [[{\n \"id\": \"05004\",\n \"type\": \"Investigator\",\n \"class\": \"Mystic\",\n \"traits\": \"Cultist. Silver Twilight.\"\n}]]\r\nallCards[\"05004\"] = [[{\n \"id\": \"05004\",\n \"type\": \"Investigator\",\n \"class\": \"Mystic\",\n \"traits\": \"Cultist. Silver Twilight.\"\n}]]\r\nallCards[\"Diana Stanley (promo version)|The Redeemed Cultist\"] = [[{\n \"id\": \"05004-promo\",\n \"type\": \"Investigator\",\n \"class\": \"Mystic\",\n \"traits\": \"Cultist. Silver Twilight.\"\n}]]\r\nallCards[\"Diana Stanley (Parallel)|The Redeemed Cultist\"] = [[{\n \"id\": \"05004-p\",\n \"type\": \"Investigator\",\n \"class\": \"Mystic\",\n \"traits\": \"Cultist. Silver Twilight.\"\n}]]\r\nallCards[\"Diana Stanley (Parallel Front)|The Redeemed Cultist\"] = [[{\n \"id\": \"05004-pf\",\n \"type\": \"Investigator\",\n \"class\": \"Mystic\",\n \"traits\": \"Cultist. Silver Twilight.\"\n}]]\r\nallCards[\"Diana Stanley (Parallel Back)|The Redeemed Cultist\"] = [[{\n \"id\": \"05004-pb\",\n \"type\": \"Investigator\",\n \"class\": \"Mystic\",\n \"traits\": \"Cultist. Silver Twilight.\"\n}]]\r\nallCards[\"Diana Stanley|\"] = [[{\n \"id\": \"05004-m\",\n \"type\": \"Minicard\"\n}]]\r\nallCards[\"Diana Stanley|Promo version\"] = [[{\n \"id\": \"05004-promo-m\",\n \"type\": \"Minicard\"\n}]]\r\nallCards[\"Rita Young|The Athlete\"] = [[{\n \"id\": \"05005\",\n \"type\": \"Investigator\",\n \"class\": \"Survivor\",\n \"traits\": \"Miskatonic.\"\n}]]\r\nallCards[\"05005\"] = [[{\n \"id\": \"05005\",\n \"type\": \"Investigator\",\n \"class\": \"Survivor\",\n \"traits\": \"Miskatonic.\"\n}]]\r\nallCards[\"Rita Young (promo version)|The Athlete\"] = [[{\n \"id\": \"05005-promo\",\n \"type\": \"Investigator\",\n \"class\": \"Survivor\",\n \"traits\": \"Miskatonic.\"\n}]]\r\nallCards[\"Rita Young (Parallel)|The Athlete\"] = [[{\n \"id\": \"05005-p\",\n \"type\": \"Investigator\",\n \"class\": \"Survivor\",\n \"traits\": \"Miskatonic.\"\n}]]\r\nallCards[\"Rita Young (Parallel Front)|The Athlete\"] = [[{\n \"id\": \"05005-pf\",\n \"type\": \"Investigator\",\n \"class\": \"Survivor\",\n \"traits\": \"Miskatonic.\"\n}]]\r\nallCards[\"Rita Young (Parallel Back)|The Athlete\"] = [[{\n \"id\": \"05005-pb\",\n \"type\": \"Investigator\",\n \"class\": \"Survivor\",\n \"traits\": \"Miskatonic.\"\n}]]\r\nallCards[\"Rita Young|\"] = [[{\n \"id\": \"05005-m\",\n \"type\": \"Minicard\"\n}]]\r\nallCards[\"Rita Young|Promo version\"] = [[{\n \"id\": \"05005-promo-m\",\n \"type\": \"Minicard\"\n}]]\r\nallCards[\"Marie Lambeau|The Entertainer\"] = [[{\n \"id\": \"05006\",\n \"alternate_ids\": [ \"99001\" ],\n \"type\": \"Investigator\",\n \"class\": \"Mystic\",\n \"traits\": \"Performer. Sorcerer.\"\n}]]\r\nallCards[\"05006\"] = [[{\n \"id\": \"05006\",\n \"alternate_ids\": [ \"99001\" ],\n \"type\": \"Investigator\",\n \"class\": \"Mystic\",\n \"traits\": \"Performer. Sorcerer.\"\n}]]\r\nallCards[\"Marie Lambeau (promo version)|The Entertainer\"] = [[{\n \"id\": \"05006-promo\",\n \"type\": \"Investigator\",\n \"class\": \"Mystic\",\n \"traits\": \"Performer. Sorcerer.\"\n}]]\r\nallCards[\"Marie Lambeau (Parallel)|The Entertainer\"] = [[{\n \"id\": \"05006-p\",\n \"type\": \"Investigator\",\n \"class\": \"Mystic\",\n \"traits\": \"Performer. Sorcerer.\"\n}]]\r\nallCards[\"Marie Lambeau (Parallel Front)|The Entertainer\"] = [[{\n \"id\": \"05006-pf\",\n \"type\": \"Investigator\",\n \"class\": \"Mystic\",\n \"traits\": \"Performer. Sorcerer.\"\n}]]\r\nallCards[\"Marie Lambeau (Parallel Back)|The Entertainer\"] = [[{\n \"id\": \"05006-pb\",\n \"type\": \"Investigator\",\n \"class\": \"Mystic\",\n \"traits\": \"Performer. Sorcerer.\"\n}]]\r\nallCards[\"Marie Lambeau|\"] = [[{\n \"id\": \"05006-m\",\n \"alternate_ids\": [ \"99001-m\" ],\n \"type\": \"Minicard\"\n}]]\r\nallCards[\"Marie Lambeau|Promo version\"] = [[{\n \"id\": \"05006-promo-m\",\n \"type\": \"Minicard\"\n}]]\r\nallCards[\"Hypnotic Therapy|\"] = [[{\n \"id\": \"05007\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Talent.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"05007\"] = [[{\n \"id\": \"05007\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Talent.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Rational Thought|\"] = [[{\n \"id\": \"05008\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Flaw.\",\n \"permanent\": false,\n \"weakness\": true\n}]]\r\nallCards[\"05008\"] = [[{\n \"id\": \"05008\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Flaw.\",\n \"permanent\": false,\n \"weakness\": true\n}]]\r\nallCards[\"Detective's Colt 1911s|\"] = [[{\n \"id\": \"05009\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Weapon. Firearm.\",\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Ammo\",\n \"count\": 4\n }\n}]]\r\nallCards[\"05009\"] = [[{\n \"id\": \"05009\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Weapon. Firearm.\",\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Ammo\",\n \"count\": 4\n }\n}]]\r\nallCards[\"Unsolved Case|\"] = [[{\n \"id\": \"05010\",\n \"type\": \"Event\",\n \"class\": \"Neutral\",\n \"traits\": \"Insight. Mystery.\",\n \"permanent\": false,\n \"weakness\": true\n}]]\r\nallCards[\"05010\"] = [[{\n \"id\": \"05010\",\n \"type\": \"Event\",\n \"class\": \"Neutral\",\n \"traits\": \"Insight. Mystery.\",\n \"permanent\": false,\n \"weakness\": true\n}]]\r\nallCards[\"Family Inheritance|A Windfall? Or a Burden?\"] = [[{\n \"id\": \"05011\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Boon.\",\n \"permanent\": true,\n \"weakness\": false\n}]]\r\nallCards[\"05011\"] = [[{\n \"id\": \"05011\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Boon.\",\n \"permanent\": true,\n \"weakness\": false\n}]]\r\nallCards[\"Family Inheritance|\"] = [[{\n \"id\": \"05011\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Boon.\",\n \"permanent\": true,\n \"weakness\": false\n}]]\r\nallCards[\"Lodge \\\"Debts\\\"|\"] = [[{\n \"id\": \"05012\",\n \"type\": \"Event\",\n \"class\": \"Neutral\",\n \"traits\": \"Pact.\",\n \"permanent\": false,\n \"weakness\": true\n}]]\r\nallCards[\"05012\"] = [[{\n \"id\": \"05012\",\n \"type\": \"Event\",\n \"class\": \"Neutral\",\n \"traits\": \"Pact.\",\n \"permanent\": false,\n \"weakness\": true\n}]]\r\nallCards[\"Twilight Blade|Sanctum's Reward\"] = [[{\n \"id\": \"05013\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Relic. Weapon.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"05013\"] = [[{\n \"id\": \"05013\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Relic. Weapon.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Twilight Blade|\"] = [[{\n \"id\": \"05013\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Relic. Weapon.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Dark Insight|\"] = [[{\n \"id\": \"05014\",\n \"type\": \"Event\",\n \"class\": \"Neutral\",\n \"traits\": \"Insight.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"05014\"] = [[{\n \"id\": \"05014\",\n \"type\": \"Event\",\n \"class\": \"Neutral\",\n \"traits\": \"Insight.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Terrible Secret|\"] = [[{\n \"id\": \"05015\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Madness.\",\n \"permanent\": false,\n \"weakness\": true\n}]]\r\nallCards[\"05015\"] = [[{\n \"id\": \"05015\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Madness.\",\n \"permanent\": false,\n \"weakness\": true\n}]]\r\nallCards[\"\\\"I'm done runnin'!\\\"|\"] = [[{\n \"id\": \"05016\",\n \"type\": \"Event\",\n \"class\": \"Neutral\",\n \"traits\": \"Spirit.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"05016\"] = [[{\n \"id\": \"05016\",\n \"type\": \"Event\",\n \"class\": \"Neutral\",\n \"traits\": \"Spirit.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Hoods|\"] = [[{\n \"id\": \"05017\",\n \"type\": \"Enemy\",\n \"class\": \"Neutral\",\n \"traits\": \"Humanoid. Cultist.\",\n \"permanent\": false,\n \"weakness\": true\n}]]\r\nallCards[\"05017\"] = [[{\n \"id\": \"05017\",\n \"type\": \"Enemy\",\n \"class\": \"Neutral\",\n \"traits\": \"Humanoid. Cultist.\",\n \"permanent\": false,\n \"weakness\": true\n}]]\r\nallCards[\"Mystifying Song|\"] = [[{\n \"id\": \"05018\",\n \"alternate_ids\": [ \"99002\" ],\n \"type\": \"Event\",\n \"class\": \"Neutral\",\n \"traits\": \"Spell. Song.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"05018\"] = [[{\n \"id\": \"05018\",\n \"alternate_ids\": [ \"99002\" ],\n \"type\": \"Event\",\n \"class\": \"Neutral\",\n \"traits\": \"Spell. Song.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Baron Samedi|Lord of the Cemetery\"] = [[{\n \"id\": \"05019\",\n \"alternate_ids\": [ \"99003\" ],\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Avatar.\",\n \"permanent\": false,\n \"weakness\": true\n}]]\r\nallCards[\"05019\"] = [[{\n \"id\": \"05019\",\n \"alternate_ids\": [ \"99003\" ],\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Avatar.\",\n \"permanent\": false,\n \"weakness\": true\n}]]\r\nallCards[\"Baron Samedi|\"] = [[{\n \"id\": \"05019\",\n \"alternate_ids\": [ \"99003\" ],\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Avatar.\",\n \"permanent\": false,\n \"weakness\": true\n}]]\r\nallCards[\"Interrogate|\"] = [[{\n \"id\": \"05020\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Tactic. Insight.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"05020\"] = [[{\n \"id\": \"05020\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Tactic. Insight.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Delay the Inevitable|\"] = [[{\n \"id\": \"05021\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Insight. Spirit. Tactic.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"05021\"] = [[{\n \"id\": \"05021\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Insight. Spirit. Tactic.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Steadfast|\"] = [[{\n \"id\": \"05022\",\n \"type\": \"Skill\",\n \"class\": \"Guardian\",\n \"traits\": \"Innate.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"05022\"] = [[{\n \"id\": \"05022\",\n \"type\": \"Skill\",\n \"class\": \"Guardian\",\n \"traits\": \"Innate.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Ace of Swords (1)|Let Your Arrow Fly True\"] = [[{\n \"id\": \"05023\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Tarot.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"05023\"] = [[{\n \"id\": \"05023\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Tarot.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Ace of Swords (1)|\"] = [[{\n \"id\": \"05023\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Tarot.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Fingerprint Kit|\"] = [[{\n \"id\": \"05024\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Tool.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Supply\",\n \"count\": 3\n }\n}]]\r\nallCards[\"05024\"] = [[{\n \"id\": \"05024\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Tool.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Supply\",\n \"count\": 3\n }\n}]]\r\nallCards[\"Connect the Dots|\"] = [[{\n \"id\": \"05025\",\n \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"traits\": \"Insight.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"05025\"] = [[{\n \"id\": \"05025\",\n \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"traits\": \"Insight.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Curiosity|\"] = [[{\n \"id\": \"05026\",\n \"type\": \"Skill\",\n \"class\": \"Seeker\",\n \"traits\": \"Innate.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"05026\"] = [[{\n \"id\": \"05026\",\n \"type\": \"Skill\",\n \"class\": \"Seeker\",\n \"traits\": \"Innate.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Death � XIII (1)|Free from the Past\"] = [[{\n \"id\": \"05027\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Tarot.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"05027\"] = [[{\n \"id\": \"05027\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Tarot.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Death � XIII (1)|\"] = [[{\n \"id\": \"05027\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Tarot.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Well Connected|\"] = [[{\n \"id\": \"05028\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Condition.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"05028\"] = [[{\n \"id\": \"05028\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Condition.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Money Talks|\"] = [[{\n \"id\": \"05029\",\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"traits\": \"Favor. Gambit.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"05029\"] = [[{\n \"id\": \"05029\",\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"traits\": \"Favor. Gambit.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Cunning|\"] = [[{\n \"id\": \"05030\",\n \"type\": \"Skill\",\n \"class\": \"Rogue\",\n \"traits\": \"Innate.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"05030\"] = [[{\n \"id\": \"05030\",\n \"type\": \"Skill\",\n \"class\": \"Rogue\",\n \"traits\": \"Innate.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"The Moon � XVIII (1)|Message from Your Inner Self\"] = [[{\n \"id\": \"05031\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Tarot.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"05031\"] = [[{\n \"id\": \"05031\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Tarot.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"The Moon � XVIII (1)|\"] = [[{\n \"id\": \"05031\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Tarot.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Deny Existence|\"] = [[{\n \"id\": \"05032\",\n \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell. Paradox.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"05032\"] = [[{\n \"id\": \"05032\",\n \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell. Paradox.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Eldritch Inspiration|\"] = [[{\n \"id\": \"05033\",\n \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell. Spirit.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"05033\"] = [[{\n \"id\": \"05033\",\n \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell. Spirit.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Prophesy|\"] = [[{\n \"id\": \"05034\",\n \"type\": \"Skill\",\n \"class\": \"Mystic\",\n \"traits\": \"Practiced.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"05034\"] = [[{\n \"id\": \"05034\",\n \"type\": \"Skill\",\n \"class\": \"Mystic\",\n \"traits\": \"Practiced.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Four of Cups (1)|Chalice of the Heart\"] = [[{\n \"id\": \"05035\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Tarot.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"05035\"] = [[{\n \"id\": \"05035\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Tarot.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Four of Cups (1)|\"] = [[{\n \"id\": \"05035\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Tarot.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Track Shoes|\"] = [[{\n \"id\": \"05036\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Item. Clothing. Footwear.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"05036\"] = [[{\n \"id\": \"05036\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Item. Clothing. Footwear.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Act of Desperation|\"] = [[{\n \"id\": \"05037\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Tactic. Gambit.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"05037\"] = [[{\n \"id\": \"05037\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Tactic. Gambit.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Able Bodied|\"] = [[{\n \"id\": \"05038\",\n \"type\": \"Skill\",\n \"class\": \"Survivor\",\n \"traits\": \"Innate.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"05038\"] = [[{\n \"id\": \"05038\",\n \"type\": \"Skill\",\n \"class\": \"Survivor\",\n \"traits\": \"Innate.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Five of Pentacles (1)|From the Brink\"] = [[{\n \"id\": \"05039\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Tarot.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"05039\"] = [[{\n \"id\": \"05039\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Tarot.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Five of Pentacles (1)|\"] = [[{\n \"id\": \"05039\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Tarot.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Ace of Rods (1)|The Fateful Step\"] = [[{\n \"id\": \"05040\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Tarot.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"05040\"] = [[{\n \"id\": \"05040\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Tarot.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Ace of Rods (1)|\"] = [[{\n \"id\": \"05040\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Tarot.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"The 13th Vision|\"] = [[{\n \"id\": \"05041\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Omen.\",\n \"permanent\": false,\n \"weakness\": true,\n \"basicWeaknessCount\": 2\n}]]\r\nallCards[\"05041\"] = [[{\n \"id\": \"05041\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Omen.\",\n \"permanent\": false,\n \"weakness\": true,\n \"basicWeaknessCount\": 2\n}]]\r\nallCards[\"The Tower � XVI|Circumstances Beyond Your Control\"] = [[{\n \"id\": \"05042\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Omen. Tarot.\",\n \"permanent\": false,\n \"weakness\": true,\n \"basicWeaknessCount\": 2\n}]]\r\nallCards[\"05042\"] = [[{\n \"id\": \"05042\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Omen. Tarot.\",\n \"permanent\": false,\n \"weakness\": true,\n \"basicWeaknessCount\": 2\n}]]\r\nallCards[\"The Tower � XVI|\"] = [[{\n \"id\": \"05042\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Omen. Tarot.\",\n \"permanent\": false,\n \"weakness\": true,\n \"basicWeaknessCount\": 2\n}]]\r\nallCards[\"Gavriella Mizrah|Private Security\"] = [[{\n \"id\": \"05046\",\n \"type\": \"Investigator\",\n \"class\": \"Neutral\",\n \"traits\": \"Veteran.\"\n}]]\r\nallCards[\"05046\"] = [[{\n \"id\": \"05046\",\n \"type\": \"Investigator\",\n \"class\": \"Neutral\",\n \"traits\": \"Veteran.\"\n}]]\r\nallCards[\"Gavriella Mizrah (promo version)|Private Security\"] = [[{\n \"id\": \"05046-promo\",\n \"type\": \"Investigator\",\n \"class\": \"Neutral\",\n \"traits\": \"Veteran.\"\n}]]\r\nallCards[\"Gavriella Mizrah (Parallel)|Private Security\"] = [[{\n \"id\": \"05046-p\",\n \"type\": \"Investigator\",\n \"class\": \"Neutral\",\n \"traits\": \"Veteran.\"\n}]]\r\nallCards[\"Gavriella Mizrah (Parallel Front)|Private Security\"] = [[{\n \"id\": \"05046-pf\",\n \"type\": \"Investigator\",\n \"class\": \"Neutral\",\n \"traits\": \"Veteran.\"\n}]]\r\nallCards[\"Gavriella Mizrah (Parallel Back)|Private Security\"] = [[{\n \"id\": \"05046-pb\",\n \"type\": \"Investigator\",\n \"class\": \"Neutral\",\n \"traits\": \"Veteran.\"\n}]]\r\nallCards[\"Gavriella Mizrah|\"] = [[{\n \"id\": \"05046-m\",\n \"type\": \"Minicard\"\n}]]\r\nallCards[\"Gavriella Mizrah|Promo version\"] = [[{\n \"id\": \"05046-promo-m\",\n \"type\": \"Minicard\"\n}]]\r\nallCards[\"Jerome Davids|Josef's Secretary\"] = [[{\n \"id\": \"05047\",\n \"type\": \"Investigator\",\n \"class\": \"Neutral\",\n \"traits\": \"Assistant. Silver Twilight.\"\n}]]\r\nallCards[\"05047\"] = [[{\n \"id\": \"05047\",\n \"type\": \"Investigator\",\n \"class\": \"Neutral\",\n \"traits\": \"Assistant. Silver Twilight.\"\n}]]\r\nallCards[\"Jerome Davids (promo version)|Josef's Secretary\"] = [[{\n \"id\": \"05047-promo\",\n \"type\": \"Investigator\",\n \"class\": \"Neutral\",\n \"traits\": \"Assistant. Silver Twilight.\"\n}]]\r\nallCards[\"Jerome Davids (Parallel)|Josef's Secretary\"] = [[{\n \"id\": \"05047-p\",\n \"type\": \"Investigator\",\n \"class\": \"Neutral\",\n \"traits\": \"Assistant. Silver Twilight.\"\n}]]\r\nallCards[\"Jerome Davids (Parallel Front)|Josef's Secretary\"] = [[{\n \"id\": \"05047-pf\",\n \"type\": \"Investigator\",\n \"class\": \"Neutral\",\n \"traits\": \"Assistant. Silver Twilight.\"\n}]]\r\nallCards[\"Jerome Davids (Parallel Back)|Josef's Secretary\"] = [[{\n \"id\": \"05047-pb\",\n \"type\": \"Investigator\",\n \"class\": \"Neutral\",\n \"traits\": \"Assistant. Silver Twilight.\"\n}]]\r\nallCards[\"Jerome Davids|\"] = [[{\n \"id\": \"05047-m\",\n \"type\": \"Minicard\"\n}]]\r\nallCards[\"Jerome Davids|Promo version\"] = [[{\n \"id\": \"05047-promo-m\",\n \"type\": \"Minicard\"\n}]]\r\nallCards[\"Valentino Rivas|Wealthy Philanthropist\"] = [[{\n \"id\": \"05048\",\n \"type\": \"Investigator\",\n \"class\": \"Neutral\",\n \"traits\": \"Silver Twilight. Socialite.\"\n}]]\r\nallCards[\"05048\"] = [[{\n \"id\": \"05048\",\n \"type\": \"Investigator\",\n \"class\": \"Neutral\",\n \"traits\": \"Silver Twilight. Socialite.\"\n}]]\r\nallCards[\"Valentino Rivas (promo version)|Wealthy Philanthropist\"] = [[{\n \"id\": \"05048-promo\",\n \"type\": \"Investigator\",\n \"class\": \"Neutral\",\n \"traits\": \"Silver Twilight. Socialite.\"\n}]]\r\nallCards[\"Valentino Rivas (Parallel)|Wealthy Philanthropist\"] = [[{\n \"id\": \"05048-p\",\n \"type\": \"Investigator\",\n \"class\": \"Neutral\",\n \"traits\": \"Silver Twilight. Socialite.\"\n}]]\r\nallCards[\"Valentino Rivas (Parallel Front)|Wealthy Philanthropist\"] = [[{\n \"id\": \"05048-pf\",\n \"type\": \"Investigator\",\n \"class\": \"Neutral\",\n \"traits\": \"Silver Twilight. Socialite.\"\n}]]\r\nallCards[\"Valentino Rivas (Parallel Back)|Wealthy Philanthropist\"] = [[{\n \"id\": \"05048-pb\",\n \"type\": \"Investigator\",\n \"class\": \"Neutral\",\n \"traits\": \"Silver Twilight. Socialite.\"\n}]]\r\nallCards[\"Valentino Rivas|\"] = [[{\n \"id\": \"05048-m\",\n \"type\": \"Minicard\"\n}]]\r\nallCards[\"Valentino Rivas|Promo version\"] = [[{\n \"id\": \"05048-promo-m\",\n \"type\": \"Minicard\"\n}]]\r\nallCards[\"Penny White|Josef's Housekeeper\"] = [[{\n \"id\": \"05049\",\n \"type\": \"Investigator\",\n \"class\": \"Neutral\",\n \"traits\": \"Assistant.\"\n}]]\r\nallCards[\"05049\"] = [[{\n \"id\": \"05049\",\n \"type\": \"Investigator\",\n \"class\": \"Neutral\",\n \"traits\": \"Assistant.\"\n}]]\r\nallCards[\"Penny White (promo version)|Josef's Housekeeper\"] = [[{\n \"id\": \"05049-promo\",\n \"type\": \"Investigator\",\n \"class\": \"Neutral\",\n \"traits\": \"Assistant.\"\n}]]\r\nallCards[\"Penny White (Parallel)|Josef's Housekeeper\"] = [[{\n \"id\": \"05049-p\",\n \"type\": \"Investigator\",\n \"class\": \"Neutral\",\n \"traits\": \"Assistant.\"\n}]]\r\nallCards[\"Penny White (Parallel Front)|Josef's Housekeeper\"] = [[{\n \"id\": \"05049-pf\",\n \"type\": \"Investigator\",\n \"class\": \"Neutral\",\n \"traits\": \"Assistant.\"\n}]]\r\nallCards[\"Penny White (Parallel Back)|Josef's Housekeeper\"] = [[{\n \"id\": \"05049-pb\",\n \"type\": \"Investigator\",\n \"class\": \"Neutral\",\n \"traits\": \"Assistant.\"\n}]]\r\nallCards[\"Penny White|\"] = [[{\n \"id\": \"05049-m\",\n \"type\": \"Minicard\"\n}]]\r\nallCards[\"Penny White|Promo version\"] = [[{\n \"id\": \"05049-promo-m\",\n \"type\": \"Minicard\"\n}]]\r\nallCards[\"Something Worth Fighting For|\"] = [[{\n \"id\": \"05109\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Talent.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"05109\"] = [[{\n \"id\": \"05109\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Talent.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Crack the Case|\"] = [[{\n \"id\": \"05110\",\n \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"traits\": \"Insight.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"05110\"] = [[{\n \"id\": \"05110\",\n \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"traits\": \"Insight.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Intel Report|\"] = [[{\n \"id\": \"05111\",\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"traits\": \"Favor. Service.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"05111\"] = [[{\n \"id\": \"05111\",\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"traits\": \"Favor. Service.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Sign Magick|\"] = [[{\n \"id\": \"05112\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Ritual. Talent.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"05112\"] = [[{\n \"id\": \"05112\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Ritual. Talent.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Banish (1)|\"] = [[{\n \"id\": \"05113\",\n \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"05113\"] = [[{\n \"id\": \"05113\",\n \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Meat Cleaver|\"] = [[{\n \"id\": \"05114\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Item. Weapon. Melee.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"05114\"] = [[{\n \"id\": \"05114\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Item. Weapon. Melee.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\".45 Thompson|\"] = [[{\n \"id\": \"05115\",\n \"type\": \"Asset\",\n \"class\": \"Guardian|Rogue\",\n \"traits\": \"Item. Weapon. Firearm. Illicit.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Ammo\",\n \"count\": 5\n }\n}]]\r\nallCards[\"05115\"] = [[{\n \"id\": \"05115\",\n \"type\": \"Asset\",\n \"class\": \"Guardian|Rogue\",\n \"traits\": \"Item. Weapon. Firearm. Illicit.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Ammo\",\n \"count\": 5\n }\n}]]\r\nallCards[\"Scroll of Secrets|\"] = [[{\n \"id\": \"05116\",\n \"type\": \"Asset\",\n \"class\": \"Seeker|Mystic\",\n \"traits\": \"Item. Tome.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Secret\",\n \"count\": 3\n }\n}]]\r\nallCards[\"05116\"] = [[{\n \"id\": \"05116\",\n \"type\": \"Asset\",\n \"class\": \"Seeker|Mystic\",\n \"traits\": \"Item. Tome.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Secret\",\n \"count\": 3\n }\n}]]\r\nallCards[\"Scroll of Secrets (Taboo)|\"] = [[{\n \"id\": \"05116-t\",\n \"type\": \"Asset\",\n \"class\": \"Seeker|Mystic\",\n \"traits\": \"Item. Tome.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Secret\",\n \"count\": 3\n }\n}]]\r\nallCards[\"Tennessee Sour Mash|\"] = [[{\n \"id\": \"05117\",\n \"type\": \"Asset\",\n \"class\": \"Rogue|Survivor\",\n \"traits\": \"Item. Illicit.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Supply\",\n \"count\": 2\n }\n}]]\r\nallCards[\"05117\"] = [[{\n \"id\": \"05117\",\n \"type\": \"Asset\",\n \"class\": \"Rogue|Survivor\",\n \"traits\": \"Item. Illicit.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Supply\",\n \"count\": 2\n }\n}]]\r\nallCards[\"Enchanted Blade|\"] = [[{\n \"id\": \"05118\",\n \"type\": \"Asset\",\n \"class\": \"Mystic|Guardian\",\n \"traits\": \"Item. Relic. Weapon. Melee.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Charge\",\n \"count\": 3\n }\n}]]\r\nallCards[\"05118\"] = [[{\n \"id\": \"05118\",\n \"type\": \"Asset\",\n \"class\": \"Mystic|Guardian\",\n \"traits\": \"Item. Relic. Weapon. Melee.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Charge\",\n \"count\": 3\n }\n}]]\r\nallCards[\"Grisly Totem|\"] = [[{\n \"id\": \"05119\",\n \"type\": \"Asset\",\n \"class\": \"Survivor|Seeker\",\n \"traits\": \"Item. Charm.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"05119\"] = [[{\n \"id\": \"05119\",\n \"type\": \"Asset\",\n \"class\": \"Survivor|Seeker\",\n \"traits\": \"Item. Charm.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"The Black Book|Signed in Blood\"] = [[{\n \"id\": \"05150\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Tome. Relic.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"05150\"] = [[{\n \"id\": \"05150\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Tome. Relic.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"The Black Book|\"] = [[{\n \"id\": \"05150\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Tome. Relic.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Alice Luxley|Fearless Flatfoot\"] = [[{\n \"id\": \"05151\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Ally. Detective. Police.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"05151\"] = [[{\n \"id\": \"05151\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Ally. Detective. Police.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Alice Luxley|\"] = [[{\n \"id\": \"05151\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Ally. Detective. Police.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Well-Maintained (1)|\"] = [[{\n \"id\": \"05152\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Upgrade.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"05152\"] = [[{\n \"id\": \"05152\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Upgrade.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Mr. \\\"Rook\\\"|Dealer in Secrets\"] = [[{\n \"id\": \"05153\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Ally.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"05153\"] = [[{\n \"id\": \"05153\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Ally.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Mr. \\\"Rook\\\" (Taboo)|Dealer in Secrets\"] = [[{\n \"id\": \"05153-t\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Ally.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Mr. \\\"Rook\\\"|\"] = [[{\n \"id\": \"05153\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Ally.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Mr. \\\"Rook\\\" (Taboo)|\"] = [[{\n \"id\": \"05153-t\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Ally.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Hawk-Eye Folding Camera|\"] = [[{\n \"id\": \"05154\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Tool.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"05154\"] = [[{\n \"id\": \"05154\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Tool.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Henry Wan|Aspiring Actor\"] = [[{\n \"id\": \"05155\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Ally. Criminal.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"05155\"] = [[{\n \"id\": \"05155\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Ally. Criminal.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Henry Wan|\"] = [[{\n \"id\": \"05155\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Ally. Criminal.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Swift Reflexes|\"] = [[{\n \"id\": \"05156\",\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"traits\": \"Gambit.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"05156\"] = [[{\n \"id\": \"05156\",\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"traits\": \"Gambit.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Wither|\"] = [[{\n \"id\": \"05157\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"05157\"] = [[{\n \"id\": \"05157\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Sixth Sense|\"] = [[{\n \"id\": \"05158\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"05158\"] = [[{\n \"id\": \"05158\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Drawing Thin|\"] = [[{\n \"id\": \"05159\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Talent.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"05159\"] = [[{\n \"id\": \"05159\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Talent.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Drawing Thin (Taboo)|\"] = [[{\n \"id\": \"05159-t\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Talent.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Belly of the Beast|\"] = [[{\n \"id\": \"05160\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Gambit. Trick.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"05160\"] = [[{\n \"id\": \"05160\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Gambit. Trick.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Spectral Web|\"] = [[{\n \"id\": \"05177\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Spell.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"05177\"] = [[{\n \"id\": \"05177\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Spell.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\".45 Thompson (3)|Guardian\"] = [[{\n \"id\": \"05186\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Item. Weapon. Firearm. Illicit.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"05186\"] = [[{\n \"id\": \"05186\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Item. Weapon. Firearm. Illicit.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\".45 Thompson (3)|Rogue\"] = [[{\n \"id\": \"05187\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Item. Weapon. Firearm. Illicit.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"05187\"] = [[{\n \"id\": \"05187\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Item. Weapon. Firearm. Illicit.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Scroll of Secrets (3)|Seeker\"] = [[{\n \"id\": \"05188\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Tome.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Secret\",\n \"count\": 3\n }\n}]]\r\nallCards[\"05188\"] = [[{\n \"id\": \"05188\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Tome.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Secret\",\n \"count\": 3\n }\n}]]\r\nallCards[\"Scroll of Secrets (3) (Taboo)|Seeker\"] = [[{\n \"id\": \"05188-t\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Tome.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Secret\",\n \"count\": 3\n }\n}]]\r\nallCards[\"Scroll of Secrets (3)|Mystic\"] = [[{\n \"id\": \"05189\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Item. Tome.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Secret\",\n \"count\": 4\n }\n}]]\r\nallCards[\"05189\"] = [[{\n \"id\": \"05189\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Item. Tome.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Secret\",\n \"count\": 4\n }\n}]]\r\nallCards[\"Scroll of Secrets (3) (Taboo)|Mystic\"] = [[{\n \"id\": \"05189-t\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Item. Tome.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Secret\",\n \"count\": 4\n }\n}]]\r\nallCards[\"Tennessee Sour Mash (3)|Rogue\"] = [[{\n \"id\": \"05190\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Item. Illicit.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Supply\",\n \"count\": 2\n }\n}]]\r\nallCards[\"05190\"] = [[{\n \"id\": \"05190\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Item. Illicit.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Supply\",\n \"count\": 2\n }\n}]]\r\nallCards[\"Tennessee Sour Mash (3)|Survivor\"] = [[{\n \"id\": \"05191\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Item. Illicit.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Supply\",\n \"count\": 3\n }\n}]]\r\nallCards[\"05191\"] = [[{\n \"id\": \"05191\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Item. Illicit.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Supply\",\n \"count\": 3\n }\n}]]\r\nallCards[\"Enchanted Blade (3)|Guardian\"] = [[{\n \"id\": \"05192\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Item. Relic. Weapon. Melee.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Charge\",\n \"count\": 3\n }\n}]]\r\nallCards[\"05192\"] = [[{\n \"id\": \"05192\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Item. Relic. Weapon. Melee.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Charge\",\n \"count\": 3\n }\n}]]\r\nallCards[\"Enchanted Blade (3)|Mystic\"] = [[{\n \"id\": \"05193\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Item. Relic. Weapon. Melee.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Charge\",\n \"count\": 4\n }\n}]]\r\nallCards[\"05193\"] = [[{\n \"id\": \"05193\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Item. Relic. Weapon. Melee.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Charge\",\n \"count\": 4\n }\n}]]\r\nallCards[\"Grisly Totem (3)|Seeker\"] = [[{\n \"id\": \"05194\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Charm. Cursed.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"05194\"] = [[{\n \"id\": \"05194\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Charm. Cursed.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Grisly Totem (3)|Survivor\"] = [[{\n \"id\": \"05195\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Item. Charm. Blessed.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"05195\"] = [[{\n \"id\": \"05195\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Item. Charm. Blessed.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"The Council's Coffer (2)|What�s in the Box?\"] = [[{\n \"id\": \"05196\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Relic.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"05196\"] = [[{\n \"id\": \"05196\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Relic.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"The Council's Coffer (2)|\"] = [[{\n \"id\": \"05196\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Relic.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"August Lindquist|Elegant and Elusive\"] = [[{\n \"id\": \"05227\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Cultist. Silver Twilight.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"05227\"] = [[{\n \"id\": \"05227\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Cultist. Silver Twilight.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"August Lindquist|\"] = [[{\n \"id\": \"05227\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Cultist. Silver Twilight.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Puzzle Box|Mysterious Device\"] = [[{\n \"id\": \"05228\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Relic.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"05228\"] = [[{\n \"id\": \"05228\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Relic.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Puzzle Box|\"] = [[{\n \"id\": \"05228\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Relic.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Warning Shot|\"] = [[{\n \"id\": \"05229\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Tactic. Trick.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"05229\"] = [[{\n \"id\": \"05229\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Tactic. Trick.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Telescopic Sight (3)|\"] = [[{\n \"id\": \"05230\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Item. Upgrade.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"05230\"] = [[{\n \"id\": \"05230\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Item. Upgrade.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Telescopic Sight (3) (Taboo)|\"] = [[{\n \"id\": \"05230-t\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Item. Upgrade.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Knowledge is Power|\"] = [[{\n \"id\": \"05231\",\n \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"traits\": \"Insight.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"05231\"] = [[{\n \"id\": \"05231\",\n \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"traits\": \"Insight.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Knowledge is Power (Taboo)|\"] = [[{\n \"id\": \"05231-t\",\n \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"traits\": \"Insight.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Esoteric Atlas (1)|\"] = [[{\n \"id\": \"05232\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Tome.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Secret\",\n \"count\": 4\n }\n}]]\r\nallCards[\"05232\"] = [[{\n \"id\": \"05232\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Tome.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Secret\",\n \"count\": 4\n }\n}]]\r\nallCards[\"Investments|\"] = [[{\n \"id\": \"05233\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Connection.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"05233\"] = [[{\n \"id\": \"05233\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Connection.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Decoy|\"] = [[{\n \"id\": \"05234\",\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"traits\": \"Favor. Service.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"05234\"] = [[{\n \"id\": \"05234\",\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"traits\": \"Favor. Service.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"De Vermis Mysteriis (2)|Signs of the Black Stars\"] = [[{\n \"id\": \"05235\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Item. Tome.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"05235\"] = [[{\n \"id\": \"05235\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Item. Tome.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"De Vermis Mysteriis (2)|\"] = [[{\n \"id\": \"05235\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Item. Tome.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Guiding Spirit (1)|\"] = [[{\n \"id\": \"05236\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Ally. Geist.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"05236\"] = [[{\n \"id\": \"05236\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Ally. Geist.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Fortune or Fate (2)|\"] = [[{\n \"id\": \"05237\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Fortune. Blessed.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"05237\"] = [[{\n \"id\": \"05237\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Fortune. Blessed.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Gavriella Mizrah|Not Going Down That Easily\"] = [[{\n \"id\": \"05258\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Veteran.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"05258\"] = [[{\n \"id\": \"05258\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Veteran.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Gavriella Mizrah|\"] = [[{\n \"id\": \"05258\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Veteran.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Jerome Davids|In Way Over His Head\"] = [[{\n \"id\": \"05259\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Assistant.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"05259\"] = [[{\n \"id\": \"05259\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Assistant.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Jerome Davids|\"] = [[{\n \"id\": \"05259\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Assistant.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Penny White|The Nightmare is Over\"] = [[{\n \"id\": \"05260\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Assistant.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"05260\"] = [[{\n \"id\": \"05260\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Assistant.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Penny White|\"] = [[{\n \"id\": \"05260\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Assistant.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Valentino Rivas|Took You Long Enough\"] = [[{\n \"id\": \"05261\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Socialite.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"05261\"] = [[{\n \"id\": \"05261\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Socialite.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Valentino Rivas|\"] = [[{\n \"id\": \"05261\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Socialite.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Mk 1 Grenades (4)|\"] = [[{\n \"id\": \"05273\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Item. Weapon. Ranged.\",\n \"level\": 4,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Supply\",\n \"count\": 3\n }\n}]]\r\nallCards[\"05273\"] = [[{\n \"id\": \"05273\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Item. Weapon. Ranged.\",\n \"level\": 4,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Supply\",\n \"count\": 3\n }\n}]]\r\nallCards[\"Agency Backup (5)|\"] = [[{\n \"id\": \"05274\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Ally. Agency.\",\n \"level\": 5,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"05274\"] = [[{\n \"id\": \"05274\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Ally. Agency.\",\n \"level\": 5,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Ghastly Revelation|\"] = [[{\n \"id\": \"05275\",\n \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"traits\": \"Spirit.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"05275\"] = [[{\n \"id\": \"05275\",\n \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"traits\": \"Spirit.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Studious (3)|\"] = [[{\n \"id\": \"05276\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Talent.\",\n \"level\": 3,\n \"permanent\": true,\n \"weakness\": false\n}]]\r\nallCards[\"05276\"] = [[{\n \"id\": \"05276\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Talent.\",\n \"level\": 3,\n \"permanent\": true,\n \"weakness\": false\n}]]\r\nallCards[\"Small Favor|\"] = [[{\n \"id\": \"05277\",\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"traits\": \"Favor. Service.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"05277\"] = [[{\n \"id\": \"05277\",\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"traits\": \"Favor. Service.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Another Day, Another Dollar (3)|\"] = [[{\n \"id\": \"05278\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Talent.\",\n \"level\": 3,\n \"permanent\": true,\n \"weakness\": false\n}]]\r\nallCards[\"05278\"] = [[{\n \"id\": \"05278\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Talent.\",\n \"level\": 3,\n \"permanent\": true,\n \"weakness\": false\n}]]\r\nallCards[\"Dayana Esperence (3)|Deals with \\\"Devils\\\"\"] = [[{\n \"id\": \"05279\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Ally. Witch.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"05279\"] = [[{\n \"id\": \"05279\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Ally. Witch.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Dayana Esperence (3)|\"] = [[{\n \"id\": \"05279\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Ally. Witch.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Deny Existence (5)|\"] = [[{\n \"id\": \"05280\",\n \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell. Paradox.\",\n \"level\": 5,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"05280\"] = [[{\n \"id\": \"05280\",\n \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell. Paradox.\",\n \"level\": 5,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Trial by Fire|\"] = [[{\n \"id\": \"05281\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Spirit.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"05281\"] = [[{\n \"id\": \"05281\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Spirit.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Bait and Switch (3)|\"] = [[{\n \"id\": \"05282\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Tactic.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"05282\"] = [[{\n \"id\": \"05282\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Tactic.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Anna Kaslow (4)|Mysterious Soothsayer\"] = [[{\n \"id\": \"05283\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Clairvoyant.\",\n \"level\": 4,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"05283\"] = [[{\n \"id\": \"05283\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Clairvoyant.\",\n \"level\": 4,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Anna Kaslow (4)|\"] = [[{\n \"id\": \"05283\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Clairvoyant.\",\n \"level\": 4,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Hallowed Mirror|\"] = [[{\n \"id\": \"05313\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Item. Relic. Occult. Blessed.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false,\n \"bonded\": [\n {\n \"id\": \"05314\",\n \"count\": 3\n }\n ]\n}]]\r\nallCards[\"05313\"] = [[{\n \"id\": \"05313\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Item. Relic. Occult. Blessed.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false,\n \"bonded\": [\n {\n \"id\": \"05314\",\n \"count\": 3\n }\n ]\n}]]\r\nallCards[\"Soothing Melody|\"] = [[{\n \"id\": \"05314\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Spell.\",\n \"permanent\": false,\n \"bonded_to\": [\n {\n \"id\": \"05313\",\n \"count\": 3\n },\n {\n \"id\": \"54002\",\n \"count\": 3\n }\n ],\n \"weakness\": false\n}]]\r\nallCards[\"05314\"] = [[{\n \"id\": \"05314\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Spell.\",\n \"permanent\": false,\n \"bonded_to\": [\n {\n \"id\": \"05313\",\n \"count\": 3\n },\n {\n \"id\": \"54002\",\n \"count\": 3\n }\n ],\n \"weakness\": false\n}]]\r\nallCards[\"\\\"I've had worse�\\\" (2)|\"] = [[{\n \"id\": \"05315\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Spirit.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"05315\"] = [[{\n \"id\": \"05315\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Spirit.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Occult Lexicon|\"] = [[{\n \"id\": \"05316\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Tome. Occult.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false,\n \"bonded\": [\n {\n \"id\": \"05317\",\n \"count\": 3\n }\n ]\n}]]\r\nallCards[\"05316\"] = [[{\n \"id\": \"05316\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Tome. Occult.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false,\n \"bonded\": [\n {\n \"id\": \"05317\",\n \"count\": 3\n }\n ]\n}]]\r\nallCards[\"Blood-Rite|\"] = [[{\n \"id\": \"05317\",\n \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"traits\": \"Spell.\",\n \"permanent\": false,\n \"bonded_to\": [\n {\n \"id\": \"05316\",\n \"count\": 3\n },\n {\n \"id\": \"54004\",\n \"count\": 3\n }\n ],\n \"weakness\": false\n}]]\r\nallCards[\"05317\"] = [[{\n \"id\": \"05317\",\n \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"traits\": \"Spell.\",\n \"permanent\": false,\n \"bonded_to\": [\n {\n \"id\": \"05316\",\n \"count\": 3\n },\n {\n \"id\": \"54004\",\n \"count\": 3\n }\n ],\n \"weakness\": false\n}]]\r\nallCards[\"Glimpse the Unthinkable (5)|\"] = [[{\n \"id\": \"05318\",\n \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"traits\": \"Insight.\",\n \"level\": 5,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"05318\"] = [[{\n \"id\": \"05318\",\n \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"traits\": \"Insight.\",\n \"level\": 5,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\\\"You owe me one!\\\"|\"] = [[{\n \"id\": \"05319\",\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"traits\": \"Favor. Gambit.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"05319\"] = [[{\n \"id\": \"05319\",\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"traits\": \"Favor. Gambit.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Double, Double (4)|\"] = [[{\n \"id\": \"05320\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Ritual.\",\n \"level\": 4,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"05320\"] = [[{\n \"id\": \"05320\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Ritual.\",\n \"level\": 4,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Wither (4)|\"] = [[{\n \"id\": \"05321\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\",\n \"level\": 4,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"05321\"] = [[{\n \"id\": \"05321\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\",\n \"level\": 4,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Sixth Sense (4)|\"] = [[{\n \"id\": \"05322\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\",\n \"level\": 4,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"05322\"] = [[{\n \"id\": \"05322\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\",\n \"level\": 4,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Lure (2)|\"] = [[{\n \"id\": \"05323\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Trick.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"05323\"] = [[{\n \"id\": \"05323\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Trick.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Eucatastrophe (3)|\"] = [[{\n \"id\": \"05324\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Fortune. Blessed.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"05324\"] = [[{\n \"id\": \"05324\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Fortune. Blessed.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Eucatastrophe (3) (Taboo)|\"] = [[{\n \"id\": \"05324-t\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Fortune. Blessed.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\".32 Colt (2)|\"] = [[{\n \"id\": \"52001\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Item. Weapon. Firearm.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Ammo\",\n \"count\": 6\n }\n}]]\r\nallCards[\"52001\"] = [[{\n \"id\": \"52001\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Item. Weapon. Firearm.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Ammo\",\n \"count\": 6\n }\n}]]\r\nallCards[\"\\\"Eat lead!\\\"|\"] = [[{\n \"id\": \"52002\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Tactic.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"52002\"] = [[{\n \"id\": \"52002\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Tactic.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Logical Reasoning (4)|\"] = [[{\n \"id\": \"52003\",\n \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"traits\": \"Insight.\",\n \"level\": 4,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"52003\"] = [[{\n \"id\": \"52003\",\n \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"traits\": \"Insight.\",\n \"level\": 4,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Archaic Glyphs (3)|Markings of Isis\"] = [[{\n \"id\": \"52004\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Spell.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"52004\"] = [[{\n \"id\": \"52004\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Spell.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Archaic Glyphs (3)|\"] = [[{\n \"id\": \"52004\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Spell.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Stealth (3)|\"] = [[{\n \"id\": \"52005\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Talent.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"52005\"] = [[{\n \"id\": \"52005\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Talent.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Suggestion (1)|\"] = [[{\n \"id\": \"52006\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Spell.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Charge\",\n \"count\": 3\n }\n}]]\r\nallCards[\"52006\"] = [[{\n \"id\": \"52006\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Spell.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Charge\",\n \"count\": 3\n }\n}]]\r\nallCards[\"Alchemical Transmutation (2)|\"] = [[{\n \"id\": \"52007\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Charge\",\n \"count\": 4\n }\n}]]\r\nallCards[\"52007\"] = [[{\n \"id\": \"52007\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Charge\",\n \"count\": 4\n }\n}]]\r\nallCards[\"Storm of Spirits (3)|\"] = [[{\n \"id\": \"52008\",\n \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"52008\"] = [[{\n \"id\": \"52008\",\n \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Lantern (2)|\"] = [[{\n \"id\": \"52009\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Item. Tool.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"52009\"] = [[{\n \"id\": \"52009\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Item. Tool.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Gravedigger's Shovel (2)|\"] = [[{\n \"id\": \"52010\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Item. Tool. Weapon. Melee.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"52010\"] = [[{\n \"id\": \"52010\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Item. Tool. Weapon. Melee.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Unspeakable Oath (Bloodthirst)|\"] = [[{\n \"id\": \"52011\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Madness. Pact.\",\n \"permanent\": false,\n \"weakness\": true,\n \"basicWeaknessCount\": 1\n}]]\r\nallCards[\"52011\"] = [[{\n \"id\": \"52011\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Madness. Pact.\",\n \"permanent\": false,\n \"weakness\": true,\n \"basicWeaknessCount\": 1\n}]]\r\nallCards[\"Unspeakable Oath (Curiosity)|\"] = [[{\n \"id\": \"52012\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Madness. Pact.\",\n \"permanent\": false,\n \"weakness\": true,\n \"basicWeaknessCount\": 1\n}]]\r\nallCards[\"52012\"] = [[{\n \"id\": \"52012\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Madness. Pact.\",\n \"permanent\": false,\n \"weakness\": true,\n \"basicWeaknessCount\": 1\n}]]\r\nallCards[\"Unspeakable Oath (Cowardice)|\"] = [[{\n \"id\": \"52013\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Madness. Pact.\",\n \"permanent\": false,\n \"weakness\": true,\n \"basicWeaknessCount\": 1\n}]]\r\nallCards[\"52013\"] = [[{\n \"id\": \"52013\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Madness. Pact.\",\n \"permanent\": false,\n \"weakness\": true,\n \"basicWeaknessCount\": 1\n}]]\r\nallCards[\"Dianne Devine|Hiding an Oath Unspoken\"] = [[{\n \"id\": \"52025\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Cultist.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"52025\"] = [[{\n \"id\": \"52025\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Cultist.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Dianne Devine|\"] = [[{\n \"id\": \"52025\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Cultist.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Party Guest|\"] = [[{\n \"id\": \"52026\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"52026\"] = [[{\n \"id\": \"52026\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Tommy Muldoon|The Rookie Cop\"] = [[{\n \"id\": \"06001\",\n \"type\": \"Investigator\",\n \"class\": \"Guardian\",\n \"traits\": \"Police. Warden.\"\n}]]\r\nallCards[\"06001\"] = [[{\n \"id\": \"06001\",\n \"type\": \"Investigator\",\n \"class\": \"Guardian\",\n \"traits\": \"Police. Warden.\"\n}]]\r\nallCards[\"Tommy Muldoon (promo version)|The Rookie Cop\"] = [[{\n \"id\": \"06001-promo\",\n \"type\": \"Investigator\",\n \"class\": \"Guardian\",\n \"traits\": \"Police. Warden.\"\n}]]\r\nallCards[\"Tommy Muldoon (Parallel)|The Rookie Cop\"] = [[{\n \"id\": \"06001-p\",\n \"type\": \"Investigator\",\n \"class\": \"Guardian\",\n \"traits\": \"Police. Warden.\"\n}]]\r\nallCards[\"Tommy Muldoon (Parallel Front)|The Rookie Cop\"] = [[{\n \"id\": \"06001-pf\",\n \"type\": \"Investigator\",\n \"class\": \"Guardian\",\n \"traits\": \"Police. Warden.\"\n}]]\r\nallCards[\"Tommy Muldoon (Parallel Back)|The Rookie Cop\"] = [[{\n \"id\": \"06001-pb\",\n \"type\": \"Investigator\",\n \"class\": \"Guardian\",\n \"traits\": \"Police. Warden.\"\n}]]\r\nallCards[\"Tommy Muldoon|\"] = [[{\n \"id\": \"06001-m\",\n \"type\": \"Minicard\"\n}]]\r\nallCards[\"Tommy Muldoon|Promo version\"] = [[{\n \"id\": \"06001-promo-m\",\n \"type\": \"Minicard\"\n}]]\r\nallCards[\"Mandy Thompson|The Researcher\"] = [[{\n \"id\": \"06002\",\n \"type\": \"Investigator\",\n \"class\": \"Seeker\",\n \"traits\": \"Assistant. Scholar.\"\n}]]\r\nallCards[\"06002\"] = [[{\n \"id\": \"06002\",\n \"type\": \"Investigator\",\n \"class\": \"Seeker\",\n \"traits\": \"Assistant. Scholar.\"\n}]]\r\nallCards[\"Mandy Thompson (promo version)|The Researcher\"] = [[{\n \"id\": \"06002-promo\",\n \"type\": \"Investigator\",\n \"class\": \"Seeker\",\n \"traits\": \"Assistant. Scholar.\"\n}]]\r\nallCards[\"Mandy Thompson (Parallel)|The Researcher\"] = [[{\n \"id\": \"06002-p\",\n \"type\": \"Investigator\",\n \"class\": \"Seeker\",\n \"traits\": \"Assistant. Scholar.\"\n}]]\r\nallCards[\"Mandy Thompson (Parallel Front)|The Researcher\"] = [[{\n \"id\": \"06002-pf\",\n \"type\": \"Investigator\",\n \"class\": \"Seeker\",\n \"traits\": \"Assistant. Scholar.\"\n}]]\r\nallCards[\"Mandy Thompson (Parallel Back)|The Researcher\"] = [[{\n \"id\": \"06002-pb\",\n \"type\": \"Investigator\",\n \"class\": \"Seeker\",\n \"traits\": \"Assistant. Scholar.\"\n}]]\r\nallCards[\"Mandy Thompson|\"] = [[{\n \"id\": \"06002-m\",\n \"type\": \"Minicard\"\n}]]\r\nallCards[\"Mandy Thompson|Promo version\"] = [[{\n \"id\": \"06002-promo-m\",\n \"type\": \"Minicard\"\n}]]\r\nallCards[\"Tony Morgan|The Bounty Hunter\"] = [[{\n \"id\": \"06003\",\n \"type\": \"Investigator\",\n \"class\": \"Rogue\",\n \"traits\": \"Criminal. Hunter.\"\n}]]\r\nallCards[\"06003\"] = [[{\n \"id\": \"06003\",\n \"type\": \"Investigator\",\n \"class\": \"Rogue\",\n \"traits\": \"Criminal. Hunter.\"\n}]]\r\nallCards[\"Tony Morgan (promo version)|The Bounty Hunter\"] = [[{\n \"id\": \"06003-promo\",\n \"type\": \"Investigator\",\n \"class\": \"Rogue\",\n \"traits\": \"Criminal. Hunter.\"\n}]]\r\nallCards[\"Tony Morgan (Parallel)|The Bounty Hunter\"] = [[{\n \"id\": \"06003-p\",\n \"type\": \"Investigator\",\n \"class\": \"Rogue\",\n \"traits\": \"Criminal. Hunter.\"\n}]]\r\nallCards[\"Tony Morgan (Parallel Front)|The Bounty Hunter\"] = [[{\n \"id\": \"06003-pf\",\n \"type\": \"Investigator\",\n \"class\": \"Rogue\",\n \"traits\": \"Criminal. Hunter.\"\n}]]\r\nallCards[\"Tony Morgan (Parallel Back)|The Bounty Hunter\"] = [[{\n \"id\": \"06003-pb\",\n \"type\": \"Investigator\",\n \"class\": \"Rogue\",\n \"traits\": \"Criminal. Hunter.\"\n}]]\r\nallCards[\"Tony Morgan|\"] = [[{\n \"id\": \"06003-m\",\n \"type\": \"Minicard\"\n}]]\r\nallCards[\"Tony Morgan|Promo version\"] = [[{\n \"id\": \"06003-promo-m\",\n \"type\": \"Minicard\"\n}]]\r\nallCards[\"Luke Robinson|The Dreamer\"] = [[{\n \"id\": \"06004\",\n \"type\": \"Investigator\",\n \"class\": \"Mystic\",\n \"traits\": \"Dreamer. Drifter. Wayfarer.\"\n}]]\r\nallCards[\"06004\"] = [[{\n \"id\": \"06004\",\n \"type\": \"Investigator\",\n \"class\": \"Mystic\",\n \"traits\": \"Dreamer. Drifter. Wayfarer.\"\n}]]\r\nallCards[\"Luke Robinson (promo version)|The Dreamer\"] = [[{\n \"id\": \"06004-promo\",\n \"type\": \"Investigator\",\n \"class\": \"Mystic\",\n \"traits\": \"Dreamer. Drifter. Wayfarer.\"\n}]]\r\nallCards[\"Luke Robinson (Parallel)|The Dreamer\"] = [[{\n \"id\": \"06004-p\",\n \"type\": \"Investigator\",\n \"class\": \"Mystic\",\n \"traits\": \"Dreamer. Drifter. Wayfarer.\"\n}]]\r\nallCards[\"Luke Robinson (Parallel Front)|The Dreamer\"] = [[{\n \"id\": \"06004-pf\",\n \"type\": \"Investigator\",\n \"class\": \"Mystic\",\n \"traits\": \"Dreamer. Drifter. Wayfarer.\"\n}]]\r\nallCards[\"Luke Robinson (Parallel Back)|The Dreamer\"] = [[{\n \"id\": \"06004-pb\",\n \"type\": \"Investigator\",\n \"class\": \"Mystic\",\n \"traits\": \"Dreamer. Drifter. Wayfarer.\"\n}]]\r\nallCards[\"Luke Robinson|\"] = [[{\n \"id\": \"06004-m\",\n \"type\": \"Minicard\"\n}]]\r\nallCards[\"Luke Robinson|Promo version\"] = [[{\n \"id\": \"06004-promo-m\",\n \"type\": \"Minicard\"\n}]]\r\nallCards[\"Patrice Hathaway|The Violinist\"] = [[{\n \"id\": \"06005\",\n \"type\": \"Investigator\",\n \"class\": \"Survivor\",\n \"traits\": \"Performer. Cursed.\"\n}]]\r\nallCards[\"06005\"] = [[{\n \"id\": \"06005\",\n \"type\": \"Investigator\",\n \"class\": \"Survivor\",\n \"traits\": \"Performer. Cursed.\"\n}]]\r\nallCards[\"Patrice Hathaway (promo version)|The Violinist\"] = [[{\n \"id\": \"06005-promo\",\n \"type\": \"Investigator\",\n \"class\": \"Survivor\",\n \"traits\": \"Performer. Cursed.\"\n}]]\r\nallCards[\"Patrice Hathaway (Parallel)|The Violinist\"] = [[{\n \"id\": \"06005-p\",\n \"type\": \"Investigator\",\n \"class\": \"Survivor\",\n \"traits\": \"Performer. Cursed.\"\n}]]\r\nallCards[\"Patrice Hathaway (Parallel Front)|The Violinist\"] = [[{\n \"id\": \"06005-pf\",\n \"type\": \"Investigator\",\n \"class\": \"Survivor\",\n \"traits\": \"Performer. Cursed.\"\n}]]\r\nallCards[\"Patrice Hathaway (Parallel Back)|The Violinist\"] = [[{\n \"id\": \"06005-pb\",\n \"type\": \"Investigator\",\n \"class\": \"Survivor\",\n \"traits\": \"Performer. Cursed.\"\n}]]\r\nallCards[\"Patrice Hathaway|\"] = [[{\n \"id\": \"06005-m\",\n \"type\": \"Minicard\"\n}]]\r\nallCards[\"Patrice Hathaway|Promo version\"] = [[{\n \"id\": \"06005-promo-m\",\n \"type\": \"Minicard\"\n}]]\r\nallCards[\"Becky|Custom Marlin Model 1894\"] = [[{\n \"id\": \"06006\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Weapon. Firearm.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"06006\"] = [[{\n \"id\": \"06006\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Weapon. Firearm.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Becky|\"] = [[{\n \"id\": \"06006\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Weapon. Firearm.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Rookie Mistake|\"] = [[{\n \"id\": \"06007\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Blunder. Flaw.\",\n \"permanent\": false,\n \"weakness\": true\n}]]\r\nallCards[\"06007\"] = [[{\n \"id\": \"06007\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Blunder. Flaw.\",\n \"permanent\": false,\n \"weakness\": true\n}]]\r\nallCards[\"Occult Evidence|\"] = [[{\n \"id\": \"06008\",\n \"type\": \"Event\",\n \"class\": \"Neutral\",\n \"traits\": \"Insight. Research.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"06008\"] = [[{\n \"id\": \"06008\",\n \"type\": \"Event\",\n \"class\": \"Neutral\",\n \"traits\": \"Insight. Research.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Shocking Discovery|\"] = [[{\n \"id\": \"06009\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Blunder. Mystery.\",\n \"permanent\": false,\n \"weakness\": true\n}]]\r\nallCards[\"06009\"] = [[{\n \"id\": \"06009\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Blunder. Mystery.\",\n \"permanent\": false,\n \"weakness\": true\n}]]\r\nallCards[\"Bounty Contracts|\"] = [[{\n \"id\": \"06010\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Job.\",\n \"permanent\": true,\n \"weakness\": false\n}]]\r\nallCards[\"06010\"] = [[{\n \"id\": \"06010\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Job.\",\n \"permanent\": true,\n \"weakness\": false\n}]]\r\nallCards[\"Tony's .38 Long Colt|\"] = [[{\n \"id\": \"06011\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Weapon. Firearm.\",\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Ammo\",\n \"count\": 3\n }\n}]]\r\nallCards[\"06011\"] = [[{\n \"id\": \"06011\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Weapon. Firearm.\",\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Ammo\",\n \"count\": 3\n }\n}]]\r\nallCards[\"Tony's Quarry|\"] = [[{\n \"id\": \"06012\",\n \"type\": \"Enemy\",\n \"class\": \"Neutral\",\n \"traits\": \"Humanoid. Monster. Deep One.\",\n \"permanent\": false,\n \"weakness\": true\n}]]\r\nallCards[\"06012\"] = [[{\n \"id\": \"06012\",\n \"type\": \"Enemy\",\n \"class\": \"Neutral\",\n \"traits\": \"Humanoid. Monster. Deep One.\",\n \"permanent\": false,\n \"weakness\": true\n}]]\r\nallCards[\"Gate Box|Worlds within Worlds\"] = [[{\n \"id\": \"06013\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Relic.\",\n \"permanent\": false,\n \"weakness\": false,\n \"bonded\": [\n {\n \"id\": \"06015a\",\n \"count\": 1\n }\n ]\n}]]\r\nallCards[\"06013\"] = [[{\n \"id\": \"06013\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Relic.\",\n \"permanent\": false,\n \"weakness\": false,\n \"bonded\": [\n {\n \"id\": \"06015a\",\n \"count\": 1\n }\n ]\n}]]\r\nallCards[\"Gate Box|\"] = [[{\n \"id\": \"06013\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Relic.\",\n \"permanent\": false,\n \"weakness\": false,\n \"bonded\": [\n {\n \"id\": \"06015a\",\n \"count\": 1\n }\n ]\n}]]\r\nallCards[\"Detached from Reality|\"] = [[{\n \"id\": \"06014\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Madness.\",\n \"permanent\": false,\n \"weakness\": true,\n \"bonded\": [\n {\n \"id\": \"06015b\",\n \"count\": 1\n }\n ]\n}]]\r\nallCards[\"06014\"] = [[{\n \"id\": \"06014\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Madness.\",\n \"permanent\": false,\n \"weakness\": true,\n \"bonded\": [\n {\n \"id\": \"06015b\",\n \"count\": 1\n }\n ]\n}]]\r\nallCards[\"Dream-Gate|\"] = [[{\n \"id\": \"06015a\",\n \"type\": \"Location\",\n \"class\": \"Neutral\",\n \"traits\": \"Dreamlands.\",\n \"permanent\": false,\n \"bonded_to\": [\n {\n \"id\": \"06013\",\n \"count\": 1\n }\n ],\n \"weakness\": false\n}]]\r\nallCards[\"06015a\"] = [[{\n \"id\": \"06015a\",\n \"type\": \"Location\",\n \"class\": \"Neutral\",\n \"traits\": \"Dreamlands.\",\n \"permanent\": false,\n \"bonded_to\": [\n {\n \"id\": \"06013\",\n \"count\": 1\n }\n ],\n \"weakness\": false\n}]]\r\nallCards[\"Dream-Gate|\"] = [[{\n \"id\": \"06015a\",\n \"type\": \"Location\",\n \"class\": \"Neutral\",\n \"traits\": \"Dreamlands.\",\n \"permanent\": false,\n \"bonded_to\": [\n {\n \"id\": \"06013\",\n \"count\": 1\n }\n ],\n \"weakness\": false\n}]]\r\nallCards[\"Patrice's Violin|My Muse\"] = [[{\n \"id\": \"06016\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Instrument.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"06016\"] = [[{\n \"id\": \"06016\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Instrument.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Patrice's Violin|\"] = [[{\n \"id\": \"06016\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Instrument.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Watcher from Another Dimension|\"] = [[{\n \"id\": \"06017\",\n \"type\": \"Enemy\",\n \"class\": \"Neutral\",\n \"traits\": \"Monster. Extradimensional.\",\n \"permanent\": false,\n \"weakness\": true\n}]]\r\nallCards[\"06017\"] = [[{\n \"id\": \"06017\",\n \"type\": \"Enemy\",\n \"class\": \"Neutral\",\n \"traits\": \"Monster. Extradimensional.\",\n \"permanent\": false,\n \"weakness\": true\n}]]\r\nallCards[\"The Hungering Blade (1)|Calamitous Blade of Celepha�s\"] = [[{\n \"id\": \"06018\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Item. Weapon. Melee. Relic. Cursed.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false,\n \"bonded\": [\n {\n \"id\": \"06019\",\n \"count\": 3\n }\n ]\n}]]\r\nallCards[\"06018\"] = [[{\n \"id\": \"06018\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Item. Weapon. Melee. Relic. Cursed.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false,\n \"bonded\": [\n {\n \"id\": \"06019\",\n \"count\": 3\n }\n ]\n}]]\r\nallCards[\"The Hungering Blade (1)|\"] = [[{\n \"id\": \"06018\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Item. Weapon. Melee. Relic. Cursed.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false,\n \"bonded\": [\n {\n \"id\": \"06019\",\n \"count\": 3\n }\n ]\n}]]\r\nallCards[\"Bloodlust|\"] = [[{\n \"id\": \"06019\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Madness.\",\n \"permanent\": false,\n \"bonded_to\": [\n {\n \"id\": \"06018\",\n \"count\": 3\n }\n ],\n \"weakness\": true\n}]]\r\nallCards[\"06019\"] = [[{\n \"id\": \"06019\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Madness.\",\n \"permanent\": false,\n \"bonded_to\": [\n {\n \"id\": \"06018\",\n \"count\": 3\n }\n ],\n \"weakness\": true\n}]]\r\nallCards[\"Solemn Vow|\"] = [[{\n \"id\": \"06020\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Spirit.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"06020\"] = [[{\n \"id\": \"06020\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Spirit.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Segment of Onyx (1)|\"] = [[{\n \"id\": \"06021\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Relic. Occult.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false,\n \"bonded\": [\n {\n \"id\": \"06022\",\n \"count\": 1\n }\n ]\n}]]\r\nallCards[\"06021\"] = [[{\n \"id\": \"06021\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Relic. Occult.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false,\n \"bonded\": [\n {\n \"id\": \"06022\",\n \"count\": 1\n }\n ]\n}]]\r\nallCards[\"Segment of Onyx (1) (Taboo)|\"] = [[{\n \"id\": \"06021-t\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Relic. Occult.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false,\n \"bonded\": [\n {\n \"id\": \"06022\",\n \"count\": 1\n }\n ]\n}]]\r\nallCards[\"Pendant of the Queen|Of Nothing at All\"] = [[{\n \"id\": \"06022\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Relic.\",\n \"permanent\": false,\n \"bonded_to\": [\n {\n \"id\": \"06021\",\n \"count\": 1\n }\n ],\n \"weakness\": false\n}]]\r\nallCards[\"06022\"] = [[{\n \"id\": \"06022\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Relic.\",\n \"permanent\": false,\n \"bonded_to\": [\n {\n \"id\": \"06021\",\n \"count\": 1\n }\n ],\n \"weakness\": false\n}]]\r\nallCards[\"Pendant of the Queen (Taboo)|Of Nothing at All\"] = [[{\n \"id\": \"06022-t\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Relic.\",\n \"permanent\": false,\n \"bonded_to\": [\n {\n \"id\": \"06021\",\n \"count\": 1\n }\n ],\n \"weakness\": false\n}]]\r\nallCards[\"Pendant of the Queen|\"] = [[{\n \"id\": \"06022\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Relic.\",\n \"permanent\": false,\n \"bonded_to\": [\n {\n \"id\": \"06021\",\n \"count\": 1\n }\n ],\n \"weakness\": false\n}]]\r\nallCards[\"Pendant of the Queen (Taboo)|\"] = [[{\n \"id\": \"06022-t\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Relic.\",\n \"permanent\": false,\n \"bonded_to\": [\n {\n \"id\": \"06021\",\n \"count\": 1\n }\n ],\n \"weakness\": false\n}]]\r\nallCards[\"Astounding Revelation|\"] = [[{\n \"id\": \"06023\",\n \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"traits\": \"Research.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"06023\"] = [[{\n \"id\": \"06023\",\n \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"traits\": \"Research.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Crystallizer of Dreams|\"] = [[{\n \"id\": \"06024\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Item. Relic.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false,\n \"bonded\": [\n {\n \"id\": \"06025\",\n \"count\": 1\n }\n ]\n}]]\r\nallCards[\"06024\"] = [[{\n \"id\": \"06024\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Item. Relic.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false,\n \"bonded\": [\n {\n \"id\": \"06025\",\n \"count\": 1\n }\n ]\n}]]\r\nallCards[\"Guardian of the Crystallizer|\"] = [[{\n \"id\": \"06025\",\n \"type\": \"Enemy\",\n \"class\": \"Neutral\",\n \"traits\": \"Monster.\",\n \"permanent\": false,\n \"bonded_to\": [\n {\n \"id\": \"06024\",\n \"count\": 1\n }\n ],\n \"weakness\": true\n}]]\r\nallCards[\"06025\"] = [[{\n \"id\": \"06025\",\n \"type\": \"Enemy\",\n \"class\": \"Neutral\",\n \"traits\": \"Monster.\",\n \"permanent\": false,\n \"bonded_to\": [\n {\n \"id\": \"06024\",\n \"count\": 1\n }\n ],\n \"weakness\": true\n}]]\r\nallCards[\"Easy Mark (1)|\"] = [[{\n \"id\": \"06026\",\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"traits\": \"Trick.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"06026\"] = [[{\n \"id\": \"06026\",\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"traits\": \"Trick.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Stargazing (1)|\"] = [[{\n \"id\": \"06027\",\n \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"traits\": \"Insight. Augury.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false,\n \"bonded\": [\n {\n \"id\": \"06028\",\n \"count\": 1\n }\n ]\n}]]\r\nallCards[\"06027\"] = [[{\n \"id\": \"06027\",\n \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"traits\": \"Insight. Augury.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false,\n \"bonded\": [\n {\n \"id\": \"06028\",\n \"count\": 1\n }\n ]\n}]]\r\nallCards[\"The Stars Are Right|\"] = [[{\n \"id\": \"06028\",\n \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"traits\": \"Augury.\",\n \"permanent\": false,\n \"bonded_to\": [\n {\n \"id\": \"06027\",\n \"count\": 1\n }\n ],\n \"weakness\": false\n}]]\r\nallCards[\"06028\"] = [[{\n \"id\": \"06028\",\n \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"traits\": \"Augury.\",\n \"permanent\": false,\n \"bonded_to\": [\n {\n \"id\": \"06027\",\n \"count\": 1\n }\n ],\n \"weakness\": false\n}]]\r\nallCards[\"Open Gate|\"] = [[{\n \"id\": \"06029\",\n \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"06029\"] = [[{\n \"id\": \"06029\",\n \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Miss Doyle (1)|Cat General of Ulthar\"] = [[{\n \"id\": \"06030\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Ally. Creature. Dreamlands.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false,\n \"bonded\": [\n {\n \"id\": \"06031\",\n \"count\": 1\n },\n {\n \"id\": \"06032\",\n \"count\": 1\n },\n {\n \"id\": \"06033\",\n \"count\": 1\n }\n ]\n}]]\r\nallCards[\"06030\"] = [[{\n \"id\": \"06030\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Ally. Creature. Dreamlands.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false,\n \"bonded\": [\n {\n \"id\": \"06031\",\n \"count\": 1\n },\n {\n \"id\": \"06032\",\n \"count\": 1\n },\n {\n \"id\": \"06033\",\n \"count\": 1\n }\n ]\n}]]\r\nallCards[\"Miss Doyle (1)|\"] = [[{\n \"id\": \"06030\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Ally. Creature. Dreamlands.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false,\n \"bonded\": [\n {\n \"id\": \"06031\",\n \"count\": 1\n },\n {\n \"id\": \"06032\",\n \"count\": 1\n },\n {\n \"id\": \"06033\",\n \"count\": 1\n }\n ]\n}]]\r\nallCards[\"Hope|\"] = [[{\n \"id\": \"06031\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Ally. Creature. Dreamlands.\",\n \"permanent\": false,\n \"bonded_to\": [\n {\n \"id\": \"06030\",\n \"count\": 1\n }\n ],\n \"weakness\": false\n}]]\r\nallCards[\"06031\"] = [[{\n \"id\": \"06031\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Ally. Creature. Dreamlands.\",\n \"permanent\": false,\n \"bonded_to\": [\n {\n \"id\": \"06030\",\n \"count\": 1\n }\n ],\n \"weakness\": false\n}]]\r\nallCards[\"Zeal|\"] = [[{\n \"id\": \"06032\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Ally. Creature. Dreamlands.\",\n \"permanent\": false,\n \"bonded_to\": [\n {\n \"id\": \"06030\",\n \"count\": 1\n }\n ],\n \"weakness\": false\n}]]\r\nallCards[\"06032\"] = [[{\n \"id\": \"06032\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Ally. Creature. Dreamlands.\",\n \"permanent\": false,\n \"bonded_to\": [\n {\n \"id\": \"06030\",\n \"count\": 1\n }\n ],\n \"weakness\": false\n}]]\r\nallCards[\"Augur|\"] = [[{\n \"id\": \"06033\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Ally. Creature. Dreamlands.\",\n \"permanent\": false,\n \"bonded_to\": [\n {\n \"id\": \"06030\",\n \"count\": 1\n }\n ],\n \"weakness\": false\n}]]\r\nallCards[\"06033\"] = [[{\n \"id\": \"06033\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Ally. Creature. Dreamlands.\",\n \"permanent\": false,\n \"bonded_to\": [\n {\n \"id\": \"06030\",\n \"count\": 1\n }\n ],\n \"weakness\": false\n}]]\r\nallCards[\"Fortuitous Discovery|\"] = [[{\n \"id\": \"06034\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Fortune. Insight.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"06034\"] = [[{\n \"id\": \"06034\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Fortune. Insight.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Self-Centered|\"] = [[{\n \"id\": \"06035\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Flaw.\",\n \"permanent\": false,\n \"weakness\": true,\n \"basicWeaknessCount\": 1\n}]]\r\nallCards[\"06035\"] = [[{\n \"id\": \"06035\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Flaw.\",\n \"permanent\": false,\n \"weakness\": true,\n \"basicWeaknessCount\": 1\n}]]\r\nallCards[\"Kleptomania|\"] = [[{\n \"id\": \"06036\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Madness. Talent.\",\n \"permanent\": false,\n \"weakness\": true,\n \"basicWeaknessCount\": 1\n}]]\r\nallCards[\"06036\"] = [[{\n \"id\": \"06036\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Madness. Talent.\",\n \"permanent\": false,\n \"weakness\": true,\n \"basicWeaknessCount\": 1\n}]]\r\nallCards[\"Narcolepsy|\"] = [[{\n \"id\": \"06037\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Madness.\",\n \"permanent\": false,\n \"weakness\": true,\n \"basicWeaknessCount\": 1\n}]]\r\nallCards[\"06037\"] = [[{\n \"id\": \"06037\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Madness.\",\n \"permanent\": false,\n \"weakness\": true,\n \"basicWeaknessCount\": 1\n}]]\r\nallCards[\"Your Worst Nightmare|\"] = [[{\n \"id\": \"06038\",\n \"type\": \"Enemy\",\n \"class\": \"Neutral\",\n \"traits\": \"Monster.\",\n \"permanent\": false,\n \"weakness\": true,\n \"basicWeaknessCount\": 1\n}]]\r\nallCards[\"06038\"] = [[{\n \"id\": \"06038\",\n \"type\": \"Enemy\",\n \"class\": \"Neutral\",\n \"traits\": \"Monster.\",\n \"permanent\": false,\n \"weakness\": true,\n \"basicWeaknessCount\": 1\n}]]\r\nallCards[\"Randolph Carter|Expert Dreamer\"] = [[{\n \"id\": \"06059\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Dreamer.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"06059\"] = [[{\n \"id\": \"06059\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Dreamer.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Randolph Carter|\"] = [[{\n \"id\": \"06059\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Dreamer.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Randolph Carter|Chained to the Waking World\"] = [[{\n \"id\": \"06079\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Dreamer.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"06079\"] = [[{\n \"id\": \"06079\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Dreamer.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Randolph Carter|\"] = [[{\n \"id\": \"06079\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Dreamer.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Dr. Shivani Maheswaran|Emergency Physician\"] = [[{\n \"id\": \"06080\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Medic.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"06080\"] = [[{\n \"id\": \"06080\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Medic.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Dr. Shivani Maheswaran|\"] = [[{\n \"id\": \"06080\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Medic.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Bloodstained Dagger|The Murder Weapon\"] = [[{\n \"id\": \"84006\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Weapon. Melee. Cursed.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"84006\"] = [[{\n \"id\": \"84006\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Weapon. Melee. Cursed.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Bloodstained Dagger|\"] = [[{\n \"id\": \"84006\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Weapon. Melee. Cursed.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"What Have You Done?|\"] = [[{\n \"id\": \"84007\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Madness.\",\n \"permanent\": false,\n \"weakness\": true\n}]]\r\nallCards[\"84007\"] = [[{\n \"id\": \"84007\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Madness.\",\n \"permanent\": false,\n \"weakness\": true\n}]]\r\nallCards[\"Sergeant Monroe|Two Days Until Retirement\"] = [[{\n \"id\": \"84008\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Police.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"84008\"] = [[{\n \"id\": \"84008\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Police.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Sergeant Monroe|\"] = [[{\n \"id\": \"84008\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Police.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Alien Device|Machinations from Beyond\"] = [[{\n \"id\": \"84028\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Lead. Extraterrestrial.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"84028\"] = [[{\n \"id\": \"84028\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Lead. Extraterrestrial.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Alien Device|\"] = [[{\n \"id\": \"84028\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Lead. Extraterrestrial.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Manager's Key|Stained by Blood\"] = [[{\n \"id\": \"84031\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Lead. Key.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"84031\"] = [[{\n \"id\": \"84031\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Lead. Key.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Manager's Key|\"] = [[{\n \"id\": \"84031\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Lead. Key.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Tome of Rituals|Blasphemous Volume\"] = [[{\n \"id\": \"84034\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Lead. Tome.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"84034\"] = [[{\n \"id\": \"84034\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Lead. Tome.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Tome of Rituals|\"] = [[{\n \"id\": \"84034\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Lead. Tome.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Sinister Solution|Vile Concoction\"] = [[{\n \"id\": \"84037\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Lead. Science.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"84037\"] = [[{\n \"id\": \"84037\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Lead. Science.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Sinister Solution|\"] = [[{\n \"id\": \"84037\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Lead. Science.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Time-Worn Locket|Mournful Vision of the Past\"] = [[{\n \"id\": \"84040\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Lead. Charm.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"84040\"] = [[{\n \"id\": \"84040\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Lead. Charm.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Time-Worn Locket|\"] = [[{\n \"id\": \"84040\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Lead. Charm.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"First Watch|\"] = [[{\n \"id\": \"06110\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Tactic.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"06110\"] = [[{\n \"id\": \"06110\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Tactic.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Daring|\"] = [[{\n \"id\": \"06111\",\n \"type\": \"Skill\",\n \"class\": \"Guardian\",\n \"traits\": \"Innate.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"06111\"] = [[{\n \"id\": \"06111\",\n \"type\": \"Skill\",\n \"class\": \"Guardian\",\n \"traits\": \"Innate.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Dream Diary|Untranslated\"] = [[{\n \"id\": \"06112\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Tome. Charm.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false,\n \"bonded\": [\n {\n \"id\": \"06113\",\n \"count\": 1\n }\n ]\n}]]\r\nallCards[\"06112\"] = [[{\n \"id\": \"06112\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Tome. Charm.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false,\n \"bonded\": [\n {\n \"id\": \"06113\",\n \"count\": 1\n }\n ]\n}]]\r\nallCards[\"Dream Diary|\"] = [[{\n \"id\": \"06112\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Tome. Charm.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false,\n \"bonded\": [\n {\n \"id\": \"06113\",\n \"count\": 1\n }\n ]\n}]]\r\nallCards[\"Essence of the Dream|\"] = [[{\n \"id\": \"06113\",\n \"type\": \"Skill\",\n \"class\": \"Seeker\",\n \"traits\": \"Practiced. Expert.\",\n \"permanent\": false,\n \"bonded_to\": [\n {\n \"id\": \"06112\",\n \"count\": 1\n },\n {\n \"id\": \"06236\",\n \"count\": 1\n },\n {\n \"id\": \"06237\",\n \"count\": 1\n },\n {\n \"id\": \"06238\",\n \"count\": 1\n }\n ],\n \"weakness\": false\n}]]\r\nallCards[\"06113\"] = [[{\n \"id\": \"06113\",\n \"type\": \"Skill\",\n \"class\": \"Seeker\",\n \"traits\": \"Practiced. Expert.\",\n \"permanent\": false,\n \"bonded_to\": [\n {\n \"id\": \"06112\",\n \"count\": 1\n },\n {\n \"id\": \"06236\",\n \"count\": 1\n },\n {\n \"id\": \"06237\",\n \"count\": 1\n },\n {\n \"id\": \"06238\",\n \"count\": 1\n }\n ],\n \"weakness\": false\n}]]\r\nallCards[\"Followed|\"] = [[{\n \"id\": \"06114\",\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"traits\": \"Tactic.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"06114\"] = [[{\n \"id\": \"06114\",\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"traits\": \"Tactic.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Momentum (1)|\"] = [[{\n \"id\": \"06115\",\n \"type\": \"Skill\",\n \"class\": \"Rogue\",\n \"traits\": \"Practiced.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"06115\"] = [[{\n \"id\": \"06115\",\n \"type\": \"Skill\",\n \"class\": \"Rogue\",\n \"traits\": \"Practiced.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Scroll of Prophecies|\"] = [[{\n \"id\": \"06116\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Item. Tome.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Secret\",\n \"count\": 4\n }\n}]]\r\nallCards[\"06116\"] = [[{\n \"id\": \"06116\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Item. Tome.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Secret\",\n \"count\": 4\n }\n}]]\r\nallCards[\"Read the Signs|\"] = [[{\n \"id\": \"06117\",\n \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"06117\"] = [[{\n \"id\": \"06117\",\n \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Jessica Hyde (1)|Wrong Place, Wrong Time\"] = [[{\n \"id\": \"06118\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Ally. Wayfarer. Cursed.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"06118\"] = [[{\n \"id\": \"06118\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Ally. Wayfarer. Cursed.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Jessica Hyde (1)|\"] = [[{\n \"id\": \"06118\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Ally. Wayfarer. Cursed.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Virgil Gray|Writer of Strange Tales\"] = [[{\n \"id\": \"06144\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Dreamer.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"06144\"] = [[{\n \"id\": \"06144\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Dreamer.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Virgil Gray|\"] = [[{\n \"id\": \"06144\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Dreamer.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Tetsuo Mori|Too Noble for His Own Good\"] = [[{\n \"id\": \"06155\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Ally. Police.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"06155\"] = [[{\n \"id\": \"06155\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Ally. Police.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Tetsuo Mori|\"] = [[{\n \"id\": \"06155\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Ally. Police.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\\\"Fool me once...\\\" (1)|\"] = [[{\n \"id\": \"06156\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Insight. Tactic.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"06156\"] = [[{\n \"id\": \"06156\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Insight. Tactic.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Self-Sacrifice|\"] = [[{\n \"id\": \"06157\",\n \"type\": \"Skill\",\n \"class\": \"Guardian\",\n \"traits\": \"Spirit.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"06157\"] = [[{\n \"id\": \"06157\",\n \"type\": \"Skill\",\n \"class\": \"Guardian\",\n \"traits\": \"Spirit.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Otherworld Codex (2)|\"] = [[{\n \"id\": \"06158\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Tome.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Secret\",\n \"count\": 3\n }\n}]]\r\nallCards[\"06158\"] = [[{\n \"id\": \"06158\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Tome.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Secret\",\n \"count\": 3\n }\n}]]\r\nallCards[\"Dream-Enhancing Serum|\"] = [[{\n \"id\": \"06159\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Science.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"06159\"] = [[{\n \"id\": \"06159\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Science.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\\\"Let God sort them out...\\\"|\"] = [[{\n \"id\": \"06160\",\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"traits\": \"Tactic. Fated.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"06160\"] = [[{\n \"id\": \"06160\",\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"traits\": \"Tactic. Fated.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Swift Reload (2)|\"] = [[{\n \"id\": \"06161\",\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"traits\": \"Tactic. Trick.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"06161\"] = [[{\n \"id\": \"06161\",\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"traits\": \"Tactic. Trick.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Gregory Gry|Muckraker\"] = [[{\n \"id\": \"06162\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Ally. Criminal. Dreamer.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"06162\"] = [[{\n \"id\": \"06162\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Ally. Criminal. Dreamer.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Gregory Gry|\"] = [[{\n \"id\": \"06162\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Ally. Criminal. Dreamer.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Healing Words|\"] = [[{\n \"id\": \"06163\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Charge\",\n \"count\": 3\n }\n}]]\r\nallCards[\"06163\"] = [[{\n \"id\": \"06163\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Charge\",\n \"count\": 3\n }\n}]]\r\nallCards[\"Ethereal Form|\"] = [[{\n \"id\": \"06164\",\n \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"06164\"] = [[{\n \"id\": \"06164\",\n \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Scrounge for Supplies|\"] = [[{\n \"id\": \"06165\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Fortune.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"06165\"] = [[{\n \"id\": \"06165\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Fortune.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Brute Force (1)|\"] = [[{\n \"id\": \"06166\",\n \"type\": \"Skill\",\n \"class\": \"Survivor\",\n \"traits\": \"Innate. Developed.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"06166\"] = [[{\n \"id\": \"06166\",\n \"type\": \"Skill\",\n \"class\": \"Survivor\",\n \"traits\": \"Innate. Developed.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Versatile (2)|\"] = [[{\n \"id\": \"06167\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Talent.\",\n \"level\": 2,\n \"permanent\": true,\n \"weakness\": false\n}]]\r\nallCards[\"06167\"] = [[{\n \"id\": \"06167\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Talent.\",\n \"level\": 2,\n \"permanent\": true,\n \"weakness\": false\n}]]\r\nallCards[\"The Silver Key|Key to the Gate of Dreams\"] = [[{\n \"id\": \"06189\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Charm. Relic.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"06189\"] = [[{\n \"id\": \"06189\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Charm. Relic.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"The Silver Key|\"] = [[{\n \"id\": \"06189\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Charm. Relic.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\".35 Winchester|\"] = [[{\n \"id\": \"06195\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Item. Weapon. Firearm.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Ammo\",\n \"count\": 5\n }\n}]]\r\nallCards[\"06195\"] = [[{\n \"id\": \"06195\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Item. Weapon. Firearm.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Ammo\",\n \"count\": 5\n }\n}]]\r\nallCards[\".35 Winchester (Taboo)|\"] = [[{\n \"id\": \"06195-t\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Item. Weapon. Firearm.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Ammo\",\n \"count\": 5\n }\n}]]\r\nallCards[\"Safeguard (2)|\"] = [[{\n \"id\": \"06196\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Talent.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"06196\"] = [[{\n \"id\": \"06196\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Talent.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Practice Makes Perfect|\"] = [[{\n \"id\": \"06197\",\n \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"traits\": \"Gambit. Tactic.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"06197\"] = [[{\n \"id\": \"06197\",\n \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"traits\": \"Gambit. Tactic.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Extensive Research (1)|\"] = [[{\n \"id\": \"06198\",\n \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"traits\": \"Insight.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"06198\"] = [[{\n \"id\": \"06198\",\n \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"traits\": \"Insight.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Three Aces (1)|\"] = [[{\n \"id\": \"06199\",\n \"type\": \"Skill\",\n \"class\": \"Rogue\",\n \"traits\": \"Fortune. Practiced.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"06199\"] = [[{\n \"id\": \"06199\",\n \"type\": \"Skill\",\n \"class\": \"Rogue\",\n \"traits\": \"Fortune. Practiced.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Three Aces (1) (Taboo)|\"] = [[{\n \"id\": \"06199-t\",\n \"type\": \"Skill\",\n \"class\": \"Rogue\",\n \"traits\": \"Fortune. Practiced.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Burglary (2)|\"] = [[{\n \"id\": \"06200\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Talent. Illicit.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"06200\"] = [[{\n \"id\": \"06200\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Talent. Illicit.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Spectral Razor|\"] = [[{\n \"id\": \"06201\",\n \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"06201\"] = [[{\n \"id\": \"06201\",\n \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Word of Command (2)|\"] = [[{\n \"id\": \"06202\",\n \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"06202\"] = [[{\n \"id\": \"06202\",\n \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Moonstone|\"] = [[{\n \"id\": \"06203\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Item. Relic. Dreamlands.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"06203\"] = [[{\n \"id\": \"06203\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Item. Relic. Dreamlands.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Sharp Vision (1)|\"] = [[{\n \"id\": \"06204\",\n \"type\": \"Skill\",\n \"class\": \"Survivor\",\n \"traits\": \"Innate. Developed.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"06204\"] = [[{\n \"id\": \"06204\",\n \"type\": \"Skill\",\n \"class\": \"Survivor\",\n \"traits\": \"Innate. Developed.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Lucid Dreaming (2)|\"] = [[{\n \"id\": \"06205\",\n \"type\": \"Event\",\n \"class\": \"Neutral\",\n \"traits\": \"Spell.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"06205\"] = [[{\n \"id\": \"06205\",\n \"type\": \"Event\",\n \"class\": \"Neutral\",\n \"traits\": \"Spell.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Virgil Gray|Truly Inspired\"] = [[{\n \"id\": \"06224\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Dreamer.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"06224\"] = [[{\n \"id\": \"06224\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Dreamer.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Virgil Gray|\"] = [[{\n \"id\": \"06224\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Dreamer.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"The Captain|Dreamlands Navigator\"] = [[{\n \"id\": \"06225\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Dreamer.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"06225\"] = [[{\n \"id\": \"06225\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Dreamer.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"The Captain|\"] = [[{\n \"id\": \"06225\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Dreamer.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"False Awakening|\"] = [[{\n \"id\": \"06233\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Curse.\",\n \"permanent\": false,\n \"weakness\": true\n}]]\r\nallCards[\"06233\"] = [[{\n \"id\": \"06233\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Curse.\",\n \"permanent\": false,\n \"weakness\": true\n}]]\r\nallCards[\"Heroic Rescue (2)|\"] = [[{\n \"id\": \"06234\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Spirit. Tactic.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"06234\"] = [[{\n \"id\": \"06234\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Spirit. Tactic.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Leadership (2)|\"] = [[{\n \"id\": \"06235\",\n \"type\": \"Skill\",\n \"class\": \"Guardian\",\n \"traits\": \"Practiced.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"06235\"] = [[{\n \"id\": \"06235\",\n \"type\": \"Skill\",\n \"class\": \"Guardian\",\n \"traits\": \"Practiced.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Dream Diary (3)|Dreams of an Explorer\"] = [[{\n \"id\": \"06236\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Tome. Charm.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false,\n \"bonded\": [\n {\n \"id\": \"06113\",\n \"count\": 1\n }\n ]\n}]]\r\nallCards[\"06236\"] = [[{\n \"id\": \"06236\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Tome. Charm.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false,\n \"bonded\": [\n {\n \"id\": \"06113\",\n \"count\": 1\n }\n ]\n}]]\r\nallCards[\"Dream Diary (3)|\"] = [[{\n \"id\": \"06236\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Tome. Charm.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false,\n \"bonded\": [\n {\n \"id\": \"06113\",\n \"count\": 1\n }\n ]\n}]]\r\nallCards[\"Dream Diary (3)|Dreams of a Madman\"] = [[{\n \"id\": \"06237\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Tome. Charm.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false,\n \"bonded\": [\n {\n \"id\": \"06113\",\n \"count\": 1\n }\n ]\n}]]\r\nallCards[\"06237\"] = [[{\n \"id\": \"06237\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Tome. Charm.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false,\n \"bonded\": [\n {\n \"id\": \"06113\",\n \"count\": 1\n }\n ]\n}]]\r\nallCards[\"Dream Diary (3)|\"] = [[{\n \"id\": \"06237\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Tome. Charm.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false,\n \"bonded\": [\n {\n \"id\": \"06113\",\n \"count\": 1\n }\n ]\n}]]\r\nallCards[\"Dream Diary (3)|Dreams of a Child\"] = [[{\n \"id\": \"06238\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Tome. Charm.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false,\n \"bonded\": [\n {\n \"id\": \"06113\",\n \"count\": 1\n }\n ]\n}]]\r\nallCards[\"06238\"] = [[{\n \"id\": \"06238\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Tome. Charm.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false,\n \"bonded\": [\n {\n \"id\": \"06113\",\n \"count\": 1\n }\n ]\n}]]\r\nallCards[\"Dream Diary (3)|\"] = [[{\n \"id\": \"06238\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Tome. Charm.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false,\n \"bonded\": [\n {\n \"id\": \"06113\",\n \"count\": 1\n }\n ]\n}]]\r\nallCards[\"Haste (2)|\"] = [[{\n \"id\": \"06239\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Ritual.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"06239\"] = [[{\n \"id\": \"06239\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Ritual.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Daredevil (2)|\"] = [[{\n \"id\": \"06240\",\n \"type\": \"Skill\",\n \"class\": \"Rogue\",\n \"traits\": \"Fortune. Practiced.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"06240\"] = [[{\n \"id\": \"06240\",\n \"type\": \"Skill\",\n \"class\": \"Rogue\",\n \"traits\": \"Fortune. Practiced.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Empower Self (2)|Stamina\"] = [[{\n \"id\": \"06241\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Ritual.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"06241\"] = [[{\n \"id\": \"06241\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Ritual.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Empower Self (2)|\"] = [[{\n \"id\": \"06241\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Ritual.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Empower Self (2)|Alacrity\"] = [[{\n \"id\": \"06242\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Ritual.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"06242\"] = [[{\n \"id\": \"06242\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Ritual.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Empower Self (2)|\"] = [[{\n \"id\": \"06242\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Ritual.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Empower Self (2)|Acuity\"] = [[{\n \"id\": \"06243\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Ritual.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"06243\"] = [[{\n \"id\": \"06243\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Ritual.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Empower Self (2)|\"] = [[{\n \"id\": \"06243\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Ritual.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Twila Katherine Price (3)|Lost in a Dream\"] = [[{\n \"id\": \"06244\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Ally. Artist. Dreamer.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"06244\"] = [[{\n \"id\": \"06244\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Ally. Artist. Dreamer.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Twila Katherine Price (3)|\"] = [[{\n \"id\": \"06244\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Ally. Artist. Dreamer.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"A Glimmer of Hope|\"] = [[{\n \"id\": \"06245\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Blessed. Fortune.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"06245\"] = [[{\n \"id\": \"06245\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Blessed. Fortune.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Expeditious Retreat (1)|\"] = [[{\n \"id\": \"06246\",\n \"type\": \"Skill\",\n \"class\": \"Survivor\",\n \"traits\": \"Innate. Developed.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"06246\"] = [[{\n \"id\": \"06246\",\n \"type\": \"Skill\",\n \"class\": \"Survivor\",\n \"traits\": \"Innate. Developed.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Richard Upton Pickman|Venerable Ghoul\"] = [[{\n \"id\": \"06266\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Ghoul. Artist.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"06266\"] = [[{\n \"id\": \"06266\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Ghoul. Artist.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Richard Upton Pickman|\"] = [[{\n \"id\": \"06266\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Ghoul. Artist.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"False Awakening|\"] = [[{\n \"id\": \"06275\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Curse.\",\n \"permanent\": false,\n \"weakness\": true\n}]]\r\nallCards[\"06275\"] = [[{\n \"id\": \"06275\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Curse.\",\n \"permanent\": false,\n \"weakness\": true\n}]]\r\nallCards[\"Empty Vessel (4)|Abandoned by the Gods\"] = [[{\n \"id\": \"06276\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Item. Relic. Blessed.\",\n \"level\": 4,\n \"permanent\": false,\n \"weakness\": false,\n \"bonded\": [\n {\n \"id\": \"06277\",\n \"count\": 1\n }\n ]\n}]]\r\nallCards[\"06276\"] = [[{\n \"id\": \"06276\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Item. Relic. Blessed.\",\n \"level\": 4,\n \"permanent\": false,\n \"weakness\": false,\n \"bonded\": [\n {\n \"id\": \"06277\",\n \"count\": 1\n }\n ]\n}]]\r\nallCards[\"Empty Vessel (4)|\"] = [[{\n \"id\": \"06276\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Item. Relic. Blessed.\",\n \"level\": 4,\n \"permanent\": false,\n \"weakness\": false,\n \"bonded\": [\n {\n \"id\": \"06277\",\n \"count\": 1\n }\n ]\n}]]\r\nallCards[\"Wish Eater|Jewel of the Gods\"] = [[{\n \"id\": \"06277\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Item. Relic. Blessed.\",\n \"permanent\": false,\n \"bonded_to\": [\n {\n \"id\": \"06276\",\n \"count\": 1\n }\n ],\n \"weakness\": false\n}]]\r\nallCards[\"06277\"] = [[{\n \"id\": \"06277\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Item. Relic. Blessed.\",\n \"permanent\": false,\n \"bonded_to\": [\n {\n \"id\": \"06276\",\n \"count\": 1\n }\n ],\n \"weakness\": false\n}]]\r\nallCards[\"Wish Eater|\"] = [[{\n \"id\": \"06277\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Item. Relic. Blessed.\",\n \"permanent\": false,\n \"bonded_to\": [\n {\n \"id\": \"06276\",\n \"count\": 1\n }\n ],\n \"weakness\": false\n}]]\r\nallCards[\"Surprising Find (1)|\"] = [[{\n \"id\": \"06278\",\n \"type\": \"Skill\",\n \"class\": \"Seeker\",\n \"traits\": \"Fortune. Research.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"06278\"] = [[{\n \"id\": \"06278\",\n \"type\": \"Skill\",\n \"class\": \"Seeker\",\n \"traits\": \"Fortune. Research.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Old Book of Lore (3)|\"] = [[{\n \"id\": \"06279\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Tome.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Secret\",\n \"count\": 2\n }\n}]]\r\nallCards[\"06279\"] = [[{\n \"id\": \"06279\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Tome.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Secret\",\n \"count\": 2\n }\n}]]\r\nallCards[\"Garrote Wire (2)|\"] = [[{\n \"id\": \"06280\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Item. Weapon.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"06280\"] = [[{\n \"id\": \"06280\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Item. Weapon.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Delilah O'Rourke (3)|Syndicate Assassin\"] = [[{\n \"id\": \"06281\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Ally. Criminal. Syndicate.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"06281\"] = [[{\n \"id\": \"06281\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Ally. Criminal. Syndicate.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Delilah O'Rourke (3)|\"] = [[{\n \"id\": \"06281\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Ally. Criminal. Syndicate.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Summoned Hound (1)|\"] = [[{\n \"id\": \"06282\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Ally. Summon.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false,\n \"bonded\": [\n {\n \"id\": \"06283\",\n \"count\": 1\n }\n ]\n}]]\r\nallCards[\"06282\"] = [[{\n \"id\": \"06282\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Ally. Summon.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false,\n \"bonded\": [\n {\n \"id\": \"06283\",\n \"count\": 1\n }\n ]\n}]]\r\nallCards[\"Unbound Beast|\"] = [[{\n \"id\": \"06283\",\n \"type\": \"Enemy\",\n \"class\": \"Neutral\",\n \"traits\": \"Monster. Extradimensional. Tindalos.\",\n \"permanent\": false,\n \"bonded_to\": [\n {\n \"id\": \"06282\",\n \"count\": 1\n }\n ],\n \"weakness\": true\n}]]\r\nallCards[\"06283\"] = [[{\n \"id\": \"06283\",\n \"type\": \"Enemy\",\n \"class\": \"Neutral\",\n \"traits\": \"Monster. Extradimensional. Tindalos.\",\n \"permanent\": false,\n \"bonded_to\": [\n {\n \"id\": \"06282\",\n \"count\": 1\n }\n ],\n \"weakness\": true\n}]]\r\nallCards[\"Nothing Left to Lose (3)|\"] = [[{\n \"id\": \"06284\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Spirit.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"06284\"] = [[{\n \"id\": \"06284\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Spirit.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"The Black Cat (5)|A Liar, or a Prophet, or Both\"] = [[{\n \"id\": \"06285\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Avatar. Dreamlands.\",\n \"level\": 5,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"06285\"] = [[{\n \"id\": \"06285\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Avatar. Dreamlands.\",\n \"level\": 5,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"The Black Cat (5)|\"] = [[{\n \"id\": \"06285\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Avatar. Dreamlands.\",\n \"level\": 5,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Daisy's Tote Bag|Advanced\"] = [[{\n \"id\": \"90002\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"90002\"] = [[{\n \"id\": \"90002\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"The Necronomicon|John Dee Translation (Advanced)\"] = [[{\n \"id\": \"90003\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Tome.\",\n \"permanent\": false,\n \"weakness\": true\n}]]\r\nallCards[\"90003\"] = [[{\n \"id\": \"90003\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Tome.\",\n \"permanent\": false,\n \"weakness\": true\n}]]\r\nallCards[\"The Necronomicon|\"] = [[{\n \"id\": \"90003\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Tome.\",\n \"permanent\": false,\n \"weakness\": true\n}]]\r\nallCards[\"Spiritual Resolve (5)|\"] = [[{\n \"id\": \"06323\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Ritual.\",\n \"level\": 5,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"06323\"] = [[{\n \"id\": \"06323\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Ritual.\",\n \"level\": 5,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Abigail Foreman (4)|Library Intern\"] = [[{\n \"id\": \"06324\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Ally. Miskatonic.\",\n \"level\": 4,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"06324\"] = [[{\n \"id\": \"06324\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Ally. Miskatonic.\",\n \"level\": 4,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Abigail Foreman (4)|\"] = [[{\n \"id\": \"06324\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Ally. Miskatonic.\",\n \"level\": 4,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"The Eye of Truth (5)|\"] = [[{\n \"id\": \"06325\",\n \"type\": \"Skill\",\n \"class\": \"Seeker\",\n \"traits\": \"Spell. Practiced.\",\n \"level\": 5,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"06325\"] = [[{\n \"id\": \"06325\",\n \"type\": \"Skill\",\n \"class\": \"Seeker\",\n \"traits\": \"Spell. Practiced.\",\n \"level\": 5,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Joey \\\"The Rat\\\" Vigil (3)|Lookin' Out for #1\"] = [[{\n \"id\": \"06326\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Ally. Criminal.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"06326\"] = [[{\n \"id\": \"06326\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Ally. Criminal.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Joey \\\"The Rat\\\" Vigil (3)|\"] = [[{\n \"id\": \"06326\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Ally. Criminal.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Sawed-Off Shotgun (5)|\"] = [[{\n \"id\": \"06327\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Item. Weapon. Firearm. Illicit.\",\n \"level\": 5,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Ammo\",\n \"count\": 2\n }\n}]]\r\nallCards[\"06327\"] = [[{\n \"id\": \"06327\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Item. Weapon. Firearm. Illicit.\",\n \"level\": 5,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Ammo\",\n \"count\": 2\n }\n}]]\r\nallCards[\"Mind's Eye (2)|\"] = [[{\n \"id\": \"06328\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Ritual.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Charge\",\n \"count\": 3\n }\n}]]\r\nallCards[\"06328\"] = [[{\n \"id\": \"06328\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Ritual.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Charge\",\n \"count\": 3\n }\n}]]\r\nallCards[\"Shining Trapezohedron (4)|\"] = [[{\n \"id\": \"06329\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Item. Relic.\",\n \"level\": 4,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"06329\"] = [[{\n \"id\": \"06329\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Item. Relic.\",\n \"level\": 4,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Nightmare Bauble (3)|\"] = [[{\n \"id\": \"06330\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Item. Charm. Cursed.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false,\n \"bonded\": [\n {\n \"id\": \"06331\",\n \"count\": 3\n }\n ]\n}]]\r\nallCards[\"06330\"] = [[{\n \"id\": \"06330\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Item. Charm. Cursed.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false,\n \"bonded\": [\n {\n \"id\": \"06331\",\n \"count\": 3\n }\n ]\n}]]\r\nallCards[\"Dream Parasite|\"] = [[{\n \"id\": \"06331\",\n \"type\": \"Skill\",\n \"class\": \"Neutral\",\n \"traits\": \"Curse.\",\n \"permanent\": false,\n \"bonded_to\": [\n {\n \"id\": \"06330\",\n \"count\": 3\n }\n ],\n \"weakness\": true\n}]]\r\nallCards[\"06331\"] = [[{\n \"id\": \"06331\",\n \"type\": \"Skill\",\n \"class\": \"Neutral\",\n \"traits\": \"Curse.\",\n \"permanent\": false,\n \"bonded_to\": [\n {\n \"id\": \"06330\",\n \"count\": 3\n }\n ],\n \"weakness\": true\n}]]\r\nallCards[\"Scavenging (2)|\"] = [[{\n \"id\": \"06332\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Talent.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"06332\"] = [[{\n \"id\": \"06332\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Talent.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Molly Maxwell|The Exotic Morgana\"] = [[{\n \"id\": \"98017\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Assistant.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"98017\"] = [[{\n \"id\": \"98017\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Assistant.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Molly Maxwell|\"] = [[{\n \"id\": \"98017\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Assistant.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Yaztaroth|\"] = [[{\n \"id\": \"98018\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Curse. Pact.\",\n \"permanent\": false,\n \"weakness\": true\n}]]\r\nallCards[\"98018\"] = [[{\n \"id\": \"98018\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Curse. Pact.\",\n \"permanent\": false,\n \"weakness\": true\n}]]\r\nallCards[\"University Chemist|\"] = [[{\n \"id\": \"85025\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Bystander. Miskatonic.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"85025\"] = [[{\n \"id\": \"85025\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Bystander. Miskatonic.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Meteorite Sample|\"] = [[{\n \"id\": \"85026\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"85026\"] = [[{\n \"id\": \"85026\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"The Military's Plan|\"] = [[{\n \"id\": \"85028\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"85028\"] = [[{\n \"id\": \"85028\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Universal Solvent|\"] = [[{\n \"id\": \"85029\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Science.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"85029\"] = [[{\n \"id\": \"85029\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Science.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Pet Oozeling|\"] = [[{\n \"id\": \"85030\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Monster. Ooze.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"85030\"] = [[{\n \"id\": \"85030\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Monster. Ooze.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Mi-Go Weapon|\"] = [[{\n \"id\": \"85031\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Weapon. Science.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"85031\"] = [[{\n \"id\": \"85031\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Weapon. Science.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Lt. Wilson Stewart|Logistical Genius\"] = [[{\n \"id\": \"85032\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Agency. Veteran.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"85032\"] = [[{\n \"id\": \"85032\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Agency. Veteran.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Lt. Wilson Stewart|\"] = [[{\n \"id\": \"85032\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Agency. Veteran.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Cloak of the Outer Realm|Interwoven Distortion\"] = [[{\n \"id\": \"86051\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Relic. Clothing.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"86051\"] = [[{\n \"id\": \"86051\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Relic. Clothing.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Cloak of the Outer Realm|\"] = [[{\n \"id\": \"86051\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Relic. Clothing.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Pocket Portal|Doorway to Another World\"] = [[{\n \"id\": \"86052\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Spell.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"86052\"] = [[{\n \"id\": \"86052\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Spell.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Pocket Portal|\"] = [[{\n \"id\": \"86052\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Spell.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Dreaded End|Gift of the Void\"] = [[{\n \"id\": \"86053\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Spell.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"86053\"] = [[{\n \"id\": \"86053\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Spell.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Dreaded End|\"] = [[{\n \"id\": \"86053\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Spell.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Blade of Ark'at|Shellblade Tribute\"] = [[{\n \"id\": \"86054\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Relic. Weapon. Melee.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"86054\"] = [[{\n \"id\": \"86054\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Relic. Weapon. Melee.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Blade of Ark'at|\"] = [[{\n \"id\": \"86054\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Relic. Weapon. Melee.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Enchanted Skull|Mask of the Burning Pit\"] = [[{\n \"id\": \"86055\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Relic.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"86055\"] = [[{\n \"id\": \"86055\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Relic.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Enchanted Skull|\"] = [[{\n \"id\": \"86055\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Relic.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Blood Eclipse (1)|\"] = [[{\n \"id\": \"53001\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Spell. Spirit.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"53001\"] = [[{\n \"id\": \"53001\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Spell. Spirit.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Survival Knife (2)|\"] = [[{\n \"id\": \"53002\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Item. Weapon. Melee.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"53002\"] = [[{\n \"id\": \"53002\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Item. Weapon. Melee.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Truth from Fiction (2)|\"] = [[{\n \"id\": \"53003\",\n \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"traits\": \"Insight.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"53003\"] = [[{\n \"id\": \"53003\",\n \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"traits\": \"Insight.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Ancient Stone (4)|Transient Thoughts\"] = [[{\n \"id\": \"53004\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Relic.\",\n \"level\": 4,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"53004\"] = [[{\n \"id\": \"53004\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Relic.\",\n \"level\": 4,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Ancient Stone (4)|\"] = [[{\n \"id\": \"53004\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Relic.\",\n \"level\": 4,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Decorated Skull (3)|Doom Begets Doom\"] = [[{\n \"id\": \"53005\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Item. Relic. Cursed.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"53005\"] = [[{\n \"id\": \"53005\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Item. Relic. Cursed.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Decorated Skull (3)|\"] = [[{\n \"id\": \"53005\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Item. Relic. Cursed.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Colt Vest Pocket (2)|\"] = [[{\n \"id\": \"53006\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Item. Weapon. Firearm. Illicit.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Ammo\",\n \"count\": 5\n }\n}]]\r\nallCards[\"53006\"] = [[{\n \"id\": \"53006\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Item. Weapon. Firearm. Illicit.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Ammo\",\n \"count\": 5\n }\n}]]\r\nallCards[\"Mists of R'lyeh (2)|\"] = [[{\n \"id\": \"53007\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Charge\",\n \"count\": 5\n }\n}]]\r\nallCards[\"53007\"] = [[{\n \"id\": \"53007\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Charge\",\n \"count\": 5\n }\n}]]\r\nallCards[\"The Chthonian Stone (3)|Stygian Waymark\"] = [[{\n \"id\": \"53008\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Item. Relic. Cursed.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"53008\"] = [[{\n \"id\": \"53008\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Item. Relic. Cursed.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"The Chthonian Stone (3)|\"] = [[{\n \"id\": \"53008\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Item. Relic. Cursed.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Alter Fate (1)|\"] = [[{\n \"id\": \"53009\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Spell. Blessed.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"53009\"] = [[{\n \"id\": \"53009\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Spell. Blessed.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"On Your Own (3)|Permanent\"] = [[{\n \"id\": \"53010\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Talent.\",\n \"level\": 3,\n \"permanent\": true,\n \"weakness\": false\n}]]\r\nallCards[\"53010\"] = [[{\n \"id\": \"53010\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Talent.\",\n \"level\": 3,\n \"permanent\": true,\n \"weakness\": false\n}]]\r\nallCards[\"Backpack (2)|\"] = [[{\n \"id\": \"53011\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"53011\"] = [[{\n \"id\": \"53011\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Dendromorphosis|\\\"Natural\\\" Transformation\"] = [[{\n \"id\": \"53012\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Curse. Flora.\",\n \"permanent\": false,\n \"weakness\": true,\n \"basicWeaknessCount\": 1\n}]]\r\nallCards[\"53012\"] = [[{\n \"id\": \"53012\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Curse. Flora.\",\n \"permanent\": false,\n \"weakness\": true,\n \"basicWeaknessCount\": 1\n}]]\r\nallCards[\"Dendromorphosis|\"] = [[{\n \"id\": \"53012\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Curse. Flora.\",\n \"permanent\": false,\n \"weakness\": true,\n \"basicWeaknessCount\": 1\n}]]\r\nallCards[\"Offer You Cannot Refuse|\"] = [[{\n \"id\": \"53013\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Pact.\",\n \"permanent\": false,\n \"weakness\": true,\n \"basicWeaknessCount\": 1\n}]]\r\nallCards[\"53013\"] = [[{\n \"id\": \"53013\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Pact.\",\n \"permanent\": false,\n \"weakness\": true,\n \"basicWeaknessCount\": 1\n}]]\r\nallCards[\"Fine Print|\"] = [[{\n \"id\": \"53014\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Pact.\",\n \"permanent\": false,\n \"weakness\": true\n}]]\r\nallCards[\"53014\"] = [[{\n \"id\": \"53014\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Pact.\",\n \"permanent\": false,\n \"weakness\": true\n}]]\r\nallCards[\"Sell Your Soul|\"] = [[{\n \"id\": \"53015\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Pact.\",\n \"permanent\": false,\n \"weakness\": true\n}]]\r\nallCards[\"53015\"] = [[{\n \"id\": \"53015\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Pact.\",\n \"permanent\": false,\n \"weakness\": true\n}]]\r\nallCards[\"Veda Whitsley|Skilled Botanist\"] = [[{\n \"id\": \"53037\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Wayfarer.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"53037\"] = [[{\n \"id\": \"53037\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Wayfarer.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Veda Whitsley|\"] = [[{\n \"id\": \"53037\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Wayfarer.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"On the Lam|Advanced\"] = [[{\n \"id\": \"90009\",\n \"type\": \"Event\",\n \"class\": \"Neutral\",\n \"traits\": \"Tactic.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"90009\"] = [[{\n \"id\": \"90009\",\n \"type\": \"Event\",\n \"class\": \"Neutral\",\n \"traits\": \"Tactic.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Hospital Debts|Advanced\"] = [[{\n \"id\": \"90010\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Task.\",\n \"permanent\": false,\n \"weakness\": true\n}]]\r\nallCards[\"90010\"] = [[{\n \"id\": \"90010\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Task.\",\n \"permanent\": false,\n \"weakness\": true\n}]]\r\nallCards[\"Nathaniel Cho|The Boxer\"] = [[{\n \"id\": \"60101\",\n \"type\": \"Investigator\",\n \"class\": \"Guardian\",\n \"traits\": \"Criminal. Warden.\"\n}]]\r\nallCards[\"60101\"] = [[{\n \"id\": \"60101\",\n \"type\": \"Investigator\",\n \"class\": \"Guardian\",\n \"traits\": \"Criminal. Warden.\"\n}]]\r\nallCards[\"Nathaniel Cho (promo version)|The Boxer\"] = [[{\n \"id\": \"60101-promo\",\n \"type\": \"Investigator\",\n \"class\": \"Guardian\",\n \"traits\": \"Criminal. Warden.\"\n}]]\r\nallCards[\"Nathaniel Cho (Parallel)|The Boxer\"] = [[{\n \"id\": \"60101-p\",\n \"type\": \"Investigator\",\n \"class\": \"Guardian\",\n \"traits\": \"Criminal. Warden.\"\n}]]\r\nallCards[\"Nathaniel Cho (Parallel Front)|The Boxer\"] = [[{\n \"id\": \"60101-pf\",\n \"type\": \"Investigator\",\n \"class\": \"Guardian\",\n \"traits\": \"Criminal. Warden.\"\n}]]\r\nallCards[\"Nathaniel Cho (Parallel Back)|The Boxer\"] = [[{\n \"id\": \"60101-pb\",\n \"type\": \"Investigator\",\n \"class\": \"Guardian\",\n \"traits\": \"Criminal. Warden.\"\n}]]\r\nallCards[\"Nathaniel Cho|\"] = [[{\n \"id\": \"60101-m\",\n \"type\": \"Minicard\"\n}]]\r\nallCards[\"Nathaniel Cho|Promo version\"] = [[{\n \"id\": \"60101-promo-m\",\n \"type\": \"Minicard\"\n}]]\r\nallCards[\"Randall Cho|Concerned Brother\"] = [[{\n \"id\": \"60102\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Ally. Medic.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"60102\"] = [[{\n \"id\": \"60102\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Ally. Medic.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Randall Cho|\"] = [[{\n \"id\": \"60102\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Ally. Medic.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Tommy Malloy|\"] = [[{\n \"id\": \"60103\",\n \"type\": \"Enemy\",\n \"class\": \"Neutral\",\n \"traits\": \"Humanoid. Criminal. Syndicate.\",\n \"permanent\": false,\n \"weakness\": true\n}]]\r\nallCards[\"60103\"] = [[{\n \"id\": \"60103\",\n \"type\": \"Enemy\",\n \"class\": \"Neutral\",\n \"traits\": \"Humanoid. Criminal. Syndicate.\",\n \"permanent\": false,\n \"weakness\": true\n}]]\r\nallCards[\"Self-Destructive|\"] = [[{\n \"id\": \"60104\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Flaw.\",\n \"permanent\": false,\n \"weakness\": true,\n \"basicWeaknessCount\": 1\n}]]\r\nallCards[\"60104\"] = [[{\n \"id\": \"60104\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Flaw.\",\n \"permanent\": false,\n \"weakness\": true,\n \"basicWeaknessCount\": 1\n}]]\r\nallCards[\"Boxing Gloves|\"] = [[{\n \"id\": \"60105\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Item. Weapon.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"60105\"] = [[{\n \"id\": \"60105\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Item. Weapon.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Flesh Ward|\"] = [[{\n \"id\": \"60106\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Ritual.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Charge\",\n \"count\": 4\n }\n}]]\r\nallCards[\"60106\"] = [[{\n \"id\": \"60106\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Ritual.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Charge\",\n \"count\": 4\n }\n}]]\r\nallCards[\"Grete Wagner|The Purifier\"] = [[{\n \"id\": \"60107\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Ally. Hunter.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"60107\"] = [[{\n \"id\": \"60107\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Ally. Hunter.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Grete Wagner|\"] = [[{\n \"id\": \"60107\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Ally. Hunter.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Relentless|\"] = [[{\n \"id\": \"60109\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Talent.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"60109\"] = [[{\n \"id\": \"60109\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Talent.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Safeguard|\"] = [[{\n \"id\": \"60110\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Talent.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"60110\"] = [[{\n \"id\": \"60110\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Talent.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Clean Them Out|\"] = [[{\n \"id\": \"60111\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Spirit. Tactic.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"60111\"] = [[{\n \"id\": \"60111\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Spirit. Tactic.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Counterpunch|\"] = [[{\n \"id\": \"60112\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Spirit. Tactic.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"60112\"] = [[{\n \"id\": \"60112\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Spirit. Tactic.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\\\"Get over here!\\\"|\"] = [[{\n \"id\": \"60114\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Spirit. Tactic.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"60114\"] = [[{\n \"id\": \"60114\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Spirit. Tactic.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Glory|\"] = [[{\n \"id\": \"60115\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Spirit.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"60115\"] = [[{\n \"id\": \"60115\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Spirit.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Monster Slayer|\"] = [[{\n \"id\": \"60116\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Spirit.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"60116\"] = [[{\n \"id\": \"60116\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Spirit.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"One-Two Punch|\"] = [[{\n \"id\": \"60117\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Spirit. Tactic.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"60117\"] = [[{\n \"id\": \"60117\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Spirit. Tactic.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Stand Together|\"] = [[{\n \"id\": \"60118\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Spirit.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"60118\"] = [[{\n \"id\": \"60118\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Spirit.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Evidence! (1)|\"] = [[{\n \"id\": \"60120\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Insight.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"60120\"] = [[{\n \"id\": \"60120\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Insight.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Galvanize (1)|\"] = [[{\n \"id\": \"60121\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Spirit.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"60121\"] = [[{\n \"id\": \"60121\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Spirit.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Counterpunch (2)|\"] = [[{\n \"id\": \"60122\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Spirit. Tactic.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"60122\"] = [[{\n \"id\": \"60122\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Spirit. Tactic.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\\\"Get over here!\\\" (2)|\"] = [[{\n \"id\": \"60123\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Spirit. Tactic.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"60123\"] = [[{\n \"id\": \"60123\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Spirit. Tactic.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Lesson Learned (2)|\"] = [[{\n \"id\": \"60124\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Insight. Spirit.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"60124\"] = [[{\n \"id\": \"60124\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Insight. Spirit.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Mano a Mano (2)|\"] = [[{\n \"id\": \"60125\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Spirit. Bold.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"60125\"] = [[{\n \"id\": \"60125\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Spirit. Bold.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Overpower (2)|\"] = [[{\n \"id\": \"60126\",\n \"type\": \"Skill\",\n \"class\": \"Guardian\",\n \"traits\": \"Practiced. Expert.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"60126\"] = [[{\n \"id\": \"60126\",\n \"type\": \"Skill\",\n \"class\": \"Guardian\",\n \"traits\": \"Practiced. Expert.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Boxing Gloves (3)|\"] = [[{\n \"id\": \"60127\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Item. Weapon.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"60127\"] = [[{\n \"id\": \"60127\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Item. Weapon.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Grete Wagner (3)|The Purifier\"] = [[{\n \"id\": \"60128\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Ally. Hunter.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"60128\"] = [[{\n \"id\": \"60128\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Ally. Hunter.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Grete Wagner (3)|\"] = [[{\n \"id\": \"60128\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Ally. Hunter.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Dynamite Blast (3)|\"] = [[{\n \"id\": \"60129\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Tactic.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"60129\"] = [[{\n \"id\": \"60129\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Tactic.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Taunt (3)|\"] = [[{\n \"id\": \"60130\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Tactic.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"60130\"] = [[{\n \"id\": \"60130\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Tactic.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Physical Training (4)|\"] = [[{\n \"id\": \"60131\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Talent.\",\n \"level\": 4,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Resource\",\n \"count\": 2\n }\n}]]\r\nallCards[\"60131\"] = [[{\n \"id\": \"60131\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Talent.\",\n \"level\": 4,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Resource\",\n \"count\": 2\n }\n}]]\r\nallCards[\"One-Two Punch (5)|\"] = [[{\n \"id\": \"60132\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Spirit. Tactic.\",\n \"level\": 5,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"60132\"] = [[{\n \"id\": \"60132\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Spirit. Tactic.\",\n \"level\": 5,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Harvey Walters|The Professor\"] = [[{\n \"id\": \"60201\",\n \"type\": \"Investigator\",\n \"class\": \"Seeker\",\n \"traits\": \"Miskatonic.\"\n}]]\r\nallCards[\"60201\"] = [[{\n \"id\": \"60201\",\n \"type\": \"Investigator\",\n \"class\": \"Seeker\",\n \"traits\": \"Miskatonic.\"\n}]]\r\nallCards[\"Harvey Walters (promo version)|The Professor\"] = [[{\n \"id\": \"60201-promo\",\n \"type\": \"Investigator\",\n \"class\": \"Seeker\",\n \"traits\": \"Miskatonic.\"\n}]]\r\nallCards[\"Harvey Walters (Parallel)|The Professor\"] = [[{\n \"id\": \"60201-p\",\n \"type\": \"Investigator\",\n \"class\": \"Seeker\",\n \"traits\": \"Miskatonic.\"\n}]]\r\nallCards[\"Harvey Walters (Parallel Front)|The Professor\"] = [[{\n \"id\": \"60201-pf\",\n \"type\": \"Investigator\",\n \"class\": \"Seeker\",\n \"traits\": \"Miskatonic.\"\n}]]\r\nallCards[\"Harvey Walters (Parallel Back)|The Professor\"] = [[{\n \"id\": \"60201-pb\",\n \"type\": \"Investigator\",\n \"class\": \"Seeker\",\n \"traits\": \"Miskatonic.\"\n}]]\r\nallCards[\"Harvey Walters|\"] = [[{\n \"id\": \"60201-m\",\n \"type\": \"Minicard\"\n}]]\r\nallCards[\"Harvey Walters|Promo version\"] = [[{\n \"id\": \"60201-promo-m\",\n \"type\": \"Minicard\"\n}]]\r\nallCards[\"Vault of Knowledge|\"] = [[{\n \"id\": \"60202\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Talent.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"60202\"] = [[{\n \"id\": \"60202\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Talent.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Thrice-Damned Curiosity|\"] = [[{\n \"id\": \"60203\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Flaw.\",\n \"permanent\": false,\n \"weakness\": true\n}]]\r\nallCards[\"60203\"] = [[{\n \"id\": \"60203\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Flaw.\",\n \"permanent\": false,\n \"weakness\": true\n}]]\r\nallCards[\"Obsessive|\"] = [[{\n \"id\": \"60204\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Flaw.\",\n \"permanent\": false,\n \"weakness\": true,\n \"basicWeaknessCount\": 1\n}]]\r\nallCards[\"60204\"] = [[{\n \"id\": \"60204\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Flaw.\",\n \"permanent\": false,\n \"weakness\": true,\n \"basicWeaknessCount\": 1\n}]]\r\nallCards[\"Arcane Enlightenment|\"] = [[{\n \"id\": \"60205\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Ritual.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"60205\"] = [[{\n \"id\": \"60205\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Ritual.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Celaeno Fragments|Book of Books\"] = [[{\n \"id\": \"60206\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Tome.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"60206\"] = [[{\n \"id\": \"60206\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Tome.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Celaeno Fragments|\"] = [[{\n \"id\": \"60206\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Tome.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Disc of Itzamna|Protective Amulet\"] = [[{\n \"id\": \"60207\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Relic.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"60207\"] = [[{\n \"id\": \"60207\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Relic.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Disc of Itzamna|\"] = [[{\n \"id\": \"60207\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Relic.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Encyclopedia|\"] = [[{\n \"id\": \"60208\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Tome.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Secret\",\n \"count\": 5\n }\n}]]\r\nallCards[\"60208\"] = [[{\n \"id\": \"60208\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Tome.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Secret\",\n \"count\": 5\n }\n}]]\r\nallCards[\"Feed the Mind|\"] = [[{\n \"id\": \"60209\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Spell.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Secret\",\n \"count\": 3\n }\n}]]\r\nallCards[\"60209\"] = [[{\n \"id\": \"60209\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Spell.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Secret\",\n \"count\": 3\n }\n}]]\r\nallCards[\"Forbidden Tome|Untranslated\"] = [[{\n \"id\": \"60210\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Relic. Tome.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"60210\"] = [[{\n \"id\": \"60210\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Relic. Tome.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Forbidden Tome|\"] = [[{\n \"id\": \"60210\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Relic. Tome.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Higher Education|\"] = [[{\n \"id\": \"60211\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Talent.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"60211\"] = [[{\n \"id\": \"60211\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Talent.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Whitton Greene|Hunter of Rare Books\"] = [[{\n \"id\": \"60213\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Ally. Miskatonic.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"60213\"] = [[{\n \"id\": \"60213\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Ally. Miskatonic.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Whitton Greene|\"] = [[{\n \"id\": \"60213\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Ally. Miskatonic.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Burning the Midnight Oil|\"] = [[{\n \"id\": \"60214\",\n \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"traits\": \"Insight.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"60214\"] = [[{\n \"id\": \"60214\",\n \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"traits\": \"Insight.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Cryptic Writings|\"] = [[{\n \"id\": \"60215\",\n \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"traits\": \"Insight.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"60215\"] = [[{\n \"id\": \"60215\",\n \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"traits\": \"Insight.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Extensive Research|\"] = [[{\n \"id\": \"60216\",\n \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"traits\": \"Insight.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"60216\"] = [[{\n \"id\": \"60216\",\n \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"traits\": \"Insight.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Occult Invocation|\"] = [[{\n \"id\": \"60217\",\n \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"traits\": \"Spell.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"60217\"] = [[{\n \"id\": \"60217\",\n \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"traits\": \"Spell.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Library Docent (1)|\"] = [[{\n \"id\": \"60220\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Ally. Miskatonic.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"60220\"] = [[{\n \"id\": \"60220\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Ally. Miskatonic.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Glimpse the Unthinkable (1)|\"] = [[{\n \"id\": \"60221\",\n \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"traits\": \"Insight.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"60221\"] = [[{\n \"id\": \"60221\",\n \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"traits\": \"Insight.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Esoteric Atlas (2)|\"] = [[{\n \"id\": \"60222\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Tome.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Secret\",\n \"count\": 4\n }\n}]]\r\nallCards[\"60222\"] = [[{\n \"id\": \"60222\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Tome.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Secret\",\n \"count\": 4\n }\n}]]\r\nallCards[\"Whitton Greene (2)|Hunter of Rare Books\"] = [[{\n \"id\": \"60223\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Ally. Miskatonic.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"60223\"] = [[{\n \"id\": \"60223\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Ally. Miskatonic.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Whitton Greene (2)|\"] = [[{\n \"id\": \"60223\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Ally. Miskatonic.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Cryptic Writings (2)|\"] = [[{\n \"id\": \"60224\",\n \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"traits\": \"Insight.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"60224\"] = [[{\n \"id\": \"60224\",\n \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"traits\": \"Insight.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\\\"I've got a plan!\\\" (2)|\"] = [[{\n \"id\": \"60225\",\n \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"traits\": \"Insight. Tactic.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"60225\"] = [[{\n \"id\": \"60225\",\n \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"traits\": \"Insight. Tactic.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Mind over Matter (2)|\"] = [[{\n \"id\": \"60226\",\n \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"traits\": \"Insight.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"60226\"] = [[{\n \"id\": \"60226\",\n \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"traits\": \"Insight.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Seeking Answers (2)|\"] = [[{\n \"id\": \"60227\",\n \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"traits\": \"Insight.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"60227\"] = [[{\n \"id\": \"60227\",\n \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"traits\": \"Insight.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Perception (2)|\"] = [[{\n \"id\": \"60228\",\n \"type\": \"Skill\",\n \"class\": \"Seeker\",\n \"traits\": \"Practiced. Expert.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"60228\"] = [[{\n \"id\": \"60228\",\n \"type\": \"Skill\",\n \"class\": \"Seeker\",\n \"traits\": \"Practiced. Expert.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Forbidden Tome (3)|Dark Knowledge\"] = [[{\n \"id\": \"60229\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Relic. Tome.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"60229\"] = [[{\n \"id\": \"60229\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Relic. Tome.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Forbidden Tome (3)|\"] = [[{\n \"id\": \"60229\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Relic. Tome.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Forbidden Tome (3)|Secrets Revealed\"] = [[{\n \"id\": \"60230\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Relic. Tome.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"60230\"] = [[{\n \"id\": \"60230\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Relic. Tome.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Forbidden Tome (3)|\"] = [[{\n \"id\": \"60230\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Relic. Tome.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Farsight (4)|\"] = [[{\n \"id\": \"60231\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Ritual.\",\n \"level\": 4,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"60231\"] = [[{\n \"id\": \"60231\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Ritual.\",\n \"level\": 4,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Miskatonic Archaeology Funding (4)|\"] = [[{\n \"id\": \"60232\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Grant.\",\n \"level\": 4,\n \"permanent\": true,\n \"weakness\": false\n}]]\r\nallCards[\"60232\"] = [[{\n \"id\": \"60232\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Grant.\",\n \"level\": 4,\n \"permanent\": true,\n \"weakness\": false\n}]]\r\nallCards[\"The Necronomicon (5)|Petrus de Dacia Translation\"] = [[{\n \"id\": \"60233\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Tome.\",\n \"level\": 5,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"60233\"] = [[{\n \"id\": \"60233\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Tome.\",\n \"level\": 5,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"The Necronomicon (5) (Taboo)|Petrus de Dacia Translation\"] = [[{\n \"id\": \"60233-t\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Tome.\",\n \"level\": 5,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"The Necronomicon (5)|\"] = [[{\n \"id\": \"60233\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Tome.\",\n \"level\": 5,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"The Necronomicon (5) (Taboo)|\"] = [[{\n \"id\": \"60233-t\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Tome.\",\n \"level\": 5,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Winifred Habbamock|The Aviatrix\"] = [[{\n \"id\": \"60301\",\n \"type\": \"Investigator\",\n \"class\": \"Rogue\",\n \"traits\": \"Criminal.\"\n}]]\r\nallCards[\"60301\"] = [[{\n \"id\": \"60301\",\n \"type\": \"Investigator\",\n \"class\": \"Rogue\",\n \"traits\": \"Criminal.\"\n}]]\r\nallCards[\"Winifred Habbamock (promo version)|The Aviatrix\"] = [[{\n \"id\": \"60301-promo\",\n \"type\": \"Investigator\",\n \"class\": \"Rogue\",\n \"traits\": \"Criminal.\"\n}]]\r\nallCards[\"Winifred Habbamock (Parallel)|The Aviatrix\"] = [[{\n \"id\": \"60301-p\",\n \"type\": \"Investigator\",\n \"class\": \"Rogue\",\n \"traits\": \"Criminal.\"\n}]]\r\nallCards[\"Winifred Habbamock (Parallel Front)|The Aviatrix\"] = [[{\n \"id\": \"60301-pf\",\n \"type\": \"Investigator\",\n \"class\": \"Rogue\",\n \"traits\": \"Criminal.\"\n}]]\r\nallCards[\"Winifred Habbamock (Parallel Back)|The Aviatrix\"] = [[{\n \"id\": \"60301-pb\",\n \"type\": \"Investigator\",\n \"class\": \"Rogue\",\n \"traits\": \"Criminal.\"\n}]]\r\nallCards[\"Winifred Habbamock|\"] = [[{\n \"id\": \"60301-m\",\n \"type\": \"Minicard\"\n}]]\r\nallCards[\"Winifred Habbamock|Promo version\"] = [[{\n \"id\": \"60301-promo-m\",\n \"type\": \"Minicard\"\n}]]\r\nallCards[\"Anything You Can Do, Better|\"] = [[{\n \"id\": \"60302\",\n \"type\": \"Skill\",\n \"class\": \"Rogue\",\n \"traits\": \"Innate. Developed.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"60302\"] = [[{\n \"id\": \"60302\",\n \"type\": \"Skill\",\n \"class\": \"Rogue\",\n \"traits\": \"Innate. Developed.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Arrogance|\"] = [[{\n \"id\": \"60303\",\n \"type\": \"Skill\",\n \"class\": \"Neutral\",\n \"traits\": \"Flaw.\",\n \"permanent\": false,\n \"weakness\": true\n}]]\r\nallCards[\"60303\"] = [[{\n \"id\": \"60303\",\n \"type\": \"Skill\",\n \"class\": \"Neutral\",\n \"traits\": \"Flaw.\",\n \"permanent\": false,\n \"weakness\": true\n}]]\r\nallCards[\"Reckless|\"] = [[{\n \"id\": \"60304\",\n \"type\": \"Skill\",\n \"class\": \"Neutral\",\n \"traits\": \"Flaw.\",\n \"permanent\": false,\n \"weakness\": true,\n \"basicWeaknessCount\": 1\n}]]\r\nallCards[\"60304\"] = [[{\n \"id\": \"60304\",\n \"type\": \"Skill\",\n \"class\": \"Neutral\",\n \"traits\": \"Flaw.\",\n \"permanent\": false,\n \"weakness\": true,\n \"basicWeaknessCount\": 1\n}]]\r\nallCards[\"Lockpicks|\"] = [[{\n \"id\": \"60305\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Item. Tool. Illicit.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"60305\"] = [[{\n \"id\": \"60305\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Item. Tool. Illicit.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Mauser C96|\"] = [[{\n \"id\": \"60306\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Item. Weapon. Firearm. Illicit.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Ammo\",\n \"count\": 5\n }\n}]]\r\nallCards[\"60306\"] = [[{\n \"id\": \"60306\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Item. Weapon. Firearm. Illicit.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Ammo\",\n \"count\": 5\n }\n}]]\r\nallCards[\"Lonnie Ritter|Feisty Mechanic\"] = [[{\n \"id\": \"60309\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Ally.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"60309\"] = [[{\n \"id\": \"60309\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Ally.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Lonnie Ritter|\"] = [[{\n \"id\": \"60309\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Ally.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Leather Jacket|\"] = [[{\n \"id\": \"60310\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Item. Armor.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"60310\"] = [[{\n \"id\": \"60310\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Item. Armor.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Streetwise|\"] = [[{\n \"id\": \"60311\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Talent.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"60311\"] = [[{\n \"id\": \"60311\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Talent.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Pilfer|\"] = [[{\n \"id\": \"60315\",\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"traits\": \"Trick.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"60315\"] = [[{\n \"id\": \"60315\",\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"traits\": \"Trick.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Sneak By|\"] = [[{\n \"id\": \"60316\",\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"traits\": \"Trick.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"60316\"] = [[{\n \"id\": \"60316\",\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"traits\": \"Trick.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Nimble|\"] = [[{\n \"id\": \"60317\",\n \"type\": \"Skill\",\n \"class\": \"Rogue\",\n \"traits\": \"Innate.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"60317\"] = [[{\n \"id\": \"60317\",\n \"type\": \"Skill\",\n \"class\": \"Rogue\",\n \"traits\": \"Innate.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Daredevil|\"] = [[{\n \"id\": \"60318\",\n \"type\": \"Skill\",\n \"class\": \"Rogue\",\n \"traits\": \"Fortune. Practiced.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"60318\"] = [[{\n \"id\": \"60318\",\n \"type\": \"Skill\",\n \"class\": \"Rogue\",\n \"traits\": \"Fortune. Practiced.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Liquid Courage (1)|\"] = [[{\n \"id\": \"60320\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Item. Illicit.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Supply\",\n \"count\": 4\n }\n}]]\r\nallCards[\"60320\"] = [[{\n \"id\": \"60320\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Item. Illicit.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Supply\",\n \"count\": 4\n }\n}]]\r\nallCards[\"Mauser C96 (2)|\"] = [[{\n \"id\": \"60321\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Item. Weapon. Firearm. Illicit.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Ammo\",\n \"count\": 5\n }\n}]]\r\nallCards[\"60321\"] = [[{\n \"id\": \"60321\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Item. Weapon. Firearm. Illicit.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Ammo\",\n \"count\": 5\n }\n}]]\r\nallCards[\"Daring Maneuver (2)|\"] = [[{\n \"id\": \"60322\",\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"traits\": \"Gambit.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"60322\"] = [[{\n \"id\": \"60322\",\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"traits\": \"Gambit.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Cheap Shot (2)|\"] = [[{\n \"id\": \"60323\",\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"traits\": \"Trick.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"60323\"] = [[{\n \"id\": \"60323\",\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"traits\": \"Trick.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Slip Away (2)|\"] = [[{\n \"id\": \"60324\",\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"traits\": \"Trick.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"60324\"] = [[{\n \"id\": \"60324\",\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"traits\": \"Trick.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Manual Dexterity (2)|\"] = [[{\n \"id\": \"60325\",\n \"type\": \"Skill\",\n \"class\": \"Rogue\",\n \"traits\": \"Innate. Developed.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"60325\"] = [[{\n \"id\": \"60325\",\n \"type\": \"Skill\",\n \"class\": \"Rogue\",\n \"traits\": \"Innate. Developed.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Lucky Cigarette Case (3)|\"] = [[{\n \"id\": \"60326\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Item. Charm.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"60326\"] = [[{\n \"id\": \"60326\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Item. Charm.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Sharpshooter (3)|\"] = [[{\n \"id\": \"60327\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Talent.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"60327\"] = [[{\n \"id\": \"60327\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Talent.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Pilfer (3)|\"] = [[{\n \"id\": \"60328\",\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"traits\": \"Trick.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"60328\"] = [[{\n \"id\": \"60328\",\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"traits\": \"Trick.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Backstab (3)|\"] = [[{\n \"id\": \"60329\",\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"traits\": \"Tactic.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"60329\"] = [[{\n \"id\": \"60329\",\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"traits\": \"Tactic.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Copycat (3)|\"] = [[{\n \"id\": \"60330\",\n \"type\": \"Skill\",\n \"class\": \"Rogue\",\n \"traits\": \"Gambit.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"60330\"] = [[{\n \"id\": \"60330\",\n \"type\": \"Skill\",\n \"class\": \"Rogue\",\n \"traits\": \"Gambit.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Beretta M1918 (4)|\"] = [[{\n \"id\": \"60331\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Item. Weapon. Firearm. Illicit.\",\n \"level\": 4,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Ammo\",\n \"count\": 4\n }\n}]]\r\nallCards[\"60331\"] = [[{\n \"id\": \"60331\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Item. Weapon. Firearm. Illicit.\",\n \"level\": 4,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Ammo\",\n \"count\": 4\n }\n}]]\r\nallCards[\"Chuck Fergus (5)|O'Bannion Driver\"] = [[{\n \"id\": \"60332\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Ally. Criminal.\",\n \"level\": 5,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"60332\"] = [[{\n \"id\": \"60332\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Ally. Criminal.\",\n \"level\": 5,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Chuck Fergus (5)|\"] = [[{\n \"id\": \"60332\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Ally. Criminal.\",\n \"level\": 5,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Jacqueline Fine|The Psychic\"] = [[{\n \"id\": \"60401\",\n \"type\": \"Investigator\",\n \"class\": \"Mystic\",\n \"traits\": \"Clairvoyant.\"\n}]]\r\nallCards[\"60401\"] = [[{\n \"id\": \"60401\",\n \"type\": \"Investigator\",\n \"class\": \"Mystic\",\n \"traits\": \"Clairvoyant.\"\n}]]\r\nallCards[\"Jacqueline Fine (promo version)|The Psychic\"] = [[{\n \"id\": \"60401-promo\",\n \"type\": \"Investigator\",\n \"class\": \"Mystic\",\n \"traits\": \"Clairvoyant.\"\n}]]\r\nallCards[\"Jacqueline Fine (Parallel)|The Psychic\"] = [[{\n \"id\": \"60401-p\",\n \"type\": \"Investigator\",\n \"class\": \"Mystic\",\n \"traits\": \"Clairvoyant.\"\n}]]\r\nallCards[\"Jacqueline Fine (Parallel Front)|The Psychic\"] = [[{\n \"id\": \"60401-pf\",\n \"type\": \"Investigator\",\n \"class\": \"Mystic\",\n \"traits\": \"Clairvoyant.\"\n}]]\r\nallCards[\"Jacqueline Fine (Parallel Back)|The Psychic\"] = [[{\n \"id\": \"60401-pb\",\n \"type\": \"Investigator\",\n \"class\": \"Mystic\",\n \"traits\": \"Clairvoyant.\"\n}]]\r\nallCards[\"Jacqueline Fine|\"] = [[{\n \"id\": \"60401-m\",\n \"type\": \"Minicard\"\n}]]\r\nallCards[\"Jacqueline Fine|Promo version\"] = [[{\n \"id\": \"60401-promo-m\",\n \"type\": \"Minicard\"\n}]]\r\nallCards[\"Arbiter of Fates|\"] = [[{\n \"id\": \"60402\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Talent.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"60402\"] = [[{\n \"id\": \"60402\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Talent.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Dark Future|\"] = [[{\n \"id\": \"60403\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Omen. Endtimes.\",\n \"permanent\": false,\n \"weakness\": true\n}]]\r\nallCards[\"60403\"] = [[{\n \"id\": \"60403\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Omen. Endtimes.\",\n \"permanent\": false,\n \"weakness\": true\n}]]\r\nallCards[\"Nihilism|\"] = [[{\n \"id\": \"60404\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Madness.\",\n \"permanent\": false,\n \"weakness\": true,\n \"basicWeaknessCount\": 1\n}]]\r\nallCards[\"60404\"] = [[{\n \"id\": \"60404\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Madness.\",\n \"permanent\": false,\n \"weakness\": true,\n \"basicWeaknessCount\": 1\n}]]\r\nallCards[\"Scrying Mirror|\"] = [[{\n \"id\": \"60406\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Item. Charm.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Secret\",\n \"count\": 4\n }\n}]]\r\nallCards[\"60406\"] = [[{\n \"id\": \"60406\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Item. Charm.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Secret\",\n \"count\": 4\n }\n}]]\r\nallCards[\"Azure Flame|\"] = [[{\n \"id\": \"60407\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Charge\",\n \"count\": 4\n }\n}]]\r\nallCards[\"60407\"] = [[{\n \"id\": \"60407\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Charge\",\n \"count\": 4\n }\n}]]\r\nallCards[\"Clairvoyance|\"] = [[{\n \"id\": \"60408\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Charge\",\n \"count\": 3\n }\n}]]\r\nallCards[\"60408\"] = [[{\n \"id\": \"60408\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Charge\",\n \"count\": 3\n }\n}]]\r\nallCards[\"Ineffable Truth|\"] = [[{\n \"id\": \"60409\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Charge\",\n \"count\": 3\n }\n}]]\r\nallCards[\"60409\"] = [[{\n \"id\": \"60409\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Charge\",\n \"count\": 3\n }\n}]]\r\nallCards[\"Familiar Spirit|\"] = [[{\n \"id\": \"60410\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Ally. Creature. Summon.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"60410\"] = [[{\n \"id\": \"60410\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Ally. Creature. Summon.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Crystal Pendulum|\"] = [[{\n \"id\": \"60411\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Item. Charm.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"60411\"] = [[{\n \"id\": \"60411\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Item. Charm.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Robes of Endless Night|\"] = [[{\n \"id\": \"60412\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Item. Clothing.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"60412\"] = [[{\n \"id\": \"60412\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Item. Clothing.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Parallel Fates|\"] = [[{\n \"id\": \"60415\",\n \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"traits\": \"Augury.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"60415\"] = [[{\n \"id\": \"60415\",\n \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"traits\": \"Augury.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Voice of Ra|\"] = [[{\n \"id\": \"60416\",\n \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"60416\"] = [[{\n \"id\": \"60416\",\n \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Prescient|\"] = [[{\n \"id\": \"60419\",\n \"type\": \"Skill\",\n \"class\": \"Mystic\",\n \"traits\": \"Practiced. Augury.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"60419\"] = [[{\n \"id\": \"60419\",\n \"type\": \"Skill\",\n \"class\": \"Mystic\",\n \"traits\": \"Practiced. Augury.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Eldritch Inspiration (1)|\"] = [[{\n \"id\": \"60420\",\n \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell. Spirit.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"60420\"] = [[{\n \"id\": \"60420\",\n \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell. Spirit.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Grotesque Statue (2)|\"] = [[{\n \"id\": \"60421\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Item. Relic.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Charge\",\n \"count\": 3\n }\n}]]\r\nallCards[\"60421\"] = [[{\n \"id\": \"60421\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Item. Relic.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Charge\",\n \"count\": 3\n }\n}]]\r\nallCards[\"Robes of Endless Night (2)|\"] = [[{\n \"id\": \"60422\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Item. Clothing.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"60422\"] = [[{\n \"id\": \"60422\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Item. Clothing.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Hypnotic Gaze (2)|\"] = [[{\n \"id\": \"60423\",\n \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"60423\"] = [[{\n \"id\": \"60423\",\n \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Guts (2)|\"] = [[{\n \"id\": \"60424\",\n \"type\": \"Skill\",\n \"class\": \"Mystic\",\n \"traits\": \"Innate. Developed.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"60424\"] = [[{\n \"id\": \"60424\",\n \"type\": \"Skill\",\n \"class\": \"Mystic\",\n \"traits\": \"Innate. Developed.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Azure Flame (3)|\"] = [[{\n \"id\": \"60425\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Charge\",\n \"count\": 4\n }\n}]]\r\nallCards[\"60425\"] = [[{\n \"id\": \"60425\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Charge\",\n \"count\": 4\n }\n}]]\r\nallCards[\"Clairvoyance (3)|\"] = [[{\n \"id\": \"60426\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Charge\",\n \"count\": 3\n }\n}]]\r\nallCards[\"60426\"] = [[{\n \"id\": \"60426\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Charge\",\n \"count\": 3\n }\n}]]\r\nallCards[\"Ineffable Truth (3)|\"] = [[{\n \"id\": \"60427\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Charge\",\n \"count\": 3\n }\n}]]\r\nallCards[\"60427\"] = [[{\n \"id\": \"60427\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Charge\",\n \"count\": 3\n }\n}]]\r\nallCards[\"Arcane Studies (4)|\"] = [[{\n \"id\": \"60428\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Talent.\",\n \"level\": 4,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Resource\",\n \"count\": 2\n }\n}]]\r\nallCards[\"60428\"] = [[{\n \"id\": \"60428\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Talent.\",\n \"level\": 4,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Resource\",\n \"count\": 2\n }\n}]]\r\nallCards[\"Recharge (4)|\"] = [[{\n \"id\": \"60429\",\n \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\",\n \"level\": 4,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"60429\"] = [[{\n \"id\": \"60429\",\n \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\",\n \"level\": 4,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Azure Flame (5)|\"] = [[{\n \"id\": \"60430\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\",\n \"level\": 5,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Charge\",\n \"count\": 4\n }\n}]]\r\nallCards[\"60430\"] = [[{\n \"id\": \"60430\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\",\n \"level\": 5,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Charge\",\n \"count\": 4\n }\n}]]\r\nallCards[\"Clairvoyance (5)|\"] = [[{\n \"id\": \"60431\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\",\n \"level\": 5,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Charge\",\n \"count\": 3\n }\n}]]\r\nallCards[\"60431\"] = [[{\n \"id\": \"60431\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\",\n \"level\": 5,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Charge\",\n \"count\": 3\n }\n}]]\r\nallCards[\"Ineffable Truth (5)|\"] = [[{\n \"id\": \"60432\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\",\n \"level\": 5,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Charge\",\n \"count\": 3\n }\n}]]\r\nallCards[\"60432\"] = [[{\n \"id\": \"60432\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\",\n \"level\": 5,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Charge\",\n \"count\": 3\n }\n}]]\r\nallCards[\"Stella Clark|The Letter Carrier\"] = [[{\n \"id\": \"60501\",\n \"type\": \"Investigator\",\n \"class\": \"Survivor\",\n \"traits\": \"Chosen. Civic.\"\n}]]\r\nallCards[\"60501\"] = [[{\n \"id\": \"60501\",\n \"type\": \"Investigator\",\n \"class\": \"Survivor\",\n \"traits\": \"Chosen. Civic.\"\n}]]\r\nallCards[\"Stella Clark (promo version)|The Letter Carrier\"] = [[{\n \"id\": \"60501-promo\",\n \"type\": \"Investigator\",\n \"class\": \"Survivor\",\n \"traits\": \"Chosen. Civic.\"\n}]]\r\nallCards[\"Stella Clark (Parallel)|The Letter Carrier\"] = [[{\n \"id\": \"60501-p\",\n \"type\": \"Investigator\",\n \"class\": \"Survivor\",\n \"traits\": \"Chosen. Civic.\"\n}]]\r\nallCards[\"Stella Clark (Parallel Front)|The Letter Carrier\"] = [[{\n \"id\": \"60501-pf\",\n \"type\": \"Investigator\",\n \"class\": \"Survivor\",\n \"traits\": \"Chosen. Civic.\"\n}]]\r\nallCards[\"Stella Clark (Parallel Back)|The Letter Carrier\"] = [[{\n \"id\": \"60501-pb\",\n \"type\": \"Investigator\",\n \"class\": \"Survivor\",\n \"traits\": \"Chosen. Civic.\"\n}]]\r\nallCards[\"Stella Clark|\"] = [[{\n \"id\": \"60501-m\",\n \"type\": \"Minicard\"\n}]]\r\nallCards[\"Stella Clark|Promo version\"] = [[{\n \"id\": \"60501-promo-m\",\n \"type\": \"Minicard\"\n}]]\r\nallCards[\"Neither Rain nor Snow|\"] = [[{\n \"id\": \"60502\",\n \"type\": \"Skill\",\n \"class\": \"Survivor\",\n \"traits\": \"Innate. Developed.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"60502\"] = [[{\n \"id\": \"60502\",\n \"type\": \"Skill\",\n \"class\": \"Survivor\",\n \"traits\": \"Innate. Developed.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Called by the Mists|\"] = [[{\n \"id\": \"60503\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Curse.\",\n \"permanent\": false,\n \"weakness\": true\n}]]\r\nallCards[\"60503\"] = [[{\n \"id\": \"60503\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Curse.\",\n \"permanent\": false,\n \"weakness\": true\n}]]\r\nallCards[\"Atychiphobia|\"] = [[{\n \"id\": \"60504\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Madness.\",\n \"permanent\": false,\n \"weakness\": true,\n \"basicWeaknessCount\": 1\n}]]\r\nallCards[\"60504\"] = [[{\n \"id\": \"60504\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Madness.\",\n \"permanent\": false,\n \"weakness\": true,\n \"basicWeaknessCount\": 1\n}]]\r\nallCards[\".18 Derringer|\"] = [[{\n \"id\": \"60505\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Item. Weapon. Firearm. Illicit.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Ammo\",\n \"count\": 2\n }\n}]]\r\nallCards[\"60505\"] = [[{\n \"id\": \"60505\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Item. Weapon. Firearm. Illicit.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Ammo\",\n \"count\": 2\n }\n}]]\r\nallCards[\"Grimm's Fairy Tales|\"] = [[{\n \"id\": \"60506\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Item. Tome.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Secret\",\n \"count\": 4\n }\n}]]\r\nallCards[\"60506\"] = [[{\n \"id\": \"60506\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Item. Tome.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Secret\",\n \"count\": 4\n }\n}]]\r\nallCards[\"Old Keyring|\"] = [[{\n \"id\": \"60507\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Item. Tool.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Key\",\n \"count\": 2\n }\n}]]\r\nallCards[\"60507\"] = [[{\n \"id\": \"60507\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Item. Tool.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Key\",\n \"count\": 2\n }\n}]]\r\nallCards[\"Granny Orne|Tough Old Bird\"] = [[{\n \"id\": \"60508\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Ally.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"60508\"] = [[{\n \"id\": \"60508\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Ally.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Granny Orne|\"] = [[{\n \"id\": \"60508\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Ally.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Mysterious Raven|\"] = [[{\n \"id\": \"60509\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Ally. Creature.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"60509\"] = [[{\n \"id\": \"60509\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Ally. Creature.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Scrapper|\"] = [[{\n \"id\": \"60511\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Talent.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"60511\"] = [[{\n \"id\": \"60511\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Talent.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Will to Survive|\"] = [[{\n \"id\": \"60512\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Spirit.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"60512\"] = [[{\n \"id\": \"60512\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Spirit.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"A Test of Will|\"] = [[{\n \"id\": \"60513\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Spirit.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"60513\"] = [[{\n \"id\": \"60513\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Spirit.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Grit Your Teeth|\"] = [[{\n \"id\": \"60515\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Spirit.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"60515\"] = [[{\n \"id\": \"60515\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Spirit.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Cherished Keepsake (1)|\"] = [[{\n \"id\": \"60520\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Item. Charm.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"60520\"] = [[{\n \"id\": \"60520\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Item. Charm.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Leather Coat (1)|\"] = [[{\n \"id\": \"60521\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Item. Armor.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"60521\"] = [[{\n \"id\": \"60521\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Item. Armor.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\".18 Derringer (2)|\"] = [[{\n \"id\": \"60522\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Item. Weapon. Firearm. Illicit.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Ammo\",\n \"count\": 3\n }\n}]]\r\nallCards[\"60522\"] = [[{\n \"id\": \"60522\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Item. Weapon. Firearm. Illicit.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Ammo\",\n \"count\": 3\n }\n}]]\r\nallCards[\"A Test of Will (2)|\"] = [[{\n \"id\": \"60523\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Spirit.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"60523\"] = [[{\n \"id\": \"60523\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Spirit.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\\\"Look what I found!\\\" (2)|\"] = [[{\n \"id\": \"60524\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Fortune.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"60524\"] = [[{\n \"id\": \"60524\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Fortune.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Dumb Luck (2)|\"] = [[{\n \"id\": \"60525\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Fortune.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"60525\"] = [[{\n \"id\": \"60525\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Fortune.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Unexpected Courage (2)|\"] = [[{\n \"id\": \"60526\",\n \"type\": \"Skill\",\n \"class\": \"Survivor\",\n \"traits\": \"Innate. Developed.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"60526\"] = [[{\n \"id\": \"60526\",\n \"type\": \"Skill\",\n \"class\": \"Survivor\",\n \"traits\": \"Innate. Developed.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Granny Orne (3)|Tough Old Bird\"] = [[{\n \"id\": \"60527\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Ally.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"60527\"] = [[{\n \"id\": \"60527\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Ally.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Granny Orne (3)|\"] = [[{\n \"id\": \"60527\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Ally.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Lucky! (3)|\"] = [[{\n \"id\": \"60528\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Fortune.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"60528\"] = [[{\n \"id\": \"60528\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Fortune.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Chainsaw (4)|\"] = [[{\n \"id\": \"60529\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Item. Tool. Weapon. Melee.\",\n \"level\": 4,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Supply\",\n \"count\": 3\n }\n}]]\r\nallCards[\"60529\"] = [[{\n \"id\": \"60529\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Item. Tool. Weapon. Melee.\",\n \"level\": 4,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Supply\",\n \"count\": 3\n }\n}]]\r\nallCards[\"Quick Learner (4)|\"] = [[{\n \"id\": \"60530\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Condition.\",\n \"level\": 4,\n \"permanent\": true,\n \"weakness\": false\n}]]\r\nallCards[\"60530\"] = [[{\n \"id\": \"60530\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Condition.\",\n \"level\": 4,\n \"permanent\": true,\n \"weakness\": false\n}]]\r\nallCards[\"D�j� Vu (5)|\"] = [[{\n \"id\": \"60531\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Talent. Cursed.\",\n \"level\": 5,\n \"permanent\": true,\n \"weakness\": false\n}]]\r\nallCards[\"60531\"] = [[{\n \"id\": \"60531\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Talent. Cursed.\",\n \"level\": 5,\n \"permanent\": true,\n \"weakness\": false\n}]]\r\nallCards[\"Sister Mary|The Nun\"] = [[{\n \"id\": \"07001\",\n \"type\": \"Investigator\",\n \"class\": \"Guardian\",\n \"traits\": \"Believer. Blessed.\"\n}]]\r\nallCards[\"07001\"] = [[{\n \"id\": \"07001\",\n \"type\": \"Investigator\",\n \"class\": \"Guardian\",\n \"traits\": \"Believer. Blessed.\"\n}]]\r\nallCards[\"Sister Mary (promo version)|The Nun\"] = [[{\n \"id\": \"07001-promo\",\n \"type\": \"Investigator\",\n \"class\": \"Guardian\",\n \"traits\": \"Believer. Blessed.\"\n}]]\r\nallCards[\"Sister Mary (Parallel)|The Nun\"] = [[{\n \"id\": \"07001-p\",\n \"type\": \"Investigator\",\n \"class\": \"Guardian\",\n \"traits\": \"Believer. Blessed.\"\n}]]\r\nallCards[\"Sister Mary (Parallel Front)|The Nun\"] = [[{\n \"id\": \"07001-pf\",\n \"type\": \"Investigator\",\n \"class\": \"Guardian\",\n \"traits\": \"Believer. Blessed.\"\n}]]\r\nallCards[\"Sister Mary (Parallel Back)|The Nun\"] = [[{\n \"id\": \"07001-pb\",\n \"type\": \"Investigator\",\n \"class\": \"Guardian\",\n \"traits\": \"Believer. Blessed.\"\n}]]\r\nallCards[\"Sister Mary|\"] = [[{\n \"id\": \"07001-m\",\n \"type\": \"Minicard\"\n}]]\r\nallCards[\"Sister Mary|Promo version\"] = [[{\n \"id\": \"07001-promo-m\",\n \"type\": \"Minicard\"\n}]]\r\nallCards[\"Amanda Sharpe|The Student\"] = [[{\n \"id\": \"07002\",\n \"type\": \"Investigator\",\n \"class\": \"Seeker\",\n \"traits\": \"Miskatonic. Scholar.\"\n}]]\r\nallCards[\"07002\"] = [[{\n \"id\": \"07002\",\n \"type\": \"Investigator\",\n \"class\": \"Seeker\",\n \"traits\": \"Miskatonic. Scholar.\"\n}]]\r\nallCards[\"Amanda Sharpe (promo version)|The Student\"] = [[{\n \"id\": \"07002-promo\",\n \"type\": \"Investigator\",\n \"class\": \"Seeker\",\n \"traits\": \"Miskatonic. Scholar.\"\n}]]\r\nallCards[\"Amanda Sharpe (Parallel)|The Student\"] = [[{\n \"id\": \"07002-p\",\n \"type\": \"Investigator\",\n \"class\": \"Seeker\",\n \"traits\": \"Miskatonic. Scholar.\"\n}]]\r\nallCards[\"Amanda Sharpe (Parallel Front)|The Student\"] = [[{\n \"id\": \"07002-pf\",\n \"type\": \"Investigator\",\n \"class\": \"Seeker\",\n \"traits\": \"Miskatonic. Scholar.\"\n}]]\r\nallCards[\"Amanda Sharpe (Parallel Back)|The Student\"] = [[{\n \"id\": \"07002-pb\",\n \"type\": \"Investigator\",\n \"class\": \"Seeker\",\n \"traits\": \"Miskatonic. Scholar.\"\n}]]\r\nallCards[\"Amanda Sharpe|\"] = [[{\n \"id\": \"07002-m\",\n \"type\": \"Minicard\"\n}]]\r\nallCards[\"Amanda Sharpe|Promo version\"] = [[{\n \"id\": \"07002-promo-m\",\n \"type\": \"Minicard\"\n}]]\r\nallCards[\"Trish Scarborough|The Spy\"] = [[{\n \"id\": \"07003\",\n \"type\": \"Investigator\",\n \"class\": \"Rogue\",\n \"traits\": \"Agency. Detective.\"\n}]]\r\nallCards[\"07003\"] = [[{\n \"id\": \"07003\",\n \"type\": \"Investigator\",\n \"class\": \"Rogue\",\n \"traits\": \"Agency. Detective.\"\n}]]\r\nallCards[\"Trish Scarborough (promo version)|The Spy\"] = [[{\n \"id\": \"07003-promo\",\n \"type\": \"Investigator\",\n \"class\": \"Rogue\",\n \"traits\": \"Agency. Detective.\"\n}]]\r\nallCards[\"Trish Scarborough (Parallel)|The Spy\"] = [[{\n \"id\": \"07003-p\",\n \"type\": \"Investigator\",\n \"class\": \"Rogue\",\n \"traits\": \"Agency. Detective.\"\n}]]\r\nallCards[\"Trish Scarborough (Parallel Front)|The Spy\"] = [[{\n \"id\": \"07003-pf\",\n \"type\": \"Investigator\",\n \"class\": \"Rogue\",\n \"traits\": \"Agency. Detective.\"\n}]]\r\nallCards[\"Trish Scarborough (Parallel Back)|The Spy\"] = [[{\n \"id\": \"07003-pb\",\n \"type\": \"Investigator\",\n \"class\": \"Rogue\",\n \"traits\": \"Agency. Detective.\"\n}]]\r\nallCards[\"Trish Scarborough|\"] = [[{\n \"id\": \"07003-m\",\n \"type\": \"Minicard\"\n}]]\r\nallCards[\"Trish Scarborough|Promo version\"] = [[{\n \"id\": \"07003-promo-m\",\n \"type\": \"Minicard\"\n}]]\r\nallCards[\"Dexter Drake|The Magician\"] = [[{\n \"id\": \"07004\",\n \"alternate_ids\": [ \"98016\" ],\n \"type\": \"Investigator\",\n \"class\": \"Mystic\",\n \"traits\": \"Sorcerer. Veteran.\"\n}]]\r\nallCards[\"07004\"] = [[{\n \"id\": \"07004\",\n \"alternate_ids\": [ \"98016\" ],\n \"type\": \"Investigator\",\n \"class\": \"Mystic\",\n \"traits\": \"Sorcerer. Veteran.\"\n}]]\r\nallCards[\"Dexter Drake (promo version)|The Magician\"] = [[{\n \"id\": \"07004-promo\",\n \"type\": \"Investigator\",\n \"class\": \"Mystic\",\n \"traits\": \"Sorcerer. Veteran.\"\n}]]\r\nallCards[\"Dexter Drake (Parallel)|The Magician\"] = [[{\n \"id\": \"07004-p\",\n \"type\": \"Investigator\",\n \"class\": \"Mystic\",\n \"traits\": \"Sorcerer. Veteran.\"\n}]]\r\nallCards[\"Dexter Drake (Parallel Front)|The Magician\"] = [[{\n \"id\": \"07004-pf\",\n \"type\": \"Investigator\",\n \"class\": \"Mystic\",\n \"traits\": \"Sorcerer. Veteran.\"\n}]]\r\nallCards[\"Dexter Drake (Parallel Back)|The Magician\"] = [[{\n \"id\": \"07004-pb\",\n \"type\": \"Investigator\",\n \"class\": \"Mystic\",\n \"traits\": \"Sorcerer. Veteran.\"\n}]]\r\nallCards[\"Dexter Drake|\"] = [[{\n \"id\": \"07004-m\",\n \"alternate_ids\": [ \"98016-m\" ],\n \"type\": \"Minicard\"\n}]]\r\nallCards[\"Dexter Drake|Promo version\"] = [[{\n \"id\": \"07004-promo-m\",\n \"type\": \"Minicard\"\n}]]\r\nallCards[\"Silas Marsh|The Sailor\"] = [[{\n \"id\": \"07005\",\n \"alternate_ids\": [ \"98013\" ],\n \"type\": \"Investigator\",\n \"class\": \"Survivor\",\n \"traits\": \"Drifter.\"\n}]]\r\nallCards[\"07005\"] = [[{\n \"id\": \"07005\",\n \"alternate_ids\": [ \"98013\" ],\n \"type\": \"Investigator\",\n \"class\": \"Survivor\",\n \"traits\": \"Drifter.\"\n}]]\r\nallCards[\"Silas Marsh (promo version)|The Sailor\"] = [[{\n \"id\": \"07005-promo\",\n \"type\": \"Investigator\",\n \"class\": \"Survivor\",\n \"traits\": \"Drifter.\"\n}]]\r\nallCards[\"Silas Marsh (Parallel)|The Sailor\"] = [[{\n \"id\": \"07005-p\",\n \"type\": \"Investigator\",\n \"class\": \"Survivor\",\n \"traits\": \"Drifter.\"\n}]]\r\nallCards[\"Silas Marsh (Parallel Front)|The Sailor\"] = [[{\n \"id\": \"07005-pf\",\n \"type\": \"Investigator\",\n \"class\": \"Survivor\",\n \"traits\": \"Drifter.\"\n}]]\r\nallCards[\"Silas Marsh (Parallel Back)|The Sailor\"] = [[{\n \"id\": \"07005-pb\",\n \"type\": \"Investigator\",\n \"class\": \"Survivor\",\n \"traits\": \"Drifter.\"\n}]]\r\nallCards[\"Silas Marsh|\"] = [[{\n \"id\": \"07005-m\",\n \"alternate_ids\": [ \"98013-m\" ],\n \"type\": \"Minicard\"\n}]]\r\nallCards[\"Silas Marsh|Promo version\"] = [[{\n \"id\": \"07005-promo-m\",\n \"type\": \"Minicard\"\n}]]\r\nallCards[\"Guardian Angel|\"] = [[{\n \"id\": \"07006\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ritual. Blessed.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"07006\"] = [[{\n \"id\": \"07006\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ritual. Blessed.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Crisis of Faith|\"] = [[{\n \"id\": \"07007\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Madness.\",\n \"permanent\": false,\n \"weakness\": true\n}]]\r\nallCards[\"07007\"] = [[{\n \"id\": \"07007\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Madness.\",\n \"permanent\": false,\n \"weakness\": true\n}]]\r\nallCards[\"Obscure Studies|\"] = [[{\n \"id\": \"07008\",\n \"type\": \"Event\",\n \"class\": \"Neutral\",\n \"traits\": \"Insight.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"07008\"] = [[{\n \"id\": \"07008\",\n \"type\": \"Event\",\n \"class\": \"Neutral\",\n \"traits\": \"Insight.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Whispers from the Deep|\"] = [[{\n \"id\": \"07009\",\n \"type\": \"Skill\",\n \"class\": \"Neutral\",\n \"traits\": \"Curse.\",\n \"permanent\": false,\n \"weakness\": true\n}]]\r\nallCards[\"07009\"] = [[{\n \"id\": \"07009\",\n \"type\": \"Skill\",\n \"class\": \"Neutral\",\n \"traits\": \"Curse.\",\n \"permanent\": false,\n \"weakness\": true\n}]]\r\nallCards[\"In the Shadows|\"] = [[{\n \"id\": \"07010\",\n \"type\": \"Event\",\n \"class\": \"Neutral\",\n \"traits\": \"Tactic.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"07010\"] = [[{\n \"id\": \"07010\",\n \"type\": \"Event\",\n \"class\": \"Neutral\",\n \"traits\": \"Tactic.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Shadow Agents|\"] = [[{\n \"id\": \"07011\",\n \"type\": \"Enemy\",\n \"class\": \"Neutral\",\n \"traits\": \"Humanoid. Cultist.\",\n \"permanent\": false,\n \"weakness\": true\n}]]\r\nallCards[\"07011\"] = [[{\n \"id\": \"07011\",\n \"type\": \"Enemy\",\n \"class\": \"Neutral\",\n \"traits\": \"Humanoid. Cultist.\",\n \"permanent\": false,\n \"weakness\": true\n}]]\r\nallCards[\"Showmanship|\"] = [[{\n \"id\": \"07012\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Talent.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"07012\"] = [[{\n \"id\": \"07012\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Talent.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Occult Scraps|\"] = [[{\n \"id\": \"07013\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item.\",\n \"permanent\": false,\n \"weakness\": true\n}]]\r\nallCards[\"07013\"] = [[{\n \"id\": \"07013\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item.\",\n \"permanent\": false,\n \"weakness\": true\n}]]\r\nallCards[\"Sea Change Harpoon|\"] = [[{\n \"id\": \"07014\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Weapon. Melee.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"07014\"] = [[{\n \"id\": \"07014\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Weapon. Melee.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Silas's Net|\"] = [[{\n \"id\": \"07015\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Tool.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"07015\"] = [[{\n \"id\": \"07015\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Tool.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Siren Call|\"] = [[{\n \"id\": \"07016\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Curse.\",\n \"permanent\": false,\n \"weakness\": true\n}]]\r\nallCards[\"07016\"] = [[{\n \"id\": \"07016\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Curse.\",\n \"permanent\": false,\n \"weakness\": true\n}]]\r\nallCards[\"Book of Psalms|\"] = [[{\n \"id\": \"07017\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Item. Tome. Blessed.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Secret\",\n \"count\": 4\n }\n}]]\r\nallCards[\"07017\"] = [[{\n \"id\": \"07017\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Item. Tome. Blessed.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Secret\",\n \"count\": 4\n }\n}]]\r\nallCards[\"Blessed Blade|\"] = [[{\n \"id\": \"07018\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Item. Weapon. Melee. Blessed.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"07018\"] = [[{\n \"id\": \"07018\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Item. Weapon. Melee. Blessed.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Rite of Sanctification|\"] = [[{\n \"id\": \"07019\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Ritual. Blessed.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"07019\"] = [[{\n \"id\": \"07019\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Ritual. Blessed.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Hand of Fate|\"] = [[{\n \"id\": \"07020\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Spell. Blessed.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"07020\"] = [[{\n \"id\": \"07020\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Spell. Blessed.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Cryptographic Cipher|\"] = [[{\n \"id\": \"07021\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Tool.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Secret\",\n \"count\": 3\n }\n}]]\r\nallCards[\"07021\"] = [[{\n \"id\": \"07021\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Tool.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Secret\",\n \"count\": 3\n }\n}]]\r\nallCards[\"Cryptic Grimoire|Untranslated\"] = [[{\n \"id\": \"07022\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Tome. Occult.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"07022\"] = [[{\n \"id\": \"07022\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Tome. Occult.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Cryptic Grimoire|\"] = [[{\n \"id\": \"07022\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Tome. Occult.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Deep Knowledge|\"] = [[{\n \"id\": \"07023\",\n \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"traits\": \"Insight. Cursed.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"07023\"] = [[{\n \"id\": \"07023\",\n \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"traits\": \"Insight. Cursed.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Plan of Action|\"] = [[{\n \"id\": \"07024\",\n \"type\": \"Skill\",\n \"class\": \"Seeker\",\n \"traits\": \"Practiced.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"07024\"] = [[{\n \"id\": \"07024\",\n \"type\": \"Skill\",\n \"class\": \"Seeker\",\n \"traits\": \"Practiced.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\".25 Automatic|\"] = [[{\n \"id\": \"07025\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Item. Weapon. Firearm. Illicit.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Ammo\",\n \"count\": 4\n }\n}]]\r\nallCards[\"07025\"] = [[{\n \"id\": \"07025\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Item. Weapon. Firearm. Illicit.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Ammo\",\n \"count\": 4\n }\n}]]\r\nallCards[\"Dark Ritual|\"] = [[{\n \"id\": \"07026\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Ritual. Cursed.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"07026\"] = [[{\n \"id\": \"07026\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Ritual. Cursed.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Obfuscation|\"] = [[{\n \"id\": \"07027\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Spell.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Charge\",\n \"count\": 3\n }\n}]]\r\nallCards[\"07027\"] = [[{\n \"id\": \"07027\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Spell.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Charge\",\n \"count\": 3\n }\n}]]\r\nallCards[\"Faustian Bargain|\"] = [[{\n \"id\": \"07028\",\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"traits\": \"Pact. Cursed.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"07028\"] = [[{\n \"id\": \"07028\",\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"traits\": \"Pact. Cursed.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Sword Cane|\"] = [[{\n \"id\": \"07029\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Item. Relic. Weapon. Melee.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"07029\"] = [[{\n \"id\": \"07029\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Item. Relic. Weapon. Melee.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Tides of Fate|\"] = [[{\n \"id\": \"07030\",\n \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell. Blessed.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"07030\"] = [[{\n \"id\": \"07030\",\n \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell. Blessed.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Ward of Radiance|\"] = [[{\n \"id\": \"07031\",\n \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"traits\": \"Insight. Blessed.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"07031\"] = [[{\n \"id\": \"07031\",\n \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"traits\": \"Insight. Blessed.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Promise of Power|\"] = [[{\n \"id\": \"07032\",\n \"type\": \"Skill\",\n \"class\": \"Mystic\",\n \"traits\": \"Practiced. Cursed.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"07032\"] = [[{\n \"id\": \"07032\",\n \"type\": \"Skill\",\n \"class\": \"Mystic\",\n \"traits\": \"Practiced. Cursed.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Token of Faith|\"] = [[{\n \"id\": \"07033\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Item. Charm.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"07033\"] = [[{\n \"id\": \"07033\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Item. Charm.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Keep Faith|\"] = [[{\n \"id\": \"07034\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Fortune. Blessed.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"07034\"] = [[{\n \"id\": \"07034\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Fortune. Blessed.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Predestined|\"] = [[{\n \"id\": \"07035\",\n \"type\": \"Skill\",\n \"class\": \"Survivor\",\n \"traits\": \"Fortune. Blessed.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"07035\"] = [[{\n \"id\": \"07035\",\n \"type\": \"Skill\",\n \"class\": \"Survivor\",\n \"traits\": \"Fortune. Blessed.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Beloved|\"] = [[{\n \"id\": \"07036\",\n \"type\": \"Skill\",\n \"class\": \"Survivor\",\n \"traits\": \"Innate. Blessed.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"07036\"] = [[{\n \"id\": \"07036\",\n \"type\": \"Skill\",\n \"class\": \"Survivor\",\n \"traits\": \"Innate. Blessed.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Tempt Fate|\"] = [[{\n \"id\": \"07037\",\n \"type\": \"Event\",\n \"class\": \"Neutral\",\n \"traits\": \"Fortune. Blessed. Cursed.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"07037\"] = [[{\n \"id\": \"07037\",\n \"type\": \"Event\",\n \"class\": \"Neutral\",\n \"traits\": \"Fortune. Blessed. Cursed.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Accursed Follower|\"] = [[{\n \"id\": \"07038\",\n \"type\": \"Enemy\",\n \"class\": \"Neutral\",\n \"traits\": \"Humanoid. Cultist. Cursed.\",\n \"permanent\": false,\n \"weakness\": true,\n \"basicWeaknessCount\": 2\n}]]\r\nallCards[\"07038\"] = [[{\n \"id\": \"07038\",\n \"type\": \"Enemy\",\n \"class\": \"Neutral\",\n \"traits\": \"Humanoid. Cultist. Cursed.\",\n \"permanent\": false,\n \"weakness\": true,\n \"basicWeaknessCount\": 2\n}]]\r\nallCards[\"Dread Curse|\"] = [[{\n \"id\": \"07039\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Curse.\",\n \"permanent\": false,\n \"weakness\": true,\n \"basicWeaknessCount\": 2\n}]]\r\nallCards[\"07039\"] = [[{\n \"id\": \"07039\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Curse.\",\n \"permanent\": false,\n \"weakness\": true,\n \"basicWeaknessCount\": 2\n}]]\r\nallCards[\"Day of Reckoning|\"] = [[{\n \"id\": \"07040\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Endtimes.\",\n \"permanent\": false,\n \"weakness\": true,\n \"basicWeaknessCount\": 1\n}]]\r\nallCards[\"07040\"] = [[{\n \"id\": \"07040\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Endtimes.\",\n \"permanent\": false,\n \"weakness\": true,\n \"basicWeaknessCount\": 1\n}]]\r\nallCards[\"Thomas Dawson|Soldier in a New War\"] = [[{\n \"id\": \"07062\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Agency. Veteran.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"07062\"] = [[{\n \"id\": \"07062\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Agency. Veteran.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Thomas Dawson|\"] = [[{\n \"id\": \"07062\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Agency. Veteran.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Thomas Dawson|Soldier in a New War\"] = [[{\n \"id\": \"07082\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Agency. Veteran.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"07082\"] = [[{\n \"id\": \"07082\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Agency. Veteran.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Thomas Dawson|\"] = [[{\n \"id\": \"07082\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Agency. Veteran.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Elina Harper|Knows Too Much\"] = [[{\n \"id\": \"07083\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Agency. Detective.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"07083\"] = [[{\n \"id\": \"07083\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Agency. Detective.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Elina Harper|\"] = [[{\n \"id\": \"07083\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Agency. Detective.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Riot Whistle|\"] = [[{\n \"id\": \"07108\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Item. Tool.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"07108\"] = [[{\n \"id\": \"07108\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Item. Tool.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Righteous Hunt (1)|\"] = [[{\n \"id\": \"07109\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Tactic. Blessed.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"07109\"] = [[{\n \"id\": \"07109\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Tactic. Blessed.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Sacred Covenant (2)|\"] = [[{\n \"id\": \"07110\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Covenant. Blessed.\",\n \"level\": 2,\n \"permanent\": true,\n \"weakness\": false\n}]]\r\nallCards[\"07110\"] = [[{\n \"id\": \"07110\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Covenant. Blessed.\",\n \"level\": 2,\n \"permanent\": true,\n \"weakness\": false\n}]]\r\nallCards[\"Eldritch Sophist|\"] = [[{\n \"id\": \"07111\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Ally. Miskatonic\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Secret\",\n \"count\": 3\n }\n}]]\r\nallCards[\"07111\"] = [[{\n \"id\": \"07111\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Ally. Miskatonic\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Secret\",\n \"count\": 3\n }\n}]]\r\nallCards[\"Stirring Up Trouble (1)|\"] = [[{\n \"id\": \"07112\",\n \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"traits\": \"Insight. Cursed.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"07112\"] = [[{\n \"id\": \"07112\",\n \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"traits\": \"Insight. Cursed.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Blasphemous Covenant (2)|\"] = [[{\n \"id\": \"07113\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Covenant. Cursed.\",\n \"level\": 2,\n \"permanent\": true,\n \"weakness\": false\n}]]\r\nallCards[\"07113\"] = [[{\n \"id\": \"07113\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Covenant. Cursed.\",\n \"level\": 2,\n \"permanent\": true,\n \"weakness\": false\n}]]\r\nallCards[\"Breaking and Entering|\"] = [[{\n \"id\": \"07114\",\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"traits\": \"Trick.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"07114\"] = [[{\n \"id\": \"07114\",\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"traits\": \"Trick.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Skeptic (1)|\"] = [[{\n \"id\": \"07115\",\n \"type\": \"Skill\",\n \"class\": \"Rogue\",\n \"traits\": \"Practiced.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"07115\"] = [[{\n \"id\": \"07115\",\n \"type\": \"Skill\",\n \"class\": \"Rogue\",\n \"traits\": \"Practiced.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"False Covenant (2)|\"] = [[{\n \"id\": \"07116\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Covenant. Cursed.\",\n \"level\": 2,\n \"permanent\": true,\n \"weakness\": false\n}]]\r\nallCards[\"07116\"] = [[{\n \"id\": \"07116\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Covenant. Cursed.\",\n \"level\": 2,\n \"permanent\": true,\n \"weakness\": false\n}]]\r\nallCards[\"Armageddon|\"] = [[{\n \"id\": \"07117\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell. Cursed.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Charge\",\n \"count\": 3\n }\n}]]\r\nallCards[\"07117\"] = [[{\n \"id\": \"07117\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell. Cursed.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Charge\",\n \"count\": 3\n }\n}]]\r\nallCards[\"Eye of Chaos|\"] = [[{\n \"id\": \"07118\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell. Cursed.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Charge\",\n \"count\": 3\n }\n}]]\r\nallCards[\"07118\"] = [[{\n \"id\": \"07118\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell. Cursed.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Charge\",\n \"count\": 3\n }\n}]]\r\nallCards[\"Shroud of Shadows|\"] = [[{\n \"id\": \"07119\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell. Cursed.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Charge\",\n \"count\": 3\n }\n}]]\r\nallCards[\"07119\"] = [[{\n \"id\": \"07119\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell. Cursed.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Charge\",\n \"count\": 3\n }\n}]]\r\nallCards[\"Paradoxical Covenant (2)|\"] = [[{\n \"id\": \"07120\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Covenant. Blessed. Cursed.\",\n \"level\": 2,\n \"permanent\": true,\n \"weakness\": false\n}]]\r\nallCards[\"07120\"] = [[{\n \"id\": \"07120\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Covenant. Blessed. Cursed.\",\n \"level\": 2,\n \"permanent\": true,\n \"weakness\": false\n}]]\r\nallCards[\"Mariner's Compass|\"] = [[{\n \"id\": \"07121\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Item. Tool.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"07121\"] = [[{\n \"id\": \"07121\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Item. Tool.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Ancient Covenant (2)|\"] = [[{\n \"id\": \"07122\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Covenant. Blessed.\",\n \"level\": 2,\n \"permanent\": true,\n \"weakness\": false\n}]]\r\nallCards[\"07122\"] = [[{\n \"id\": \"07122\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Covenant. Blessed.\",\n \"level\": 2,\n \"permanent\": true,\n \"weakness\": false\n}]]\r\nallCards[\"Joe Sargent|Rattletrap Bus Driver\"] = [[{\n \"id\": \"07150\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Hybrid.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"07150\"] = [[{\n \"id\": \"07150\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Hybrid.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Joe Sargent|\"] = [[{\n \"id\": \"07150\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Hybrid.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Teachings of the Order|\"] = [[{\n \"id\": \"07151\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Tome.\",\n \"permanent\": true,\n \"weakness\": false\n}]]\r\nallCards[\"07151\"] = [[{\n \"id\": \"07151\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Tome.\",\n \"permanent\": true,\n \"weakness\": false\n}]]\r\nallCards[\"Gloria Goldberg|The Writer\"] = [[{\n \"id\": \"98019\",\n \"type\": \"Investigator\",\n \"class\": \"Mystic\",\n \"traits\": \"Clairvoyant.\"\n}]]\r\nallCards[\"98019\"] = [[{\n \"id\": \"98019\",\n \"type\": \"Investigator\",\n \"class\": \"Mystic\",\n \"traits\": \"Clairvoyant.\"\n}]]\r\nallCards[\"Gloria Goldberg (promo version)|The Writer\"] = [[{\n \"id\": \"98019-promo\",\n \"type\": \"Investigator\",\n \"class\": \"Mystic\",\n \"traits\": \"Clairvoyant.\"\n}]]\r\nallCards[\"Gloria Goldberg (Parallel)|The Writer\"] = [[{\n \"id\": \"98019-p\",\n \"type\": \"Investigator\",\n \"class\": \"Mystic\",\n \"traits\": \"Clairvoyant.\"\n}]]\r\nallCards[\"Gloria Goldberg (Parallel Front)|The Writer\"] = [[{\n \"id\": \"98019-pf\",\n \"type\": \"Investigator\",\n \"class\": \"Mystic\",\n \"traits\": \"Clairvoyant.\"\n}]]\r\nallCards[\"Gloria Goldberg (Parallel Back)|The Writer\"] = [[{\n \"id\": \"98019-pb\",\n \"type\": \"Investigator\",\n \"class\": \"Mystic\",\n \"traits\": \"Clairvoyant.\"\n}]]\r\nallCards[\"Gloria Goldberg|\"] = [[{\n \"id\": \"98019-m\",\n \"type\": \"Minicard\"\n}]]\r\nallCards[\"Gloria Goldberg|Promo version\"] = [[{\n \"id\": \"98019-promo-m\",\n \"type\": \"Minicard\"\n}]]\r\nallCards[\"Ruth Westmacott|Dark Revelations\"] = [[{\n \"id\": \"98020\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Artist.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"98020\"] = [[{\n \"id\": \"98020\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Artist.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Ruth Westmacott|\"] = [[{\n \"id\": \"98020\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Artist.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Liber Omnium Finium|\"] = [[{\n \"id\": \"98021\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Endtimes.\",\n \"permanent\": false,\n \"weakness\": true\n}]]\r\nallCards[\"98021\"] = [[{\n \"id\": \"98021\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Endtimes.\",\n \"permanent\": false,\n \"weakness\": true\n}]]\r\nallCards[\"Heirloom of Hyperborea|Artifact from Another Life (Advanced)\"] = [[{\n \"id\": \"90018\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Relic.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"90018\"] = [[{\n \"id\": \"90018\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Relic.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Heirloom of Hyperborea|\"] = [[{\n \"id\": \"90018\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Relic.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Dark Memory|Advanced\"] = [[{\n \"id\": \"90019\",\n \"type\": \"Event\",\n \"class\": \"Neutral\",\n \"traits\": \"Spell.\",\n \"permanent\": false,\n \"weakness\": true\n}]]\r\nallCards[\"90019\"] = [[{\n \"id\": \"90019\",\n \"type\": \"Event\",\n \"class\": \"Neutral\",\n \"traits\": \"Spell.\",\n \"permanent\": false,\n \"weakness\": true\n}]]\r\nallCards[\"Keen Eye|\"] = [[{\n \"id\": \"07152\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Talent.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"07152\"] = [[{\n \"id\": \"07152\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Talent.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Radiant Smite (1)|\"] = [[{\n \"id\": \"07153\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Spell. Spirit. Blessed.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"07153\"] = [[{\n \"id\": \"07153\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Spell. Spirit. Blessed.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"The Truth Beckons|\"] = [[{\n \"id\": \"07154\",\n \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"traits\": \"Insight.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"07154\"] = [[{\n \"id\": \"07154\",\n \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"traits\": \"Insight.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Gaze of Ouraxsh (2)|\"] = [[{\n \"id\": \"07155\",\n \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"traits\": \"Spell. Cursed.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"07155\"] = [[{\n \"id\": \"07155\",\n \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"traits\": \"Spell. Cursed.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Priest of Two Faiths (1)|\"] = [[{\n \"id\": \"07156\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Ally. Blessed. Cursed.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"07156\"] = [[{\n \"id\": \"07156\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Ally. Blessed. Cursed.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Under Surveillance (1)|\"] = [[{\n \"id\": \"07157\",\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"traits\": \"Tactic. Trap.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"07157\"] = [[{\n \"id\": \"07157\",\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"traits\": \"Tactic. Trap.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Blood Pact|\"] = [[{\n \"id\": \"07158\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell. Pact.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"07158\"] = [[{\n \"id\": \"07158\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell. Pact.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Abyssal Tome (2)|\"] = [[{\n \"id\": \"07159\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Item. Tome.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"07159\"] = [[{\n \"id\": \"07159\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Item. Tome.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Butterfly Effect (1)|\"] = [[{\n \"id\": \"07160\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Paradox. Blessed. Cursed.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"07160\"] = [[{\n \"id\": \"07160\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Paradox. Blessed. Cursed.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Third Time's a Charm (2)|\"] = [[{\n \"id\": \"07161\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Spirit.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"07161\"] = [[{\n \"id\": \"07161\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Spirit.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Manipulate Destiny (2)|\"] = [[{\n \"id\": \"07162\",\n \"type\": \"Event\",\n \"class\": \"Neutral\",\n \"traits\": \"Spell.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"07162\"] = [[{\n \"id\": \"07162\",\n \"type\": \"Event\",\n \"class\": \"Neutral\",\n \"traits\": \"Spell.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Fishing Vessel|\"] = [[{\n \"id\": \"07178\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Vehicle.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"07178\"] = [[{\n \"id\": \"07178\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Vehicle.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Waveworn Idol|\"] = [[{\n \"id\": \"07179\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Relic.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"07179\"] = [[{\n \"id\": \"07179\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Relic.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Awakened Mantle|\"] = [[{\n \"id\": \"07180\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Relic. Clothing.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"07180\"] = [[{\n \"id\": \"07180\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Relic. Clothing.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Headdress of Y'ha-nthlei|\"] = [[{\n \"id\": \"07181\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Relic.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"07181\"] = [[{\n \"id\": \"07181\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Relic.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Enchanted Armor (2)|\"] = [[{\n \"id\": \"07189\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Ritual. Armor.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"07189\"] = [[{\n \"id\": \"07189\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Ritual. Armor.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Blessing of Isis (3)|\"] = [[{\n \"id\": \"07190\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Ritual. Blessed.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"07190\"] = [[{\n \"id\": \"07190\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Ritual. Blessed.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Cryptic Grimoire (4)|Text of the Elder Herald\"] = [[{\n \"id\": \"07191\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Tome. Cursed.\",\n \"level\": 4,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"07191\"] = [[{\n \"id\": \"07191\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Tome. Cursed.\",\n \"level\": 4,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Cryptic Grimoire (4)|\"] = [[{\n \"id\": \"07191\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Tome. Cursed.\",\n \"level\": 4,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Cryptic Grimoire (4)|Text of the Elder Guardian\"] = [[{\n \"id\": \"07192\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Tome. Blessed.\",\n \"level\": 4,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"07192\"] = [[{\n \"id\": \"07192\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Tome. Blessed.\",\n \"level\": 4,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Cryptic Grimoire (4)|\"] = [[{\n \"id\": \"07192\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Tome. Blessed.\",\n \"level\": 4,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"R�astrad (1)|\"] = [[{\n \"id\": \"07193\",\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"traits\": \"Spell. Spirit. Cursed.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"07193\"] = [[{\n \"id\": \"07193\",\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"traits\": \"Spell. Spirit. Cursed.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Tristan Botley (2)|Fixer for Hire\"] = [[{\n \"id\": \"07194\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Ally. Criminal. Cursed.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"07194\"] = [[{\n \"id\": \"07194\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Ally. Criminal. Cursed.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Tristan Botley (2)|\"] = [[{\n \"id\": \"07194\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Ally. Criminal. Cursed.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Curse of Aeons (3)|\"] = [[{\n \"id\": \"07195\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Ritual. Cursed.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"07195\"] = [[{\n \"id\": \"07195\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Ritual. Cursed.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Unrelenting (1)|\"] = [[{\n \"id\": \"07196\",\n \"type\": \"Skill\",\n \"class\": \"Survivor\",\n \"traits\": \"Practiced.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"07196\"] = [[{\n \"id\": \"07196\",\n \"type\": \"Skill\",\n \"class\": \"Survivor\",\n \"traits\": \"Practiced.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Signum Crucis (2)|\"] = [[{\n \"id\": \"07197\",\n \"type\": \"Skill\",\n \"class\": \"Survivor\",\n \"traits\": \"Practiced. Blessed.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"07197\"] = [[{\n \"id\": \"07197\",\n \"type\": \"Skill\",\n \"class\": \"Survivor\",\n \"traits\": \"Practiced. Blessed.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Thomas Dawson's Car|Running\"] = [[{\n \"id\": \"07211a\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Vehicle.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"07211a\"] = [[{\n \"id\": \"07211a\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Vehicle.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Thomas Dawson's Car|\"] = [[{\n \"id\": \"07211a\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Vehicle.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Elina Harper's Car|Running\"] = [[{\n \"id\": \"07212a\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Vehicle.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"07212a\"] = [[{\n \"id\": \"07212a\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Vehicle.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Elina Harper's Car|\"] = [[{\n \"id\": \"07212a\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Vehicle.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Holy Rosary (2)|\"] = [[{\n \"id\": \"07220\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Item. Charm. Blessed.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"07220\"] = [[{\n \"id\": \"07220\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Item. Charm. Blessed.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Shield of Faith (2)|\"] = [[{\n \"id\": \"07221\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Spell. Blessed.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"07221\"] = [[{\n \"id\": \"07221\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Spell. Blessed.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Fey (1)|\"] = [[{\n \"id\": \"07222\",\n \"type\": \"Skill\",\n \"class\": \"Seeker\",\n \"traits\": \"Innate. Cursed.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"07222\"] = [[{\n \"id\": \"07222\",\n \"type\": \"Skill\",\n \"class\": \"Seeker\",\n \"traits\": \"Innate. Cursed.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Guided by the Unseen (3)|\"] = [[{\n \"id\": \"07223\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Ritual.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Secret\",\n \"count\": 4\n }\n}]]\r\nallCards[\"07223\"] = [[{\n \"id\": \"07223\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Ritual.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Secret\",\n \"count\": 4\n }\n}]]\r\nallCards[\"\\\"Lucky\\\" Penny (2)|Omen of Misfortune\"] = [[{\n \"id\": \"07224\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Item. Charm. Cursed.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"07224\"] = [[{\n \"id\": \"07224\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Item. Charm. Cursed.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\\\"Lucky\\\" Penny (2)|\"] = [[{\n \"id\": \"07224\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Item. Charm. Cursed.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Eye of the Djinn (2)|Vessel of Good and Evil\"] = [[{\n \"id\": \"07225\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Item. Relic. Blessed. Cursed.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"07225\"] = [[{\n \"id\": \"07225\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Item. Relic. Blessed. Cursed.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Eye of the Djinn (2)|\"] = [[{\n \"id\": \"07225\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Item. Relic. Blessed. Cursed.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Armageddon (4)|\"] = [[{\n \"id\": \"07226\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell. Cursed.\",\n \"level\": 4,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Charge\",\n \"count\": 3\n }\n}]]\r\nallCards[\"07226\"] = [[{\n \"id\": \"07226\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell. Cursed.\",\n \"level\": 4,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Charge\",\n \"count\": 3\n }\n}]]\r\nallCards[\"Eye of Chaos (4)|\"] = [[{\n \"id\": \"07227\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell. Cursed.\",\n \"level\": 4,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Charge\",\n \"count\": 3\n }\n}]]\r\nallCards[\"07227\"] = [[{\n \"id\": \"07227\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell. Cursed.\",\n \"level\": 4,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Charge\",\n \"count\": 3\n }\n}]]\r\nallCards[\"Shroud of Shadows (4)|\"] = [[{\n \"id\": \"07228\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell. Cursed.\",\n \"level\": 4,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Charge\",\n \"count\": 3\n }\n}]]\r\nallCards[\"07228\"] = [[{\n \"id\": \"07228\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell. Cursed.\",\n \"level\": 4,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Charge\",\n \"count\": 3\n }\n}]]\r\nallCards[\"Spirit of Humanity (2)|\"] = [[{\n \"id\": \"07229\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Ritual. Blessed. Cursed.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"07229\"] = [[{\n \"id\": \"07229\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Ritual. Blessed. Cursed.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Harmony Restored (2)|\"] = [[{\n \"id\": \"07230\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Fortune. Blessed.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"07230\"] = [[{\n \"id\": \"07230\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Fortune. Blessed.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Enchant Weapon (3)|\"] = [[{\n \"id\": \"07261\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Spell. Upgrade.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"07261\"] = [[{\n \"id\": \"07261\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Spell. Upgrade.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Nephthys (4)|Huntress of Bast\"] = [[{\n \"id\": \"07262\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Ally. Blessed.\",\n \"level\": 4,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"07262\"] = [[{\n \"id\": \"07262\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Ally. Blessed.\",\n \"level\": 4,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Nephthys (4)|\"] = [[{\n \"id\": \"07262\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Ally. Blessed.\",\n \"level\": 4,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"The Stygian Eye (3)|\"] = [[{\n \"id\": \"07263\",\n \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"traits\": \"Insight. Cursed.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"07263\"] = [[{\n \"id\": \"07263\",\n \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"traits\": \"Insight. Cursed.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Hyperawareness (4)|\"] = [[{\n \"id\": \"07264\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Talent.\",\n \"level\": 4,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Resource\",\n \"count\": 2\n }\n}]]\r\nallCards[\"07264\"] = [[{\n \"id\": \"07264\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Talent.\",\n \"level\": 4,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Resource\",\n \"count\": 2\n }\n}]]\r\nallCards[\"Geas (2)|\"] = [[{\n \"id\": \"07265\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Pact.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"07265\"] = [[{\n \"id\": \"07265\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Pact.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Hard Knocks (4)|\"] = [[{\n \"id\": \"07266\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Talent.\",\n \"level\": 4,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Resource\",\n \"count\": 2\n }\n}]]\r\nallCards[\"07266\"] = [[{\n \"id\": \"07266\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Talent.\",\n \"level\": 4,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Resource\",\n \"count\": 2\n }\n}]]\r\nallCards[\"Ikiaq (3)|The Council's Chosen\"] = [[{\n \"id\": \"07267\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Ally. Sorcerer.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"07267\"] = [[{\n \"id\": \"07267\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Ally. Sorcerer.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Ikiaq (3)|\"] = [[{\n \"id\": \"07267\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Ally. Sorcerer.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Flute of the Outer Gods (4)|\"] = [[{\n \"id\": \"07268\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Item. Instrument. Relic. Cursed.\",\n \"level\": 4,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"07268\"] = [[{\n \"id\": \"07268\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Item. Instrument. Relic. Cursed.\",\n \"level\": 4,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"A Watchful Peace (3)|\"] = [[{\n \"id\": \"07269\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Spirit. Blessed.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"07269\"] = [[{\n \"id\": \"07269\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Spirit. Blessed.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"A Watchful Peace (3) (Taboo)|\"] = [[{\n \"id\": \"07269-t\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Spirit. Blessed.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Dig Deep (4)|\"] = [[{\n \"id\": \"07270\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Talent.\",\n \"level\": 4,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Resource\",\n \"count\": 2\n }\n}]]\r\nallCards[\"07270\"] = [[{\n \"id\": \"07270\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Talent.\",\n \"level\": 4,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Resource\",\n \"count\": 2\n }\n}]]\r\nallCards[\"Favor of the Moon (1)|\"] = [[{\n \"id\": \"07271\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Pact. Cursed.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"07271\"] = [[{\n \"id\": \"07271\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Pact. Cursed.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Favor of the Sun (1)|\"] = [[{\n \"id\": \"07272\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Pact. Blessed.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"07272\"] = [[{\n \"id\": \"07272\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Pact. Blessed.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Purifying Corruption (4)|\"] = [[{\n \"id\": \"07273\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ritual. Blessed. Cursed.\",\n \"level\": 4,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"07273\"] = [[{\n \"id\": \"07273\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ritual. Blessed. Cursed.\",\n \"level\": 4,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Y'ha-nthlei Statue|Dynamic Relic\"] = [[{\n \"id\": \"07300b\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Relic. Blessed.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"07300b\"] = [[{\n \"id\": \"07300b\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Relic. Blessed.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Y'ha-nthlei Statue|\"] = [[{\n \"id\": \"07300b\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Relic. Blessed.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Hallow (3)|\"] = [[{\n \"id\": \"07301\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Spell. Blessed.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"07301\"] = [[{\n \"id\": \"07301\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Spell. Blessed.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Hallow (3) (Taboo)|\"] = [[{\n \"id\": \"07301-t\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Spell. Blessed.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Holy Spear (5)|\"] = [[{\n \"id\": \"07302\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Item. Weapon. Melee. Blessed.\",\n \"level\": 5,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"07302\"] = [[{\n \"id\": \"07302\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Item. Weapon. Melee. Blessed.\",\n \"level\": 5,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Ancestral Knowledge (3)|\"] = [[{\n \"id\": \"07303\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Talent.\",\n \"level\": 3,\n \"permanent\": true,\n \"weakness\": false\n}]]\r\nallCards[\"07303\"] = [[{\n \"id\": \"07303\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Talent.\",\n \"level\": 3,\n \"permanent\": true,\n \"weakness\": false\n}]]\r\nallCards[\"Ariadne's Twine (3)|\"] = [[{\n \"id\": \"07304\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Ritual.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"07304\"] = [[{\n \"id\": \"07304\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Ritual.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\".25 Automatic (2)|\"] = [[{\n \"id\": \"07305\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Item. Weapon. Firearm. Illicit.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Ammo\",\n \"count\": 4\n }\n}]]\r\nallCards[\"07305\"] = [[{\n \"id\": \"07305\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Item. Weapon. Firearm. Illicit.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Ammo\",\n \"count\": 4\n }\n}]]\r\nallCards[\"Justify the Means (3)|\"] = [[{\n \"id\": \"07306\",\n \"type\": \"Skill\",\n \"class\": \"Rogue\",\n \"traits\": \"Practiced. Cursed.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"07306\"] = [[{\n \"id\": \"07306\",\n \"type\": \"Skill\",\n \"class\": \"Rogue\",\n \"traits\": \"Practiced. Cursed.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Lucky Dice (3)|...Or Are They?\"] = [[{\n \"id\": \"07307\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Item. Relic.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"07307\"] = [[{\n \"id\": \"07307\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Item. Relic.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Lucky Dice (3)|\"] = [[{\n \"id\": \"07307\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Item. Relic.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Rite of Equilibrium (5)|\"] = [[{\n \"id\": \"07308\",\n \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell. Blessed. Cursed.\",\n \"level\": 5,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"07308\"] = [[{\n \"id\": \"07308\",\n \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell. Blessed. Cursed.\",\n \"level\": 5,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Jacob Morrison (3)|Coast Guard Captain\"] = [[{\n \"id\": \"07309\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Ally. Blessed.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"07309\"] = [[{\n \"id\": \"07309\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Ally. Blessed.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Jacob Morrison (3)|\"] = [[{\n \"id\": \"07309\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Ally. Blessed.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Shrine of the Moirai (3)|\"] = [[{\n \"id\": \"07310\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Fortune. Blessed. Cursed.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Offering\",\n \"count\": 3\n }\n}]]\r\nallCards[\"07310\"] = [[{\n \"id\": \"07310\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Fortune. Blessed. Cursed.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Offering\",\n \"count\": 3\n }\n}]]\r\nallCards[\"Diving Suit|\"] = [[{\n \"id\": \"07338\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Armor.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"07338\"] = [[{\n \"id\": \"07338\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Armor.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Directive|Due Diligence\"] = [[{\n \"id\": \"90025\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"permanent\": true,\n \"weakness\": false\n}]]\r\nallCards[\"90025\"] = [[{\n \"id\": \"90025\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"permanent\": true,\n \"weakness\": false\n}]]\r\nallCards[\"Directive|\"] = [[{\n \"id\": \"90025\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"permanent\": true,\n \"weakness\": false\n}]]\r\nallCards[\"Directive|Red Tape\"] = [[{\n \"id\": \"90026\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"permanent\": true,\n \"weakness\": false\n}]]\r\nallCards[\"90026\"] = [[{\n \"id\": \"90026\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"permanent\": true,\n \"weakness\": false\n}]]\r\nallCards[\"Directive|\"] = [[{\n \"id\": \"90026\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"permanent\": true,\n \"weakness\": false\n}]]\r\nallCards[\"Directive|Consult Experts\"] = [[{\n \"id\": \"90027\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"permanent\": true,\n \"weakness\": false\n}]]\r\nallCards[\"90027\"] = [[{\n \"id\": \"90027\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"permanent\": true,\n \"weakness\": false\n}]]\r\nallCards[\"Directive|\"] = [[{\n \"id\": \"90027\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"permanent\": true,\n \"weakness\": false\n}]]\r\nallCards[\"Directive|Seek the Truth\"] = [[{\n \"id\": \"90028\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"permanent\": true,\n \"weakness\": false\n}]]\r\nallCards[\"90028\"] = [[{\n \"id\": \"90028\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"permanent\": true,\n \"weakness\": false\n}]]\r\nallCards[\"Directive|\"] = [[{\n \"id\": \"90028\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"permanent\": true,\n \"weakness\": false\n}]]\r\nallCards[\"Directive|Leave No Doubt\"] = [[{\n \"id\": \"90029\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"permanent\": true,\n \"weakness\": false\n}]]\r\nallCards[\"90029\"] = [[{\n \"id\": \"90029\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"permanent\": true,\n \"weakness\": false\n}]]\r\nallCards[\"Directive|\"] = [[{\n \"id\": \"90029\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"permanent\": true,\n \"weakness\": false\n}]]\r\nallCards[\"Roland's .38 Special|Advanced\"] = [[{\n \"id\": \"90030\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Weapon. Firearm.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"90030\"] = [[{\n \"id\": \"90030\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Weapon. Firearm.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Cover Up|Advanced\"] = [[{\n \"id\": \"90031\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Task.\",\n \"permanent\": false,\n \"weakness\": true\n}]]\r\nallCards[\"90031\"] = [[{\n \"id\": \"90031\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Task.\",\n \"permanent\": false,\n \"weakness\": true\n}]]\r\nallCards[\"The Star � XVII (3)|You Have Been Chosen\"] = [[{\n \"id\": \"54001\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Tarot.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"54001\"] = [[{\n \"id\": \"54001\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Tarot.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"The Star � XVII (3)|\"] = [[{\n \"id\": \"54001\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Tarot.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Hallowed Mirror (3)|\"] = [[{\n \"id\": \"54002\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Item. Relic. Occult. Blessed.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false,\n \"bonded\": [\n {\n \"id\": \"05314\",\n \"count\": 3\n }\n ]\n}]]\r\nallCards[\"54002\"] = [[{\n \"id\": \"54002\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Item. Relic. Occult. Blessed.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false,\n \"bonded\": [\n {\n \"id\": \"05314\",\n \"count\": 3\n }\n ]\n}]]\r\nallCards[\"The World � XXI (3)|The Journey is Complete\"] = [[{\n \"id\": \"54003\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Tarot.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"54003\"] = [[{\n \"id\": \"54003\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Tarot.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"The World � XXI (3)|\"] = [[{\n \"id\": \"54003\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Tarot.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Occult Lexicon (3)|\"] = [[{\n \"id\": \"54004\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Tome. Occult.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false,\n \"bonded\": [\n {\n \"id\": \"05317\",\n \"count\": 3\n }\n ]\n}]]\r\nallCards[\"54004\"] = [[{\n \"id\": \"54004\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Tome. Occult.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false,\n \"bonded\": [\n {\n \"id\": \"05317\",\n \"count\": 3\n }\n ]\n}]]\r\nallCards[\"Knight of Swords (3)|Charge Ever Onward\"] = [[{\n \"id\": \"54005\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Tarot.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"54005\"] = [[{\n \"id\": \"54005\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Tarot.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Knight of Swords (3)|\"] = [[{\n \"id\": \"54005\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Tarot.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Well Connected (3)|\"] = [[{\n \"id\": \"54006\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Condition.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"54006\"] = [[{\n \"id\": \"54006\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Condition.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"The Hierophant � V (3)|Your True Master Awaits\"] = [[{\n \"id\": \"54007\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Tarot.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"54007\"] = [[{\n \"id\": \"54007\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Tarot.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"The Hierophant � V (3)|\"] = [[{\n \"id\": \"54007\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Tarot.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Sign Magick (3)|\"] = [[{\n \"id\": \"54008\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Ritual. Talent.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"54008\"] = [[{\n \"id\": \"54008\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Ritual. Talent.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Nine of Rods (3)|Every Trial a Lesson\"] = [[{\n \"id\": \"54009\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Tarot.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"54009\"] = [[{\n \"id\": \"54009\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Tarot.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Nine of Rods (3)|\"] = [[{\n \"id\": \"54009\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Tarot.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Trial by Fire (3)|\"] = [[{\n \"id\": \"54010\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Spirit.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"54010\"] = [[{\n \"id\": \"54010\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Spirit.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"The Fool � 0 (3)|Unlimited Potential\"] = [[{\n \"id\": \"54011\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Tarot.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"54011\"] = [[{\n \"id\": \"54011\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Tarot.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"The Fool � 0 (3)|\"] = [[{\n \"id\": \"54011\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Tarot.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Moon Pendant (2)|\"] = [[{\n \"id\": \"54012\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Charm.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"54012\"] = [[{\n \"id\": \"54012\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Charm.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Observed (4)|\"] = [[{\n \"id\": \"54013\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Blessed.\",\n \"level\": 4,\n \"permanent\": true,\n \"weakness\": false\n}]]\r\nallCards[\"54013\"] = [[{\n \"id\": \"54013\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Blessed.\",\n \"level\": 4,\n \"permanent\": true,\n \"weakness\": false\n}]]\r\nallCards[\"Damned|\"] = [[{\n \"id\": \"54014\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Curse. Omen.\",\n \"permanent\": true,\n \"weakness\": true,\n \"basicWeaknessCount\": 1\n}]]\r\nallCards[\"54014\"] = [[{\n \"id\": \"54014\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Curse. Omen.\",\n \"permanent\": true,\n \"weakness\": true,\n \"basicWeaknessCount\": 1\n}]]\r\nallCards[\"The Devil � XV|Your Shadow Hungers\"] = [[{\n \"id\": \"54015\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Omen. Tarot.\",\n \"permanent\": false,\n \"weakness\": true,\n \"basicWeaknessCount\": 2\n}]]\r\nallCards[\"54015\"] = [[{\n \"id\": \"54015\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Omen. Tarot.\",\n \"permanent\": false,\n \"weakness\": true,\n \"basicWeaknessCount\": 2\n}]]\r\nallCards[\"The Devil � XV|\"] = [[{\n \"id\": \"54015\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Omen. Tarot.\",\n \"permanent\": false,\n \"weakness\": true,\n \"basicWeaknessCount\": 2\n}]]\r\nallCards[\"Erynn MacAoidh|Devoted Enchantress\"] = [[{\n \"id\": \"54041\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Witch.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"54041\"] = [[{\n \"id\": \"54041\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Witch.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Erynn MacAoidh|\"] = [[{\n \"id\": \"54041\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Witch.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\n\nend)\nreturn __bundle_require(\"__root\")",
"LuaScriptState": "",
"XmlUI": "\n\r\n \r\n \r\n \r\n\r\n \r\n Step 1: Tag the Cards \r\n Enter the GUID of a Card, Bag, or Deck to tag.\r\n Card: That specific card will be tagged based on its name/description\r\n Bag/Deck: All cards in the container will be tagged\r\n\r\n Tagged cards will be moved to just below this helper. Cards which cannot be tagged will be placed in a separate pile.\r\n \r\n GUID to tag: \r\n \r\n Tag It! \r\n \r\n Step 2: Verify the Tags \r\n Enter the GUID of a Card, Bag, or Deck to verify.\r\n Card: That specific card will be have its metadata checked\r\n Deck or Bag: All cards in the container will be checked\r\n\r\n Verification will check that metadata is present and can be parsed. It does not verify that the correct metadata is present. In other words, if a card does not have an ID in the metadata it will fail, but if it has the wrong ID that will not be detected.\r\n \r\n GUID to verify: \r\n \r\n Verify It! \r\n\r\n \r\n Step 3: Bag the Cards \r\n Enter the GUID of a Bag or Deck to move all cards to the All Cards Bag.\r\n \r\n GUID to move from: \r\n \r\n All Cards Bag GUID: \r\n \r\n Bag It! \r\n \r\n\n"
}
]
},
{
"GUID": "8553dc",
"Name": "3DText",
"Transform": {
"posX": -26.7949085,
"posY": 1.25614917,
"posZ": 70.7100754,
"rotX": 90.0,
"rotY": 90.16656,
"rotZ": 0.0,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": true,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"Text": {
"Text": "EotE",
"colorstate": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"fontSize": 64
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "64a613",
"Name": "Custom_Model",
"Transform": {
"posX": 51.7726479,
"posY": 1.41773236,
"posZ": 28.52524,
"rotX": 359.920135,
"rotY": 269.998352,
"rotZ": 0.0168752987,
"scaleX": 1.0,
"scaleY": 0.139652729,
"scaleZ": 1.0
},
"Nickname": "Core/Night of the Zealot",
"Description": "",
"GMNotes": "campaigns/night_of_the_zealot.json",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0,
"a": 0.274509817
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomMesh": {
"MeshURL": "https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/core_h_MSH.obj",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/762723517667628371/18438B0A0045038A7099648AA3346DFCAA267C66/",
"NormalURL": "",
"ColliderURL": "",
"Convex": true,
"MaterialIndex": 3,
"TypeIndex": 0,
"CustomShader": {
"SpecularColor": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"SpecularIntensity": 0.0,
"SpecularSharpness": 2.0,
"FresnelStrength": 0.0
},
"CastShadows": true
},
"LuaScript": "\r\nfunction onload(saved_data)\r\n createDownloadButton()\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make Download button\r\nfunction createDownloadButton()\r\n self.createButton({\r\n label=\"Download\", click_function=\"buttonClick_download\", function_owner=self,\r\n position={0,0.1,6}, rotation={0,0,0}, height=500, width=1600,\r\n font_size=350, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by download button,\r\nfunction buttonClick_download()\r\n local params = { url = self.getGMNotes(), replace = self.guid }\r\n Global.call('placeholder_download', params)\r\nend",
"LuaScriptState": "{\"ml\":[]}",
"XmlUI": ""
},
{
"GUID": "2898f6",
"Name": "Custom_Model",
"Transform": {
"posX": 51.67179,
"posY": 1.41374171,
"posZ": 14.496109,
"rotX": 359.920135,
"rotY": 269.998047,
"rotZ": 0.0168756787,
"scaleX": 1.0,
"scaleY": 0.139652729,
"scaleZ": 1.0
},
"Nickname": "The Dunwich Legacy",
"Description": "",
"GMNotes": "campaigns/dunwich_legacy.json",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0,
"a": 0.274509817
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomMesh": {
"MeshURL": "https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/core_h_MSH.obj",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/762723517667666249/B7EB11E1C48A63D3B8AC233FF2DF0BBAD74ECC6E/",
"NormalURL": "",
"ColliderURL": "",
"Convex": true,
"MaterialIndex": 3,
"TypeIndex": 0,
"CustomShader": {
"SpecularColor": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"SpecularIntensity": 0.0,
"SpecularSharpness": 2.0,
"FresnelStrength": 0.0
},
"CastShadows": true
},
"LuaScript": "\r\nfunction onload(saved_data)\r\n createDownloadButton()\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make Download button\r\nfunction createDownloadButton()\r\n self.createButton({\r\n label=\"Download\", click_function=\"buttonClick_download\", function_owner=self,\r\n position={0,0.1,6}, rotation={0,0,0}, height=500, width=1600,\r\n font_size=350, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by download button,\r\nfunction buttonClick_download()\r\n local params = { url = self.getGMNotes(), replace = self.guid }\r\n Global.call('placeholder_download', params)\r\nend",
"LuaScriptState": "{\"ml\":{\"022ddf\":{\"lock\":false,\"pos\":{\"x\":12.2506017684937,\"y\":1.45815706253052,\"z\":-21.3054027557373},\"rot\":{\"x\":359.920135498047,\"y\":270.005859375,\"z\":0.0168654527515173}},\"30684d\":{\"lock\":false,\"pos\":{\"x\":12.2504034042358,\"y\":1.46327662467957,\"z\":-3.91980123519897},\"rot\":{\"x\":359.920135498047,\"y\":269.996826171875,\"z\":0.0168782528489828}},\"3f6ab6\":{\"lock\":false,\"pos\":{\"x\":-1.2998993396759,\"y\":1.47544133663177,\"z\":-26.7614040374756},\"rot\":{\"x\":359.920135498047,\"y\":269.992095947266,\"z\":0.0168824009597301}},\"51c0d9\":{\"lock\":false,\"pos\":{\"x\":12.252100944519,\"y\":1.47350561618805,\"z\":30.8264045715332},\"rot\":{\"x\":359.920104980469,\"y\":270.012725830078,\"z\":0.0168560966849327}},\"61f17f\":{\"lock\":false,\"pos\":{\"x\":0.27011626958847,\"y\":1.4896068572998,\"z\":28.7769508361816},\"rot\":{\"x\":359.920104980469,\"y\":270.013244628906,\"z\":0.0168534461408854}},\"684060\":{\"lock\":false,\"pos\":{\"x\":12.2503023147583,\"y\":1.45558094978333,\"z\":-30.0549011230469},\"rot\":{\"x\":359.920104980469,\"y\":270.026062011719,\"z\":0.0168375186622143}},\"87adbf\":{\"lock\":false,\"pos\":{\"x\":12.2504024505615,\"y\":1.46838784217834,\"z\":13.4375},\"rot\":{\"x\":359.920104980469,\"y\":270.018981933594,\"z\":0.0168474968522787}},\"afe7ce\":{\"lock\":false,\"pos\":{\"x\":12.2503023147583,\"y\":1.46070146560669,\"z\":-12.6661014556885},\"rot\":{\"x\":359.920135498047,\"y\":270.007263183594,\"z\":0.0168637093156576}},\"d6e449\":{\"lock\":false,\"pos\":{\"x\":12.2503032684326,\"y\":1.46581149101257,\"z\":4.68779993057251},\"rot\":{\"x\":359.920104980469,\"y\":270.010681152344,\"z\":0.0168590862303972}},\"e3aa5c\":{\"lock\":false,\"pos\":{\"x\":12.2507019042969,\"y\":1.47093117237091,\"z\":22.076904296875},\"rot\":{\"x\":359.920135498047,\"y\":269.999694824219,\"z\":0.0168740600347519}}}}",
"XmlUI": ""
},
{
"GUID": "aca04c",
"Name": "Custom_Model",
"Transform": {
"posX": 51.7268257,
"posY": 1.40943372,
"posZ": 0.126108,
"rotX": 359.920135,
"rotY": 270.002625,
"rotZ": 0.0168691725,
"scaleX": 1.0,
"scaleY": 0.139652729,
"scaleZ": 1.0
},
"Nickname": "The Path to Carcosa",
"Description": "",
"GMNotes": "campaigns/path_to_carcosa.json",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0,
"a": 0.274509817
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomMesh": {
"MeshURL": "https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/core_h_MSH.obj",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/762723517667645467/CDF71CF96691CEF2E690F71332479ACBA0697864/",
"NormalURL": "",
"ColliderURL": "",
"Convex": true,
"MaterialIndex": 3,
"TypeIndex": 0,
"CustomShader": {
"SpecularColor": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"SpecularIntensity": 0.0,
"SpecularSharpness": 2.0,
"FresnelStrength": 0.0
},
"CastShadows": true
},
"LuaScript": "\r\nfunction onload(saved_data)\r\n createDownloadButton()\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make Download button\r\nfunction createDownloadButton()\r\n self.createButton({\r\n label=\"Download\", click_function=\"buttonClick_download\", function_owner=self,\r\n position={0,0.1,6}, rotation={0,0,0}, height=500, width=1600,\r\n font_size=350, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by download button,\r\nfunction buttonClick_download()\r\n local params = { url = self.getGMNotes(), replace = self.guid }\r\n Global.call('placeholder_download', params)\r\nend",
"LuaScriptState": "{\"ml\":{\"00daab\":{\"lock\":false,\"pos\":{\"x\":0.2698,\"y\":1.4896,\"z\":28.7753},\"rot\":{\"x\":359.9201,\"y\":269.9937,\"z\":0.0169}},\"42d2dc\":{\"lock\":false,\"pos\":{\"x\":12.2504,\"y\":1.4684,\"z\":13.438},\"rot\":{\"x\":359.9201,\"y\":270.0118,\"z\":0.0169}},\"6730a1\":{\"lock\":false,\"pos\":{\"x\":12.2502,\"y\":1.4709,\"z\":22.0782},\"rot\":{\"x\":359.9201,\"y\":270.0175,\"z\":0.0168}},\"83ccd4\":{\"lock\":false,\"pos\":{\"x\":12.2515,\"y\":1.4735,\"z\":30.8271},\"rot\":{\"x\":359.9201,\"y\":270.0338,\"z\":0.0168}},\"ae8317\":{\"lock\":false,\"pos\":{\"x\":-1.3869,\"y\":1.4756,\"z\":-26.5424},\"rot\":{\"x\":359.9201,\"y\":270.0018,\"z\":0.0169}},\"bd4167\":{\"lock\":false,\"pos\":{\"x\":12.2498,\"y\":1.4633,\"z\":-3.9192},\"rot\":{\"x\":359.9201,\"y\":270.0253,\"z\":0.0168}},\"ce5d30\":{\"lock\":false,\"pos\":{\"x\":12.2503,\"y\":1.4556,\"z\":-30.0549},\"rot\":{\"x\":359.9201,\"y\":269.993,\"z\":0.0169}},\"dd8b0d\":{\"lock\":false,\"pos\":{\"x\":12.2511,\"y\":1.4582,\"z\":-21.3057},\"rot\":{\"x\":359.9201,\"y\":270.0436,\"z\":0.0168}},\"e7efa6\":{\"lock\":false,\"pos\":{\"x\":12.2492,\"y\":1.4658,\"z\":4.6891},\"rot\":{\"x\":359.9201,\"y\":270.044,\"z\":0.0168}},\"eb48ff\":{\"lock\":false,\"pos\":{\"x\":12.2496,\"y\":1.4607,\"z\":-12.6656},\"rot\":{\"x\":359.9201,\"y\":270.0235,\"z\":0.0168}}}}",
"XmlUI": ""
},
{
"GUID": "0bcf19",
"Name": "Custom_Model",
"Transform": {
"posX": 51.72293,
"posY": 1.40920758,
"posZ": -14.3491449,
"rotX": 359.920135,
"rotY": 270.010864,
"rotZ": 0.01685737,
"scaleX": 1.0,
"scaleY": 0.139652729,
"scaleZ": 1.0
},
"Nickname": "The Forgotten Age",
"Description": "",
"GMNotes": "campaigns/forgotten_age.json",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0,
"a": 0.274509817
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomMesh": {
"MeshURL": "https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/core_h_MSH.obj",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/762723517669830426/AAB750A408E887633F25AFDFB194C50A9A1518DF/",
"NormalURL": "",
"ColliderURL": "https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/core_h_COL.obj",
"Convex": true,
"MaterialIndex": 3,
"TypeIndex": 0,
"CustomShader": {
"SpecularColor": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"SpecularIntensity": 0.0,
"SpecularSharpness": 2.0,
"FresnelStrength": 0.0
},
"CastShadows": true
},
"LuaScript": "\r\nfunction onload(saved_data)\r\n createDownloadButton()\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make Download button\r\nfunction createDownloadButton()\r\n self.createButton({\r\n label=\"Download\", click_function=\"buttonClick_download\", function_owner=self,\r\n position={0,0.1,6}, rotation={0,0,0}, height=500, width=1600,\r\n font_size=350, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by download button,\r\nfunction buttonClick_download()\r\n local params = { url = self.getGMNotes(), replace = self.guid }\r\n Global.call('placeholder_download', params)\r\nend",
"LuaScriptState": "{\"ml\":{\"05e6aa\":{\"lock\":false,\"pos\":{\"x\":3.2076,\"y\":1.5459,\"z\":-36.0018},\"rot\":{\"x\":359.9201,\"y\":269.9973,\"z\":0.0169}},\"065ce1\":{\"lock\":false,\"pos\":{\"x\":12.250301361084,\"y\":1.47267210483551,\"z\":27.9864044189453},\"rot\":{\"x\":359.920104980469,\"y\":270.067016601563,\"z\":0.0167801454663277}},\"0ec59f\":{\"lock\":false,\"pos\":{\"x\":12.2521028518677,\"y\":1.4679582118988,\"z\":11.9864883422852},\"rot\":{\"x\":359.920104980469,\"y\":270.026794433594,\"z\":0.0168364979326725}},\"11f5c8\":{\"lock\":false,\"pos\":{\"x\":12.2498989105225,\"y\":1.47031724452972,\"z\":19.9865016937256},\"rot\":{\"x\":359.920104980469,\"y\":270.019836425781,\"z\":0.0168461091816425}},\"267216\":{\"lock\":false,\"pos\":{\"x\":0.270030081272125,\"y\":1.48960709571838,\"z\":28.7770729064941},\"rot\":{\"x\":359.920135498047,\"y\":270.003509521484,\"z\":0.0168672148138285}},\"2bfe00\":{\"lock\":false,\"pos\":{\"x\":12.2499866485596,\"y\":1.46560537815094,\"z\":3.98619103431702},\"rot\":{\"x\":359.920104980469,\"y\":270.025054931641,\"z\":0.0168389566242695}},\"3170ce\":{\"lock\":false,\"pos\":{\"x\":12.2468566894531,\"y\":1.46089768409729,\"z\":-12.0159311294556},\"rot\":{\"x\":359.920135498047,\"y\":269.955871582031,\"z\":0.0169354304671288}},\"48b154\":{\"lock\":false,\"pos\":{\"x\":-1.35349881649017,\"y\":1.47556257247925,\"z\":-26.6032085418701},\"rot\":{\"x\":359.920135498047,\"y\":270.002044677734,\"z\":0.0168686080724001}},\"528eda\":{\"lock\":false,\"pos\":{\"x\":3.2243275642395,\"y\":1.55490112304688,\"z\":-35.4555892944336},\"rot\":{\"x\":359.920104980469,\"y\":270.027435302734,\"z\":180.016815185547}},\"5b2403\":{\"lock\":false,\"pos\":{\"x\":12.2496175765991,\"y\":1.463250041008,\"z\":-4.01360750198364},\"rot\":{\"x\":359.920135498047,\"y\":270.002685546875,\"z\":0.0168695878237486}},\"737c5d\":{\"lock\":false,\"pos\":{\"x\":12.2496032714844,\"y\":1.45618295669556,\"z\":-28.0137042999268},\"rot\":{\"x\":359.920135498047,\"y\":270.002471923828,\"z\":0.0168697722256184}},\"85286a\":{\"lock\":false,\"pos\":{\"x\":12.2505016326904,\"y\":1.45853734016418,\"z\":-20.0137042999268},\"rot\":{\"x\":359.920104980469,\"y\":270.009887695313,\"z\":0.0168606359511614}},\"c52079\":{\"lock\":false,\"pos\":{\"x\":12.2504005432129,\"y\":1.45382618904114,\"z\":-36.0138053894043},\"rot\":{\"x\":359.920135498047,\"y\":270.004608154297,\"z\":0.0168671775609255}},\"d14543\":{\"lock\":false,\"pos\":{\"x\":2.77120327949524,\"y\":1.30338501930237,\"z\":36.586555480957},\"rot\":{\"x\":0.0799634829163551,\"y\":89.9997253417969,\"z\":359.983093261719}},\"e90956\":{\"lock\":false,\"pos\":{\"x\":12.2494029998779,\"y\":1.47502899169922,\"z\":35.986400604248},\"rot\":{\"x\":359.920104980469,\"y\":270.103210449219,\"z\":0.0167299881577492}}}}",
"XmlUI": ""
},
{
"GUID": "63e097",
"Name": "Custom_Model",
"Transform": {
"posX": 51.6745453,
"posY": 1.40529227,
"posZ": -27.874691,
"rotX": 359.920135,
"rotY": 269.996582,
"rotZ": 0.0168770086,
"scaleX": 1.0,
"scaleY": 0.139652729,
"scaleZ": 1.0
},
"Nickname": "The Circle Undone",
"Description": "",
"GMNotes": "campaigns/circle_undone.json",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0,
"a": 0.274509817
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomMesh": {
"MeshURL": "https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/core_h_MSH.obj",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/762723517669843863/DC0750A38111062909FEDA1BC20685895A574A54/",
"NormalURL": "",
"ColliderURL": "https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/core_h_COL.obj",
"Convex": true,
"MaterialIndex": 3,
"TypeIndex": 0,
"CustomShader": {
"SpecularColor": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"SpecularIntensity": 0.0,
"SpecularSharpness": 2.0,
"FresnelStrength": 0.0
},
"CastShadows": true
},
"LuaScript": "\r\nfunction onload(saved_data)\r\n createDownloadButton()\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make Download button\r\nfunction createDownloadButton()\r\n self.createButton({\r\n label=\"Download\", click_function=\"buttonClick_download\", function_owner=self,\r\n position={0,0.1,6}, rotation={0,0,0}, height=500, width=1600,\r\n font_size=350, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by download button,\r\nfunction buttonClick_download()\r\n local params = { url = self.getGMNotes(), replace = self.guid }\r\n Global.call('placeholder_download', params)\r\nend",
"LuaScriptState": "{\"ml\":{\"0fad66\":{\"lock\":false,\"pos\":{\"x\":12.2492,\"y\":1.4562,\"z\":-28.0139},\"rot\":{\"x\":359.9201,\"y\":269.9981,\"z\":0.0169}},\"1e45e8\":{\"lock\":false,\"pos\":{\"x\":12.2498,\"y\":1.4656,\"z\":3.9864},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":0.0169}},\"1ee775\":{\"lock\":false,\"pos\":{\"x\":12.25,\"y\":1.4586,\"z\":-20.0138},\"rot\":{\"x\":359.9201,\"y\":270.0228,\"z\":0.0168}},\"20f70a\":{\"lock\":false,\"pos\":{\"x\":12.2499,\"y\":1.4609,\"z\":-12.0136},\"rot\":{\"x\":359.9201,\"y\":270,\"z\":0.0169}},\"2f008a\":{\"lock\":false,\"pos\":{\"x\":12.2493,\"y\":1.475,\"z\":35.9864},\"rot\":{\"x\":359.9201,\"y\":270,\"z\":0.0169}},\"44a05a\":{\"lock\":false,\"pos\":{\"x\":-1.4402,\"y\":1.4756,\"z\":-27.0401},\"rot\":{\"x\":359.9201,\"y\":270.0005,\"z\":0.0169}},\"5c79d0\":{\"lock\":false,\"pos\":{\"x\":12.2519,\"y\":1.468,\"z\":11.9864},\"rot\":{\"x\":359.9201,\"y\":270,\"z\":0.0169}},\"67a775\":{\"lock\":false,\"pos\":{\"x\":12.2502,\"y\":1.4727,\"z\":27.9864},\"rot\":{\"x\":359.9201,\"y\":270.0004,\"z\":0.0169}},\"7388bc\":{\"lock\":false,\"pos\":{\"x\":12.2499,\"y\":1.4703,\"z\":19.9864},\"rot\":{\"x\":359.9201,\"y\":270,\"z\":0.0169}},\"a61b48\":{\"lock\":false,\"pos\":{\"x\":12.2494,\"y\":1.4633,\"z\":-4.0136},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":0.0169}},\"dc5b5b\":{\"lock\":false,\"pos\":{\"x\":0.2699,\"y\":1.4896,\"z\":28.777},\"rot\":{\"x\":359.9201,\"y\":269.9991,\"z\":0.0169}}}}",
"XmlUI": ""
},
{
"GUID": "a16a1a",
"Name": "Custom_Model",
"Transform": {
"posX": 32.3547325,
"posY": 1.44883275,
"posZ": 28.5211277,
"rotX": 359.920135,
"rotY": 269.981384,
"rotZ": 0.0168981142,
"scaleX": 1.0,
"scaleY": 0.139652729,
"scaleZ": 1.0
},
"Nickname": "The Dream-Eaters",
"Description": "",
"GMNotes": "campaigns/dream_eaters.json",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0,
"a": 0.274509817
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomMesh": {
"MeshURL": "https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/core_h_MSH.obj",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/762723517669849292/9CD4BE220E1DE5294B1BC6301792920D213C98B3/",
"NormalURL": "",
"ColliderURL": "https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/core_h_COL.obj",
"Convex": true,
"MaterialIndex": 3,
"TypeIndex": 0,
"CustomShader": {
"SpecularColor": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"SpecularIntensity": 0.0,
"SpecularSharpness": 2.0,
"FresnelStrength": 0.0
},
"CastShadows": true
},
"LuaScript": "\r\nfunction onload(saved_data)\r\n createDownloadButton()\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make Download button\r\nfunction createDownloadButton()\r\n self.createButton({\r\n label=\"Download\", click_function=\"buttonClick_download\", function_owner=self,\r\n position={0,0.1,6}, rotation={0,0,0}, height=500, width=1600,\r\n font_size=350, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by download button,\r\nfunction buttonClick_download()\r\n local params = { url = self.getGMNotes(), replace = self.guid }\r\n Global.call('placeholder_download', params)\r\nend",
"LuaScriptState": "{\"ml\":{\"0fad66\":{\"lock\":false,\"pos\":{\"x\":12.2496,\"y\":1.4633,\"z\":-4.0136},\"rot\":{\"x\":359.9201,\"y\":270.0003,\"z\":0.0169}},\"185096\":{\"lock\":false,\"pos\":{\"x\":12.2505,\"y\":1.4585,\"z\":-20.0137},\"rot\":{\"x\":359.9201,\"y\":270.0004,\"z\":0.0169}},\"1b4f86\":{\"lock\":false,\"pos\":{\"x\":12.25,\"y\":1.4656,\"z\":3.9864},\"rot\":{\"x\":359.9201,\"y\":270.0002,\"z\":0.0169}},\"4f81cf\":{\"lock\":false,\"pos\":{\"x\":12.2501,\"y\":1.4609,\"z\":-12.0136},\"rot\":{\"x\":359.9201,\"y\":270.0004,\"z\":0.0169}},\"599cb7\":{\"lock\":false,\"pos\":{\"x\":12.2501,\"y\":1.4703,\"z\":19.9864},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":0.0169}},\"7b07ca\":{\"lock\":false,\"pos\":{\"x\":12.2521,\"y\":1.468,\"z\":11.9864},\"rot\":{\"x\":359.9201,\"y\":270,\"z\":0.0169}},\"7f5828\":{\"lock\":false,\"pos\":{\"x\":12.2503,\"y\":1.4727,\"z\":27.9864},\"rot\":{\"x\":359.9201,\"y\":270.0053,\"z\":0.0169}},\"c3844b\":{\"lock\":false,\"pos\":{\"x\":0.27,\"y\":1.4896,\"z\":28.777},\"rot\":{\"x\":359.9201,\"y\":269.9975,\"z\":0.0169}},\"e14c76\":{\"lock\":false,\"pos\":{\"x\":12.2496,\"y\":1.4562,\"z\":-28.0137},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":0.0169}},\"f40183\":{\"lock\":false,\"pos\":{\"x\":-1.2197,\"y\":1.4753,\"z\":-26.8667},\"rot\":{\"x\":359.9201,\"y\":270.0728,\"z\":0.0168}}}}",
"XmlUI": ""
},
{
"GUID": "465aab",
"Name": "Custom_Model",
"Transform": {
"posX": 32.35474,
"posY": 1.444701,
"posZ": 14.4892893,
"rotX": 359.920135,
"rotY": 269.991333,
"rotZ": 0.0168848149,
"scaleX": 1.0,
"scaleY": 0.139652729,
"scaleZ": 1.0
},
"Nickname": "The Innsmouth Conspiracy",
"Description": "",
"GMNotes": "campaigns/innsmouth_conspiracy.json",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0,
"a": 0.274509817
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomMesh": {
"MeshURL": "https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/core_h_MSH.obj",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/1626320664132195050/3888AC3E4F59D039C5F01B7EC72AB63174184381/",
"NormalURL": "",
"ColliderURL": "https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/core_h_COL.obj",
"Convex": true,
"MaterialIndex": 3,
"TypeIndex": 0,
"CustomShader": {
"SpecularColor": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"SpecularIntensity": 0.0,
"SpecularSharpness": 2.0,
"FresnelStrength": 0.0
},
"CastShadows": true
},
"LuaScript": "\r\nfunction onload(saved_data)\r\n createDownloadButton()\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make Download button\r\nfunction createDownloadButton()\r\n self.createButton({\r\n label=\"Download\", click_function=\"buttonClick_download\", function_owner=self,\r\n position={0,0.1,6}, rotation={0,0,0}, height=500, width=1600,\r\n font_size=350, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by download button,\r\nfunction buttonClick_download()\r\n local params = { url = self.getGMNotes(), replace = self.guid }\r\n Global.call('placeholder_download', params)\r\nend",
"LuaScriptState": "{\"ml\":{\"391578\":{\"lock\":false,\"pos\":{\"x\":12.2495851516724,\"y\":1.46324992179871,\"z\":-4.0136547088623},\"rot\":{\"x\":359.920135498047,\"y\":269.999969482422,\"z\":0.0168741308152676}},\"5a1bc0\":{\"lock\":false,\"pos\":{\"x\":12.2504844665527,\"y\":1.45853734016418,\"z\":-20.0136661529541},\"rot\":{\"x\":359.920135498047,\"y\":270,\"z\":0.016873961314559}},\"7ced47\":{\"lock\":false,\"pos\":{\"x\":12.2499876022339,\"y\":1.46560525894165,\"z\":3.98634815216064},\"rot\":{\"x\":359.920135498047,\"y\":269.999969482422,\"z\":0.0168743841350079}},\"8c6d05\":{\"lock\":false,\"pos\":{\"x\":12.2500810623169,\"y\":1.47031664848328,\"z\":19.9863700866699},\"rot\":{\"x\":359.920135498047,\"y\":270,\"z\":0.0168737471103668}},\"c09838\":{\"lock\":false,\"pos\":{\"x\":12.2502880096436,\"y\":1.47267186641693,\"z\":27.9863700866699},\"rot\":{\"x\":359.920135498047,\"y\":270.000030517578,\"z\":0.0168739836663008}},\"c3844b\":{\"lock\":false,\"pos\":{\"x\":-1.85711598396301,\"y\":1.49247169494629,\"z\":28.4344425201416},\"rot\":{\"x\":359.920135498047,\"y\":269.997497558594,\"z\":0.0168757010251284}},\"c3a225\":{\"lock\":false,\"pos\":{\"x\":12.2520818710327,\"y\":1.4679582118988,\"z\":11.9863586425781},\"rot\":{\"x\":359.920135498047,\"y\":270,\"z\":0.0168737731873989}},\"d32a84\":{\"lock\":false,\"pos\":{\"x\":12.2495040893555,\"y\":1.45618307590485,\"z\":-28.0138034820557},\"rot\":{\"x\":359.920135498047,\"y\":270.009918212891,\"z\":0.0168595146387815}},\"ddd5dd\":{\"lock\":false,\"pos\":{\"x\":12.2500877380371,\"y\":1.46089375019073,\"z\":-12.0136547088623},\"rot\":{\"x\":359.920135498047,\"y\":269.999969482422,\"z\":0.0168744642287493}},\"f40183\":{\"lock\":false,\"pos\":{\"x\":-1.46564340591431,\"y\":1.4756224155426,\"z\":-26.9310359954834},\"rot\":{\"x\":359.920135498047,\"y\":270.004577636719,\"z\":0.0168651305139065}}}}",
"XmlUI": ""
},
{
"GUID": "56270d",
"Name": "Custom_Model",
"Transform": {
"posX": 63.0271721,
"posY": 1.7725898,
"posZ": 28.53061,
"rotX": 359.9201,
"rotY": 269.998871,
"rotZ": 0.0168744717,
"scaleX": 2.00002885,
"scaleY": 0.10587021,
"scaleZ": 1.69295752
},
"Nickname": "Return to the Night of the Zealot",
"Description": "",
"GMNotes": "campaigns/return_to_notz.json",
"ColorDiffuse": {
"r": 1.0,
"g": 0.996078432,
"b": 1.0,
"a": 0.274509817
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomMesh": {
"MeshURL": "http://pastebin.com/raw.php?i=uWAmuNZ2",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/762723517667598054/18C06F0F20D9D4651E6736FB609E2D41F4D1964E/",
"NormalURL": "",
"ColliderURL": "",
"Convex": true,
"MaterialIndex": 3,
"TypeIndex": 0,
"CustomShader": {
"SpecularColor": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"SpecularIntensity": 0.0,
"SpecularSharpness": 2.0,
"FresnelStrength": 0.0
},
"CastShadows": true
},
"LuaScript": "\r\nfunction onload(saved_data)\r\n createDownloadButton()\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make Download button\r\nfunction createDownloadButton()\r\n self.createButton({\r\n label=\"Download\", click_function=\"buttonClick_download\", function_owner=self,\r\n position={0,1,-2}, rotation={0,0,0}, height=240, width=800,\r\n font_size=150, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by download button,\r\nfunction buttonClick_download()\r\n local params = { url = self.getGMNotes(), replace = self.guid }\r\n Global.call('placeholder_download', params)\r\nend",
"LuaScriptState": "{\"ml\":{\"267216\":{\"lock\":false,\"pos\":{\"x\":0.27,\"y\":1.4896,\"z\":28.777},\"rot\":{\"x\":359.9201,\"y\":270.0034,\"z\":0.0169}},\"41ebd8\":{\"lock\":false,\"pos\":{\"x\":12.0499,\"y\":1.4669,\"z\":7.3087},\"rot\":{\"x\":359.9201,\"y\":270.0003,\"z\":0.0169}},\"604753\":{\"lock\":false,\"pos\":{\"x\":12.0501,\"y\":1.4625,\"z\":-7.5963},\"rot\":{\"x\":359.9201,\"y\":270.0043,\"z\":0.0169}},\"97895b\":{\"lock\":false,\"pos\":{\"x\":0.4811,\"y\":1.4867,\"z\":20.0573},\"rot\":{\"x\":359.9201,\"y\":269.9956,\"z\":0.0169}},\"bcc86c\":{\"lock\":false,\"pos\":{\"x\":12.0499,\"y\":1.4647,\"z\":0.0026},\"rot\":{\"x\":359.9201,\"y\":270.0319,\"z\":0.0168}},\"e0c3e7\":{\"lock\":false,\"pos\":{\"x\":-1.4655,\"y\":1.4756,\"z\":-26.9308},\"rot\":{\"x\":359.9201,\"y\":270.0076,\"z\":0.0169}}}}",
"XmlUI": ""
},
{
"GUID": "ce9130",
"Name": "Custom_Model",
"Transform": {
"posX": 63.0357056,
"posY": 1.768447,
"posZ": 14.5008945,
"rotX": 359.9201,
"rotY": 269.984772,
"rotZ": 0.0168936085,
"scaleX": 2.00002885,
"scaleY": 0.10587021,
"scaleZ": 1.69295752
},
"Nickname": "Return to The Dunwich Legacy",
"Description": "",
"GMNotes": "campaigns/return_to_tdl.json",
"ColorDiffuse": {
"r": 1.0,
"g": 0.996078432,
"b": 1.0,
"a": 0.274509817
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomMesh": {
"MeshURL": "http://pastebin.com/raw.php?i=uWAmuNZ2",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/762723517667592476/36D86649503A49A36AA97B7B72C6150E4C2BE333/",
"NormalURL": "",
"ColliderURL": "",
"Convex": true,
"MaterialIndex": 3,
"TypeIndex": 0,
"CustomShader": {
"SpecularColor": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"SpecularIntensity": 0.0,
"SpecularSharpness": 2.0,
"FresnelStrength": 0.0
},
"CastShadows": true
},
"LuaScript": "\r\nfunction onload(saved_data)\r\n createDownloadButton()\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make Download button\r\nfunction createDownloadButton()\r\n self.createButton({\r\n label=\"Download\", click_function=\"buttonClick_download\", function_owner=self,\r\n position={0,1,-2}, rotation={0,0,0}, height=240, width=800,\r\n font_size=150, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by download button,\r\nfunction buttonClick_download()\r\n local params = { url = self.getGMNotes(), replace = self.guid }\r\n Global.call('placeholder_download', params)\r\nend",
"LuaScriptState": "{\"ml\":{\"125ce8\":{\"lock\":false,\"pos\":{\"x\":0.648099839687347,\"y\":1.48681163787842,\"z\":21.0740032196045},\"rot\":{\"x\":359.920135498047,\"y\":270.002868652344,\"z\":0.0168689917773008}},\"1536e7\":{\"lock\":false,\"pos\":{\"x\":12.2503042221069,\"y\":1.46327674388886,\"z\":-3.91990113258362},\"rot\":{\"x\":359.920135498047,\"y\":269.997375488281,\"z\":0.0168776586651802}},\"175a29\":{\"lock\":false,\"pos\":{\"x\":12.2504014968872,\"y\":1.45815718173981,\"z\":-21.3052997589111},\"rot\":{\"x\":359.920104980469,\"y\":270.016876220703,\"z\":0.0168503355234861}},\"1fca6b\":{\"lock\":false,\"pos\":{\"x\":12.2504014968872,\"y\":1.45558094978333,\"z\":-30.0549011230469},\"rot\":{\"x\":359.920104980469,\"y\":270.025085449219,\"z\":0.01683902554214}},\"3f6ab6\":{\"lock\":false,\"pos\":{\"x\":-1.46544468402863,\"y\":1.4756224155426,\"z\":-26.9304237365723},\"rot\":{\"x\":359.920135498047,\"y\":269.992126464844,\"z\":0.0168822444975376}},\"61f17f\":{\"lock\":false,\"pos\":{\"x\":0.270000487565994,\"y\":1.48960697650909,\"z\":28.7770023345947},\"rot\":{\"x\":359.920104980469,\"y\":270.013214111328,\"z\":0.0168535262346268}},\"87897a\":{\"lock\":false,\"pos\":{\"x\":12.2505035400391,\"y\":1.46838772296906,\"z\":13.4375},\"rot\":{\"x\":359.920135498047,\"y\":269.999572753906,\"z\":0.0168745722621679}},\"a82dde\":{\"lock\":false,\"pos\":{\"x\":12.2503023147583,\"y\":1.4607013463974,\"z\":-12.6661014556885},\"rot\":{\"x\":359.920135498047,\"y\":270.007507324219,\"z\":0.0168638676404953}},\"b713e7\":{\"lock\":false,\"pos\":{\"x\":-1.3494,\"y\":1.4754,\"z\":-27.0534},\"rot\":{\"x\":359.9201,\"y\":270.0005,\"z\":0.0169}},\"d33f7e\":{\"lock\":false,\"pos\":{\"x\":12.252100944519,\"y\":1.47350573539734,\"z\":30.8264045715332},\"rot\":{\"x\":359.920135498047,\"y\":270.004425048828,\"z\":0.0168678145855665}},\"d92b86\":{\"lock\":false,\"pos\":{\"x\":12.2503032684326,\"y\":1.46581137180328,\"z\":4.68769979476929},\"rot\":{\"x\":359.920135498047,\"y\":270.003173828125,\"z\":0.0168697685003281}},\"f52082\":{\"lock\":false,\"pos\":{\"x\":12.2509021759033,\"y\":1.47093105316162,\"z\":22.0768032073975},\"rot\":{\"x\":359.920135498047,\"y\":270.000213623047,\"z\":0.0168731510639191}}}}",
"XmlUI": ""
},
{
"GUID": "e9889a",
"Name": "Custom_Model",
"Transform": {
"posX": 63.03544,
"posY": 1.76421857,
"posZ": 0.140716374,
"rotX": 359.9201,
"rotY": 270.003418,
"rotZ": 0.0168679953,
"scaleX": 2.00002885,
"scaleY": 0.10587021,
"scaleZ": 1.69295752
},
"Nickname": "Return to The Path to Carcosa",
"Description": "",
"GMNotes": "campaigns/return_to_tptc.json",
"ColorDiffuse": {
"r": 1.0,
"g": 0.996078432,
"b": 1.0,
"a": 0.270588249
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomMesh": {
"MeshURL": "http://pastebin.com/raw.php?i=uWAmuNZ2",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/762723517667556656/9638E8CE7F209B50634B202C9EF4B0BDB4993BBB/",
"NormalURL": "",
"ColliderURL": "",
"Convex": true,
"MaterialIndex": 3,
"TypeIndex": 0,
"CustomShader": {
"SpecularColor": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"SpecularIntensity": 0.0,
"SpecularSharpness": 2.0,
"FresnelStrength": 0.0
},
"CastShadows": true
},
"LuaScript": "\r\nfunction onload(saved_data)\r\n createDownloadButton()\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make Download button\r\nfunction createDownloadButton()\r\n self.createButton({\r\n label=\"Download\", click_function=\"buttonClick_download\", function_owner=self,\r\n position={0,1,-2}, rotation={0,0,0}, height=240, width=800,\r\n font_size=150, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by download button,\r\nfunction buttonClick_download()\r\n local params = { url = self.getGMNotes(), replace = self.guid }\r\n Global.call('placeholder_download', params)\r\nend",
"LuaScriptState": "{\"ml\":{\"00daab\":{\"lock\":false,\"pos\":{\"x\":0.27,\"y\":1.4896,\"z\":28.777},\"rot\":{\"x\":359.9201,\"y\":269.9937,\"z\":0.0169}},\"42d2dc\":{\"lock\":false,\"pos\":{\"x\":12.2501,\"y\":1.4684,\"z\":13.4383},\"rot\":{\"x\":359.9201,\"y\":270.0131,\"z\":0.0169}},\"6730a1\":{\"lock\":false,\"pos\":{\"x\":12.2501,\"y\":1.4709,\"z\":22.0786},\"rot\":{\"x\":359.9201,\"y\":270.0187,\"z\":0.0168}},\"83ccd4\":{\"lock\":false,\"pos\":{\"x\":12.2509,\"y\":1.4735,\"z\":30.8285},\"rot\":{\"x\":359.9201,\"y\":270.0611,\"z\":0.0168}},\"9351c7\":{\"lock\":false,\"pos\":{\"x\":0.5713,\"y\":1.4869,\"z\":21.0841},\"rot\":{\"x\":359.9201,\"y\":270.0042,\"z\":0.0169}},\"ae8317\":{\"lock\":false,\"pos\":{\"x\":-1.4655,\"y\":1.4756,\"z\":-26.9304},\"rot\":{\"x\":359.9201,\"y\":270.0018,\"z\":0.0169}},\"bd4167\":{\"lock\":false,\"pos\":{\"x\":12.2493,\"y\":1.4633,\"z\":-3.9185},\"rot\":{\"x\":359.9201,\"y\":270.0456,\"z\":0.0168}},\"ce5d30\":{\"lock\":false,\"pos\":{\"x\":12.2502,\"y\":1.4556,\"z\":-30.055},\"rot\":{\"x\":359.9201,\"y\":269.9915,\"z\":0.0169}},\"dd8b0d\":{\"lock\":false,\"pos\":{\"x\":12.2508,\"y\":1.4582,\"z\":-21.3056},\"rot\":{\"x\":359.9201,\"y\":270.0539,\"z\":0.0168}},\"e7efa6\":{\"lock\":false,\"pos\":{\"x\":12.2482,\"y\":1.4658,\"z\":4.6903},\"rot\":{\"x\":359.9201,\"y\":270.0817,\"z\":0.0168}},\"eb48ff\":{\"lock\":false,\"pos\":{\"x\":12.2491,\"y\":1.4607,\"z\":-12.6652},\"rot\":{\"x\":359.9201,\"y\":270.0427,\"z\":0.0168}}}}",
"XmlUI": ""
},
{
"GUID": "479ff3",
"Name": "Custom_Model",
"Transform": {
"posX": 63.03848,
"posY": 1.75995,
"posZ": -14.3406687,
"rotX": 359.920135,
"rotY": 269.9848,
"rotZ": 0.016893601,
"scaleX": 2.00002885,
"scaleY": 0.10587021,
"scaleZ": 1.69295752
},
"Nickname": "Return to The Forgotten Age",
"Description": "",
"GMNotes": "campaigns/return_to_tfa.json",
"ColorDiffuse": {
"r": 1.0,
"g": 0.996078432,
"b": 1.0,
"a": 0.274509817
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomMesh": {
"MeshURL": "http://pastebin.com/raw.php?i=uWAmuNZ2",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/1474319121423613924/490D56D20C6AE0547D67D942513396E8D0584A4A/",
"NormalURL": "",
"ColliderURL": "",
"Convex": true,
"MaterialIndex": 3,
"TypeIndex": 0,
"CustomShader": {
"SpecularColor": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"SpecularIntensity": 0.0,
"SpecularSharpness": 2.0,
"FresnelStrength": 0.0
},
"CastShadows": true
},
"LuaScript": "\r\nfunction onload(saved_data)\r\n createDownloadButton()\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make Download button\r\nfunction createDownloadButton()\r\n self.createButton({\r\n label=\"Download\", click_function=\"buttonClick_download\", function_owner=self,\r\n position={0,1,-2}, rotation={0,0,0}, height=240, width=800,\r\n font_size=150, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by download button,\r\nfunction buttonClick_download()\r\n local params = { url = self.getGMNotes(), replace = self.guid }\r\n Global.call('placeholder_download', params)\r\nend",
"LuaScriptState": "{\"ml\":{\"0ff3f1\":{\"lock\":false,\"pos\":{\"x\":3.1332,\"y\":1.5547,\"z\":-36.5863},\"rot\":{\"x\":359.9201,\"y\":270.0008,\"z\":180.0169}},\"110ce2\":{\"lock\":false,\"pos\":{\"x\":12.2501039505005,\"y\":1.47267234325409,\"z\":27.9864139556885},\"rot\":{\"x\":359.920104980469,\"y\":270.020324707031,\"z\":0.0168454870581627}},\"166b95\":{\"lock\":false,\"pos\":{\"x\":-6.09058666229248,\"y\":1.58233058452606,\"z\":-35.4509201049805},\"rot\":{\"x\":359.920104980469,\"y\":269.999755859375,\"z\":180.016860961914}},\"3ccabf\":{\"lock\":false,\"pos\":{\"x\":12.2493057250977,\"y\":1.46325063705444,\"z\":-4.01370048522949},\"rot\":{\"x\":359.920135498047,\"y\":270.002258300781,\"z\":0.0168708451092243}},\"3d53bb\":{\"lock\":false,\"pos\":{\"x\":-1.4657,\"y\":1.4756,\"z\":-26.9301},\"rot\":{\"x\":359.9201,\"y\":270.0005,\"z\":0.0169}},\"48b154\":{\"lock\":false,\"pos\":{\"x\":-1.46550524234772,\"y\":1.47562229633331,\"z\":-26.9304180145264},\"rot\":{\"x\":359.920135498047,\"y\":270.002105712891,\"z\":0.0168687589466572}},\"496395\":{\"lock\":false,\"pos\":{\"x\":12.2502031326294,\"y\":1.45382618904114,\"z\":-36.0138130187988},\"rot\":{\"x\":359.920135498047,\"y\":270.004608154297,\"z\":0.0168673936277628}},\"499940\":{\"lock\":false,\"pos\":{\"x\":12.249903678894,\"y\":1.47031688690186,\"z\":19.9864120483398},\"rot\":{\"x\":359.920135498047,\"y\":269.999786376953,\"z\":0.016873998567462}},\"5abc8f\":{\"lock\":false,\"pos\":{\"x\":12.2497091293335,\"y\":1.4656058549881,\"z\":3.98639845848084},\"rot\":{\"x\":359.920104980469,\"y\":270.018707275391,\"z\":0.0168479327112436}},\"5e83e7\":{\"lock\":false,\"pos\":{\"x\":12.2493085861206,\"y\":1.45618343353271,\"z\":-28.0137119293213},\"rot\":{\"x\":359.920135498047,\"y\":270.002380371094,\"z\":0.0168695468455553}},\"6f00c3\":{\"lock\":false,\"pos\":{\"x\":2.55037879943848,\"y\":1.57004117965698,\"z\":-36.2760581970215},\"rot\":{\"x\":359.920135498047,\"y\":270.000061035156,\"z\":180.016860961914}},\"80b8ca\":{\"lock\":false,\"pos\":{\"x\":0.270000457763672,\"y\":1.48960709571838,\"z\":28.7770118713379},\"rot\":{\"x\":359.920135498047,\"y\":269.996276855469,\"z\":0.0168772786855698}},\"85a0c2\":{\"lock\":false,\"pos\":{\"x\":12.2492008209229,\"y\":1.47502934932709,\"z\":35.986400604248},\"rot\":{\"x\":359.920135498047,\"y\":270,\"z\":0.0168747007846832}},\"9351c7\":{\"lock\":false,\"pos\":{\"x\":0.313001304864883,\"y\":1.48733139038086,\"z\":21.2534122467041},\"rot\":{\"x\":359.920135498047,\"y\":269.995849609375,\"z\":0.0168796069920063}},\"952af4\":{\"lock\":false,\"pos\":{\"x\":12.2519025802612,\"y\":1.46795833110809,\"z\":11.9864025115967},\"rot\":{\"x\":359.920104980469,\"y\":270.019134521484,\"z\":0.0168482400476933}},\"9b89db\":{\"lock\":false,\"pos\":{\"x\":3.2345,\"y\":1.5544,\"z\":-36.9717},\"rot\":{\"x\":359.9201,\"y\":269.9972,\"z\":0.0169}},\"9c986e\":{\"lock\":false,\"pos\":{\"x\":12.2502059936523,\"y\":1.45853769779205,\"z\":-20.0137119293213},\"rot\":{\"x\":359.920104980469,\"y\":270.009887695313,\"z\":0.0168594811111689}},\"d14543\":{\"lock\":false,\"pos\":{\"x\":2.08146262168884,\"y\":1.30448842048645,\"z\":37.0677032470703},\"rot\":{\"x\":0.0799620226025581,\"y\":90.0000076293945,\"z\":359.983123779297}},\"e73427\":{\"lock\":false,\"pos\":{\"x\":12.2498025894165,\"y\":1.46089398860931,\"z\":-12.0137023925781},\"rot\":{\"x\":359.920135498047,\"y\":270.006591796875,\"z\":0.0168646927922964}}}}",
"XmlUI": ""
},
{
"GUID": "fcfa7f",
"Name": "Custom_Model",
"Transform": {
"posX": 22.9507275,
"posY": 1.44124091,
"posZ": -30.872654,
"rotX": 359.920563,
"rotY": 300.011932,
"rotZ": 359.973663,
"scaleX": 4.29999733,
"scaleY": 4.29999733,
"scaleZ": 4.29999733
},
"Nickname": "Encounter Sets",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": true,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomMesh": {
"MeshURL": "http://cloud-3.steamusercontent.com/ugc/254843371583107453/E3BD9426DD28A525F93BAF54635A969958E991B2/",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/762723517668487233/EDDD832597F756BE94833B29B70EE21EDA95C677/",
"NormalURL": "",
"ColliderURL": "",
"Convex": true,
"MaterialIndex": 3,
"TypeIndex": 0,
"CustomShader": {
"SpecularColor": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"SpecularIntensity": 0.0,
"SpecularSharpness": 2.0,
"FresnelStrength": 0.0
},
"CastShadows": true
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "3261ca",
"Name": "Custom_Model",
"Transform": {
"posX": 62.94947,
"posY": 1.75607884,
"posZ": -27.9097614,
"rotX": 359.9201,
"rotY": 269.998779,
"rotZ": 0.016874468,
"scaleX": 2.0,
"scaleY": 0.10587021,
"scaleZ": 1.69295752
},
"Nickname": "Return to The Circle Undone",
"Description": "",
"GMNotes": "campaigns/return_to_tcu.json",
"ColorDiffuse": {
"r": 1.0,
"g": 0.996078432,
"b": 1.0,
"a": 0.274509817
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomMesh": {
"MeshURL": "http://pastebin.com/raw.php?i=uWAmuNZ2",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/1697277388086852852/6FD56D74FDDDA5626A3B72E788993EC651AD25E1/",
"NormalURL": "",
"ColliderURL": "",
"Convex": true,
"MaterialIndex": 3,
"TypeIndex": 0,
"CustomShader": {
"SpecularColor": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"SpecularIntensity": 0.0,
"SpecularSharpness": 2.0,
"FresnelStrength": 0.0
},
"CastShadows": true
},
"LuaScript": "\r\nfunction onload(saved_data)\r\n createDownloadButton()\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make Download button\r\nfunction createDownloadButton()\r\n self.createButton({\r\n label=\"Download\", click_function=\"buttonClick_download\", function_owner=self,\r\n position={0,1,-2}, rotation={0,0,0}, height=240, width=800,\r\n font_size=150, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by download button,\r\nfunction buttonClick_download()\r\n local params = { url = self.getGMNotes(), replace = self.guid }\r\n Global.call('placeholder_download', params)\r\nend",
"LuaScriptState": "{\"ml\":{\"119ba7\":{\"lock\":false,\"pos\":{\"x\":-1.46555650234222,\"y\":1.47562301158905,\"z\":-26.9288692474365},\"rot\":{\"x\":359.920135498047,\"y\":270.00048828125,\"z\":0.0168708860874176}},\"1b8c0f\":{\"lock\":false,\"pos\":{\"x\":12.2493629455566,\"y\":1.47502863407135,\"z\":35.9863319396973},\"rot\":{\"x\":359.920135498047,\"y\":270.000427246094,\"z\":0.0168739818036556}},\"20790b\":{\"lock\":false,\"pos\":{\"x\":12.2495622634888,\"y\":1.46325027942657,\"z\":-4.01367902755737},\"rot\":{\"x\":359.920135498047,\"y\":270.000244140625,\"z\":0.0168732367455959}},\"4434f2\":{\"lock\":false,\"pos\":{\"x\":12.2499656677246,\"y\":1.46560525894165,\"z\":3.98632717132568},\"rot\":{\"x\":359.920135498047,\"y\":270.000335693359,\"z\":0.0168725643306971}},\"5ec77c\":{\"lock\":false,\"pos\":{\"x\":0.269363343715668,\"y\":1.48960697650909,\"z\":28.7746143341064},\"rot\":{\"x\":359.920135498047,\"y\":269.993408203125,\"z\":0.016880864277482}},\"646fa1\":{\"lock\":false,\"pos\":{\"x\":3.44351673126221,\"y\":1.4002298116684,\"z\":23.0479831695557},\"rot\":{\"x\":359.983093261719,\"y\":0.000529431854374707,\"z\":359.919952392578}},\"716acc\":{\"lock\":false,\"pos\":{\"x\":12.2502584457397,\"y\":1.4726722240448,\"z\":27.9863567352295},\"rot\":{\"x\":359.920135498047,\"y\":270.000549316406,\"z\":0.0168731641024351}},\"75547d\":{\"lock\":false,\"pos\":{\"x\":12.2495651245117,\"y\":1.45618319511414,\"z\":-28.013692855835},\"rot\":{\"x\":359.920135498047,\"y\":270.000335693359,\"z\":0.0168729331344366}},\"97895b\":{\"lock\":false,\"pos\":{\"x\":0.481101036071777,\"y\":1.48674499988556,\"z\":20.0573329925537},\"rot\":{\"x\":359.920135498047,\"y\":269.995483398438,\"z\":0.0168806239962578}},\"ac0448\":{\"lock\":false,\"pos\":{\"x\":0.256068646907806,\"y\":1.61475324630737,\"z\":22.9620132446289},\"rot\":{\"x\":359.920104980469,\"y\":270.006256103516,\"z\":180.016845703125}},\"bddf2e\":{\"lock\":false,\"pos\":{\"x\":12.2504606246948,\"y\":1.45853757858276,\"z\":-20.0136966705322},\"rot\":{\"x\":359.920135498047,\"y\":270.004272460938,\"z\":0.0168678276240826}},\"d236b4\":{\"lock\":false,\"pos\":{\"x\":12.2520532608032,\"y\":1.46795797348022,\"z\":11.9863395690918},\"rot\":{\"x\":359.920135498047,\"y\":270.000457763672,\"z\":0.016873711720109}},\"dbd374\":{\"lock\":false,\"pos\":{\"x\":12.2500514984131,\"y\":1.47031676769257,\"z\":19.9863567352295},\"rot\":{\"x\":359.920135498047,\"y\":270.000457763672,\"z\":0.0168729927390814}},\"e31fb3\":{\"lock\":false,\"pos\":{\"x\":12.2500629425049,\"y\":1.46089386940002,\"z\":-12.0136795043945},\"rot\":{\"x\":359.920135498047,\"y\":270.000274658203,\"z\":0.0168740153312683}}}}",
"XmlUI": ""
},
{
"GUID": "15bb07",
"Name": "Bag",
"Transform": {
"posX": 78.51942,
"posY": 1.04830122,
"posZ": 7.79583454,
"rotX": 359.989929,
"rotY": 269.996674,
"rotZ": 359.984528,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "All Player Cards",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.7058823,
"g": 0.366520882,
"b": 0.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": true,
"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,
"Bag": {
"Order": 0
},
"LuaScript": "\r\nlocal cardIdIndex = { }\r\nlocal classAndLevelIndex = { }\r\nlocal basicWeaknessList = { }\r\n\r\nlocal indexingDone = false\r\nlocal allowRemoval = false\r\n\r\nfunction onLoad()\r\n self.addContextMenuItem(\"Rebuild Index\", startIndexBuild)\r\n math.randomseed(os.time())\r\n Wait.frames(startIndexBuild, 30)\r\nend\r\n\r\n-- Called by Hotfix bags when they load. If we are still loading indexes, then\r\n-- the all cards and hotfix bags are being loaded together, and we can ignore\r\n-- this call as the hotfix will be included in the initial indexing. If it is\r\n-- called once indexing is complete it means the hotfix bag has been added\r\n-- later, and we should rebuild the index to integrate the hotfix bag.\r\nfunction rebuildIndexForHotfix()\r\n if (indexingDone) then\r\n startIndexBuild()\r\n end\r\nend\r\n\r\n-- Resets all current bag indexes\r\nfunction clearIndexes()\r\n indexingDone = false\r\n cardIdIndex = { }\r\n classAndLevelIndex = { }\r\n classAndLevelIndex[\"Guardian-upgrade\"] = { }\r\n classAndLevelIndex[\"Seeker-upgrade\"] = { }\r\n classAndLevelIndex[\"Mystic-upgrade\"] = { }\r\n classAndLevelIndex[\"Survivor-upgrade\"] = { }\r\n classAndLevelIndex[\"Rogue-upgrade\"] = { }\r\n classAndLevelIndex[\"Neutral-upgrade\"] = { }\r\n classAndLevelIndex[\"Guardian-level0\"] = { }\r\n classAndLevelIndex[\"Seeker-level0\"] = { }\r\n classAndLevelIndex[\"Mystic-level0\"] = { }\r\n classAndLevelIndex[\"Survivor-level0\"] = { }\r\n classAndLevelIndex[\"Rogue-level0\"] = { }\r\n classAndLevelIndex[\"Neutral-level0\"] = { }\r\n basicWeaknessList = { }\r\nend\r\n\r\n-- Clears the bag indexes and starts the coroutine to rebuild the indexes\r\nfunction startIndexBuild(playerColor)\r\n clearIndexes()\r\n startLuaCoroutine(self, \"buildIndex\")\r\nend\r\n\r\nfunction onObjectLeaveContainer(container, object)\r\n if (container == self and not allowRemoval) then\r\n broadcastToAll(\r\n \"Removing cards from the All Player Cards bag may break some functions. Please replace the card.\",\r\n {0.9, 0.2, 0.2}\r\n )\r\n end\r\nend\r\n\r\n-- Debug option to suppress the warning when cards are removed from the bag\r\nfunction setAllowCardRemoval()\r\n allowRemoval = true\r\nend\r\n\r\n-- Create the card indexes by iterating all cards in the bag, parsing their\r\n-- metadata, and creating the keyed lookup tables for the cards. This is a\r\n-- coroutine which will spread the workload by processing 20 cards before\r\n-- yielding. Based on the current count of cards this will require\r\n-- approximately 60 frames to complete.\r\nfunction buildIndex()\r\n indexingDone = false\r\n if (self.getData().ContainedObjects == nil) then\r\n return 1\r\n end\r\n for i, cardData in ipairs(self.getData().ContainedObjects) do\r\n local cardMetadata = JSON.decode(cardData.GMNotes)\r\n if (cardMetadata ~= nil) then\r\n addCardToIndex(cardData, cardMetadata)\r\n end\r\n if (i % 20 == 0) then\r\n coroutine.yield(0)\r\n end\r\n end\r\n local hotfixBags = getObjectsWithTag(\"AllCardsHotfix\")\r\n for _, hotfixBag in ipairs(hotfixBags) do\r\n if (#hotfixBag.getObjects() > 0) then\r\n for i, cardData in ipairs(hotfixBag.getData().ContainedObjects) do\r\n local cardMetadata = JSON.decode(cardData.GMNotes)\r\n if (cardMetadata ~= nil) then\r\n addCardToIndex(cardData, cardMetadata)\r\n end\r\n end\r\n end\r\n end\r\n buildSupplementalIndexes()\r\n indexingDone = true\r\n return 1\r\nend\r\n\r\n-- Adds a card to any indexes it should be a part of, based on its metadata.\r\n-- Param cardData: TTS object data for the card\r\n-- Param cardMetadata: SCED metadata for the card\r\nfunction addCardToIndex(cardData, cardMetadata)\r\n cardIdIndex[cardMetadata.id] = { data = cardData, metadata = cardMetadata }\r\n if (cardMetadata.alternate_ids ~= nil) then\r\n for _, alternateId in ipairs(cardMetadata.alternate_ids) do\r\n cardIdIndex[alternateId] = { data = cardData, metadata = cardMetadata }\r\n end\r\n end\r\nend\r\n\r\nfunction buildSupplementalIndexes()\r\n for cardId, card in pairs(cardIdIndex) do\r\n local cardData = card.data\r\n local cardMetadata = card.metadata\r\n -- Add card to the basic weakness list, if appropriate. Some weaknesses have\r\n -- multiple copies, and are added multiple times\r\n if (cardMetadata.weakness and cardMetadata.basicWeaknessCount ~= nil) then\r\n for i = 1, cardMetadata.basicWeaknessCount do\r\n table.insert(basicWeaknessList, cardMetadata.id)\r\n end\r\n end\r\n\r\n -- Add the card to the appropriate class and level indexes\r\n local isGuardian = false\r\n local isSeeker = false\r\n local isMystic = false\r\n local isRogue = false\r\n local isSurvivor = false\r\n local isNeutral = false\r\n local upgradeKey\r\n if (cardMetadata.class ~= nil and cardMetadata.level ~= nil) then\r\n isGuardian = string.match(cardMetadata.class, \"Guardian\")\r\n isSeeker = string.match(cardMetadata.class, \"Seeker\")\r\n isMystic = string.match(cardMetadata.class, \"Mystic\")\r\n isRogue = string.match(cardMetadata.class, \"Rogue\")\r\n isSurvivor = string.match(cardMetadata.class, \"Survivor\")\r\n isNeutral = string.match(cardMetadata.class, \"Neutral\")\r\n if (cardMetadata.level > 0) then\r\n upgradeKey = \"-upgrade\"\r\n else\r\n upgradeKey = \"-level0\"\r\n end\r\n if (isGuardian) then\r\n table.insert(classAndLevelIndex[\"Guardian\"..upgradeKey], cardMetadata.id)\r\n end\r\n if (isSeeker) then\r\n table.insert(classAndLevelIndex[\"Seeker\"..upgradeKey], cardMetadata.id)\r\n end\r\n if (isMystic) then\r\n table.insert(classAndLevelIndex[\"Mystic\"..upgradeKey], cardMetadata.id)\r\n end\r\n if (isRogue) then\r\n table.insert(classAndLevelIndex[\"Rogue\"..upgradeKey], cardMetadata.id)\r\n end\r\n if (isSurvivor) then\r\n table.insert(classAndLevelIndex[\"Survivor\"..upgradeKey], cardMetadata.id)\r\n end\r\n if (isNeutral) then\r\n table.insert(classAndLevelIndex[\"Neutral\"..upgradeKey], cardMetadata.id)\r\n end\r\n end\r\n end\r\n for _, indexTable in pairs(classAndLevelIndex) do\r\n table.sort(indexTable, cardComparator)\r\n end\r\nend\r\n\r\n-- Comparison function used to sort the class card bag indexes. Sorts by card\r\n-- level, then name, then subname.\r\nfunction cardComparator(id1, id2)\r\n local card1 = cardIdIndex[id1]\r\n local card2 = cardIdIndex[id2]\r\n if (card1.metadata.level ~= card2.metadata.level) then\r\n return card1.metadata.level < card2.metadata.level\r\n end\r\n if (card1.data.Nickname ~= card2.data.Nickname) then\r\n return card1.data.Nickname < card2.data.Nickname\r\n end\r\n return card1.data.Description < card2.data.Description\r\nend\r\n\r\nfunction isIndexReady()\r\n return indexingDone\r\nend\r\n\r\n-- Returns a specific card from the bag, based on ArkhamDB ID\r\n-- Params table:\r\n-- id: String ID of the card to retrieve\r\n-- Return: If the indexes are still being constructed, an empty table is\r\n-- returned. Otherwise, a single table with the following fields\r\n-- cardData: TTS object data, suitable for spawning the card\r\n-- cardMetadata: Table of parsed metadata\r\nfunction getCardById(params)\r\n if (not indexingDone) then\r\n broadcastToAll(\"Still loading player cards, please try again in a few seconds\", {0.9, 0.2, 0.2})\r\n return { }\r\n end\r\n return cardIdIndex[params.id]\r\nend\r\n\r\n-- Returns a list of cards from the bag matching a class and level (0 or upgraded)\r\n-- Params table:\r\n-- class: String class to retrieve (\"Guardian\", \"Seeker\", etc)\r\n-- isUpgraded: true for upgraded cards (Level 1-5), false for Level 0\r\n-- Return: If the indexes are still being constructed, returns an empty table.\r\n-- Otherwise, a list of tables, each with the following fields\r\n-- cardData: TTS object data, suitable for spawning the card\r\n-- cardMetadata: Table of parsed metadata\r\nfunction getCardsByClassAndLevel(params)\r\n if (not indexingDone) then\r\n broadcastToAll(\"Still loading player cards, please try again in a few seconds\", {0.9, 0.2, 0.2})\r\n return { }\r\n end\r\n local upgradeKey\r\n if (params.upgraded) then\r\n upgradeKey = \"-upgrade\"\r\n else\r\n upgradeKey = \"-level0\"\r\n end\r\n return classAndLevelIndex[params.class..upgradeKey];\r\nend\r\n\r\n-- Gets a random basic weakness from the bag. Once a given ID has been returned\r\n-- it will be removed from the list and cannot be selected again until a reload\r\n-- occurs or the indexes are rebuilt, which will refresh the list to include all\r\n-- weaknesses.\r\n-- Return: String ID of the selected weakness.\r\nfunction getRandomWeaknessId()\r\n local pickedIndex = math.random(#basicWeaknessList)\r\n local weaknessId = basicWeaknessList[pickedIndex]\r\n if (#basicWeaknessList > 1) then\r\n table.remove(basicWeaknessList, pickedIndex)\r\n else\r\n broadcastToAll(\"All weaknesses have been drawn!\", {0.9, 0.2, 0.2})\r\n end\r\n\r\n return weaknessId\r\nend",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "fd9c56",
"Name": "Card",
"Transform": {
"posX": 118.384506,
"posY": 1.985302,
"posZ": 19.41069,
"rotX": 359.99,
"rotY": 270.035858,
"rotZ": 359.984558,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Through the Gates",
"Description": "Basic Weakness",
"GMNotes": "{\n \"id\": \"51011\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Pact. Mystery.\",\n \"permanent\": false,\n \"weakness\": true,\n \"basicWeaknessCount\": 2\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 527419,
"SidewaysCard": false,
"CustomDeck": {
"5274": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "176836",
"Name": "Card",
"Transform": {
"posX": 8.971655,
"posY": 3.70642543,
"posZ": -16.6886063,
"rotX": 359.920074,
"rotY": 270.012573,
"rotZ": 0.0168711413,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "A Watchful Peace (3)",
"Description": "",
"GMNotes": "{\n \"id\": \"07269\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Spirit. Blessed.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 449608,
"SidewaysCard": false,
"CustomDeck": {
"4496": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1747933191220177818/637923621F747375066D4DA39BEA3BA9C26086A5/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 7,
"NumHeight": 3,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "f763e8",
"Name": "Card",
"Transform": {
"posX": 8.971655,
"posY": 3.70642543,
"posZ": -16.6886063,
"rotX": 359.920074,
"rotY": 270.012573,
"rotZ": 0.0168711413,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Unearth the Ancients",
"Description": "",
"GMNotes": "{\n \"id\": \"04024\",\n \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"traits\": \"Insight.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 368410,
"SidewaysCard": false,
"CustomDeck": {
"3684": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "9c32e2",
"Name": "Card",
"Transform": {
"posX": 8.971655,
"posY": 3.70642543,
"posZ": -16.6886063,
"rotX": 359.920074,
"rotY": 270.012573,
"rotZ": 0.0168711413,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Sword Cane",
"Description": "",
"GMNotes": "{\n \"id\": \"07029\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Item. Relic. Weapon. Melee.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 582423,
"SidewaysCard": false,
"CustomDeck": {
"5824": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320664132663842/9B2F50595A754585A4DF12D6D48DC2561DC0E2C9/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "19b705",
"Name": "Card",
"Transform": {
"posX": 8.971655,
"posY": 3.79986835,
"posZ": -16.6886063,
"rotX": 359.920074,
"rotY": 270.012573,
"rotZ": 0.0168711413,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Scroll of Secrets (Taboo)",
"Description": "",
"GMNotes": "{\n \"id\": \"05116-t\",\n \"type\": \"Asset\",\n \"class\": \"Seeker|Mystic\",\n \"traits\": \"Item. Tome.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Secret\",\n \"count\": 3\n }\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 450621,
"SidewaysCard": false,
"CustomDeck": {
"4506": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1656721113609569419/60B1DFC7C68C406C34641A1F53078F46D610821C/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "cf4f15",
"Name": "Card",
"Transform": {
"posX": 8.971655,
"posY": 3.79986835,
"posZ": -16.6886063,
"rotX": 359.920074,
"rotY": 270.012573,
"rotZ": 0.0168711413,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Flamethrower (5)",
"Description": "",
"GMNotes": "{\n \"id\": \"04305\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Item. Weapon. Firearm.\",\n \"level\": 5,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Ammo\",\n \"count\": 4\n }\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 314002,
"SidewaysCard": false,
"CustomDeck": {
"3140": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025943109/9C5481E6DFEACD450C5522F884E615482281DDB1/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "f474b1",
"Name": "Card",
"Transform": {
"posX": 8.971655,
"posY": 3.79986835,
"posZ": -16.6886063,
"rotX": 359.920074,
"rotY": 270.012573,
"rotZ": 0.0168711413,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Stray Cat",
"Description": "",
"GMNotes": "{\n \"id\": \"01076\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Ally. Creature.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 368824,
"SidewaysCard": false,
"CustomDeck": {
"3688": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "6714b2",
"Name": "Card",
"Transform": {
"posX": 8.971655,
"posY": 3.79986835,
"posZ": -16.6886063,
"rotX": 359.920074,
"rotY": 270.012573,
"rotZ": 0.0168711413,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Zebulon Whateley",
"Description": "Recalling Ancient Things",
"GMNotes": "{\n \"id\": \"02217\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Dunwich.\",\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 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": 232949,
"SidewaysCard": false,
"CustomDeck": {
"2329": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "842d41",
"Name": "Card",
"Transform": {
"posX": 8.971655,
"posY": 3.98984075,
"posZ": -16.6886063,
"rotX": 359.920074,
"rotY": 270.012573,
"rotZ": 0.0168711413,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Switchblade (2) (Taboo)",
"Description": "",
"GMNotes": "{\n \"id\": \"02152-t\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Item. Weapon. Melee. Illicit.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 450603,
"SidewaysCard": false,
"CustomDeck": {
"4506": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1656721113609569419/60B1DFC7C68C406C34641A1F53078F46D610821C/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "3cc1e2",
"Name": "Card",
"Transform": {
"posX": 8.971655,
"posY": 3.98984075,
"posZ": -16.6886063,
"rotX": 359.920074,
"rotY": 270.012573,
"rotZ": 0.0168711413,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Flute of the Outer Gods (4)",
"Description": "",
"GMNotes": "{\n \"id\": \"07268\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Item. Instrument. Relic. Cursed.\",\n \"level\": 4,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 449607,
"SidewaysCard": false,
"CustomDeck": {
"4496": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1747933191220177818/637923621F747375066D4DA39BEA3BA9C26086A5/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 7,
"NumHeight": 3,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "function onload()\r\n mode = \"Curse\"\r\n chaosbag = getChaosBag()\r\n manager = getObjectFromGUID(\"5933fb\")\r\n sealedTokens = { }\r\n IMAGE_TOKEN_MAP = { }\r\n for i,v in pairs(Global.getVar(\"IMAGE_TOKEN_MAP\")) do\r\n IMAGE_TOKEN_MAP[i] = v\r\n end\r\n\r\n -- add menu items\r\n self.clearContextMenu()\r\n self.addContextMenuItem(\"Release Token\", releaseTokens, true)\r\n for url,name in pairs(IMAGE_TOKEN_MAP) do\r\n if name == mode then\r\n self.addContextMenuItem(\"Seal \" .. mode, function(playerColor) sealToken(url, playerColor) end, true)\r\n end\r\n end\r\nend\r\n\r\nfunction sealToken(url, playerColor)\r\n local pos = self.getPosition()\r\n\r\n local name = IMAGE_TOKEN_MAP[url]\r\n for i,obj in ipairs(chaosbag.getObjects()) do\r\n if obj.name == name then\r\n chaosbag.takeObject({\r\n position={ pos.x, pos.y + 1, pos.z },\r\n index=i-1,\r\n smooth=false,\r\n callback_function=_sealToken\r\n })\r\n return\r\n end\r\n end\r\n printToColor(name .. \" token not found in bag\", playerColor)\r\nend\r\n\r\nfunction _sealToken(obj)\r\n table.insert(sealedTokens, obj)\r\n local guid = obj.getGUID()\r\n local tokensTaken = manager.getVar(\"tokensTaken\")\r\n table.insert(tokensTaken[mode], guid)\r\n manager.setVar(\"tokensTaken\", tokensTaken)\r\n manager.setVar(\"mode\", mode)\r\n printToAll(\"Sealing \" .. mode .. \" token \" .. manager.call(\"getTokenCount\"))\r\nend\r\n\r\nfunction releaseTokens(playerColor)\r\n if #sealedTokens == 0 then return end\r\n local token = sealedTokens[#sealedTokens]\r\n if token ~= nil then\r\n local guid = token.getGUID()\r\n chaosbag.putObject(token)\r\n local tokensTaken = manager.getVar(\"tokensTaken\")\r\n for i,v in ipairs(tokensTaken[mode]) do\r\n if v == guid then\r\n table.remove(tokensTaken[mode], i)\r\n break\r\n end\r\n end\r\n manager.setVar(\"tokensTaken\", tokensTaken)\r\n manager.setVar(\"mode\", mode)\r\n printToAll(\"Releasing \" .. mode .. \" token\" .. manager.call(\"getTokenCount\"))\r\n end\r\n\r\n table.remove(sealedTokens)\r\nend\r\n\r\nfunction getChaosBag()\r\n local items = getObjectFromGUID(\"83ef06\").getObjects()\r\n local chaosbag = nil\r\n for i,v in ipairs(items) do\r\n if v.getDescription() == \"Chaos Bag\" then\r\n chaosbag = getObjectFromGUID(v.getGUID())\r\n break\r\n end\r\n end\r\n if chaosbag == nil then printToAll(\"No chaos bag found\") end\r\n return chaosbag\r\nend\r\n",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "ef46e9",
"Name": "Card",
"Transform": {
"posX": 8.971655,
"posY": 4.076544,
"posZ": -16.6886063,
"rotX": 359.920074,
"rotY": 270.012573,
"rotZ": 0.0168711413,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Meditative Trance",
"Description": "",
"GMNotes": "{\n \"id\": \"08061\",\n \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"traits\": \"Insight. Spirit.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 379051,
"SidewaysCard": false,
"CustomDeck": {
"3790": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1625226898126491470/A7FAFA92C08268717F79B2B1C83F8C23DFA6C534/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "87718c",
"Name": "Card",
"Transform": {
"posX": 8.971655,
"posY": 4.076544,
"posZ": -16.6886063,
"rotX": 359.920074,
"rotY": 270.012573,
"rotZ": 0.0168711413,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Relic of Ages",
"Description": "Repossess the Past",
"GMNotes": "{\n \"id\": \"04303\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Relic.\",\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 235840,
"SidewaysCard": false,
"CustomDeck": {
"2358": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1467561769777501236/D145C8B748FB42258EB442B9DF36797851CEECC3/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "35bc58",
"Name": "Card",
"Transform": {
"posX": 8.971655,
"posY": 4.209883,
"posZ": -16.6886063,
"rotX": 359.920074,
"rotY": 270.012573,
"rotZ": 0.0168711413,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Relic of Ages",
"Description": "Unleash the Timestream",
"GMNotes": "{\n \"id\": \"04343\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Relic.\",\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 235857,
"SidewaysCard": false,
"CustomDeck": {
"2358": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1467561769777501236/D145C8B748FB42258EB442B9DF36797851CEECC3/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "1d1901",
"Name": "Card",
"Transform": {
"posX": 8.971655,
"posY": 4.209883,
"posZ": -16.6886063,
"rotX": 359.920074,
"rotY": 270.012573,
"rotZ": 0.0168711413,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Call for Backup (2)",
"Description": "",
"GMNotes": "{\n \"id\": \"08129\",\n \"type\": \"Event\",\n \"class\": \"Neutral\",\n \"traits\": \"Favor. Synergy.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 378916,
"SidewaysCard": false,
"CustomDeck": {
"3789": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1625226898126493809/0EE7F5B9B916B56425CAC1C46F7FCEF9DBF55112/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "5ade28",
"Name": "Card",
"Transform": {
"posX": 8.971655,
"posY": 4.339862,
"posZ": -16.6886063,
"rotX": 359.920074,
"rotY": 270.012573,
"rotZ": 0.0168711413,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Blur (4)",
"Description": "",
"GMNotes": "{\n \"id\": \"08111\",\n \"type\": \"Asset\",\n \"class\": \"Rogue|Mystic\",\n \"traits\": \"Spell.\",\n \"level\": 4,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Charge\",\n \"count\": 4\n }\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 378949,
"SidewaysCard": false,
"CustomDeck": {
"3789": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1625226898126493809/0EE7F5B9B916B56425CAC1C46F7FCEF9DBF55112/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "b10a71",
"Name": "Card",
"Transform": {
"posX": 8.971655,
"posY": 4.339862,
"posZ": -16.6886063,
"rotX": 359.920074,
"rotY": 270.012573,
"rotZ": 0.0168711413,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Shards of the Void (3)",
"Description": "",
"GMNotes": "{\n \"id\": \"04310\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Charge\",\n \"count\": 3\n }\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 278102,
"SidewaysCard": false,
"CustomDeck": {
"2781": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025945336/04E36F64C2CBE1B4905FF44A869C75EC52CB3A56/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "function onload()\n chaosbag = getChaosBag()\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 for url,name in pairs(IMAGE_TOKEN_MAP) do\n if name == \"0\" then\n self.addContextMenuItem(\"Seal 0\", 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 })\n return\n end\n end\n printToColor(name .. \" token not found in bag\", playerColor)\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": "8dda2d",
"Name": "Card",
"Transform": {
"posX": 8.971655,
"posY": 4.48985147,
"posZ": -16.6886063,
"rotX": 359.920074,
"rotY": 270.012573,
"rotZ": 0.0168711413,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Colt Vest Pocket (2)",
"Description": "",
"GMNotes": "{\n \"id\": \"53006\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Item. Weapon. Firearm. Illicit.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Ammo\",\n \"count\": 5\n }\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 545205,
"SidewaysCard": false,
"CustomDeck": {
"5452": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1487830656537158415/2EBB208AA994ED70FD0FEB02D4E4FE78FE43EE02/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "45956a",
"Name": "Card",
"Transform": {
"posX": 8.971655,
"posY": 4.510166,
"posZ": -16.6886063,
"rotX": 359.920074,
"rotY": 270.012573,
"rotZ": 0.0168711413,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Third Time's a Charm (2)",
"Description": "",
"GMNotes": "{\n \"id\": \"07161\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Spirit.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 232109,
"SidewaysCard": false,
"CustomDeck": {
"2321": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1655600400212405700/559F1F3EF87BDF7F067F9B7011EDC3A6ACE71259/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 5,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "8e8a14",
"Name": "Card",
"Transform": {
"posX": 8.971655,
"posY": 4.510166,
"posZ": -16.6886063,
"rotX": 359.920074,
"rotY": 270.012573,
"rotZ": 0.0168711413,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Spectral Razor",
"Description": "",
"GMNotes": "{\n \"id\": \"06201\",\n \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 448029,
"SidewaysCard": false,
"CustomDeck": {
"4480": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025945336/04E36F64C2CBE1B4905FF44A869C75EC52CB3A56/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "7b6ab5",
"Name": "Card",
"Transform": {
"posX": 8.971655,
"posY": 4.57723331,
"posZ": -16.6886063,
"rotX": 359.920074,
"rotY": 270.012573,
"rotZ": 0.0168711413,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Analytical Mind",
"Description": "",
"GMNotes": "{\n \"id\": \"03010\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Talent.\",\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 374532,
"SidewaysCard": false,
"CustomDeck": {
"3745": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "194d88",
"Name": "Card",
"Transform": {
"posX": 8.971655,
"posY": 4.591155,
"posZ": -16.6886063,
"rotX": 359.920074,
"rotY": 270.012573,
"rotZ": 0.0168711413,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Scroll of Secrets (3)",
"Description": "Mystic",
"GMNotes": "{\n \"id\": \"05189\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Item. Tome.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Secret\",\n \"count\": 4\n }\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 293315,
"SidewaysCard": false,
"CustomDeck": {
"2933": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025945336/04E36F64C2CBE1B4905FF44A869C75EC52CB3A56/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "2acced",
"Name": "Card",
"Transform": {
"posX": 8.971655,
"posY": 4.591155,
"posZ": -16.6886063,
"rotX": 359.920074,
"rotY": 270.012573,
"rotZ": 0.0168711413,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Ornate Bow (3)",
"Description": "",
"GMNotes": "{\n \"id\": \"04204\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Relic. Weapon. Ranged.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Ammo\",\n \"count\": 1\n }\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 368528,
"SidewaysCard": false,
"CustomDeck": {
"3685": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "6945f7",
"Name": "Card",
"Transform": {
"posX": 8.971655,
"posY": 4.651837,
"posZ": -16.6886063,
"rotX": 359.920074,
"rotY": 270.012573,
"rotZ": 0.0168711413,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Watcher from Another Dimension",
"Description": "",
"GMNotes": "{\n \"id\": \"06017\",\n \"type\": \"Enemy\",\n \"class\": \"Neutral\",\n \"traits\": \"Monster. Extradimensional.\",\n \"permanent\": false,\n \"weakness\": true\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 581311,
"SidewaysCard": false,
"CustomDeck": {
"5813": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1011562618093846571/13C76218853EE87123267F8F6BE99206DB40470B/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "9a5cb1",
"Name": "Card",
"Transform": {
"posX": 8.971655,
"posY": 4.651837,
"posZ": -16.6886063,
"rotX": 359.920074,
"rotY": 270.012573,
"rotZ": 0.0168711413,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Protective Gear (2)",
"Description": "",
"GMNotes": "{\n \"id\": \"08095\",\n \"type\": \"Asset\",\n \"class\": \"Guardian|Survivor\",\n \"traits\": \"Item. Armor.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 378933,
"SidewaysCard": false,
"CustomDeck": {
"3789": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1625226898126493809/0EE7F5B9B916B56425CAC1C46F7FCEF9DBF55112/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "ba560e",
"Name": "Card",
"Transform": {
"posX": 8.971655,
"posY": 4.709282,
"posZ": -16.6886063,
"rotX": 359.920074,
"rotY": 270.012573,
"rotZ": 0.0168711413,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Trench Coat",
"Description": "",
"GMNotes": "{\n \"id\": \"04203\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Clothing.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 368518,
"SidewaysCard": false,
"CustomDeck": {
"3685": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "27b4ea",
"Name": "Card",
"Transform": {
"posX": 8.971655,
"posY": 4.713593,
"posZ": -16.6886063,
"rotX": 359.920074,
"rotY": 270.012573,
"rotZ": 0.0168711413,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Wendy's Amulet",
"Description": "",
"GMNotes": "{\n \"id\": \"01014\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Relic.\",\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 590608,
"SidewaysCard": false,
"CustomDeck": {
"5906": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1697277388086984548/E61F3E847797C2C9231829611E0D92BA6376FA67/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 4,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "0414b4",
"Name": "Card",
"Transform": {
"posX": 8.971655,
"posY": 4.713593,
"posZ": -16.6886063,
"rotX": 359.920074,
"rotY": 270.012573,
"rotZ": 0.0168711413,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Dig Deep (2)",
"Description": "",
"GMNotes": "{\n \"id\": \"50009\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Talent.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 368845,
"SidewaysCard": false,
"CustomDeck": {
"3688": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "101a41",
"Name": "Card",
"Transform": {
"posX": 8.971655,
"posY": 4.764674,
"posZ": -16.6886063,
"rotX": 359.920074,
"rotY": 270.012573,
"rotZ": 0.0168711413,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": ".18 Derringer",
"Description": "",
"GMNotes": "{\n \"id\": \"60505\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Item. Weapon. Firearm. Illicit.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Ammo\",\n \"count\": 2\n }\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 550803,
"SidewaysCard": false,
"CustomDeck": {
"5508": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456298038335/2CA532D7F0EED2B2B40E47709AC56D85C4613A33/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "91e890",
"Name": "Card",
"Transform": {
"posX": 8.971655,
"posY": 4.764674,
"posZ": -16.6886063,
"rotX": 359.920074,
"rotY": 270.012573,
"rotZ": 0.0168711413,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Seal of the Elder Sign (5)",
"Description": "",
"GMNotes": "{\n \"id\": \"03312\",\n \"type\": \"Skill\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell. Expert.\",\n \"level\": 5,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 230359,
"SidewaysCard": false,
"CustomDeck": {
"2303": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "c1d796",
"Name": "Card",
"Transform": {
"posX": 8.971655,
"posY": 4.81252956,
"posZ": -16.6886063,
"rotX": 359.920074,
"rotY": 270.012573,
"rotZ": 0.0168711413,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Survival Knife (2)",
"Description": "",
"GMNotes": "{\n \"id\": \"53002\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Item. Weapon. Melee.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 545201,
"SidewaysCard": false,
"CustomDeck": {
"5452": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1487830656537158415/2EBB208AA994ED70FD0FEB02D4E4FE78FE43EE02/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "3c0249",
"Name": "Card",
"Transform": {
"posX": 8.971655,
"posY": 4.687663,
"posZ": -16.6886063,
"rotX": 359.920074,
"rotY": 270.012573,
"rotZ": 0.0168711413,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Guardian Angel",
"Description": "",
"GMNotes": "{\n \"id\": \"07006\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ritual. Blessed.\",\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 580500,
"SidewaysCard": false,
"CustomDeck": {
"5805": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320664132663842/9B2F50595A754585A4DF12D6D48DC2561DC0E2C9/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "bd323d",
"Name": "CardCustom",
"Transform": {
"posX": 8.971655,
"posY": 4.67324162,
"posZ": -16.6886063,
"rotX": 359.920074,
"rotY": 270.012573,
"rotZ": 0.0168711413,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Hospital Debts",
"Description": "Advanced",
"GMNotes": "{\n \"id\": \"90010\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Task.\",\n \"permanent\": false,\n \"weakness\": true\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 541300,
"SidewaysCard": false,
"CustomDeck": {
"5413": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1487830597915335843/99E638B3D735149C6624312DBAB47A3AA2D2F95D/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "3add54",
"Name": "Card",
"Transform": {
"posX": 8.971655,
"posY": 4.67324162,
"posZ": -16.6886063,
"rotX": 359.920074,
"rotY": 270.012573,
"rotZ": 0.0168711413,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Cheat Death (5)",
"Description": "",
"GMNotes": "{\n \"id\": \"03310\",\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"traits\": \"Trick. Fated.\",\n \"level\": 5,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 315261,
"SidewaysCard": false,
"CustomDeck": {
"3152": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "147cb2",
"Name": "Card",
"Transform": {
"posX": 8.971655,
"posY": 4.755512,
"posZ": -16.6886063,
"rotX": 359.920074,
"rotY": 270.012573,
"rotZ": 0.0168711413,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Laboratory Assistant",
"Description": "",
"GMNotes": "{\n \"id\": \"02020\",\n \"alternate_ids\": [ \"60212\" ],\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Ally. Miskatonic. Science.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 586506,
"SidewaysCard": false,
"CustomDeck": {
"5865": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1697276627309509299/3B0E32939EB4599CCE3596975637C90FE4EE1DD6/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "ae16e8",
"Name": "Card",
"Transform": {
"posX": 8.971655,
"posY": 4.755512,
"posZ": -16.6886063,
"rotX": 359.920074,
"rotY": 270.012573,
"rotZ": 0.0168711413,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Dream Parasite",
"Description": "Weakness",
"GMNotes": "{\n \"id\": \"06331\",\n \"type\": \"Skill\",\n \"class\": \"Neutral\",\n \"traits\": \"Curse.\",\n \"permanent\": false,\n \"bonded_to\": [\n {\n \"id\": \"06330\",\n \"count\": 3\n }\n ],\n \"weakness\": true\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 448736,
"SidewaysCard": false,
"CustomDeck": {
"4487": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025946328/561232524C8EAA4B4371B28652F78969E6ED6FFB/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "d4a68a",
"Name": "Card",
"Transform": {
"posX": 8.971655,
"posY": 4.755512,
"posZ": -16.6886063,
"rotX": 359.920074,
"rotY": 270.012573,
"rotZ": 0.0168711413,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Delve Too Deep (Taboo)",
"Description": "",
"GMNotes": "{\n \"id\": \"02111-t\",\n \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"traits\": \"Insight.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 450615,
"SidewaysCard": false,
"CustomDeck": {
"4506": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1656721113609569419/60B1DFC7C68C406C34641A1F53078F46D610821C/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "2d2246",
"Name": "Card",
"Transform": {
"posX": 8.971655,
"posY": 4.884381,
"posZ": -16.6886063,
"rotX": 359.920074,
"rotY": 270.012573,
"rotZ": 0.0168711413,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Holy Rosary (2)",
"Description": "",
"GMNotes": "{\n \"id\": \"07220\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Item. Charm. Blessed.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 579300,
"SidewaysCard": false,
"CustomDeck": {
"5793": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1747933191219101327/797556CAC112D6D289B3A5D3A28433C9F0999CB5/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "8f7289",
"Name": "Card",
"Transform": {
"posX": 8.971655,
"posY": 4.884381,
"posZ": -16.6886063,
"rotX": 359.920074,
"rotY": 270.012573,
"rotZ": 0.0168711413,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Guts",
"Description": "",
"GMNotes": "{\n \"id\": \"01089\",\n \"type\": \"Skill\",\n \"class\": \"Neutral\",\n \"traits\": \"Innate.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 368500,
"SidewaysCard": false,
"CustomDeck": {
"3685": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "6fec31",
"Name": "Card",
"Transform": {
"posX": 8.971655,
"posY": 4.884381,
"posZ": -16.6886063,
"rotX": 359.920074,
"rotY": 270.012573,
"rotZ": 0.0168711413,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Think on Your Feet",
"Description": "",
"GMNotes": "{\n \"id\": \"02025\",\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"traits\": \"Trick.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 368709,
"SidewaysCard": false,
"CustomDeck": {
"3687": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "f8c873",
"Name": "Card",
"Transform": {
"posX": 8.971655,
"posY": 4.884381,
"posZ": -16.6886063,
"rotX": 359.920074,
"rotY": 270.012573,
"rotZ": 0.0168711413,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Sophie",
"Description": "",
"GMNotes": "{\n \"id\": \"03009\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Spirit.\",\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 374264,
"SidewaysCard": false,
"CustomDeck": {
"3742": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/960860341956230050/FB390FF37A182334B982AA19488275BB5C6E2219/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "7e7873",
"Name": "Card",
"Transform": {
"posX": 8.971655,
"posY": 5.009851,
"posZ": -16.6886063,
"rotX": 359.920074,
"rotY": 270.012573,
"rotZ": 0.0168711413,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Prescient",
"Description": "",
"GMNotes": "{\n \"id\": \"60419\",\n \"type\": \"Skill\",\n \"class\": \"Mystic\",\n \"traits\": \"Practiced. Augury.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 538717,
"SidewaysCard": false,
"CustomDeck": {
"5387": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297472038/B38A78EF27EBE0BDE1B36958D297701505AB936A/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "5cb973",
"Name": "Card",
"Transform": {
"posX": 8.971655,
"posY": 5.009851,
"posZ": -16.6886063,
"rotX": 359.920074,
"rotY": 270.012573,
"rotZ": 0.0168711413,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Fine Clothes",
"Description": "",
"GMNotes": "{\n \"id\": \"02272\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Clothing.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 368511,
"SidewaysCard": false,
"CustomDeck": {
"3685": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "14424c",
"Name": "Card",
"Transform": {
"posX": 8.971655,
"posY": 5.082025,
"posZ": -16.6886063,
"rotX": 359.920074,
"rotY": 270.012573,
"rotZ": 0.0168711413,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Mano a Mano (2)",
"Description": "",
"GMNotes": "{\n \"id\": \"60125\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Spirit. Bold.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 545323,
"SidewaysCard": false,
"CustomDeck": {
"5453": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1546380927206250326/18BF6D2B2BBFDDBE5B021A46C310E4F45493EC26/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "4ea716",
"Name": "Card",
"Transform": {
"posX": 8.971655,
"posY": 5.082025,
"posZ": -16.6886063,
"rotX": 359.920074,
"rotY": 270.012573,
"rotZ": 0.0168711413,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Studious (3)",
"Description": "",
"GMNotes": "{\n \"id\": \"05276\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Talent.\",\n \"level\": 3,\n \"permanent\": true,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 592419,
"SidewaysCard": false,
"CustomDeck": {
"5924": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "80628f",
"Name": "Card",
"Transform": {
"posX": 8.971655,
"posY": 5.082025,
"posZ": -16.6886063,
"rotX": 359.920074,
"rotY": 270.012573,
"rotZ": 0.0168711413,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Inspiring Presence",
"Description": "",
"GMNotes": "{\n \"id\": \"03228\",\n \"type\": \"Skill\",\n \"class\": \"Guardian\",\n \"traits\": \"Innate.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 226301,
"SidewaysCard": false,
"CustomDeck": {
"2263": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "378e84",
"Name": "Card",
"Transform": {
"posX": 8.971655,
"posY": 5.082025,
"posZ": -16.6886063,
"rotX": 359.920074,
"rotY": 270.012573,
"rotZ": 0.0168711413,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Magnifying Glass (1)",
"Description": "",
"GMNotes": "{\n \"id\": \"01040\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Tool.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 430637,
"SidewaysCard": false,
"CustomDeck": {
"4306": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "ba16cb",
"Name": "Card",
"Transform": {
"posX": 8.971655,
"posY": 5.200808,
"posZ": -16.6886063,
"rotX": 359.920074,
"rotY": 270.012573,
"rotZ": 0.0168711413,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Medical Texts",
"Description": "",
"GMNotes": "{\n \"id\": \"01035\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Tome.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 368425,
"SidewaysCard": false,
"CustomDeck": {
"3684": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "205385",
"Name": "Card",
"Transform": {
"posX": 8.971655,
"posY": 5.200808,
"posZ": -16.6886063,
"rotX": 359.920074,
"rotY": 270.012573,
"rotZ": 0.0168711413,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Blessing of Isis (3)",
"Description": "",
"GMNotes": "{\n \"id\": \"07190\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Ritual. Blessed.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 580801,
"SidewaysCard": false,
"CustomDeck": {
"5808": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1762566393205073673/1FABAC4DD6EF3706D8C8285A256A13F43AE6B1E1/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 6,
"NumHeight": 3,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "acd0da",
"Name": "Card",
"Transform": {
"posX": 8.971655,
"posY": 5.200808,
"posZ": -16.6886063,
"rotX": 359.920074,
"rotY": 270.012573,
"rotZ": 0.0168711413,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "\"I've got a plan!\"",
"Description": "",
"GMNotes": "{\n \"id\": \"02107\",\n \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"traits\": \"Insight. Tactic.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 368418,
"SidewaysCard": false,
"CustomDeck": {
"3684": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "52a677",
"Name": "Card",
"Transform": {
"posX": 8.971655,
"posY": 5.26630259,
"posZ": -16.6886063,
"rotX": 359.920074,
"rotY": 270.012573,
"rotZ": 0.0168711413,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Ace of Rods (1)",
"Description": "The Fateful Step",
"GMNotes": "{\n \"id\": \"05040\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Tarot.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 318703,
"SidewaysCard": false,
"CustomDeck": {
"3187": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025942034/FEADE7F6206804B42CC9B6049F51EDF6040C5D1D/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "f03baa",
"Name": "Card",
"Transform": {
"posX": 8.971655,
"posY": 5.26630259,
"posZ": -16.6886063,
"rotX": 359.920074,
"rotY": 270.012573,
"rotZ": 0.0168711413,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Custom Ammunition (3)",
"Description": "",
"GMNotes": "{\n \"id\": \"04193\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Upgrade. Supply. Blessed.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 226354,
"SidewaysCard": false,
"CustomDeck": {
"2263": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "45bdf0",
"Name": "Card",
"Transform": {
"posX": 8.971655,
"posY": 5.328512,
"posZ": -16.6886063,
"rotX": 359.920074,
"rotY": 270.012573,
"rotZ": 0.0168711413,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Desperate Search",
"Description": "",
"GMNotes": "{\n \"id\": \"03117\",\n \"type\": \"Skill\",\n \"class\": \"Neutral\",\n \"traits\": \"Desperate.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 368507,
"SidewaysCard": false,
"CustomDeck": {
"3685": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "f68105",
"Name": "Card",
"Transform": {
"posX": 8.971655,
"posY": 5.328512,
"posZ": -16.6886063,
"rotX": 359.920074,
"rotY": 270.012573,
"rotZ": 0.0168711413,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Eye of Chaos (4)",
"Description": "",
"GMNotes": "{\n \"id\": \"07227\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell. Cursed.\",\n \"level\": 4,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Charge\",\n \"count\": 3\n }\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 579707,
"SidewaysCard": false,
"CustomDeck": {
"5797": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1747933191219101327/797556CAC112D6D289B3A5D3A28433C9F0999CB5/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "33f906",
"Name": "Card",
"Transform": {
"posX": 8.971655,
"posY": 5.328512,
"posZ": -16.6886063,
"rotX": 359.920074,
"rotY": 270.012573,
"rotZ": 0.0168711413,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Tempt Fate",
"Description": "",
"GMNotes": "{\n \"id\": \"07037\",\n \"type\": \"Event\",\n \"class\": \"Neutral\",\n \"traits\": \"Fortune. Blessed. Cursed.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 583531,
"SidewaysCard": false,
"CustomDeck": {
"5835": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320664132663842/9B2F50595A754585A4DF12D6D48DC2561DC0E2C9/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "a92a90",
"Name": "Card",
"Transform": {
"posX": 8.971655,
"posY": 5.328512,
"posZ": -16.6886063,
"rotX": 359.920074,
"rotY": 270.012573,
"rotZ": 0.0168711413,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Grit Your Teeth",
"Description": "",
"GMNotes": "{\n \"id\": \"60515\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Spirit.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 550813,
"SidewaysCard": false,
"CustomDeck": {
"5508": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456298038335/2CA532D7F0EED2B2B40E47709AC56D85C4613A33/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "c40cb4",
"Name": "Card",
"Transform": {
"posX": 8.971655,
"posY": 5.437342,
"posZ": -16.6886063,
"rotX": 359.920074,
"rotY": 270.012573,
"rotZ": 0.0168711413,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "\"Watch this!\"",
"Description": "",
"GMNotes": "{\n \"id\": \"03233\",\n \"type\": \"Skill\",\n \"class\": \"Rogue\",\n \"traits\": \"Gambit.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 261700,
"SidewaysCard": false,
"CustomDeck": {
"2617": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "c607c5",
"Name": "Card",
"Transform": {
"posX": 8.971655,
"posY": 5.393091,
"posZ": -16.6886063,
"rotX": 359.920074,
"rotY": 270.012573,
"rotZ": 0.0168711413,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Lucky Cigarette Case",
"Description": "",
"GMNotes": "{\n \"id\": \"04107\",\n \"alternate_ids\": [ \"60308\" ],\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Item. Charm.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 368624,
"SidewaysCard": false,
"CustomDeck": {
"3686": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "2c6509",
"Name": "Card",
"Transform": {
"posX": 8.971655,
"posY": 5.345759,
"posZ": -16.6886063,
"rotX": 359.920074,
"rotY": 270.012573,
"rotZ": 0.0168711413,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": ".45 Thompson",
"Description": "",
"GMNotes": "{\n \"id\": \"05115\",\n \"type\": \"Asset\",\n \"class\": \"Guardian|Rogue\",\n \"traits\": \"Item. Weapon. Firearm. Illicit.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Ammo\",\n \"count\": 5\n }\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 277608,
"SidewaysCard": false,
"CustomDeck": {
"2776": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025942034/FEADE7F6206804B42CC9B6049F51EDF6040C5D1D/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "74840a",
"Name": "Card",
"Transform": {
"posX": 8.971655,
"posY": 5.29536152,
"posZ": -16.6886063,
"rotX": 359.920074,
"rotY": 270.012573,
"rotZ": 0.0168711413,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Bear Trap",
"Description": "Trap.",
"GMNotes": "{\n \"id\": \"81020\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Trap.\",\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 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": 454100,
"SidewaysCard": false,
"CustomDeck": {
"4541": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/138879070086634183/2856A2C2077CFA2C61B9EF2498CAE6865024DB72/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "cc9563",
"Name": "Card",
"Transform": {
"posX": 8.971655,
"posY": 5.24188566,
"posZ": -16.6886063,
"rotX": 359.920074,
"rotY": 270.012573,
"rotZ": 0.0168711413,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Pilfer",
"Description": "",
"GMNotes": "{\n \"id\": \"60315\",\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"traits\": \"Trick.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 538613,
"SidewaysCard": false,
"CustomDeck": {
"5386": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456298037683/22C99DD745DFF65ECC72FD32EFA9C9D0F0C12862/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "a4b514",
"Name": "Card",
"Transform": {
"posX": 8.971655,
"posY": 5.18535137,
"posZ": -16.6886063,
"rotX": 359.920074,
"rotY": 270.012573,
"rotZ": 0.0168711413,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Abbess Allegria Di Biase",
"Description": "Ally. Believer.",
"GMNotes": "{\n \"id\": \"82022\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Believer.\",\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 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": 4000,
"SidewaysCard": false,
"CustomDeck": {
"40": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642329861/9768E9FE9C71E74721340D0D81607F534E54A3DE/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "1bd139",
"Name": "Card",
"Transform": {
"posX": 8.971655,
"posY": 5.12574959,
"posZ": -16.6886063,
"rotX": 359.920074,
"rotY": 270.012573,
"rotZ": 0.0168711413,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Haste (2)",
"Description": "",
"GMNotes": "{\n \"id\": \"06239\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Ritual.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 447632,
"SidewaysCard": false,
"CustomDeck": {
"4476": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025944587/520448D0E9C22F102C7DDF64322EAD6FC221ECC8/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "27446e",
"Name": "Card",
"Transform": {
"posX": 8.971655,
"posY": 5.063088,
"posZ": -16.6886063,
"rotX": 359.920074,
"rotY": 270.012573,
"rotZ": 0.0168711413,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Leo De Luca (1)",
"Description": "The Louisiana Lion",
"GMNotes": "{\n \"id\": \"01054\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Ally. Criminal.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 315240,
"SidewaysCard": false,
"CustomDeck": {
"3152": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "08bdf1",
"Name": "Card",
"Transform": {
"posX": 8.971655,
"posY": 4.99737,
"posZ": -16.6886063,
"rotX": 359.920074,
"rotY": 270.012573,
"rotZ": 0.0168711413,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Guard Dog",
"Description": "",
"GMNotes": "{\n \"id\": \"01021\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Ally. Creature.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 226326,
"SidewaysCard": false,
"CustomDeck": {
"2263": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "726d1d",
"Name": "Card",
"Transform": {
"posX": 8.971655,
"posY": 4.99737,
"posZ": -16.6886063,
"rotX": 359.920074,
"rotY": 270.012573,
"rotZ": 0.0168711413,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Valentino Rivas",
"Description": "Took You Long Enough",
"GMNotes": "{\n \"id\": \"05261\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Socialite.\",\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 312514,
"SidewaysCard": false,
"CustomDeck": {
"3125": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "3d22c4",
"Name": "Card",
"Transform": {
"posX": 8.971655,
"posY": 4.99737,
"posZ": -16.6886063,
"rotX": 359.920074,
"rotY": 270.012573,
"rotZ": 0.0168711413,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Empower Self (2)",
"Description": "Acuity",
"GMNotes": "{\n \"id\": \"06243\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Ritual.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 448033,
"SidewaysCard": false,
"CustomDeck": {
"4480": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025945336/04E36F64C2CBE1B4905FF44A869C75EC52CB3A56/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "e425d0",
"Name": "Card",
"Transform": {
"posX": 8.971655,
"posY": 5.02840137,
"posZ": -16.6886063,
"rotX": 359.920074,
"rotY": 270.012573,
"rotZ": 0.0168711413,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Arcane Research",
"Description": "",
"GMNotes": "{\n \"id\": \"04109\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Talent.\",\n \"level\": 0,\n \"permanent\": true,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 230315,
"SidewaysCard": false,
"CustomDeck": {
"2303": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "b40b98",
"Name": "Card",
"Transform": {
"posX": 8.971655,
"posY": 5.02840137,
"posZ": -16.6886063,
"rotX": 359.920074,
"rotY": 270.012573,
"rotZ": 0.0168711413,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "De Vermis Mysteriis (2)",
"Description": "Signs of the Black Stars",
"GMNotes": "{\n \"id\": \"05235\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Item. Tome.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 293313,
"SidewaysCard": false,
"CustomDeck": {
"2933": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025945336/04E36F64C2CBE1B4905FF44A869C75EC52CB3A56/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "62cf25",
"Name": "Card",
"Transform": {
"posX": 8.971655,
"posY": 5.00628471,
"posZ": -16.6886063,
"rotX": 359.920074,
"rotY": 270.012573,
"rotZ": 0.0168711413,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "\"I'm outta here!\"",
"Description": "",
"GMNotes": "{\n \"id\": \"02151\",\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"traits\": \"Trick. Spirit.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 368707,
"SidewaysCard": false,
"CustomDeck": {
"3687": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "ecd087",
"Name": "Card",
"Transform": {
"posX": 8.971655,
"posY": 4.931122,
"posZ": -16.6886063,
"rotX": 359.920074,
"rotY": 270.012573,
"rotZ": 0.0168711413,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Caught Red-Handed",
"Description": "",
"GMNotes": "{\n \"id\": \"04012\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Blunder.\",\n \"permanent\": false,\n \"weakness\": true\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 376840,
"SidewaysCard": false,
"CustomDeck": {
"3768": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "ef43db",
"Name": "Card",
"Transform": {
"posX": 8.971655,
"posY": 4.931122,
"posZ": -16.6886063,
"rotX": 359.920074,
"rotY": 270.012573,
"rotZ": 0.0168711413,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Robes of Endless Night (2)",
"Description": "",
"GMNotes": "{\n \"id\": \"60422\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Item. Clothing.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 538720,
"SidewaysCard": false,
"CustomDeck": {
"5387": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297472038/B38A78EF27EBE0BDE1B36958D297701505AB936A/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "45c582",
"Name": "Card",
"Transform": {
"posX": 8.971655,
"posY": 4.902818,
"posZ": -16.6886063,
"rotX": 359.920074,
"rotY": 270.012573,
"rotZ": 0.0168711413,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Hope",
"Description": "",
"GMNotes": "{\n \"id\": \"06031\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Ally. Creature. Dreamlands.\",\n \"permanent\": false,\n \"bonded_to\": [\n {\n \"id\": \"06030\",\n \"count\": 1\n }\n ],\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 440624,
"SidewaysCard": false,
"CustomDeck": {
"4406": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025946328/561232524C8EAA4B4371B28652F78969E6ED6FFB/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "d71f11",
"Name": "Card",
"Transform": {
"posX": 8.971655,
"posY": 4.902818,
"posZ": -16.6886063,
"rotX": 359.920074,
"rotY": 270.012573,
"rotZ": 0.0168711413,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Bloodstained Dagger",
"Description": "The Murder Weapon",
"GMNotes": "{\n \"id\": \"84006\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Weapon. Melee. Cursed.\",\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 274100,
"SidewaysCard": false,
"CustomDeck": {
"2741": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493212055041441/90F035BD69A7C5C6B6F43426DDDA3A09DFCBCBDF/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "ddee79",
"Name": "Card",
"Transform": {
"posX": 8.971655,
"posY": 4.87137651,
"posZ": -16.6886063,
"rotX": 359.920074,
"rotY": 270.012573,
"rotZ": 0.0168711413,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Stealth",
"Description": "",
"GMNotes": "{\n \"id\": \"03028\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Talent.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 368626,
"SidewaysCard": false,
"CustomDeck": {
"3686": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "4e405d",
"Name": "Card",
"Transform": {
"posX": 8.971655,
"posY": 4.786899,
"posZ": -16.6886063,
"rotX": 359.920074,
"rotY": 270.012573,
"rotZ": 0.0168711413,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Sea Change Harpoon",
"Description": "",
"GMNotes": "{\n \"id\": \"07014\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Weapon. Melee.\",\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 587308,
"SidewaysCard": false,
"CustomDeck": {
"5873": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320664132663842/9B2F50595A754585A4DF12D6D48DC2561DC0E2C9/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "5d6e57",
"Name": "Card",
"Transform": {
"posX": 8.971655,
"posY": 4.786899,
"posZ": -16.6886063,
"rotX": 359.920074,
"rotY": 270.012573,
"rotZ": 0.0168711413,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Mind Wipe (1)",
"Description": "",
"GMNotes": "{\n \"id\": \"01068\",\n \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 230334,
"SidewaysCard": false,
"CustomDeck": {
"2303": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "1dbc95",
"Name": "Card",
"Transform": {
"posX": 8.971655,
"posY": 4.749291,
"posZ": -16.6886063,
"rotX": 359.920074,
"rotY": 270.012573,
"rotZ": 0.0168711413,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Charon's Obol (1)",
"Description": "The Ferryman's Pay",
"GMNotes": "{\n \"id\": \"03308\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Item. Relic.\",\n \"level\": 1,\n \"permanent\": true,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 315233,
"SidewaysCard": false,
"CustomDeck": {
"3152": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "a565d5",
"Name": "Card",
"Transform": {
"posX": 8.971655,
"posY": 4.749291,
"posZ": -16.6886063,
"rotX": 359.920074,
"rotY": 270.012573,
"rotZ": 0.0168711413,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Shroud of Shadows",
"Description": "",
"GMNotes": "{\n \"id\": \"07119\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell. Cursed.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Charge\",\n \"count\": 3\n }\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 553111,
"SidewaysCard": false,
"CustomDeck": {
"5531": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1684870715280867313/BFD2AF968EAC917D3B838DCB8B1656941CD8B5CC/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "b1ad65",
"Name": "Card",
"Transform": {
"posX": 8.971655,
"posY": 4.75845671,
"posZ": -16.6886063,
"rotX": 359.920074,
"rotY": 270.012573,
"rotZ": 0.0168711413,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "M1918 BAR (4)",
"Description": "",
"GMNotes": "{\n \"id\": \"04229\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Item. Weapon. Firearm.\",\n \"level\": 4,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Ammo\",\n \"count\": 8\n }\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 226358,
"SidewaysCard": false,
"CustomDeck": {
"2263": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "869d4c",
"Name": "Card",
"Transform": {
"posX": 8.971655,
"posY": 4.75845671,
"posZ": -16.6886063,
"rotX": 359.920074,
"rotY": 270.012573,
"rotZ": 0.0168711413,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Trial by Fire",
"Description": "",
"GMNotes": "{\n \"id\": \"05281\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Spirit.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 374418,
"SidewaysCard": false,
"CustomDeck": {
"3744": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025946328/561232524C8EAA4B4371B28652F78969E6ED6FFB/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "eca1c8",
"Name": "Card",
"Transform": {
"posX": 8.971655,
"posY": 4.714499,
"posZ": -16.6886063,
"rotX": 359.920074,
"rotY": 270.012573,
"rotZ": 0.0168711413,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Versatile (2)",
"Description": "",
"GMNotes": "{\n \"id\": \"06167\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Talent.\",\n \"level\": 2,\n \"permanent\": true,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 379711,
"SidewaysCard": false,
"CustomDeck": {
"3797": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025942034/FEADE7F6206804B42CC9B6049F51EDF6040C5D1D/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "1f3880",
"Name": "Card",
"Transform": {
"posX": 8.971655,
"posY": 4.714499,
"posZ": -16.6886063,
"rotX": 359.920074,
"rotY": 270.012573,
"rotZ": 0.0168711413,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Smuggled Goods",
"Description": "",
"GMNotes": "{\n \"id\": \"04010\",\n \"type\": \"Event\",\n \"class\": \"Neutral\",\n \"traits\": \"Supply. Illicit.\",\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 376938,
"SidewaysCard": false,
"CustomDeck": {
"3769": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "7d3a27",
"Name": "Card",
"Transform": {
"posX": 8.971655,
"posY": 4.714499,
"posZ": -16.6886063,
"rotX": 359.920074,
"rotY": 270.012573,
"rotZ": 0.0168711413,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "All In (5)",
"Description": "",
"GMNotes": "{\n \"id\": \"04309\",\n \"type\": \"Skill\",\n \"class\": \"Rogue\",\n \"traits\": \"Fortune.\",\n \"level\": 5,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 265502,
"SidewaysCard": false,
"CustomDeck": {
"2655": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025944587/520448D0E9C22F102C7DDF64322EAD6FC221ECC8/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "bb501b",
"Name": "Card",
"Transform": {
"posX": 8.971655,
"posY": 4.717322,
"posZ": -16.6886063,
"rotX": 359.920074,
"rotY": 270.012573,
"rotZ": 0.0168711413,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Rise to the Occasion (3)",
"Description": "",
"GMNotes": "{\n \"id\": \"51010\",\n \"type\": \"Skill\",\n \"class\": \"Survivor\",\n \"traits\": \"Innate.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 314904,
"SidewaysCard": false,
"CustomDeck": {
"3149": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025946328/561232524C8EAA4B4371B28652F78969E6ED6FFB/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "7d4749",
"Name": "Card",
"Transform": {
"posX": 8.971655,
"posY": 4.717322,
"posZ": -16.6886063,
"rotX": 359.920074,
"rotY": 270.012573,
"rotZ": 0.0168711413,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Beat Cop",
"Description": "",
"GMNotes": "{\n \"id\": \"01018\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Ally. Police.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 226331,
"SidewaysCard": false,
"CustomDeck": {
"2263": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "312d38",
"Name": "Card",
"Transform": {
"posX": 8.971655,
"posY": 4.717322,
"posZ": -16.6886063,
"rotX": 359.920074,
"rotY": 270.012573,
"rotZ": 0.0168711413,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Hallowed Mirror",
"Description": "",
"GMNotes": "{\n \"id\": \"05313\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Item. Relic. Occult. Blessed.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false,\n \"bonded\": [\n {\n \"id\": \"05314\",\n \"count\": 3\n }\n ]\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 378620,
"SidewaysCard": false,
"CustomDeck": {
"3786": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025943109/9C5481E6DFEACD450C5522F884E615482281DDB1/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "e1aedf",
"Name": "Card",
"Transform": {
"posX": 8.971655,
"posY": 4.71692944,
"posZ": -16.6886063,
"rotX": 359.920074,
"rotY": 270.012573,
"rotZ": 0.0168711413,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Miss Doyle (1)",
"Description": "Cat General of Ulthar",
"GMNotes": "{\n \"id\": \"06030\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Ally. Creature. Dreamlands.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false,\n \"bonded\": [\n {\n \"id\": \"06031\",\n \"count\": 1\n },\n {\n \"id\": \"06032\",\n \"count\": 1\n },\n {\n \"id\": \"06033\",\n \"count\": 1\n }\n ]\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 440623,
"SidewaysCard": false,
"CustomDeck": {
"4406": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025946328/561232524C8EAA4B4371B28652F78969E6ED6FFB/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "0027f2",
"Name": "Card",
"Transform": {
"posX": 8.971655,
"posY": 4.71692944,
"posZ": -16.6886063,
"rotX": 359.920074,
"rotY": 270.012573,
"rotZ": 0.0168711413,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Will to Survive (3)",
"Description": "",
"GMNotes": "{\n \"id\": \"01085\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Spirit.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 368860,
"SidewaysCard": false,
"CustomDeck": {
"3688": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "dffe4a",
"Name": "Card",
"Transform": {
"posX": 8.971655,
"posY": 4.66342354,
"posZ": -16.6886063,
"rotX": 359.920074,
"rotY": 270.012573,
"rotZ": 0.0168711413,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Scrapper (3)",
"Description": "",
"GMNotes": "{\n \"id\": \"02193\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Talent.\",\n \"level\": 3,\n \"permanent\": true,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 368853,
"SidewaysCard": false,
"CustomDeck": {
"3688": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "edd6c4",
"Name": "Card",
"Transform": {
"posX": 8.971655,
"posY": 4.556907,
"posZ": -16.6886063,
"rotX": 359.920074,
"rotY": 270.012573,
"rotZ": 0.0168711413,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Lockpicks (1)",
"Description": "",
"GMNotes": "{\n \"id\": \"03031\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Item. Tool. Illicit.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Supply\",\n \"count\": 3\n }\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 315237,
"SidewaysCard": false,
"CustomDeck": {
"3152": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "00b6c3",
"Name": "Card",
"Transform": {
"posX": 8.971655,
"posY": 4.33485365,
"posZ": -16.6886063,
"rotX": 359.920074,
"rotY": 270.012573,
"rotZ": 0.0168711413,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "To Fight the Black Wind",
"Description": "",
"GMNotes": "{\n \"id\": \"98012\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Task. Dreamlands.\",\n \"permanent\": false,\n \"weakness\": true\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 230603,
"SidewaysCard": false,
"CustomDeck": {
"2306": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "84ba9d",
"Name": "Card",
"Transform": {
"posX": 8.971655,
"posY": 4.050895,
"posZ": -16.6886063,
"rotX": 359.920074,
"rotY": 270.012573,
"rotZ": 0.0168711413,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "\"I'll see you in hell!\"",
"Description": "",
"GMNotes": "{\n \"id\": \"03189\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Spirit.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 226307,
"SidewaysCard": false,
"CustomDeck": {
"2263": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "86ee68",
"Name": "Card",
"Transform": {
"posX": 8.971655,
"posY": 3.7551558,
"posZ": -16.6886063,
"rotX": 359.920074,
"rotY": 270.012573,
"rotZ": 0.0168711413,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Machete",
"Description": "",
"GMNotes": "{\n \"id\": \"01020\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Item. Weapon. Melee.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 226327,
"SidewaysCard": false,
"CustomDeck": {
"2263": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "71d99c",
"Name": "Card",
"Transform": {
"posX": 8.971723,
"posY": 3.68905163,
"posZ": -16.6886177,
"rotX": 359.91803,
"rotY": 270.012634,
"rotZ": 0.0174460057,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Occult Lexicon (3)",
"Description": "",
"GMNotes": "{\n \"id\": \"54004\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Tome. Occult.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false,\n \"bonded\": [\n {\n \"id\": \"05317\",\n \"count\": 3\n }\n ]\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 449524,
"SidewaysCard": false,
"CustomDeck": {
"4495": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1697276706766470010/D835D3A12B12173C78B2FFA055FEFD6042AEDD38/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 6,
"NumHeight": 6,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "da7c01",
"Name": "Card",
"Transform": {
"posX": 8.971723,
"posY": 3.68905163,
"posZ": -16.6886177,
"rotX": 359.91803,
"rotY": 270.012634,
"rotZ": 0.0174460057,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Pickpocketing",
"Description": "",
"GMNotes": "{\n \"id\": \"01046\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Talent. Illicit.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 368625,
"SidewaysCard": false,
"CustomDeck": {
"3686": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "b0f851",
"Name": "Card",
"Transform": {
"posX": 8.971697,
"posY": 3.75936627,
"posZ": -16.688612,
"rotX": 359.917755,
"rotY": 270.0127,
"rotZ": 0.0175129436,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": ".32 Colt",
"Description": "",
"GMNotes": "{\n \"id\": \"03020\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Item. Weapon. Firearm.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Ammo\",\n \"count\": 6\n }\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 226328,
"SidewaysCard": false,
"CustomDeck": {
"2263": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "25ad44",
"Name": "Card",
"Transform": {
"posX": 8.971697,
"posY": 3.75936627,
"posZ": -16.688612,
"rotX": 359.917755,
"rotY": 270.0127,
"rotZ": 0.0175129436,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Kerosene (1)",
"Description": "",
"GMNotes": "{\n \"id\": \"04304\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Item.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Supply\",\n \"count\": 3\n }\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 314003,
"SidewaysCard": false,
"CustomDeck": {
"3140": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025943109/9C5481E6DFEACD450C5522F884E615482281DDB1/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "86cf9c",
"Name": "Card",
"Transform": {
"posX": 8.971671,
"posY": 3.82643366,
"posZ": -16.6886063,
"rotX": 359.91748,
"rotY": 270.0127,
"rotZ": 0.0175798144,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Unbound Beast",
"Description": "Monster. Extradimensional. Tindalos.",
"GMNotes": "{\n \"id\": \"06283\",\n \"type\": \"Enemy\",\n \"class\": \"Neutral\",\n \"traits\": \"Monster. Extradimensional. Tindalos.\",\n \"permanent\": false,\n \"bonded_to\": [\n {\n \"id\": \"06282\",\n \"count\": 1\n }\n ],\n \"weakness\": true\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 527236,
"SidewaysCard": false,
"CustomDeck": {
"5272": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025945336/04E36F64C2CBE1B4905FF44A869C75EC52CB3A56/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "5cd622",
"Name": "Card",
"Transform": {
"posX": 8.971671,
"posY": 3.82643366,
"posZ": -16.6886063,
"rotX": 359.91748,
"rotY": 270.0127,
"rotZ": 0.0175798144,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "First Aid",
"Description": "",
"GMNotes": "{\n \"id\": \"01019\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Talent. Science.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Supply\",\n \"count\": 3\n }\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 226324,
"SidewaysCard": false,
"CustomDeck": {
"2263": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "b51688",
"Name": "Card",
"Transform": {
"posX": 8.971671,
"posY": 3.82643366,
"posZ": -16.6886063,
"rotX": 359.91748,
"rotY": 270.0127,
"rotZ": 0.0175798144,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Joey \"The Rat\" Vigil",
"Description": "Lookin' Out For #1",
"GMNotes": "{\n \"id\": \"02265\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Ally. Criminal.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 368629,
"SidewaysCard": false,
"CustomDeck": {
"3686": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "831b6b",
"Name": "Card",
"Transform": {
"posX": 8.971645,
"posY": 3.94015861,
"posZ": -16.6886,
"rotX": 359.9172,
"rotY": 270.012726,
"rotZ": 0.0176466126,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Prepared for the Worst",
"Description": "",
"GMNotes": "{\n \"id\": \"02184\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Tactic.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 226310,
"SidewaysCard": false,
"CustomDeck": {
"2263": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "0ab574",
"Name": "Card",
"Transform": {
"posX": 8.971645,
"posY": 3.94015861,
"posZ": -16.6886,
"rotX": 359.9172,
"rotY": 270.012726,
"rotZ": 0.0176466126,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Mk 1 Grenades (4)",
"Description": "",
"GMNotes": "{\n \"id\": \"05273\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Item. Weapon. Ranged.\",\n \"level\": 4,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Supply\",\n \"count\": 3\n }\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 378617,
"SidewaysCard": false,
"CustomDeck": {
"3786": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025943109/9C5481E6DFEACD450C5522F884E615482281DDB1/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "e929f9",
"Name": "Card",
"Transform": {
"posX": 8.97162,
"posY": 4.00064373,
"posZ": -16.6885929,
"rotX": 359.9169,
"rotY": 270.012756,
"rotZ": 0.0177133344,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Heirloom of Hyperborea",
"Description": "Artifact from Another Life",
"GMNotes": "{\n \"id\": \"01012\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Relic.\",\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 290422,
"SidewaysCard": false,
"CustomDeck": {
"2904": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1697276627309509299/3B0E32939EB4599CCE3596975637C90FE4EE1DD6/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "2fdcc9",
"Name": "Card",
"Transform": {
"posX": 8.97162,
"posY": 4.00064373,
"posZ": -16.6885929,
"rotX": 359.9169,
"rotY": 270.012756,
"rotZ": 0.0177133344,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Vault of Knowledge",
"Description": "",
"GMNotes": "{\n \"id\": \"60202\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Talent.\",\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 538800,
"SidewaysCard": false,
"CustomDeck": {
"5388": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1546381162227145538/0F253FC5301911273C32210992261DD1D2EBB578/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "13413d",
"Name": "Card",
"Transform": {
"posX": 8.971594,
"posY": 4.057892,
"posZ": -16.6885853,
"rotX": 359.916626,
"rotY": 270.012756,
"rotZ": 0.0177799817,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Connect the Dots",
"Description": "",
"GMNotes": "{\n \"id\": \"05025\",\n \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"traits\": \"Insight.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 430809,
"SidewaysCard": false,
"CustomDeck": {
"4308": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "eb6165",
"Name": "Card",
"Transform": {
"posX": 8.971568,
"posY": 4.06200647,
"posZ": -16.6885815,
"rotX": 359.916351,
"rotY": 270.0128,
"rotZ": 0.0178465676,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Working a Hunch",
"Description": "",
"GMNotes": "{\n \"id\": \"01037\",\n \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"traits\": \"Insight.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 368413,
"SidewaysCard": false,
"CustomDeck": {
"3684": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "f6dfe5",
"Name": "Card",
"Transform": {
"posX": 8.971568,
"posY": 4.06200647,
"posZ": -16.6885815,
"rotX": 359.916351,
"rotY": 270.0128,
"rotZ": 0.0178465676,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Grete Wagner",
"Description": "The Purifier",
"GMNotes": "{\n \"id\": \"60107\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Ally. Hunter.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 545305,
"SidewaysCard": false,
"CustomDeck": {
"5453": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1546380927206250326/18BF6D2B2BBFDDBE5B021A46C310E4F45493EC26/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "9c56d3",
"Name": "Card",
"Transform": {
"posX": 8.971542,
"posY": 4.11289167,
"posZ": -16.6885757,
"rotX": 359.916046,
"rotY": 270.012817,
"rotZ": 0.0179130659,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Ancient Stone (4)",
"Description": "Minds in Harmony",
"GMNotes": "{\n \"id\": \"04231\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Relic.\",\n \"level\": 4,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 262201,
"SidewaysCard": false,
"CustomDeck": {
"2622": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "e84eff",
"Name": "Card",
"Transform": {
"posX": 8.971542,
"posY": 4.11289167,
"posZ": -16.6885757,
"rotX": 359.916046,
"rotY": 270.012817,
"rotZ": 0.0179130659,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Eldritch Inspiration (1)",
"Description": "",
"GMNotes": "{\n \"id\": \"60420\",\n \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell. Spirit.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 538718,
"SidewaysCard": false,
"CustomDeck": {
"5387": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297472038/B38A78EF27EBE0BDE1B36958D297701505AB936A/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "9bc46e",
"Name": "Card",
"Transform": {
"posX": 8.971491,
"posY": 4.155087,
"posZ": -16.6885643,
"rotX": 359.9155,
"rotY": 270.012848,
"rotZ": 0.0180458426,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Ancient Stone (1)",
"Description": "Unidentified",
"GMNotes": "{\n \"id\": \"04022\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Relic.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 430639,
"SidewaysCard": false,
"CustomDeck": {
"4306": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "180b5b",
"Name": "Card",
"Transform": {
"posX": 8.971491,
"posY": 4.155087,
"posZ": -16.6885643,
"rotX": 359.9155,
"rotY": 270.012848,
"rotZ": 0.0180458426,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Sell Your Soul",
"Description": "Weakness",
"GMNotes": "{\n \"id\": \"53015\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Pact.\",\n \"permanent\": false,\n \"weakness\": true\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 545214,
"SidewaysCard": false,
"CustomDeck": {
"5452": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1487830656537158415/2EBB208AA994ED70FD0FEB02D4E4FE78FE43EE02/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "b7c316",
"Name": "Card",
"Transform": {
"posX": 8.971465,
"posY": 4.196404,
"posZ": -16.6885586,
"rotX": 359.9152,
"rotY": 270.012878,
"rotZ": 0.0181121156,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Gaze of Ouraxsh (2)",
"Description": "",
"GMNotes": "{\n \"id\": \"07155\",\n \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"traits\": \"Spell. Cursed.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 232103,
"SidewaysCard": false,
"CustomDeck": {
"2321": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1655600400212405700/559F1F3EF87BDF7F067F9B7011EDC3A6ACE71259/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 5,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "d64c99",
"Name": "Card",
"Transform": {
"posX": 8.971439,
"posY": 4.184605,
"posZ": -16.6885529,
"rotX": 359.914948,
"rotY": 270.012878,
"rotZ": 0.01817832,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Truth from Fiction",
"Description": "",
"GMNotes": "{\n \"id\": \"04152\",\n \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"traits\": \"Insight.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Secret\",\n \"count\": 2\n }\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 368412,
"SidewaysCard": false,
"CustomDeck": {
"3684": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "5f33be",
"Name": "Card",
"Transform": {
"posX": 8.971439,
"posY": 4.184605,
"posZ": -16.6885529,
"rotX": 359.914948,
"rotY": 270.012878,
"rotZ": 0.01817832,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Handcuffs",
"Description": "",
"GMNotes": "{\n \"id\": \"04265\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Item. Police.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 313301,
"SidewaysCard": false,
"CustomDeck": {
"3133": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025943109/9C5481E6DFEACD450C5522F884E615482281DDB1/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "d6eda3",
"Name": "Card",
"Transform": {
"posX": 8.971414,
"posY": 4.219594,
"posZ": -16.6885471,
"rotX": 359.914642,
"rotY": 270.012878,
"rotZ": 0.0182444472,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Agency Backup (5)",
"Description": "",
"GMNotes": "{\n \"id\": \"05274\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Ally. Agency.\",\n \"level\": 5,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 378618,
"SidewaysCard": false,
"CustomDeck": {
"3786": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025943109/9C5481E6DFEACD450C5522F884E615482281DDB1/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "cf9ca8",
"Name": "Card",
"Transform": {
"posX": 8.971414,
"posY": 4.219594,
"posZ": -16.6885471,
"rotX": 359.914642,
"rotY": 270.012878,
"rotZ": 0.0182444472,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Augur",
"Description": "",
"GMNotes": "{\n \"id\": \"06033\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Ally. Creature. Dreamlands.\",\n \"permanent\": false,\n \"bonded_to\": [\n {\n \"id\": \"06030\",\n \"count\": 1\n }\n ],\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 440626,
"SidewaysCard": false,
"CustomDeck": {
"4406": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025946328/561232524C8EAA4B4371B28652F78969E6ED6FFB/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "68fce2",
"Name": "Card",
"Transform": {
"posX": 8.971388,
"posY": 4.251375,
"posZ": -16.68854,
"rotX": 359.914368,
"rotY": 270.012878,
"rotZ": 0.0183105059,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Mists of R'lyeh (4)",
"Description": "",
"GMNotes": "{\n \"id\": \"04271\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\",\n \"level\": 4,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Charge\",\n \"count\": 5\n }\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 230357,
"SidewaysCard": false,
"CustomDeck": {
"2303": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "14e212",
"Name": "Card",
"Transform": {
"posX": 8.971362,
"posY": 4.23005056,
"posZ": -16.6885319,
"rotX": 359.9141,
"rotY": 270.012939,
"rotZ": 0.0183764957,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Delve Too Deep",
"Description": "",
"GMNotes": "{\n \"id\": \"02111\",\n \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"traits\": \"Insight.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 230310,
"SidewaysCard": false,
"CustomDeck": {
"2303": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "85e7d9",
"Name": "Card",
"Transform": {
"posX": 8.971336,
"posY": 4.205623,
"posZ": -16.6885281,
"rotX": 359.913818,
"rotY": 270.01297,
"rotZ": 0.01844239,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Accursed Fate",
"Description": "Weakness",
"GMNotes": "{\n \"id\": \"04041\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Curse.\",\n \"permanent\": false,\n \"weakness\": true\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 537608,
"SidewaysCard": false,
"CustomDeck": {
"5376": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "2ebdf1",
"Name": "Card",
"Transform": {
"posX": 8.971312,
"posY": 4.17809725,
"posZ": -16.6885223,
"rotX": 359.913544,
"rotY": 270.01297,
"rotZ": 0.0185082369,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "On Your Own (3)",
"Description": "Permanent",
"GMNotes": "{\n \"id\": \"53010\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Talent.\",\n \"level\": 3,\n \"permanent\": true,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 545209,
"SidewaysCard": false,
"CustomDeck": {
"5452": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1487830656537158415/2EBB208AA994ED70FD0FEB02D4E4FE78FE43EE02/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "cd0ac1",
"Name": "Card",
"Transform": {
"posX": 8.971287,
"posY": 4.14747572,
"posZ": -16.6885166,
"rotX": 359.913239,
"rotY": 270.013,
"rotZ": 0.018574005,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Fearless",
"Description": "",
"GMNotes": "{\n \"id\": \"01067\",\n \"type\": \"Skill\",\n \"class\": \"Mystic\",\n \"traits\": \"Innate.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 230303,
"SidewaysCard": false,
"CustomDeck": {
"2303": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "66d810",
"Name": "Card",
"Transform": {
"posX": 8.971262,
"posY": 4.113762,
"posZ": -16.68851,
"rotX": 359.912964,
"rotY": 270.013,
"rotZ": 0.0186396874,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Zoey's Cross",
"Description": "",
"GMNotes": "{\n \"id\": \"02006\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Charm.\",\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 371704,
"SidewaysCard": false,
"CustomDeck": {
"3717": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "6047d6",
"Name": "Card",
"Transform": {
"posX": 8.971262,
"posY": 4.113762,
"posZ": -16.68851,
"rotX": 359.912964,
"rotY": 270.013,
"rotZ": 0.0186396874,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Pendant of the Queen (Taboo)",
"Description": "Of Nothing at All",
"GMNotes": "{\n \"id\": \"06022-t\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Relic.\",\n \"permanent\": false,\n \"bonded_to\": [\n {\n \"id\": \"06021\",\n \"count\": 1\n }\n ],\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 584709,
"SidewaysCard": false,
"CustomDeck": {
"5847": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1697277388086984548/E61F3E847797C2C9231829611E0D92BA6376FA67/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 4,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "734b45",
"Name": "Card",
"Transform": {
"posX": 8.971237,
"posY": 4.126861,
"posZ": -16.6885052,
"rotX": 359.9127,
"rotY": 270.013031,
"rotZ": 0.01870531,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Dig Deep (4)",
"Description": "",
"GMNotes": "{\n \"id\": \"07270\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Talent.\",\n \"level\": 4,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Resource\",\n \"count\": 2\n }\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 449609,
"SidewaysCard": false,
"CustomDeck": {
"4496": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1747933191220177818/637923621F747375066D4DA39BEA3BA9C26086A5/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 7,
"NumHeight": 3,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "98c5af",
"Name": "Card",
"Transform": {
"posX": 8.971237,
"posY": 4.126861,
"posZ": -16.6885052,
"rotX": 359.9127,
"rotY": 270.013031,
"rotZ": 0.01870531,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Dream-Enhancing Serum",
"Description": "",
"GMNotes": "{\n \"id\": \"06159\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Science.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 379931,
"SidewaysCard": false,
"CustomDeck": {
"3799": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "62d930",
"Name": "Card",
"Transform": {
"posX": 8.971212,
"posY": 4.13677645,
"posZ": -16.6884975,
"rotX": 359.9124,
"rotY": 270.013062,
"rotZ": 0.0187708475,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "The Gold Pocket Watch (4)",
"Description": "Stealing Time",
"GMNotes": "{\n \"id\": \"02305\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Item. Relic.\",\n \"level\": 4,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 315257,
"SidewaysCard": false,
"CustomDeck": {
"3152": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "274daa",
"Name": "Card",
"Transform": {
"posX": 8.971212,
"posY": 4.13677645,
"posZ": -16.6884975,
"rotX": 359.9124,
"rotY": 270.013062,
"rotZ": 0.0187708475,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Mysteries Remain",
"Description": "",
"GMNotes": "{\n \"id\": \"98005\",\n \"type\": \"Event\",\n \"class\": \"Neutral\",\n \"traits\": \"Insight.\",\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 370046,
"SidewaysCard": false,
"CustomDeck": {
"3700": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "017e1f",
"Name": "Card",
"Transform": {
"posX": 8.971188,
"posY": 4.1435113,
"posZ": -16.68849,
"rotX": 359.91214,
"rotY": 270.013062,
"rotZ": 0.0188363232,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Overpower (2)",
"Description": "",
"GMNotes": "{\n \"id\": \"60126\",\n \"type\": \"Skill\",\n \"class\": \"Guardian\",\n \"traits\": \"Practiced. Expert.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 545324,
"SidewaysCard": false,
"CustomDeck": {
"5453": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1546380927206250326/18BF6D2B2BBFDDBE5B021A46C310E4F45493EC26/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "b39b78",
"Name": "Card",
"Transform": {
"posX": 8.971188,
"posY": 4.1435113,
"posZ": -16.68849,
"rotX": 359.91214,
"rotY": 270.013062,
"rotZ": 0.0188363232,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Grete Wagner (3)",
"Description": "The Purifier",
"GMNotes": "{\n \"id\": \"60128\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Ally. Hunter.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 545326,
"SidewaysCard": false,
"CustomDeck": {
"5453": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1546380927206250326/18BF6D2B2BBFDDBE5B021A46C310E4F45493EC26/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "8f3c8e",
"Name": "Card",
"Transform": {
"posX": 8.971188,
"posY": 4.1435113,
"posZ": -16.68849,
"rotX": 359.91214,
"rotY": 270.013062,
"rotZ": 0.0188363232,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Hypnotic Gaze",
"Description": "",
"GMNotes": "{\n \"id\": \"02153\",\n \"alternate_ids\": [ \"60414\" ],\n \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 230313,
"SidewaysCard": false,
"CustomDeck": {
"2303": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "8ae314",
"Name": "Card",
"Transform": {
"posX": 8.971163,
"posY": 4.19697142,
"posZ": -16.6884823,
"rotX": 359.911865,
"rotY": 270.0131,
"rotZ": 0.018901702,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Dr. Milan Christopher (Taboo)",
"Description": "Professor of Entomology",
"GMNotes": "{\n \"id\": \"01033-t\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Ally. Miskatonic.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 450614,
"SidewaysCard": false,
"CustomDeck": {
"4506": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1656721113609569419/60B1DFC7C68C406C34641A1F53078F46D610821C/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "949ca2",
"Name": "Card",
"Transform": {
"posX": 8.971163,
"posY": 4.19697142,
"posZ": -16.6884823,
"rotX": 359.911865,
"rotY": 270.0131,
"rotZ": 0.018901702,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Crystalline Elder Sign (3)",
"Description": "",
"GMNotes": "{\n \"id\": \"04235\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Item. Relic. Blessed.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 230353,
"SidewaysCard": false,
"CustomDeck": {
"2303": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "VALID_TOKENS = {\n [\"+1\"]=true,\n [\"Elder Sign\"]=true\n}\n\nfunction 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 VALID_TOKENS[name] ~= nil then\n self.addContextMenuItem(\"Seal \" .. name, 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": "e2767a",
"Name": "Card",
"Transform": {
"posX": 8.971138,
"posY": 4.197258,
"posZ": -16.6884766,
"rotX": 359.9116,
"rotY": 270.013123,
"rotZ": 0.018967038,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Cunning",
"Description": "",
"GMNotes": "{\n \"id\": \"05030\",\n \"type\": \"Skill\",\n \"class\": \"Rogue\",\n \"traits\": \"Innate.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 527606,
"SidewaysCard": false,
"CustomDeck": {
"5276": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025944587/520448D0E9C22F102C7DDF64322EAD6FC221ECC8/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "7f99cc",
"Name": "Card",
"Transform": {
"posX": 8.971113,
"posY": 4.14447355,
"posZ": -16.68847,
"rotX": 359.9113,
"rotY": 270.013123,
"rotZ": 0.0190322939,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Pathfinder (1)",
"Description": "",
"GMNotes": "{\n \"id\": \"02108\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Talent.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 430641,
"SidewaysCard": false,
"CustomDeck": {
"4306": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "b67371",
"Name": "Card",
"Transform": {
"posX": 8.971113,
"posY": 4.14447355,
"posZ": -16.68847,
"rotX": 359.9113,
"rotY": 270.013123,
"rotZ": 0.0190322939,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Clairvoyance",
"Description": "",
"GMNotes": "{\n \"id\": \"60408\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Charge\",\n \"count\": 3\n }\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 538706,
"SidewaysCard": false,
"CustomDeck": {
"5387": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297472038/B38A78EF27EBE0BDE1B36958D297701505AB936A/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "0c433b",
"Name": "Card",
"Transform": {
"posX": 8.971113,
"posY": 4.14447355,
"posZ": -16.68847,
"rotX": 359.9113,
"rotY": 270.013123,
"rotZ": 0.0190322939,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Dumb Luck (2)",
"Description": "",
"GMNotes": "{\n \"id\": \"60525\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Fortune.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 550823,
"SidewaysCard": false,
"CustomDeck": {
"5508": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456298038335/2CA532D7F0EED2B2B40E47709AC56D85C4613A33/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "b7c503",
"Name": "Card",
"Transform": {
"posX": 8.971088,
"posY": 4.18842459,
"posZ": -16.6884632,
"rotX": 359.911041,
"rotY": 270.013153,
"rotZ": 0.0190974716,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Ghastly Revelation",
"Description": "",
"GMNotes": "{\n \"id\": \"05275\",\n \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"traits\": \"Spirit.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 592318,
"SidewaysCard": false,
"CustomDeck": {
"5923": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "b265c4",
"Name": "Card",
"Transform": {
"posX": 8.971088,
"posY": 4.18842459,
"posZ": -16.6884632,
"rotX": 359.911041,
"rotY": 270.013153,
"rotZ": 0.0190974716,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Deduction",
"Description": "",
"GMNotes": "{\n \"id\": \"01039\",\n \"alternate_ids\": [ \"60219\" ],\n \"type\": \"Skill\",\n \"class\": \"Seeker\",\n \"traits\": \"Practiced.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 368402,
"SidewaysCard": false,
"CustomDeck": {
"3684": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "c4d436",
"Name": "Card",
"Transform": {
"posX": 8.971064,
"posY": 4.17921352,
"posZ": -16.6884556,
"rotX": 359.910767,
"rotY": 270.013184,
"rotZ": 0.0191625841,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Ace of Swords (1)",
"Description": "Let Your Arrow Fly True",
"GMNotes": "{\n \"id\": \"05023\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Tarot.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 431009,
"SidewaysCard": false,
"CustomDeck": {
"4310": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025943109/9C5481E6DFEACD450C5522F884E615482281DDB1/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "88a481",
"Name": "Card",
"Transform": {
"posX": 8.971064,
"posY": 4.17921352,
"posZ": -16.6884556,
"rotX": 359.910767,
"rotY": 270.013184,
"rotZ": 0.0191625841,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Streetwise (3) (Taboo)",
"Description": "",
"GMNotes": "{\n \"id\": \"02189-t\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Talent.\",\n \"level\": 3,\n \"permanent\": true,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 450605,
"SidewaysCard": false,
"CustomDeck": {
"4506": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1656721113609569419/60B1DFC7C68C406C34641A1F53078F46D610821C/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "2d9256",
"Name": "Card",
"Transform": {
"posX": 8.971064,
"posY": 4.17921352,
"posZ": -16.6884556,
"rotX": 359.910767,
"rotY": 270.013184,
"rotZ": 0.0191625841,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Directive",
"Description": "Consult Experts",
"GMNotes": "{\n \"id\": \"90027\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"permanent\": true,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 536202,
"SidewaysCard": false,
"CustomDeck": {
"5362": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1697276706761486024/CC7FAD210F216229F1A721BF648855D156F052D5/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 4,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "66b7d5",
"Name": "Card",
"Transform": {
"posX": 8.971014,
"posY": 4.20102167,
"posZ": -16.6884441,
"rotX": 359.9102,
"rotY": 270.013245,
"rotZ": 0.0192925856,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Well Connected",
"Description": "",
"GMNotes": "{\n \"id\": \"05028\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Condition.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 527608,
"SidewaysCard": false,
"CustomDeck": {
"5276": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025944587/520448D0E9C22F102C7DDF64322EAD6FC221ECC8/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "d24531",
"Name": "Card",
"Transform": {
"posX": 8.971014,
"posY": 4.20102167,
"posZ": -16.6884441,
"rotX": 359.9102,
"rotY": 270.013245,
"rotZ": 0.0192925856,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Deny Existence (5)",
"Description": "",
"GMNotes": "{\n \"id\": \"05280\",\n \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell. Paradox.\",\n \"level\": 5,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 379617,
"SidewaysCard": false,
"CustomDeck": {
"3796": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025945336/04E36F64C2CBE1B4905FF44A869C75EC52CB3A56/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "5065a6",
"Name": "Card",
"Transform": {
"posX": 8.970989,
"posY": 4.18224573,
"posZ": -16.6884384,
"rotX": 359.9099,
"rotY": 270.013245,
"rotZ": 0.0193574689,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Liquid Courage (1)",
"Description": "",
"GMNotes": "{\n \"id\": \"60320\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Item. Illicit.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Supply\",\n \"count\": 4\n }\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 538618,
"SidewaysCard": false,
"CustomDeck": {
"5386": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456298037683/22C99DD745DFF65ECC72FD32EFA9C9D0F0C12862/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "35e8e2",
"Name": "Card",
"Transform": {
"posX": 8.970989,
"posY": 4.18224573,
"posZ": -16.6884384,
"rotX": 359.9099,
"rotY": 270.013245,
"rotZ": 0.0193574689,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Pocket Portal",
"Description": "Doorway to Another World",
"GMNotes": "{\n \"id\": \"86052\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Spell.\",\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 584027,
"SidewaysCard": false,
"CustomDeck": {
"5840": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1655600953065965648/5A0D88CCA811A490C2FEF2675A397E1CEE010870/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 8,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "464ca1",
"Name": "Card",
"Transform": {
"posX": 8.970989,
"posY": 4.18224573,
"posZ": -16.6884384,
"rotX": 359.9099,
"rotY": 270.013245,
"rotZ": 0.0193574689,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Wish Eater",
"Description": "Jewel of the Gods",
"GMNotes": "{\n \"id\": \"06277\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Item. Relic. Blessed.\",\n \"permanent\": false,\n \"bonded_to\": [\n {\n \"id\": \"06276\",\n \"count\": 1\n }\n ],\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 448937,
"SidewaysCard": false,
"CustomDeck": {
"4489": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025943109/9C5481E6DFEACD450C5522F884E615482281DDB1/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "ad63bc",
"Name": "Card",
"Transform": {
"posX": 8.970964,
"posY": 4.21022272,
"posZ": -16.6884327,
"rotX": 359.909637,
"rotY": 270.013245,
"rotZ": 0.0194222778,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Showmanship",
"Description": "",
"GMNotes": "{\n \"id\": \"07012\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Talent.\",\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 580206,
"SidewaysCard": false,
"CustomDeck": {
"5802": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320664132663842/9B2F50595A754585A4DF12D6D48DC2561DC0E2C9/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "971d52",
"Name": "Card",
"Transform": {
"posX": 8.97094,
"posY": 4.135154,
"posZ": -16.688427,
"rotX": 359.909363,
"rotY": 270.0133,
"rotZ": 0.0194870252,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Familiar Spirit",
"Description": "",
"GMNotes": "{\n \"id\": \"60410\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Ally. Creature. Summon.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 538708,
"SidewaysCard": false,
"CustomDeck": {
"5387": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297472038/B38A78EF27EBE0BDE1B36958D297701505AB936A/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "46187b",
"Name": "Card",
"Transform": {
"posX": 8.970915,
"posY": 4.057042,
"posZ": -16.6884212,
"rotX": 359.9091,
"rotY": 270.0133,
"rotZ": 0.0195516981,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Five of Pentacles (1)",
"Description": "From the Brink",
"GMNotes": "{\n \"id\": \"05039\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Tarot.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 274609,
"SidewaysCard": false,
"CustomDeck": {
"2746": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025946328/561232524C8EAA4B4371B28652F78969E6ED6FFB/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "5e32a5",
"Name": "Card",
"Transform": {
"posX": 8.970915,
"posY": 4.057042,
"posZ": -16.6884212,
"rotX": 359.9091,
"rotY": 270.0133,
"rotZ": 0.0195516981,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Preposterous Sketches (2)",
"Description": "",
"GMNotes": "{\n \"id\": \"51003\",\n \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"traits\": \"Insight.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 313906,
"SidewaysCard": false,
"CustomDeck": {
"3139": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "a4775a",
"Name": "Card",
"Transform": {
"posX": 8.97089,
"posY": 4.025792,
"posZ": -16.6884155,
"rotX": 359.9088,
"rotY": 270.0133,
"rotZ": 0.0196163114,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Enchanted Skull",
"Description": "Mask of the Burning Pit",
"GMNotes": "{\n \"id\": \"86055\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Relic.\",\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 585230,
"SidewaysCard": false,
"CustomDeck": {
"5852": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1655600953065965648/5A0D88CCA811A490C2FEF2675A397E1CEE010870/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 8,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "ea40f6",
"Name": "Card",
"Transform": {
"posX": 8.97089,
"posY": 4.025792,
"posZ": -16.6884155,
"rotX": 359.9088,
"rotY": 270.0133,
"rotZ": 0.0196163226,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Dream Diary (3)",
"Description": "Dreams of a Child",
"GMNotes": "{\n \"id\": \"06238\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Tome. Charm.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false,\n \"bonded\": [\n {\n \"id\": \"06113\",\n \"count\": 1\n }\n ]\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 447836,
"SidewaysCard": false,
"CustomDeck": {
"4478": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "0d4eb9",
"Name": "Card",
"Transform": {
"posX": 8.970865,
"posY": 3.99140835,
"posZ": -16.68841,
"rotX": 359.908539,
"rotY": 270.0133,
"rotZ": 0.0196808483,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Trench Knife",
"Description": "",
"GMNotes": "{\n \"id\": \"03147\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Item. Weapon. Melee.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 226320,
"SidewaysCard": false,
"CustomDeck": {
"2263": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "ab37af",
"Name": "Card",
"Transform": {
"posX": 8.970865,
"posY": 3.99140835,
"posZ": -16.68841,
"rotX": 359.908539,
"rotY": 270.0133,
"rotZ": 0.0196808483,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Scene of the Crime",
"Description": "",
"GMNotes": "{\n \"id\": \"04103\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Insight. Bold.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 226318,
"SidewaysCard": false,
"CustomDeck": {
"2263": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "ee20c9",
"Name": "Card",
"Transform": {
"posX": 8.97084,
"posY": 3.953893,
"posZ": -16.6884041,
"rotX": 359.908264,
"rotY": 270.013336,
"rotZ": 0.0197453033,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Newspaper",
"Description": "",
"GMNotes": "{\n \"id\": \"02155\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Item.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 368826,
"SidewaysCard": false,
"CustomDeck": {
"3688": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "3442f5",
"Name": "Card",
"Transform": {
"posX": 8.97084,
"posY": 3.953893,
"posZ": -16.6884041,
"rotX": 359.908264,
"rotY": 270.013336,
"rotZ": 0.0197453033,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "False Covenant (2)",
"Description": "",
"GMNotes": "{\n \"id\": \"07116\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Covenant. Cursed.\",\n \"level\": 2,\n \"permanent\": true,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 553108,
"SidewaysCard": false,
"CustomDeck": {
"5531": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1684870715280867313/BFD2AF968EAC917D3B838DCB8B1656941CD8B5CC/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "fe2db3",
"Name": "Card",
"Transform": {
"posX": 8.970816,
"posY": 3.91325045,
"posZ": -16.6883984,
"rotX": 359.908,
"rotY": 270.013367,
"rotZ": 0.0198096931,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": ".41 Derringer",
"Description": "",
"GMNotes": "{\n \"id\": \"01047\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Item. Weapon. Firearm. Illicit.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Ammo\",\n \"count\": 3\n }\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 368628,
"SidewaysCard": false,
"CustomDeck": {
"3686": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "7bc995",
"Name": "Card",
"Transform": {
"posX": 8.970791,
"posY": 3.81958246,
"posZ": -16.6883926,
"rotX": 359.9077,
"rotY": 270.013367,
"rotZ": 0.0198740158,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Ward of Protection (5)",
"Description": "",
"GMNotes": "{\n \"id\": \"02307\",\n \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell. Spirit.\",\n \"level\": 5,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 230360,
"SidewaysCard": false,
"CustomDeck": {
"2303": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "be4abe",
"Name": "Card",
"Transform": {
"posX": 8.970791,
"posY": 3.81958246,
"posZ": -16.6883926,
"rotX": 359.9077,
"rotY": 270.013367,
"rotZ": 0.0198740158,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Survival Instinct (2)",
"Description": "",
"GMNotes": "{\n \"id\": \"02235\",\n \"type\": \"Skill\",\n \"class\": \"Survivor\",\n \"traits\": \"Innate. Developed.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 368842,
"SidewaysCard": false,
"CustomDeck": {
"3688": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "fb9b7e",
"Name": "Card",
"Transform": {
"posX": 8.970791,
"posY": 3.81958246,
"posZ": -16.6883926,
"rotX": 359.9077,
"rotY": 270.013367,
"rotZ": 0.0198740158,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Brute Force (1)",
"Description": "",
"GMNotes": "{\n \"id\": \"06166\",\n \"type\": \"Skill\",\n \"class\": \"Survivor\",\n \"traits\": \"Innate. Developed.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 380230,
"SidewaysCard": false,
"CustomDeck": {
"3802": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025946328/561232524C8EAA4B4371B28652F78969E6ED6FFB/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "b67931",
"Name": "Card",
"Transform": {
"posX": 8.970791,
"posY": 3.81958246,
"posZ": -16.6883926,
"rotX": 359.9077,
"rotY": 270.013367,
"rotZ": 0.0198740158,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Elusive (Taboo)",
"Description": "",
"GMNotes": "{\n \"id\": \"01050-t\",\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"traits\": \"Tactic.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 585804,
"SidewaysCard": false,
"CustomDeck": {
"5858": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1697277388086984548/E61F3E847797C2C9231829611E0D92BA6376FA67/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 4,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "f295d9",
"Name": "Card",
"Transform": {
"posX": 8.970766,
"posY": 3.8725965,
"posZ": -16.6883869,
"rotX": 359.907471,
"rotY": 270.0134,
"rotZ": 0.0199382585,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Clasp of Black Onyx",
"Description": "A Gift Unlooked For",
"GMNotes": "{\n \"id\": \"03142\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Relic.\",\n \"permanent\": false,\n \"weakness\": true\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 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": 232332,
"SidewaysCard": false,
"CustomDeck": {
"2323": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "1f7e6e",
"Name": "Card",
"Transform": {
"posX": 8.970741,
"posY": 3.772592,
"posZ": -16.6883812,
"rotX": 359.9072,
"rotY": 270.013428,
"rotZ": 0.020002434,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Thomas Dawson",
"Description": "Soldier in a New War",
"GMNotes": "{\n \"id\": \"07082\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Agency. Veteran.\",\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 369815,
"SidewaysCard": false,
"CustomDeck": {
"3698": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320664132663476/95B0BD966B579DEE644A25703730C8729B16AAF8/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "83d8d7",
"Name": "Card",
"Transform": {
"posX": 8.970741,
"posY": 3.772592,
"posZ": -16.6883812,
"rotX": 359.9072,
"rotY": 270.013428,
"rotZ": 0.0200024415,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Leadership",
"Description": "",
"GMNotes": "{\n \"id\": \"02260\",\n \"type\": \"Skill\",\n \"class\": \"Guardian\",\n \"traits\": \"Practiced.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 226303,
"SidewaysCard": false,
"CustomDeck": {
"2263": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "c4cf62",
"Name": "Card",
"Transform": {
"posX": 8.970716,
"posY": 3.71947432,
"posZ": -16.6883755,
"rotX": 359.906921,
"rotY": 270.013428,
"rotZ": 0.020066537,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Bulletproof Vest (3)",
"Description": "",
"GMNotes": "{\n \"id\": \"01094\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Armor.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 368521,
"SidewaysCard": false,
"CustomDeck": {
"3685": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "60b353",
"Name": "Card",
"Transform": {
"posX": 8.970716,
"posY": 3.71947432,
"posZ": -16.6883755,
"rotX": 359.906921,
"rotY": 270.013428,
"rotZ": 0.02006654,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Preposterous Sketches",
"Description": "",
"GMNotes": "{\n \"id\": \"02186\",\n \"alternate_ids\": [ \"60218\" ],\n \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"traits\": \"Insight.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 368416,
"SidewaysCard": false,
"CustomDeck": {
"3684": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "07350b",
"Name": "Card",
"Transform": {
"posX": 8.970732,
"posY": 3.69158077,
"posZ": -16.6883774,
"rotX": 359.91748,
"rotY": 270.013458,
"rotZ": 0.0174952038,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Decorated Skull",
"Description": "Doom Begets Doom",
"GMNotes": "{\n \"id\": \"04026\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Item. Relic. Cursed.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 368618,
"SidewaysCard": false,
"CustomDeck": {
"3686": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "24eb36",
"Name": "Card",
"Transform": {
"posX": 8.970732,
"posY": 3.69158077,
"posZ": -16.6883774,
"rotX": 359.91748,
"rotY": 270.013458,
"rotZ": 0.0174952038,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Eldritch Inspiration",
"Description": "",
"GMNotes": "{\n \"id\": \"05033\",\n \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell. Spirit.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 583604,
"SidewaysCard": false,
"CustomDeck": {
"5836": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1697276627309509299/3B0E32939EB4599CCE3596975637C90FE4EE1DD6/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "c49b4b",
"Name": "Card",
"Transform": {
"posX": 8.970782,
"posY": 3.686002,
"posZ": -16.6883869,
"rotX": 359.9196,
"rotY": 270.0135,
"rotZ": 0.01698129,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Alejandro Vela",
"Description": "Renowned Historian",
"GMNotes": "{\n \"id\": \"04051\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Wayfarer.\",\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 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": 235600,
"SidewaysCard": false,
"CustomDeck": {
"2356": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1467561769777497046/3003A76996378249E6AAA4A60D85AE7EE59C1B8B/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "07bc04",
"Name": "Card",
"Transform": {
"posX": 8.970782,
"posY": 3.686002,
"posZ": -16.6883869,
"rotX": 359.9196,
"rotY": 270.0135,
"rotZ": 0.01698129,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Grotesque Statue (4)",
"Description": "",
"GMNotes": "{\n \"id\": \"01071\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Item. Relic.\",\n \"level\": 4,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Charge\",\n \"count\": 4\n }\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 230356,
"SidewaysCard": false,
"CustomDeck": {
"2303": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "315b45",
"Name": "Card",
"Transform": {
"posX": 8.970833,
"posY": 3.67726016,
"posZ": -16.6883945,
"rotX": 359.9217,
"rotY": 270.0135,
"rotZ": 0.0164679457,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Rite of Equilibrium (5)",
"Description": "",
"GMNotes": "{\n \"id\": \"07308\",\n \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell. Blessed. Cursed.\",\n \"level\": 5,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 589707,
"SidewaysCard": false,
"CustomDeck": {
"5897": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1807607979163972370/50A45AE585D6404E677DFCA597A0F5FE13346B97/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 5,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "819aee",
"Name": "Card",
"Transform": {
"posX": 8.970833,
"posY": 3.67726016,
"posZ": -16.6883945,
"rotX": 359.9217,
"rotY": 270.0135,
"rotZ": 0.0164679457,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Sleight of Hand",
"Description": "",
"GMNotes": "{\n \"id\": \"03029\",\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"traits\": \"Trick.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 368710,
"SidewaysCard": false,
"CustomDeck": {
"3687": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "b4b991",
"Name": "Card",
"Transform": {
"posX": 8.970908,
"posY": 3.68313766,
"posZ": -16.6884117,
"rotX": 359.9204,
"rotY": 270.0135,
"rotZ": 0.0167755857,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Shining Trapezohedron (4)",
"Description": "",
"GMNotes": "{\n \"id\": \"06329\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Item. Relic.\",\n \"level\": 4,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 527238,
"SidewaysCard": false,
"CustomDeck": {
"5272": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025945336/04E36F64C2CBE1B4905FF44A869C75EC52CB3A56/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "3319be",
"Name": "Card",
"Transform": {
"posX": 8.970908,
"posY": 3.68313766,
"posZ": -16.6884117,
"rotX": 359.9204,
"rotY": 270.0135,
"rotZ": 0.0167755857,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Clean Them Out",
"Description": "",
"GMNotes": "{\n \"id\": \"60111\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Spirit. Tactic.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 545309,
"SidewaysCard": false,
"CustomDeck": {
"5453": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1546380927206250326/18BF6D2B2BBFDDBE5B021A46C310E4F45493EC26/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "bc4788",
"Name": "Card",
"Transform": {
"posX": 8.97098351,
"posY": 3.68583965,
"posZ": -16.688427,
"rotX": 359.919159,
"rotY": 270.013519,
"rotZ": 0.0170828961,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Feed the Mind (3)",
"Description": "",
"GMNotes": "{\n \"id\": \"04267\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Spell.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Charge\",\n \"count\": 3\n }\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 262200,
"SidewaysCard": false,
"CustomDeck": {
"2622": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "6de21b",
"Name": "Card",
"Transform": {
"posX": 8.97098351,
"posY": 3.68583965,
"posZ": -16.688427,
"rotX": 359.919159,
"rotY": 270.013519,
"rotZ": 0.0170828961,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Knowledge is Power",
"Description": "",
"GMNotes": "{\n \"id\": \"05231\",\n \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"traits\": \"Insight.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 293215,
"SidewaysCard": false,
"CustomDeck": {
"2932": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "ffe4dd",
"Name": "Card",
"Transform": {
"posX": 8.971059,
"posY": 3.68536925,
"posZ": -16.6884422,
"rotX": 359.9179,
"rotY": 270.013519,
"rotZ": 0.0173898675,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Empower Self (2)",
"Description": "Stamina",
"GMNotes": "{\n \"id\": \"06241\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Ritual.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 448031,
"SidewaysCard": false,
"CustomDeck": {
"4480": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025945336/04E36F64C2CBE1B4905FF44A869C75EC52CB3A56/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "408cb5",
"Name": "Card",
"Transform": {
"posX": 8.971059,
"posY": 3.68536925,
"posZ": -16.6884422,
"rotX": 359.9179,
"rotY": 270.013519,
"rotZ": 0.0173898675,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Emergency Cache (3)",
"Description": "",
"GMNotes": "{\n \"id\": \"03239\",\n \"type\": \"Event\",\n \"class\": \"Neutral\",\n \"traits\": \"Supply.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 368520,
"SidewaysCard": false,
"CustomDeck": {
"3685": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "7baf75",
"Name": "Card",
"Transform": {
"posX": 8.971133,
"posY": 3.68173027,
"posZ": -16.6884575,
"rotX": 359.916656,
"rotY": 270.01355,
"rotZ": 0.0176964942,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Backstab (3)",
"Description": "",
"GMNotes": "{\n \"id\": \"60329\",\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"traits\": \"Tactic.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 538627,
"SidewaysCard": false,
"CustomDeck": {
"5386": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456298037683/22C99DD745DFF65ECC72FD32EFA9C9D0F0C12862/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "c729ab",
"Name": "Card",
"Transform": {
"posX": 8.971133,
"posY": 3.68173027,
"posZ": -16.6884575,
"rotX": 359.916656,
"rotY": 270.01355,
"rotZ": 0.0176964942,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Green Man Medallion",
"Description": "Hour of the Huntress",
"GMNotes": "{\n \"id\": \"98002\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Relic.\",\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 371565,
"SidewaysCard": false,
"CustomDeck": {
"3715": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "b3cad4",
"Name": "Card",
"Transform": {
"posX": 8.971221,
"posY": 3.68403125,
"posZ": -16.6884747,
"rotX": 359.919434,
"rotY": 270.01355,
"rotZ": 0.0170212965,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Daredevil (2)",
"Description": "",
"GMNotes": "{\n \"id\": \"06240\",\n \"type\": \"Skill\",\n \"class\": \"Rogue\",\n \"traits\": \"Fortune. Practiced.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 447633,
"SidewaysCard": false,
"CustomDeck": {
"4476": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025944587/520448D0E9C22F102C7DDF64322EAD6FC221ECC8/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "2204cc",
"Name": "Card",
"Transform": {
"posX": 8.971366,
"posY": 3.67449117,
"posZ": -16.6885052,
"rotX": 359.919983,
"rotY": 270.01358,
"rotZ": 0.0168863311,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Self-Destructive",
"Description": "Basic Weakness",
"GMNotes": "{\n \"id\": \"60104\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Flaw.\",\n \"permanent\": false,\n \"weakness\": true,\n \"basicWeaknessCount\": 1\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 545302,
"SidewaysCard": false,
"CustomDeck": {
"5453": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1546380927206250326/18BF6D2B2BBFDDBE5B021A46C310E4F45493EC26/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "4f3142",
"Name": "Card",
"Transform": {
"posX": 8.971525,
"posY": 3.672583,
"posZ": -16.6885376,
"rotX": 359.9201,
"rotY": 270.01358,
"rotZ": 0.0168595,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Cryptographic Cipher",
"Description": "",
"GMNotes": "{\n \"id\": \"07021\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Tool.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Secret\",\n \"count\": 3\n }\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 580315,
"SidewaysCard": false,
"CustomDeck": {
"5803": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320664132663842/9B2F50595A754585A4DF12D6D48DC2561DC0E2C9/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "fa61ba",
"Name": "Card",
"Transform": {
"posX": 8.971525,
"posY": 3.672583,
"posZ": -16.6885376,
"rotX": 359.9201,
"rotY": 270.01358,
"rotZ": 0.0168595,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Strange Solution (4)",
"Description": "Acidic Ichor",
"GMNotes": "{\n \"id\": \"02263\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Science.\",\n \"level\": 4,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Supply\",\n \"count\": 3\n }\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 430655,
"SidewaysCard": false,
"CustomDeck": {
"4306": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "683937",
"Name": "Card",
"Transform": {
"posX": 8.971525,
"posY": 3.672583,
"posZ": -16.6885376,
"rotX": 359.9201,
"rotY": 270.01358,
"rotZ": 0.0168595,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Delay the Inevitable",
"Description": "",
"GMNotes": "{\n \"id\": \"05021\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Insight. Spirit. Tactic.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 431007,
"SidewaysCard": false,
"CustomDeck": {
"4310": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025943109/9C5481E6DFEACD450C5522F884E615482281DDB1/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "f66dd9",
"Name": "Card",
"Transform": {
"posX": 8.971684,
"posY": 3.76735353,
"posZ": -16.68857,
"rotX": 359.9202,
"rotY": 270.0136,
"rotZ": 0.01683268,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Snare Trap (2)",
"Description": "",
"GMNotes": "{\n \"id\": \"03199\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Trap. Improvised.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 368849,
"SidewaysCard": false,
"CustomDeck": {
"3688": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "d3e55b",
"Name": "Card",
"Transform": {
"posX": 8.971844,
"posY": 3.759004,
"posZ": -16.6886,
"rotX": 359.920319,
"rotY": 270.0136,
"rotZ": 0.0168059226,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Timeworn Brand (5)",
"Description": "",
"GMNotes": "{\n \"id\": \"04276\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Relic. Weapon. Melee.\",\n \"level\": 5,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 261100,
"SidewaysCard": false,
"CustomDeck": {
"2611": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025942034/FEADE7F6206804B42CC9B6049F51EDF6040C5D1D/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "812175",
"Name": "Card",
"Transform": {
"posX": 8.972003,
"posY": 3.74753761,
"posZ": -16.6886311,
"rotX": 359.9204,
"rotY": 270.0136,
"rotZ": 0.0167791881,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Logical Reasoning",
"Description": "",
"GMNotes": "{\n \"id\": \"03191\",\n \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"traits\": \"Insight.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 368417,
"SidewaysCard": false,
"CustomDeck": {
"3684": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "f998c5",
"Name": "Card",
"Transform": {
"posX": 8.972162,
"posY": 3.73295784,
"posZ": -16.6886654,
"rotX": 359.920532,
"rotY": 270.013672,
"rotZ": 0.0167524759,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Sign Magick (3)",
"Description": "",
"GMNotes": "{\n \"id\": \"54008\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Ritual. Talent.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 449528,
"SidewaysCard": false,
"CustomDeck": {
"4495": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1697276706766470010/D835D3A12B12173C78B2FFA055FEFD6042AEDD38/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 6,
"NumHeight": 6,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "5888da",
"Name": "Card",
"Transform": {
"posX": 8.972162,
"posY": 3.73295784,
"posZ": -16.6886654,
"rotX": 359.920532,
"rotY": 270.013672,
"rotZ": 0.0167524759,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Old Keyring",
"Description": "",
"GMNotes": "{\n \"id\": \"60507\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Item. Tool.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Key\",\n \"count\": 2\n }\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 550805,
"SidewaysCard": false,
"CustomDeck": {
"5508": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456298038335/2CA532D7F0EED2B2B40E47709AC56D85C4613A33/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "79287f",
"Name": "Card",
"Transform": {
"posX": 8.972321,
"posY": 3.76516938,
"posZ": -16.6886978,
"rotX": 359.920654,
"rotY": 270.013672,
"rotZ": 0.0167257935,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Torrent of Power",
"Description": "",
"GMNotes": "{\n \"id\": \"03235\",\n \"type\": \"Skill\",\n \"class\": \"Mystic\",\n \"traits\": \"Practiced.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 230300,
"SidewaysCard": false,
"CustomDeck": {
"2303": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "e25dc1",
"Name": "Card",
"Transform": {
"posX": 8.972321,
"posY": 3.76516938,
"posZ": -16.6886978,
"rotX": 359.920654,
"rotY": 270.013672,
"rotZ": 0.0167257935,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "True Grit",
"Description": "",
"GMNotes": "{\n \"id\": \"03021\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Talent.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 226329,
"SidewaysCard": false,
"CustomDeck": {
"2263": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "ac9763",
"Name": "Card",
"Transform": {
"posX": 8.972479,
"posY": 3.79417586,
"posZ": -16.68873,
"rotX": 359.920746,
"rotY": 270.013672,
"rotZ": 0.0166991428,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Purifying Corruption (4)",
"Description": "",
"GMNotes": "{\n \"id\": \"07273\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ritual. Blessed. Cursed.\",\n \"level\": 4,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 449612,
"SidewaysCard": false,
"CustomDeck": {
"4496": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1747933191220177818/637923621F747375066D4DA39BEA3BA9C26086A5/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 7,
"NumHeight": 3,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "af3efd",
"Name": "Card",
"Transform": {
"posX": 8.972637,
"posY": 3.77007985,
"posZ": -16.6887627,
"rotX": 359.920868,
"rotY": 270.013672,
"rotZ": 0.0166725256,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Relentless",
"Description": "",
"GMNotes": "{\n \"id\": \"60109\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Talent.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 545307,
"SidewaysCard": false,
"CustomDeck": {
"5453": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1546380927206250326/18BF6D2B2BBFDDBE5B021A46C310E4F45493EC26/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "ea0fa1",
"Name": "Card",
"Transform": {
"posX": 8.972637,
"posY": 3.77007985,
"posZ": -16.6887627,
"rotX": 359.920868,
"rotY": 270.013672,
"rotZ": 0.0166725256,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Unspeakable Oath (Cowardice)",
"Description": "Basic Weakness",
"GMNotes": "{\n \"id\": \"52013\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Madness. Pact.\",\n \"permanent\": false,\n \"weakness\": true,\n \"basicWeaknessCount\": 1\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 438122,
"SidewaysCard": false,
"CustomDeck": {
"4381": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "46812e",
"Name": "Card",
"Transform": {
"posX": 8.97279549,
"posY": 3.792786,
"posZ": -16.6887951,
"rotX": 359.921,
"rotY": 270.013733,
"rotZ": 0.0166459456,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Sacrificial Beast",
"Description": "",
"GMNotes": "{\n \"id\": \"98003\",\n \"type\": \"Enemy\",\n \"class\": \"Neutral\",\n \"traits\": \"Monster. Dark Young.\",\n \"permanent\": false,\n \"weakness\": true\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 371466,
"SidewaysCard": false,
"CustomDeck": {
"3714": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "3c5099",
"Name": "Card",
"Transform": {
"posX": 8.97279549,
"posY": 3.792786,
"posZ": -16.6887951,
"rotX": 359.921,
"rotY": 270.013733,
"rotZ": 0.0166459456,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Whitton Greene",
"Description": "Hunter of Rare Books",
"GMNotes": "{\n \"id\": \"60213\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Ally. Miskatonic.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 538811,
"SidewaysCard": false,
"CustomDeck": {
"5388": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1546381162227145538/0F253FC5301911273C32210992261DD1D2EBB578/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "c7d9b5",
"Name": "Card",
"Transform": {
"posX": 8.972954,
"posY": 3.812297,
"posZ": -16.6888275,
"rotX": 359.921082,
"rotY": 270.013733,
"rotZ": 0.016619388,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Enchanted Blade",
"Description": "",
"GMNotes": "{\n \"id\": \"05118\",\n \"type\": \"Asset\",\n \"class\": \"Mystic|Guardian\",\n \"traits\": \"Item. Relic. Weapon. Melee.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Charge\",\n \"count\": 3\n }\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 277607,
"SidewaysCard": false,
"CustomDeck": {
"2776": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025942034/FEADE7F6206804B42CC9B6049F51EDF6040C5D1D/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "2c563c",
"Name": "Card",
"Transform": {
"posX": 8.972954,
"posY": 3.812297,
"posZ": -16.6888275,
"rotX": 359.921082,
"rotY": 270.013733,
"rotZ": 0.016619388,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Anything You Can Do, Better",
"Description": "",
"GMNotes": "{\n \"id\": \"60302\",\n \"type\": \"Skill\",\n \"class\": \"Rogue\",\n \"traits\": \"Innate. Developed.\",\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 538600,
"SidewaysCard": false,
"CustomDeck": {
"5386": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456298037683/22C99DD745DFF65ECC72FD32EFA9C9D0F0C12862/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "159f82",
"Name": "Card",
"Transform": {
"posX": 8.973112,
"posY": 3.82861781,
"posZ": -16.68886,
"rotX": 359.9212,
"rotY": 270.013733,
"rotZ": 0.01659286,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Knight of Swords (3)",
"Description": "Charge Ever Onward",
"GMNotes": "{\n \"id\": \"54005\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Tarot.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 449525,
"SidewaysCard": false,
"CustomDeck": {
"4495": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1697276706766470010/D835D3A12B12173C78B2FFA055FEFD6042AEDD38/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 6,
"NumHeight": 6,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "5ada0a",
"Name": "Card",
"Transform": {
"posX": 8.973112,
"posY": 3.82861781,
"posZ": -16.68886,
"rotX": 359.9212,
"rotY": 270.013733,
"rotZ": 0.01659286,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Hawk-Eye Folding Camera",
"Description": "",
"GMNotes": "{\n \"id\": \"05154\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Tool.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 277813,
"SidewaysCard": false,
"CustomDeck": {
"2778": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "19ab7c",
"Name": "Card",
"Transform": {
"posX": 8.973269,
"posY": 3.84175086,
"posZ": -16.68889,
"rotX": 359.9213,
"rotY": 270.013763,
"rotZ": 0.0165663622,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Otherworldly Compass (2)",
"Description": "",
"GMNotes": "{\n \"id\": \"04194\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Relic.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 430647,
"SidewaysCard": false,
"CustomDeck": {
"4306": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "823e49",
"Name": "Card",
"Transform": {
"posX": 8.973269,
"posY": 3.84175086,
"posZ": -16.68889,
"rotX": 359.9213,
"rotY": 270.013763,
"rotZ": 0.016566366,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Tides of Fate",
"Description": "",
"GMNotes": "{\n \"id\": \"07030\",\n \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell. Blessed.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 581024,
"SidewaysCard": false,
"CustomDeck": {
"5810": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320664132663842/9B2F50595A754585A4DF12D6D48DC2561DC0E2C9/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "ce3a1a",
"Name": "Card",
"Transform": {
"posX": 8.973427,
"posY": 3.85170031,
"posZ": -16.688921,
"rotX": 359.921417,
"rotY": 270.013763,
"rotZ": 0.0165398885,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Vengeful Hound",
"Description": "",
"GMNotes": "{\n \"id\": \"98009\",\n \"type\": \"Enemy\",\n \"class\": \"Neutral\",\n \"traits\": \"Monster. Extradimensional. Tindalos.\",\n \"permanent\": false,\n \"weakness\": true\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 380949,
"SidewaysCard": false,
"CustomDeck": {
"3809": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "4c0f00",
"Name": "Card",
"Transform": {
"posX": 8.973584,
"posY": 3.80856824,
"posZ": -16.6889553,
"rotX": 359.921539,
"rotY": 270.0138,
"rotZ": 0.0165134612,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Empower Self (2)",
"Description": "Alacrity",
"GMNotes": "{\n \"id\": \"06242\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Ritual.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 448032,
"SidewaysCard": false,
"CustomDeck": {
"4480": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025945336/04E36F64C2CBE1B4905FF44A869C75EC52CB3A56/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "9c922f",
"Name": "Card",
"Transform": {
"posX": 8.973584,
"posY": 3.80856824,
"posZ": -16.6889553,
"rotX": 359.921539,
"rotY": 270.0138,
"rotZ": 0.0165134612,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Storm of Spirits",
"Description": "",
"GMNotes": "{\n \"id\": \"03153\",\n \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 230314,
"SidewaysCard": false,
"CustomDeck": {
"2303": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "756a35",
"Name": "Card",
"Transform": {
"posX": 8.973584,
"posY": 3.80856824,
"posZ": -16.6889553,
"rotX": 359.921539,
"rotY": 270.0138,
"rotZ": 0.016513465,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Kukri",
"Description": "",
"GMNotes": "{\n \"id\": \"02036\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Weapon. Melee.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 368516,
"SidewaysCard": false,
"CustomDeck": {
"3685": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "04d33d",
"Name": "Card",
"Transform": {
"posX": 8.973742,
"posY": 3.86216044,
"posZ": -16.6889877,
"rotX": 359.921631,
"rotY": 270.0138,
"rotZ": 0.0164870583,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Lucky! (3)",
"Description": "",
"GMNotes": "{\n \"id\": \"60528\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Fortune.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 550826,
"SidewaysCard": false,
"CustomDeck": {
"5508": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456298038335/2CA532D7F0EED2B2B40E47709AC56D85C4613A33/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "6446d1",
"Name": "Card",
"Transform": {
"posX": 8.973899,
"posY": 3.81267834,
"posZ": -16.68902,
"rotX": 359.921753,
"rotY": 270.0138,
"rotZ": 0.0164606776,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Scrying Mirror",
"Description": "",
"GMNotes": "{\n \"id\": \"60406\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Item. Charm.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Secret\",\n \"count\": 4\n }\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 538704,
"SidewaysCard": false,
"CustomDeck": {
"5387": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297472038/B38A78EF27EBE0BDE1B36958D297701505AB936A/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "df182a",
"Name": "Card",
"Transform": {
"posX": 8.973899,
"posY": 3.81267834,
"posZ": -16.68902,
"rotX": 359.921753,
"rotY": 270.0138,
"rotZ": 0.0164606776,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Eye of the Djinn (2)",
"Description": "Vessel of Good and Evil",
"GMNotes": "{\n \"id\": \"07225\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Item. Relic. Blessed. Cursed.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 590105,
"SidewaysCard": false,
"CustomDeck": {
"5901": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1747933191219101327/797556CAC112D6D289B3A5D3A28433C9F0999CB5/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "f4dd3d",
"Name": "Card",
"Transform": {
"posX": 8.974055,
"posY": 3.81002665,
"posZ": -16.6890526,
"rotX": 359.921844,
"rotY": 270.0138,
"rotZ": 0.0164343342,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Shocking Discovery",
"Description": "",
"GMNotes": "{\n \"id\": \"06009\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Blunder. Mystery.\",\n \"permanent\": false,\n \"weakness\": true\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 583703,
"SidewaysCard": false,
"CustomDeck": {
"5837": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1011562618093846571/13C76218853EE87123267F8F6BE99206DB40470B/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "da7613",
"Name": "Card",
"Transform": {
"posX": 8.974212,
"posY": 3.80420852,
"posZ": -16.689085,
"rotX": 359.921967,
"rotY": 270.013824,
"rotZ": 0.0164080169,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Dark Prophecy",
"Description": "",
"GMNotes": "{\n \"id\": \"04032\",\n \"alternate_ids\": [ \"60417\" ],\n \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"traits\": \"Augury.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 230309,
"SidewaysCard": false,
"CustomDeck": {
"2303": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "06abe0",
"Name": "Card",
"Transform": {
"posX": 8.974368,
"posY": 3.74532628,
"posZ": -16.6891174,
"rotX": 359.922058,
"rotY": 270.013824,
"rotZ": 0.0163817313,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Shield of Faith (2)",
"Description": "",
"GMNotes": "{\n \"id\": \"07221\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Spell. Blessed.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 589001,
"SidewaysCard": false,
"CustomDeck": {
"5890": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1747933191219101327/797556CAC112D6D289B3A5D3A28433C9F0999CB5/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "function onload()\r\n mode = \"Bless\"\r\n chaosbag = getChaosBag()\r\n manager = getObjectFromGUID(\"5933fb\")\r\n sealedTokens = { }\r\n IMAGE_TOKEN_MAP = { }\r\n for i,v in pairs(Global.getVar(\"IMAGE_TOKEN_MAP\")) do\r\n IMAGE_TOKEN_MAP[i] = v\r\n end\r\n\r\n -- add menu items\r\n self.clearContextMenu()\r\n self.addContextMenuItem(\"Release Token\", releaseTokens, true)\r\n for url,name in pairs(IMAGE_TOKEN_MAP) do\r\n if name == mode then\r\n self.addContextMenuItem(\"Seal \" .. mode, function(playerColor) sealToken(url, playerColor) end, true)\r\n end\r\n end\r\nend\r\n\r\nfunction sealToken(url, playerColor)\r\n local pos = self.getPosition()\r\n\r\n local name = IMAGE_TOKEN_MAP[url]\r\n for i,obj in ipairs(chaosbag.getObjects()) do\r\n if obj.name == name then\r\n chaosbag.takeObject({\r\n position={ pos.x, pos.y + 1, pos.z },\r\n index=i-1,\r\n smooth=false,\r\n callback_function=_sealToken\r\n })\r\n return\r\n end\r\n end\r\n printToColor(name .. \" token not found in bag\", playerColor)\r\nend\r\n\r\nfunction _sealToken(obj)\r\n table.insert(sealedTokens, obj)\r\n local guid = obj.getGUID()\r\n local tokensTaken = manager.getVar(\"tokensTaken\")\r\n table.insert(tokensTaken[mode], guid)\r\n manager.setVar(\"tokensTaken\", tokensTaken)\r\n manager.setVar(\"mode\", mode)\r\n printToAll(\"Sealing \" .. mode .. \" token \" .. manager.call(\"getTokenCount\"))\r\nend\r\n\r\nfunction releaseTokens(playerColor)\r\n if #sealedTokens == 0 then return end\r\n local token = sealedTokens[#sealedTokens]\r\n if token ~= nil then\r\n local guid = token.getGUID()\r\n chaosbag.putObject(token)\r\n local tokensTaken = manager.getVar(\"tokensTaken\")\r\n for i,v in ipairs(tokensTaken[mode]) do\r\n if v == guid then\r\n table.remove(tokensTaken[mode], i)\r\n break\r\n end\r\n end\r\n manager.setVar(\"tokensTaken\", tokensTaken)\r\n manager.setVar(\"mode\", mode)\r\n printToAll(\"Releasing \" .. mode .. \" token\" .. manager.call(\"getTokenCount\"))\r\n end\r\n\r\n table.remove(sealedTokens)\r\nend\r\n\r\nfunction getChaosBag()\r\n local items = getObjectFromGUID(\"83ef06\").getObjects()\r\n local chaosbag = nil\r\n for i,v in ipairs(items) do\r\n if v.getDescription() == \"Chaos Bag\" then\r\n chaosbag = getObjectFromGUID(v.getGUID())\r\n break\r\n end\r\n end\r\n if chaosbag == nil then printToAll(\"No chaos bag found\") end\r\n return chaosbag\r\nend",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "bf5a5f",
"Name": "Card",
"Transform": {
"posX": 8.9745245,
"posY": 3.68338346,
"posZ": -16.68915,
"rotX": 359.92218,
"rotY": 270.013855,
"rotZ": 0.0163554717,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Small Favor",
"Description": "",
"GMNotes": "{\n \"id\": \"05277\",\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"traits\": \"Favor. Service.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 378016,
"SidewaysCard": false,
"CustomDeck": {
"3780": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025944587/520448D0E9C22F102C7DDF64322EAD6FC221ECC8/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "b4666d",
"Name": "Card",
"Transform": {
"posX": 8.974758,
"posY": 3.674358,
"posZ": -16.6891956,
"rotX": 359.920532,
"rotY": 270.013855,
"rotZ": 0.016752813,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Beloved",
"Description": "",
"GMNotes": "{\n \"id\": \"07036\",\n \"type\": \"Skill\",\n \"class\": \"Survivor\",\n \"traits\": \"Innate. Blessed.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 587030,
"SidewaysCard": false,
"CustomDeck": {
"5870": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320664132663842/9B2F50595A754585A4DF12D6D48DC2561DC0E2C9/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "4120f3",
"Name": "Card",
"Transform": {
"posX": 8.975006,
"posY": 3.67255235,
"posZ": -16.6892452,
"rotX": 359.9202,
"rotY": 270.013855,
"rotZ": 0.0168323,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Lt. Wilson Stewart",
"Description": "Logistical Genius",
"GMNotes": "{\n \"id\": \"85032\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Agency. Veteran.\",\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 233607,
"SidewaysCard": false,
"CustomDeck": {
"2336": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/784129708171655462/0B7EFEEA9A53B93350FEC7F68F39A20D1D6580A9/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "c3a014",
"Name": "Card",
"Transform": {
"posX": 8.975006,
"posY": 3.67255235,
"posZ": -16.6892452,
"rotX": 359.9202,
"rotY": 270.013855,
"rotZ": 0.0168323,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Tommy Malloy",
"Description": "Weakness",
"GMNotes": "{\n \"id\": \"60103\",\n \"type\": \"Enemy\",\n \"class\": \"Neutral\",\n \"traits\": \"Humanoid. Criminal. Syndicate.\",\n \"permanent\": false,\n \"weakness\": true\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 545301,
"SidewaysCard": false,
"CustomDeck": {
"5453": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1546380927206250326/18BF6D2B2BBFDDBE5B021A46C310E4F45493EC26/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "88a9b3",
"Name": "Card",
"Transform": {
"posX": 8.975254,
"posY": 3.71752429,
"posZ": -16.6892967,
"rotX": 359.919861,
"rotY": 270.0139,
"rotZ": 0.0169116836,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Overzealous",
"Description": "Basic Weakness",
"GMNotes": "{\n \"id\": \"03040\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Flaw.\",\n \"permanent\": false,\n \"weakness\": true,\n \"basicWeaknessCount\": 2\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 431110,
"SidewaysCard": false,
"CustomDeck": {
"4311": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "3e0653",
"Name": "Card",
"Transform": {
"posX": 8.975254,
"posY": 3.71752429,
"posZ": -16.6892967,
"rotX": 359.919861,
"rotY": 270.0139,
"rotZ": 0.0169116836,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Think on Your Feet (2)",
"Description": "",
"GMNotes": "{\n \"id\": \"51006\",\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"traits\": \"Trick.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 315303,
"SidewaysCard": false,
"CustomDeck": {
"3153": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025944587/520448D0E9C22F102C7DDF64322EAD6FC221ECC8/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "5115d9",
"Name": "Card",
"Transform": {
"posX": 8.975502,
"posY": 3.75927687,
"posZ": -16.6893482,
"rotX": 359.919556,
"rotY": 270.0139,
"rotZ": 0.0169909876,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Intel Report",
"Description": "",
"GMNotes": "{\n \"id\": \"05111\",\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"traits\": \"Favor. Service.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 277710,
"SidewaysCard": false,
"CustomDeck": {
"2777": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025944587/520448D0E9C22F102C7DDF64322EAD6FC221ECC8/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "bb0f6a",
"Name": "Card",
"Transform": {
"posX": 8.975502,
"posY": 3.75927687,
"posZ": -16.6893482,
"rotX": 359.919556,
"rotY": 270.0139,
"rotZ": 0.0169909876,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Heroic Rescue",
"Description": "",
"GMNotes": "{\n \"id\": \"03106\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Spirit. Tactic.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 226311,
"SidewaysCard": false,
"CustomDeck": {
"2263": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "9e4505",
"Name": "Card",
"Transform": {
"posX": 8.97575,
"posY": 3.797814,
"posZ": -16.6893978,
"rotX": 359.91922,
"rotY": 270.013916,
"rotZ": 0.0170702077,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Arcane Studies",
"Description": "",
"GMNotes": "{\n \"id\": \"01062\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Talent.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 230324,
"SidewaysCard": false,
"CustomDeck": {
"2303": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "1f8539",
"Name": "Card",
"Transform": {
"posX": 8.975997,
"posY": 3.7832377,
"posZ": -16.6894474,
"rotX": 359.918884,
"rotY": 270.013916,
"rotZ": 0.017149331,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "David Renfield",
"Description": "Esteemed Eschatologist",
"GMNotes": "{\n \"id\": \"03112\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Ally. Patron.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 230325,
"SidewaysCard": false,
"CustomDeck": {
"2303": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "50fb37",
"Name": "Card",
"Transform": {
"posX": 8.975997,
"posY": 3.7832377,
"posZ": -16.6894474,
"rotX": 359.918884,
"rotY": 270.013916,
"rotZ": 0.017149331,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Take the Initiative",
"Description": "",
"GMNotes": "{\n \"id\": \"04150\",\n \"type\": \"Skill\",\n \"class\": \"Guardian\",\n \"traits\": \"Practiced. Bold.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 226300,
"SidewaysCard": false,
"CustomDeck": {
"2263": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "1bc300",
"Name": "Card",
"Transform": {
"posX": 8.976244,
"posY": 3.81545281,
"posZ": -16.6895,
"rotX": 359.918549,
"rotY": 270.013916,
"rotZ": 0.0172283817,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Trusted",
"Description": "",
"GMNotes": "{\n \"id\": \"04019\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Upgrade.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 226315,
"SidewaysCard": false,
"CustomDeck": {
"2263": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "c45e67",
"Name": "Card",
"Transform": {
"posX": 8.976244,
"posY": 3.81545281,
"posZ": -16.6895,
"rotX": 359.918549,
"rotY": 270.013916,
"rotZ": 0.0172283817,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Reckless",
"Description": "Basic Weakness",
"GMNotes": "{\n \"id\": \"60304\",\n \"type\": \"Skill\",\n \"class\": \"Neutral\",\n \"traits\": \"Flaw.\",\n \"permanent\": false,\n \"weakness\": true,\n \"basicWeaknessCount\": 1\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 538602,
"SidewaysCard": false,
"CustomDeck": {
"5386": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456298037683/22C99DD745DFF65ECC72FD32EFA9C9D0F0C12862/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "f802e3",
"Name": "Card",
"Transform": {
"posX": 8.976244,
"posY": 3.81545281,
"posZ": -16.6895,
"rotX": 359.918549,
"rotY": 270.013916,
"rotZ": 0.0172283817,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Cover Up",
"Description": "Advanced",
"GMNotes": "{\n \"id\": \"90031\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Task.\",\n \"permanent\": false,\n \"weakness\": true\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 536206,
"SidewaysCard": false,
"CustomDeck": {
"5362": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1697276706761486024/CC7FAD210F216229F1A721BF648855D156F052D5/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 4,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "5f19e0",
"Name": "Card",
"Transform": {
"posX": 8.976491,
"posY": 3.8943646,
"posZ": -16.6895542,
"rotX": 359.918243,
"rotY": 270.013916,
"rotZ": 0.0173073336,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Sneak Attack (2)",
"Description": "",
"GMNotes": "{\n \"id\": \"03152\",\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"traits\": \"Tactic.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 315245,
"SidewaysCard": false,
"CustomDeck": {
"3152": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "2fe723",
"Name": "Card",
"Transform": {
"posX": 8.976491,
"posY": 3.8943646,
"posZ": -16.6895542,
"rotX": 359.918243,
"rotY": 270.013916,
"rotZ": 0.0173073336,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Cat Burglar (1)",
"Description": "",
"GMNotes": "{\n \"id\": \"01055\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Ally. Criminal.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 315239,
"SidewaysCard": false,
"CustomDeck": {
"3152": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "a5c780",
"Name": "Card",
"Transform": {
"posX": 8.976737,
"posY": 3.92007446,
"posZ": -16.6896076,
"rotX": 359.9179,
"rotY": 270.013916,
"rotZ": 0.017386198,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Enraptured",
"Description": "",
"GMNotes": "{\n \"id\": \"04157\",\n \"type\": \"Skill\",\n \"class\": \"Mystic\",\n \"traits\": \"Practiced.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 230301,
"SidewaysCard": false,
"CustomDeck": {
"2303": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "133521",
"Name": "Card",
"Transform": {
"posX": 8.976737,
"posY": 3.92007446,
"posZ": -16.6896076,
"rotX": 359.9179,
"rotY": 270.013916,
"rotZ": 0.017386198,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Directive",
"Description": "Due Diligence",
"GMNotes": "{\n \"id\": \"90025\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"permanent\": true,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 536200,
"SidewaysCard": false,
"CustomDeck": {
"5362": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1697276706761486024/CC7FAD210F216229F1A721BF648855D156F052D5/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 4,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "d5cac6",
"Name": "Card",
"Transform": {
"posX": 8.976983,
"posY": 3.94258714,
"posZ": -16.689661,
"rotX": 359.917542,
"rotY": 270.013916,
"rotZ": 0.0174649861,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Taunt",
"Description": "",
"GMNotes": "{\n \"id\": \"02017\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Tactic.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 226308,
"SidewaysCard": false,
"CustomDeck": {
"2263": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "ca1b5c",
"Name": "Card",
"Transform": {
"posX": 8.976983,
"posY": 3.94258714,
"posZ": -16.689661,
"rotX": 359.917542,
"rotY": 270.013916,
"rotZ": 0.0174649861,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "The Truth Beckons",
"Description": "",
"GMNotes": "{\n \"id\": \"07154\",\n \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"traits\": \"Insight.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 232102,
"SidewaysCard": false,
"CustomDeck": {
"2321": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1655600400212405700/559F1F3EF87BDF7F067F9B7011EDC3A6ACE71259/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 5,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "bbfe9b",
"Name": "Card",
"Transform": {
"posX": 8.977229,
"posY": 3.96190524,
"posZ": -16.6897144,
"rotX": 359.917236,
"rotY": 270.013916,
"rotZ": 0.0175436754,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Guidance",
"Description": "",
"GMNotes": "{\n \"id\": \"03265\",\n \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"traits\": \"Insight.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 368406,
"SidewaysCard": false,
"CustomDeck": {
"3684": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "447a08",
"Name": "Card",
"Transform": {
"posX": 8.977229,
"posY": 3.96190524,
"posZ": -16.6897144,
"rotX": 359.917236,
"rotY": 270.013916,
"rotZ": 0.0175436754,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Kleptomania",
"Description": "Basic Weakness",
"GMNotes": "{\n \"id\": \"06036\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Madness. Talent.\",\n \"permanent\": false,\n \"weakness\": true,\n \"basicWeaknessCount\": 1\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 438126,
"SidewaysCard": false,
"CustomDeck": {
"4381": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "d8b64b",
"Name": "Card",
"Transform": {
"posX": 8.977229,
"posY": 3.96190524,
"posZ": -16.6897144,
"rotX": 359.917236,
"rotY": 270.013916,
"rotZ": 0.0175436754,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Promise of Power",
"Description": "",
"GMNotes": "{\n \"id\": \"07032\",\n \"type\": \"Skill\",\n \"class\": \"Mystic\",\n \"traits\": \"Practiced. Cursed.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 584926,
"SidewaysCard": false,
"CustomDeck": {
"5849": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320664132663842/9B2F50595A754585A4DF12D6D48DC2561DC0E2C9/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "4f11a2",
"Name": "Card",
"Transform": {
"posX": 8.977474,
"posY": 4.027934,
"posZ": -16.6897659,
"rotX": 359.916931,
"rotY": 270.013916,
"rotZ": 0.0176222753,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Silas's Net",
"Description": "",
"GMNotes": "{\n \"id\": \"07015\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Tool.\",\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 582309,
"SidewaysCard": false,
"CustomDeck": {
"5823": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320664132663842/9B2F50595A754585A4DF12D6D48DC2561DC0E2C9/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "9591ac",
"Name": "Card",
"Transform": {
"posX": 8.977474,
"posY": 4.027934,
"posZ": -16.6897659,
"rotX": 359.916931,
"rotY": 270.013916,
"rotZ": 0.0176222753,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Impromptu Barrier",
"Description": "",
"GMNotes": "{\n \"id\": \"04312\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Tactic. Improvised.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 430503,
"SidewaysCard": false,
"CustomDeck": {
"4305": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025946328/561232524C8EAA4B4371B28652F78969E6ED6FFB/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "91da6b",
"Name": "Card",
"Transform": {
"posX": 8.977474,
"posY": 4.027934,
"posZ": -16.6897659,
"rotX": 359.916931,
"rotY": 270.013916,
"rotZ": 0.0176222753,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Beretta M1918 (4)",
"Description": "",
"GMNotes": "{\n \"id\": \"60331\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Item. Weapon. Firearm. Illicit.\",\n \"level\": 4,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Ammo\",\n \"count\": 4\n }\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 538629,
"SidewaysCard": false,
"CustomDeck": {
"5386": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456298037683/22C99DD745DFF65ECC72FD32EFA9C9D0F0C12862/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "cd7b97",
"Name": "Card",
"Transform": {
"posX": 8.977719,
"posY": 4.09067726,
"posZ": -16.6898174,
"rotX": 359.9166,
"rotY": 270.013916,
"rotZ": 0.01770079,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Stand Together (3)",
"Description": "",
"GMNotes": "{\n \"id\": \"02148\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Spirit.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 226352,
"SidewaysCard": false,
"CustomDeck": {
"2263": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "4a2a36",
"Name": "Card",
"Transform": {
"posX": 8.977719,
"posY": 4.09067726,
"posZ": -16.6898174,
"rotX": 359.9166,
"rotY": 270.013916,
"rotZ": 0.01770079,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Charles Ross, Esq.",
"Description": "Acquisitions and Solicitation",
"GMNotes": "{\n \"id\": \"03149\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Ally. Patron.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 368430,
"SidewaysCard": false,
"CustomDeck": {
"3684": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "d9292f",
"Name": "Card",
"Transform": {
"posX": 8.977964,
"posY": 4.100237,
"posZ": -16.6898689,
"rotX": 359.91626,
"rotY": 270.013916,
"rotZ": 0.0177792255,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Robes of Endless Night",
"Description": "",
"GMNotes": "{\n \"id\": \"60412\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Item. Clothing.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 538710,
"SidewaysCard": false,
"CustomDeck": {
"5387": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297472038/B38A78EF27EBE0BDE1B36958D297701505AB936A/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "32e5a4",
"Name": "Card",
"Transform": {
"posX": 8.9782095,
"posY": 4.056716,
"posZ": -16.68992,
"rotX": 359.915955,
"rotY": 270.014,
"rotZ": 0.0178575721,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Armageddon (4)",
"Description": "",
"GMNotes": "{\n \"id\": \"07226\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell. Cursed.\",\n \"level\": 4,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Charge\",\n \"count\": 3\n }\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 579606,
"SidewaysCard": false,
"CustomDeck": {
"5796": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1747933191219101327/797556CAC112D6D289B3A5D3A28433C9F0999CB5/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "b9bb2a",
"Name": "Card",
"Transform": {
"posX": 8.978454,
"posY": 4.01011658,
"posZ": -16.6899738,
"rotX": 359.915619,
"rotY": 270.014,
"rotZ": 0.0179358143,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Fingerprint Kit",
"Description": "",
"GMNotes": "{\n \"id\": \"05024\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Tool.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Supply\",\n \"count\": 3\n }\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 430810,
"SidewaysCard": false,
"CustomDeck": {
"4308": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "580a4d",
"Name": "Card",
"Transform": {
"posX": 8.978454,
"posY": 4.01011658,
"posZ": -16.6899738,
"rotX": 359.915619,
"rotY": 270.014,
"rotZ": 0.0179358143,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Dark Memory",
"Description": "Advanced",
"GMNotes": "{\n \"id\": \"90019\",\n \"type\": \"Event\",\n \"class\": \"Neutral\",\n \"traits\": \"Spell.\",\n \"permanent\": false,\n \"weakness\": true\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 584101,
"SidewaysCard": false,
"CustomDeck": {
"5841": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1655599785038865190/8B0106D5599808B6E00387C2535AC1C3F2330034/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "5ab9f4",
"Name": "Card",
"Transform": {
"posX": 8.978454,
"posY": 4.01011658,
"posZ": -16.6899738,
"rotX": 359.915619,
"rotY": 270.014,
"rotZ": 0.0179358143,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Overpower",
"Description": "",
"GMNotes": "{\n \"id\": \"01091\",\n \"type\": \"Skill\",\n \"class\": \"Neutral\",\n \"traits\": \"Practiced.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 368502,
"SidewaysCard": false,
"CustomDeck": {
"3685": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "1a90a4",
"Name": "Card",
"Transform": {
"posX": 8.978698,
"posY": 4.060246,
"posZ": -16.6900253,
"rotX": 359.915283,
"rotY": 270.014,
"rotZ": 0.0180139858,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Lure (2)",
"Description": "",
"GMNotes": "{\n \"id\": \"05323\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Trick.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 374420,
"SidewaysCard": false,
"CustomDeck": {
"3744": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025946328/561232524C8EAA4B4371B28652F78969E6ED6FFB/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "92436b",
"Name": "Card",
"Transform": {
"posX": 8.978698,
"posY": 4.060246,
"posZ": -16.6900253,
"rotX": 359.915283,
"rotY": 270.014,
"rotZ": 0.0180139858,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Counterpunch (2)",
"Description": "",
"GMNotes": "{\n \"id\": \"60122\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Spirit. Tactic.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 545320,
"SidewaysCard": false,
"CustomDeck": {
"5453": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1546380927206250326/18BF6D2B2BBFDDBE5B021A46C310E4F45493EC26/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "2aeb8a",
"Name": "Card",
"Transform": {
"posX": 8.978942,
"posY": 4.057206,
"posZ": -16.6900749,
"rotX": 359.914978,
"rotY": 270.014038,
"rotZ": 0.01809206,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Burglary (2)",
"Description": "",
"GMNotes": "{\n \"id\": \"06200\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Talent. Illicit.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 447631,
"SidewaysCard": false,
"CustomDeck": {
"4476": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025944587/520448D0E9C22F102C7DDF64322EAD6FC221ECC8/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "22bb1e",
"Name": "Card",
"Transform": {
"posX": 8.978942,
"posY": 4.057206,
"posZ": -16.6900749,
"rotX": 359.914978,
"rotY": 270.014038,
"rotZ": 0.01809206,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "One-Two Punch",
"Description": "",
"GMNotes": "{\n \"id\": \"60117\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Spirit. Tactic.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 545315,
"SidewaysCard": false,
"CustomDeck": {
"5453": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1546380927206250326/18BF6D2B2BBFDDBE5B021A46C310E4F45493EC26/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "b2e5b0",
"Name": "Card",
"Transform": {
"posX": 8.979186,
"posY": 4.0510006,
"posZ": -16.6901245,
"rotX": 359.914642,
"rotY": 270.014038,
"rotZ": 0.0181700513,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Arrogance",
"Description": "Weakness",
"GMNotes": "{\n \"id\": \"60303\",\n \"type\": \"Skill\",\n \"class\": \"Neutral\",\n \"traits\": \"Flaw.\",\n \"permanent\": false,\n \"weakness\": true\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 538601,
"SidewaysCard": false,
"CustomDeck": {
"5386": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456298037683/22C99DD745DFF65ECC72FD32EFA9C9D0F0C12862/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "2236f6",
"Name": "Card",
"Transform": {
"posX": 8.979429,
"posY": 3.99173117,
"posZ": -16.6901741,
"rotX": 359.914337,
"rotY": 270.014038,
"rotZ": 0.018247962,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Counterspell (2)",
"Description": "",
"GMNotes": "{\n \"id\": \"04110\",\n \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell. Blessed.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 230346,
"SidewaysCard": false,
"CustomDeck": {
"2303": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "03a4de",
"Name": "Card",
"Transform": {
"posX": 8.979429,
"posY": 3.99173117,
"posZ": -16.6901741,
"rotX": 359.914337,
"rotY": 270.014038,
"rotZ": 0.018247962,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Anna Kaslow (4)",
"Description": "Mysterious Soothsayer",
"GMNotes": "{\n \"id\": \"05283\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Clairvoyant.\",\n \"level\": 4,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 373910,
"SidewaysCard": false,
"CustomDeck": {
"3739": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025942034/FEADE7F6206804B42CC9B6049F51EDF6040C5D1D/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "0b12ac",
"Name": "Card",
"Transform": {
"posX": 8.979429,
"posY": 3.99173117,
"posZ": -16.6901741,
"rotX": 359.914337,
"rotY": 270.014038,
"rotZ": 0.018247962,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Scroll of Secrets (3)",
"Description": "Seeker",
"GMNotes": "{\n \"id\": \"05188\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Tome.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Secret\",\n \"count\": 3\n }\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 293214,
"SidewaysCard": false,
"CustomDeck": {
"2932": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "30f860",
"Name": "Card",
"Transform": {
"posX": 8.979672,
"posY": 4.02920437,
"posZ": -16.6902237,
"rotX": 359.914,
"rotY": 270.014038,
"rotZ": 0.0183257814,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Blinding Light",
"Description": "",
"GMNotes": "{\n \"id\": \"01066\",\n \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 230311,
"SidewaysCard": false,
"CustomDeck": {
"2303": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "e503ce",
"Name": "Card",
"Transform": {
"posX": 8.979916,
"posY": 3.96362066,
"posZ": -16.6902733,
"rotX": 359.913666,
"rotY": 270.014069,
"rotZ": 0.0184035134,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Pilfer (3)",
"Description": "",
"GMNotes": "{\n \"id\": \"60328\",\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"traits\": \"Trick.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 538626,
"SidewaysCard": false,
"CustomDeck": {
"5386": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456298037683/22C99DD745DFF65ECC72FD32EFA9C9D0F0C12862/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "b176fc",
"Name": "Card",
"Transform": {
"posX": 8.979916,
"posY": 3.96362066,
"posZ": -16.6902733,
"rotX": 359.913666,
"rotY": 270.014069,
"rotZ": 0.0184035134,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Deep Knowledge",
"Description": "",
"GMNotes": "{\n \"id\": \"07023\",\n \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"traits\": \"Insight. Cursed.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 581517,
"SidewaysCard": false,
"CustomDeck": {
"5815": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320664132663842/9B2F50595A754585A4DF12D6D48DC2561DC0E2C9/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "e5901b",
"Name": "Card",
"Transform": {
"posX": 8.980158,
"posY": 3.94488549,
"posZ": -16.6903229,
"rotX": 359.913361,
"rotY": 270.014069,
"rotZ": 0.0184811782,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Spirit of Humanity (2)",
"Description": "",
"GMNotes": "{\n \"id\": \"07229\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Ritual. Blessed. Cursed.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 579909,
"SidewaysCard": false,
"CustomDeck": {
"5799": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1747933191219101327/797556CAC112D6D289B3A5D3A28433C9F0999CB5/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "5fe780",
"Name": "Card",
"Transform": {
"posX": 8.980158,
"posY": 3.94488549,
"posZ": -16.6903229,
"rotX": 359.913361,
"rotY": 270.014069,
"rotZ": 0.0184811782,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Moxie (1)",
"Description": "",
"GMNotes": "{\n \"id\": \"03111\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Talent. Composure.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 315235,
"SidewaysCard": false,
"CustomDeck": {
"3152": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "80b7c6",
"Name": "Card",
"Transform": {
"posX": 8.9804,
"posY": 3.92300153,
"posZ": -16.6903725,
"rotX": 359.913025,
"rotY": 270.0141,
"rotZ": 0.0185587257,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Graveyard Ghouls",
"Description": "",
"GMNotes": "{\n \"id\": \"03017\",\n \"type\": \"Enemy\",\n \"class\": \"Neutral\",\n \"traits\": \"Humanoid. Monster. Ghoul.\",\n \"permanent\": false,\n \"weakness\": true\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 373819,
"SidewaysCard": false,
"CustomDeck": {
"3738": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "078efb",
"Name": "Card",
"Transform": {
"posX": 8.9804,
"posY": 3.92300153,
"posZ": -16.6903725,
"rotX": 359.913025,
"rotY": 270.0141,
"rotZ": 0.0185587257,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Survival Instinct",
"Description": "",
"GMNotes": "{\n \"id\": \"01081\",\n \"type\": \"Skill\",\n \"class\": \"Survivor\",\n \"traits\": \"Innate.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 368800,
"SidewaysCard": false,
"CustomDeck": {
"3688": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "d3dcf1",
"Name": "Card",
"Transform": {
"posX": 8.980642,
"posY": 3.89797282,
"posZ": -16.6904221,
"rotX": 359.91272,
"rotY": 270.0141,
"rotZ": 0.0186361969,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "\"Let God sort them out...\"",
"Description": "",
"GMNotes": "{\n \"id\": \"06160\",\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"traits\": \"Tactic. Fated.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 380027,
"SidewaysCard": false,
"CustomDeck": {
"3800": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025944587/520448D0E9C22F102C7DDF64322EAD6FC221ECC8/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "e8ea95",
"Name": "Card",
"Transform": {
"posX": 8.980885,
"posY": 3.81990147,
"posZ": -16.6904716,
"rotX": 359.912384,
"rotY": 270.0141,
"rotZ": 0.018713586,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Cunning Distraction",
"Description": "",
"GMNotes": "{\n \"id\": \"01078\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Tactic.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 368819,
"SidewaysCard": false,
"CustomDeck": {
"3688": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "1186a1",
"Name": "Card",
"Transform": {
"posX": 8.980885,
"posY": 3.81990147,
"posZ": -16.6904716,
"rotX": 359.912384,
"rotY": 270.0141,
"rotZ": 0.018713586,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Tony's .38 Long Colt",
"Description": "",
"GMNotes": "{\n \"id\": \"06011\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Weapon. Firearm.\",\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Ammo\",\n \"count\": 3\n }\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 581705,
"SidewaysCard": false,
"CustomDeck": {
"5817": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1011562618093846571/13C76218853EE87123267F8F6BE99206DB40470B/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "0a4db3",
"Name": "Card",
"Transform": {
"posX": 8.980885,
"posY": 3.81990147,
"posZ": -16.6904716,
"rotX": 359.912384,
"rotY": 270.0141,
"rotZ": 0.018713586,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Ritual Candles",
"Description": "",
"GMNotes": "{\n \"id\": \"02029\",\n \"alternate_ids\": [ \"60405\" ],\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Item.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 230317,
"SidewaysCard": false,
"CustomDeck": {
"2303": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "6a9021",
"Name": "Card",
"Transform": {
"posX": 8.981126,
"posY": 3.83859324,
"posZ": -16.6905212,
"rotX": 359.912079,
"rotY": 270.0141,
"rotZ": 0.0187908951,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Marksmanship (1)",
"Description": "",
"GMNotes": "{\n \"id\": \"04104\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Tactic.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 226339,
"SidewaysCard": false,
"CustomDeck": {
"2263": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "7651f3",
"Name": "Card",
"Transform": {
"posX": 8.981126,
"posY": 3.83859324,
"posZ": -16.6905212,
"rotX": 359.912079,
"rotY": 270.0141,
"rotZ": 0.0187908951,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Scrounge for Supplies",
"Description": "",
"GMNotes": "{\n \"id\": \"06165\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Fortune.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 380229,
"SidewaysCard": false,
"CustomDeck": {
"3802": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025946328/561232524C8EAA4B4371B28652F78969E6ED6FFB/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "6bae15",
"Name": "Card",
"Transform": {
"posX": 8.981367,
"posY": 3.80415082,
"posZ": -16.69057,
"rotX": 359.911743,
"rotY": 270.01413,
"rotZ": 0.0188680831,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Jewel of Aureolus (3)",
"Description": "Gift of the Homunculi",
"GMNotes": "{\n \"id\": \"02269\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Item. Relic.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 230352,
"SidewaysCard": false,
"CustomDeck": {
"2303": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "ab4fb3",
"Name": "Card",
"Transform": {
"posX": 8.981367,
"posY": 3.80415082,
"posZ": -16.69057,
"rotX": 359.911743,
"rotY": 270.01413,
"rotZ": 0.0188680831,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Summoned Hound (1)",
"Description": "",
"GMNotes": "{\n \"id\": \"06282\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Ally. Summon.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false,\n \"bonded\": [\n {\n \"id\": \"06283\",\n \"count\": 1\n }\n ]\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 527235,
"SidewaysCard": false,
"CustomDeck": {
"5272": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025945336/04E36F64C2CBE1B4905FF44A869C75EC52CB3A56/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "dc65fd",
"Name": "Card",
"Transform": {
"posX": 8.981608,
"posY": 3.81647873,
"posZ": -16.69062,
"rotX": 359.911438,
"rotY": 270.01413,
"rotZ": 0.0189452115,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Telescopic Sight (3) (Taboo)",
"Description": "",
"GMNotes": "{\n \"id\": \"05230-t\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Item. Upgrade.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 584512,
"SidewaysCard": false,
"CustomDeck": {
"5845": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1697277388086984548/E61F3E847797C2C9231829611E0D92BA6376FA67/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 4,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "3d57b4",
"Name": "Card",
"Transform": {
"posX": 8.981608,
"posY": 3.81647873,
"posZ": -16.69062,
"rotX": 359.911438,
"rotY": 270.01413,
"rotZ": 0.0189452115,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Mists of R'lyeh (2)",
"Description": "",
"GMNotes": "{\n \"id\": \"53007\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Charge\",\n \"count\": 5\n }\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 545206,
"SidewaysCard": false,
"CustomDeck": {
"5452": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1487830656537158415/2EBB208AA994ED70FD0FEB02D4E4FE78FE43EE02/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "2ee50e",
"Name": "Card",
"Transform": {
"posX": 8.981849,
"posY": 3.77567935,
"posZ": -16.69067,
"rotX": 359.9111,
"rotY": 270.01413,
"rotZ": 0.01902227,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Decoy",
"Description": "",
"GMNotes": "{\n \"id\": \"05234\",\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"traits\": \"Favor. Service.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 292914,
"SidewaysCard": false,
"CustomDeck": {
"2929": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025944587/520448D0E9C22F102C7DDF64322EAD6FC221ECC8/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "2c2d9a",
"Name": "Card",
"Transform": {
"posX": 8.981849,
"posY": 3.77567935,
"posZ": -16.69067,
"rotX": 359.9111,
"rotY": 270.01413,
"rotZ": 0.01902227,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Bait and Switch",
"Description": "",
"GMNotes": "{\n \"id\": \"02034\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Trick.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 368809,
"SidewaysCard": false,
"CustomDeck": {
"3688": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "9c46da",
"Name": "Card",
"Transform": {
"posX": 8.982089,
"posY": 3.73175621,
"posZ": -16.69072,
"rotX": 359.9108,
"rotY": 270.01416,
"rotZ": 0.0190992244,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Emergency Aid",
"Description": "",
"GMNotes": "{\n \"id\": \"02105\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Insight. Science.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 226317,
"SidewaysCard": false,
"CustomDeck": {
"2263": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "8d6ae6",
"Name": "Card",
"Transform": {
"posX": 8.982089,
"posY": 3.73175621,
"posZ": -16.69072,
"rotX": 359.9108,
"rotY": 270.01416,
"rotZ": 0.0190992244,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Safeguard",
"Description": "",
"GMNotes": "{\n \"id\": \"60110\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Talent.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 545308,
"SidewaysCard": false,
"CustomDeck": {
"5453": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1546380927206250326/18BF6D2B2BBFDDBE5B021A46C310E4F45493EC26/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "26a3bf",
"Name": "Card",
"Transform": {
"posX": 8.982329,
"posY": 3.68471265,
"posZ": -16.69077,
"rotX": 359.910461,
"rotY": 270.01416,
"rotZ": 0.0191760976,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Stealth (3)",
"Description": "",
"GMNotes": "{\n \"id\": \"52005\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Talent.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 440720,
"SidewaysCard": false,
"CustomDeck": {
"4407": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025944587/520448D0E9C22F102C7DDF64322EAD6FC221ECC8/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "3eef18",
"Name": "Card",
"Transform": {
"posX": 8.982695,
"posY": 3.67461443,
"posZ": -16.6908455,
"rotX": 359.918182,
"rotY": 270.01416,
"rotZ": 0.0173168052,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Thrice-Damned Curiosity",
"Description": "Weakness",
"GMNotes": "{\n \"id\": \"60203\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Flaw.\",\n \"permanent\": false,\n \"weakness\": true\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 538801,
"SidewaysCard": false,
"CustomDeck": {
"5388": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1546381162227145538/0F253FC5301911273C32210992261DD1D2EBB578/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "10b087",
"Name": "CardCustom",
"Transform": {
"posX": 8.982695,
"posY": 3.67461443,
"posZ": -16.6908455,
"rotX": 359.918182,
"rotY": 270.01416,
"rotZ": 0.0173168052,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Blasphemous Covenant (2)",
"Description": "",
"GMNotes": "{\n \"id\": \"07113\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Covenant. Cursed.\",\n \"level\": 2,\n \"permanent\": true,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 546500,
"SidewaysCard": false,
"CustomDeck": {
"5465": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1597044073918730883/0E7FEB9CC85CD11EB5194774E90A73163EDACBEC/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1056604690734334657/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "37a2b5",
"Name": "Card",
"Transform": {
"posX": 8.98306,
"posY": 3.71130276,
"posZ": -16.6909218,
"rotX": 359.9259,
"rotY": 270.01416,
"rotZ": 0.0154595748,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Blackjack (2)",
"Description": "",
"GMNotes": "{\n \"id\": \"51002\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Item. Weapon. Melee.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 314105,
"SidewaysCard": false,
"CustomDeck": {
"3141": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025943109/9C5481E6DFEACD450C5522F884E615482281DDB1/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "b45c82",
"Name": "Card",
"Transform": {
"posX": 8.98306,
"posY": 3.71130276,
"posZ": -16.6909218,
"rotX": 359.9259,
"rotY": 270.01416,
"rotZ": 0.0154595748,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Garrote Wire (2)",
"Description": "",
"GMNotes": "{\n \"id\": \"06280\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Item. Weapon.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 449034,
"SidewaysCard": false,
"CustomDeck": {
"4490": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025944587/520448D0E9C22F102C7DDF64322EAD6FC221ECC8/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "213853",
"Name": "Card",
"Transform": {
"posX": 8.98306,
"posY": 3.71130276,
"posZ": -16.6909218,
"rotX": 359.9259,
"rotY": 270.01416,
"rotZ": 0.0154595748,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Switchblade",
"Description": "",
"GMNotes": "{\n \"id\": \"01044\",\n \"alternate_ids\": [ \"60307\" ],\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Item. Weapon. Melee. Illicit.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 368621,
"SidewaysCard": false,
"CustomDeck": {
"3686": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "a33acd",
"Name": "Card",
"Transform": {
"posX": 8.983425,
"posY": 3.794682,
"posZ": -16.6909981,
"rotX": 359.9336,
"rotY": 270.014221,
"rotZ": 0.0136044007,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Open Gate",
"Description": "",
"GMNotes": "{\n \"id\": \"06029\",\n \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 444024,
"SidewaysCard": false,
"CustomDeck": {
"4440": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025945336/04E36F64C2CBE1B4905FF44A869C75EC52CB3A56/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "12bdf1",
"Name": "Card",
"Transform": {
"posX": 8.984154,
"posY": 3.752122,
"posZ": -16.69115,
"rotX": 359.948975,
"rotY": 270.014221,
"rotZ": 0.009900256,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Shroud of Shadows (4)",
"Description": "",
"GMNotes": "{\n \"id\": \"07228\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell. Cursed.\",\n \"level\": 4,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Charge\",\n \"count\": 3\n }\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 579808,
"SidewaysCard": false,
"CustomDeck": {
"5798": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1747933191219101327/797556CAC112D6D289B3A5D3A28433C9F0999CB5/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "65b30d",
"Name": "Card",
"Transform": {
"posX": 8.984154,
"posY": 3.752122,
"posZ": -16.69115,
"rotX": 359.948975,
"rotY": 270.014221,
"rotZ": 0.009900256,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Arcane Initiate (3)",
"Description": "",
"GMNotes": "{\n \"id\": \"03271\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Ally. Sorcerer.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"doom\",\n \"type\": \"Doom\",\n \"count\": 1\n }\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 230349,
"SidewaysCard": false,
"CustomDeck": {
"2303": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "523b76",
"Name": "Card",
"Transform": {
"posX": 8.984517,
"posY": 3.77609015,
"posZ": -16.691227,
"rotX": 359.956665,
"rotY": 270.014252,
"rotZ": 0.008051267,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Moment of Respite (3)",
"Description": "",
"GMNotes": "{\n \"id\": \"02273\",\n \"type\": \"Event\",\n \"class\": \"Neutral\",\n \"traits\": \"Spirit.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 368525,
"SidewaysCard": false,
"CustomDeck": {
"3685": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "59e40d",
"Name": "Card",
"Transform": {
"posX": 8.984517,
"posY": 3.77609015,
"posZ": -16.691227,
"rotX": 359.956665,
"rotY": 270.014252,
"rotZ": 0.008051267,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Mysterious Raven",
"Description": "",
"GMNotes": "{\n \"id\": \"60509\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Ally. Creature.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 550807,
"SidewaysCard": false,
"CustomDeck": {
"5508": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456298038335/2CA532D7F0EED2B2B40E47709AC56D85C4613A33/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "80fafa",
"Name": "Card",
"Transform": {
"posX": 8.98488,
"posY": 3.79686117,
"posZ": -16.6913033,
"rotX": 359.964325,
"rotY": 270.014282,
"rotZ": 0.00620434247,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Leadership (2)",
"Description": "",
"GMNotes": "{\n \"id\": \"06235\",\n \"type\": \"Skill\",\n \"class\": \"Guardian\",\n \"traits\": \"Practiced.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 447935,
"SidewaysCard": false,
"CustomDeck": {
"4479": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025943109/9C5481E6DFEACD450C5522F884E615482281DDB1/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "6179d5",
"Name": "Card",
"Transform": {
"posX": 8.985243,
"posY": 3.76454139,
"posZ": -16.69138,
"rotX": 359.972,
"rotY": 270.014282,
"rotZ": 0.004359468,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Medico Della Peste",
"Description": "",
"GMNotes": "{\n \"id\": \"82024\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Mask.\",\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 295602,
"SidewaysCard": false,
"CustomDeck": {
"2956": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642329861/9768E9FE9C71E74721340D0D81607F534E54A3DE/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "0c859f",
"Name": "Card",
"Transform": {
"posX": 8.985605,
"posY": 3.72913,
"posZ": -16.6914558,
"rotX": 359.9796,
"rotY": 270.0143,
"rotZ": 0.00251664617,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Painkillers",
"Description": "",
"GMNotes": "{\n \"id\": \"02117\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Supply\",\n \"count\": 3\n }\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 368513,
"SidewaysCard": false,
"CustomDeck": {
"3685": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "e40802",
"Name": "Card",
"Transform": {
"posX": 8.985605,
"posY": 3.72913,
"posZ": -16.6914558,
"rotX": 359.9796,
"rotY": 270.0143,
"rotZ": 0.00251664617,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Hallow (3)",
"Description": "",
"GMNotes": "{\n \"id\": \"07301\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Spell. Blessed.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 589100,
"SidewaysCard": false,
"CustomDeck": {
"5891": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1807607979163972370/50A45AE585D6404E677DFCA597A0F5FE13346B97/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 5,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "6b2550",
"Name": "Card",
"Transform": {
"posX": 8.985968,
"posY": 3.7904346,
"posZ": -16.6915321,
"rotX": 359.987274,
"rotY": 270.0143,
"rotZ": 0.0006758752,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "The Necronomicon",
"Description": "John Dee Translation",
"GMNotes": "{\n \"id\": \"01009\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Tome.\",\n \"permanent\": false,\n \"weakness\": true\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 370323,
"SidewaysCard": false,
"CustomDeck": {
"3703": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "79b4af",
"Name": "Card",
"Transform": {
"posX": 8.985968,
"posY": 3.7904346,
"posZ": -16.6915321,
"rotX": 359.987274,
"rotY": 270.0143,
"rotZ": 0.0006758752,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Abandoned and Alone",
"Description": "",
"GMNotes": "{\n \"id\": \"01015\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Madness.\",\n \"permanent\": false,\n \"weakness\": true\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 375129,
"SidewaysCard": false,
"CustomDeck": {
"3751": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "23c3e5",
"Name": "Card",
"Transform": {
"posX": 8.986329,
"posY": 3.79860163,
"posZ": -16.6916084,
"rotX": -0.005083846,
"rotY": 270.014343,
"rotZ": -0.00116284913,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Hyperawareness (2)",
"Description": "",
"GMNotes": "{\n \"id\": \"50003\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Talent.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 430644,
"SidewaysCard": false,
"CustomDeck": {
"4306": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "974743",
"Name": "Card",
"Transform": {
"posX": 8.986329,
"posY": 3.79860163,
"posZ": -16.6916084,
"rotX": -0.005083846,
"rotY": 270.014343,
"rotZ": -0.00116284913,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Rite of Sanctification",
"Description": "",
"GMNotes": "{\n \"id\": \"07019\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Ritual. Blessed.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 554413,
"SidewaysCard": false,
"CustomDeck": {
"5544": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320664132663842/9B2F50595A754585A4DF12D6D48DC2561DC0E2C9/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "function onload()\n mode = \"Bless\"\n chaosbag = getChaosBag()\n manager = getObjectFromGUID(\"5933fb\")\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, true)\n for url,name in pairs(IMAGE_TOKEN_MAP) do\n if name == mode then\n self.addContextMenuItem(\"Seal \" .. mode, function(playerColor) sealToken(url, playerColor) end, true)\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)\n local guid = obj.getGUID()\n local tokensTaken = manager.getVar(\"tokensTaken\")\n table.insert(tokensTaken[mode], guid)\n manager.setVar(\"tokensTaken\", tokensTaken)\n manager.setVar(\"mode\", mode)\n printToAll(\"Sealing \" .. mode .. \" token \" .. manager.call(\"getTokenCount\"))\nend\n\nfunction releaseTokens(playerColor)\n if #sealedTokens == 0 then return end\n local token = sealedTokens[#sealedTokens]\n if token ~= nil then\n local guid = token.getGUID()\n chaosbag.putObject(token)\n local tokensTaken = manager.getVar(\"tokensTaken\")\n for i,v in ipairs(tokensTaken[mode]) do\n if v == guid then\n table.remove(tokensTaken[mode], i)\n break\n end\n end\n manager.setVar(\"tokensTaken\", tokensTaken)\n manager.setVar(\"mode\", mode)\n printToAll(\"Releasing \" .. mode .. \" token\" .. manager.call(\"getTokenCount\"))\n end\n\n table.remove(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": "13eaf0",
"Name": "Card",
"Transform": {
"posX": 8.98669052,
"posY": 3.80375218,
"posZ": -16.6916828,
"rotX": 0.002542023,
"rotY": 270.014343,
"rotZ": -0.002999529,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Dreams of the Deep",
"Description": "",
"GMNotes": "{\n \"id\": \"98015\",\n \"type\": \"Skill\",\n \"class\": \"Neutral\",\n \"traits\": \"Curse.\",\n \"permanent\": false,\n \"weakness\": true\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 444147,
"SidewaysCard": false,
"CustomDeck": {
"4441": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "4167c0",
"Name": "Card",
"Transform": {
"posX": 8.987051,
"posY": 3.756098,
"posZ": -16.6917553,
"rotX": 0.0101594217,
"rotY": 270.014343,
"rotZ": -0.004834167,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "True Understanding",
"Description": "",
"GMNotes": "{\n \"id\": \"04153\",\n \"type\": \"Skill\",\n \"class\": \"Seeker\",\n \"traits\": \"Innate.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 368403,
"SidewaysCard": false,
"CustomDeck": {
"3684": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "03c6a7",
"Name": "Card",
"Transform": {
"posX": 8.9874115,
"posY": 3.70537043,
"posZ": -16.69183,
"rotX": 0.0177683532,
"rotY": 270.014343,
"rotZ": 359.993347,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Jim's Trumpet",
"Description": "",
"GMNotes": "{\n \"id\": \"02012\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Instrument. Relic.\",\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 372110,
"SidewaysCard": false,
"CustomDeck": {
"3721": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "e1e098",
"Name": "Card",
"Transform": {
"posX": 8.987807,
"posY": 3.678501,
"posZ": -16.6919117,
"rotX": 359.939636,
"rotY": 270.014343,
"rotZ": 0.0121479128,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Peter Sylvestre (2)",
"Description": "Big Man on Campus",
"GMNotes": "{\n \"id\": \"02035\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Ally. Miskatonic.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 368852,
"SidewaysCard": false,
"CustomDeck": {
"3688": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "9afe23",
"Name": "Card",
"Transform": {
"posX": 8.988238,
"posY": 3.673366,
"posZ": -16.6920013,
"rotX": 359.924,
"rotY": 270.014343,
"rotZ": 0.0159109086,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Strange Solution (4)",
"Description": "Freezing Variant",
"GMNotes": "{\n \"id\": \"02264\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Science.\",\n \"level\": 4,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 430654,
"SidewaysCard": false,
"CustomDeck": {
"4306": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "55fc3d",
"Name": "Card",
"Transform": {
"posX": 8.988238,
"posY": 3.673366,
"posZ": -16.6920013,
"rotX": 359.924,
"rotY": 270.014343,
"rotZ": 0.0159109086,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Riot Whistle",
"Description": "",
"GMNotes": "{\n \"id\": \"07108\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Item. Tool.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 553100,
"SidewaysCard": false,
"CustomDeck": {
"5531": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1684870715280867313/BFD2AF968EAC917D3B838DCB8B1656941CD8B5CC/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "67e006",
"Name": "Card",
"Transform": {
"posX": 8.988669,
"posY": 3.7150116,
"posZ": -16.692091,
"rotX": 359.908417,
"rotY": 270.014343,
"rotZ": 0.0196697041,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Split the Angle",
"Description": "",
"GMNotes": "{\n \"id\": \"98008\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Spell.\",\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 381050,
"SidewaysCard": false,
"CustomDeck": {
"3810": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "f96ed0",
"Name": "Card",
"Transform": {
"posX": 8.9890995,
"posY": 3.75344181,
"posZ": -16.69218,
"rotX": 359.892822,
"rotY": 270.014343,
"rotZ": 0.0234243441,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Powder of Ibn Ghazi",
"Description": "Seeing Things Unseen",
"GMNotes": "{\n \"id\": \"02219\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item.\",\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 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": 232951,
"SidewaysCard": false,
"CustomDeck": {
"2329": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "406ab2",
"Name": "Card",
"Transform": {
"posX": 8.9890995,
"posY": 3.75344181,
"posZ": -16.69218,
"rotX": 359.892822,
"rotY": 270.014343,
"rotZ": 0.0234243441,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Your Worst Nightmare",
"Description": "Basic Weakness",
"GMNotes": "{\n \"id\": \"06038\",\n \"type\": \"Enemy\",\n \"class\": \"Neutral\",\n \"traits\": \"Monster.\",\n \"permanent\": false,\n \"weakness\": true,\n \"basicWeaknessCount\": 1\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 438128,
"SidewaysCard": false,
"CustomDeck": {
"4381": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "df9809",
"Name": "Card",
"Transform": {
"posX": 8.98953,
"posY": 3.78866,
"posZ": -16.69227,
"rotX": 359.877258,
"rotY": 270.014343,
"rotZ": 0.0271748137,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "The Codex of Ages",
"Description": "finis omnium nunc est",
"GMNotes": "{\n \"id\": \"04013\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Relic. Tome. Blessed.\",\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 583136,
"SidewaysCard": false,
"CustomDeck": {
"5831": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/",
"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": "320bbe",
"Name": "Card",
"Transform": {
"posX": 8.989959,
"posY": 3.82067,
"posZ": -16.6923618,
"rotX": 359.8617,
"rotY": 270.014343,
"rotZ": 0.0309211072,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Written in the Stars",
"Description": "",
"GMNotes": "{\n \"id\": \"08034\",\n \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"traits\": \"Insight.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 379024,
"SidewaysCard": false,
"CustomDeck": {
"3790": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1625226898126491470/A7FAFA92C08268717F79B2B1C83F8C23DFA6C534/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "f5bcec",
"Name": "Card",
"Transform": {
"posX": 8.990388,
"posY": 3.79957342,
"posZ": -16.6924534,
"rotX": 359.846161,
"rotY": 270.014343,
"rotZ": 0.03466325,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Encyclopedia (2)",
"Description": "",
"GMNotes": "{\n \"id\": \"01042\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Tome.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 430646,
"SidewaysCard": false,
"CustomDeck": {
"4306": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "55001f",
"Name": "Card",
"Transform": {
"posX": 8.991244,
"posY": 3.748076,
"posZ": -16.6926346,
"rotX": 359.815155,
"rotY": 270.014343,
"rotZ": 0.0421350673,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Livre d'Eibon",
"Description": "Hyperborean Grimoire",
"GMNotes": "{\n \"id\": \"08005\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Relic. Tome.\",\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 379003,
"SidewaysCard": false,
"CustomDeck": {
"3790": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1625226898126491470/A7FAFA92C08268717F79B2B1C83F8C23DFA6C534/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "aae31c",
"Name": "Card",
"Transform": {
"posX": 8.991672,
"posY": 3.76758313,
"posZ": -16.6927242,
"rotX": 359.799652,
"rotY": 270.0143,
"rotZ": 0.04586478,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "\"Lucky\" Penny (2)",
"Description": "Omen of Misfortune",
"GMNotes": "{\n \"id\": \"07224\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Item. Charm. Cursed.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 579504,
"SidewaysCard": false,
"CustomDeck": {
"5795": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1747933191219101327/797556CAC112D6D289B3A5D3A28433C9F0999CB5/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "804397",
"Name": "Card",
"Transform": {
"posX": 8.992099,
"posY": 3.733998,
"posZ": -16.6928139,
"rotX": 359.78418,
"rotY": 270.0143,
"rotZ": 0.0495903119,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Astronomical Atlas (3)",
"Description": "",
"GMNotes": "{\n \"id\": \"08067\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Item. Tome.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 379057,
"SidewaysCard": false,
"CustomDeck": {
"3790": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1625226898126491470/A7FAFA92C08268717F79B2B1C83F8C23DFA6C534/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "e419b4",
"Name": "Card",
"Transform": {
"posX": 8.992099,
"posY": 3.733998,
"posZ": -16.6928139,
"rotX": 359.78418,
"rotY": 270.0143,
"rotZ": 0.0495903119,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Medical Student",
"Description": "",
"GMNotes": "{\n \"id\": \"08083\",\n \"type\": \"Asset\",\n \"class\": \"Guardian|Seeker\",\n \"traits\": \"Ally. Miskatonic. Science.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 378921,
"SidewaysCard": false,
"CustomDeck": {
"3789": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1625226898126493809/0EE7F5B9B916B56425CAC1C46F7FCEF9DBF55112/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "331b58",
"Name": "Card",
"Transform": {
"posX": 8.992525,
"posY": 3.74722528,
"posZ": -16.6929035,
"rotX": 359.768738,
"rotY": 270.014282,
"rotZ": 0.0533117577,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Dragon Pole",
"Description": "",
"GMNotes": "{\n \"id\": \"08060\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Item. Weapon. Melee.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 379050,
"SidewaysCard": false,
"CustomDeck": {
"3790": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1625226898126491470/A7FAFA92C08268717F79B2B1C83F8C23DFA6C534/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "e9fef2",
"Name": "Card",
"Transform": {
"posX": 8.992525,
"posY": 3.74722528,
"posZ": -16.6929035,
"rotX": 359.768738,
"rotY": 270.014282,
"rotZ": 0.0533117577,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "The Harbinger",
"Description": "Weakness",
"GMNotes": "{\n \"id\": \"08006\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Omen. Endtimes.\",\n \"permanent\": false,\n \"weakness\": true\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 379004,
"SidewaysCard": false,
"CustomDeck": {
"3790": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1625226898126491470/A7FAFA92C08268717F79B2B1C83F8C23DFA6C534/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "4e6d80",
"Name": "Card",
"Transform": {
"posX": 8.992951,
"posY": 3.75726843,
"posZ": -16.6929913,
"rotX": 359.7533,
"rotY": 270.014282,
"rotZ": 0.0570290647,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Strength in Numbers (1)",
"Description": "",
"GMNotes": "{\n \"id\": \"08077\",\n \"type\": \"Skill\",\n \"class\": \"Survivor\",\n \"traits\": \"Innate. Synergy.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 378906,
"SidewaysCard": false,
"CustomDeck": {
"3789": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1625226898126493809/0EE7F5B9B916B56425CAC1C46F7FCEF9DBF55112/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "573765",
"Name": "Card",
"Transform": {
"posX": 8.992951,
"posY": 3.75726843,
"posZ": -16.6929913,
"rotX": 359.7533,
"rotY": 270.014282,
"rotZ": 0.0570290647,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Michael Leigh (5)",
"Description": "Experienced Hunter",
"GMNotes": "{\n \"id\": \"08086\",\n \"type\": \"Asset\",\n \"class\": \"Guardian|Seeker\",\n \"traits\": \"Ally. Detective.\",\n \"level\": 5,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 378924,
"SidewaysCard": false,
"CustomDeck": {
"3789": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1625226898126493809/0EE7F5B9B916B56425CAC1C46F7FCEF9DBF55112/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "5be76d",
"Name": "Card",
"Transform": {
"posX": 8.992951,
"posY": 3.75726843,
"posZ": -16.6929913,
"rotX": 359.7533,
"rotY": 270.014282,
"rotZ": 0.0570290647,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Blur (1)",
"Description": "",
"GMNotes": "{\n \"id\": \"08109\",\n \"type\": \"Asset\",\n \"class\": \"Rogue|Mystic\",\n \"traits\": \"Spell.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Charge\",\n \"count\": 3\n }\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 378947,
"SidewaysCard": false,
"CustomDeck": {
"3789": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1625226898126493809/0EE7F5B9B916B56425CAC1C46F7FCEF9DBF55112/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "658588",
"Name": "Card",
"Transform": {
"posX": 8.993377,
"posY": 3.81403279,
"posZ": -16.69308,
"rotX": 359.737885,
"rotY": 270.014282,
"rotZ": 0.06074222,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Divination (1)",
"Description": "",
"GMNotes": "{\n \"id\": \"08101\",\n \"type\": \"Asset\",\n \"class\": \"Seeker|Mystic\",\n \"traits\": \"Spell. Augury.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Charge\",\n \"count\": 4\n }\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 378939,
"SidewaysCard": false,
"CustomDeck": {
"3789": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1625226898126493809/0EE7F5B9B916B56425CAC1C46F7FCEF9DBF55112/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "5779d3",
"Name": "Card",
"Transform": {
"posX": 8.993802,
"posY": 3.81762028,
"posZ": -16.69317,
"rotX": 359.7225,
"rotY": 270.014282,
"rotZ": 0.06445131,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Butterfly Swords (2)",
"Description": "",
"GMNotes": "{\n \"id\": \"08025\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Item. Weapon. Melee.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 379015,
"SidewaysCard": false,
"CustomDeck": {
"3790": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1625226898126491470/A7FAFA92C08268717F79B2B1C83F8C23DFA6C534/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "9df9df",
"Name": "Card",
"Transform": {
"posX": 8.994651,
"posY": 3.81537747,
"posZ": -16.6933479,
"rotX": 359.691742,
"rotY": 270.014221,
"rotZ": 0.07185705,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Henry Wan",
"Description": "Aspiring Actor",
"GMNotes": "{\n \"id\": \"05155\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Ally. Criminal.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 277709,
"SidewaysCard": false,
"CustomDeck": {
"2777": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025944587/520448D0E9C22F102C7DDF64322EAD6FC221ECC8/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "242a11",
"Name": "CardCustom",
"Transform": {
"posX": 8.994651,
"posY": 3.81537747,
"posZ": -16.6933479,
"rotX": 359.691742,
"rotY": 270.014221,
"rotZ": 0.07185705,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Liber Omnium Finium",
"Description": "Weakness",
"GMNotes": "{\n \"id\": \"98021\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Endtimes.\",\n \"permanent\": false,\n \"weakness\": true\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 273000,
"SidewaysCard": false,
"CustomDeck": {
"2730": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1684870715280920105/BBE662BDDC5F2C94A5DE10256B991D1E1DD2C50D/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "6c3156",
"Name": "Card",
"Transform": {
"posX": 8.995074,
"posY": 3.80945587,
"posZ": -16.6934357,
"rotX": 359.6764,
"rotY": 270.014221,
"rotZ": 0.07555381,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Crystal Pendulum",
"Description": "",
"GMNotes": "{\n \"id\": \"60411\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Item. Charm.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 538709,
"SidewaysCard": false,
"CustomDeck": {
"5387": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297472038/B38A78EF27EBE0BDE1B36958D297701505AB936A/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "9d6e9a",
"Name": "Card",
"Transform": {
"posX": 8.995498,
"posY": 3.75047,
"posZ": -16.6935234,
"rotX": 359.661072,
"rotY": 270.014221,
"rotZ": 0.07924646,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Nautical Prowess",
"Description": "",
"GMNotes": "{\n \"id\": \"98014\",\n \"type\": \"Skill\",\n \"class\": \"Neutral\",\n \"traits\": \"Innate. Developed.\",\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 444348,
"SidewaysCard": false,
"CustomDeck": {
"4443": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "0fd4ae",
"Name": "Card",
"Transform": {
"posX": 8.995498,
"posY": 3.75047,
"posZ": -16.6935234,
"rotX": 359.661072,
"rotY": 270.014221,
"rotZ": 0.07924646,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Protective Incantation (1)",
"Description": "",
"GMNotes": "{\n \"id\": \"04031\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Ritual. Blessed.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 230333,
"SidewaysCard": false,
"CustomDeck": {
"2303": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/",
"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 readBag()\nend\n\nfunction readBag(playerColor)\n if playerColor ~= nil then\n printToColor(\"Reading chaos bag\", playerColor)\n end\n\n local tokensInBag = { }\n for i,token in ipairs(chaosbag.getObjects()) do\n if token.name ~= nil and token.name ~= \"\" then\n tokensInBag[token.name] = true\n end\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 tokensInBag[name] and name ~= \"Auto-fail\" then\n self.addContextMenuItem(\"Seal \" .. name, function(playerColor) sealToken(url, playerColor) end)\n end\n end\n self.addContextMenuItem(\"Read Chaos Bag\", readBag)\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\n",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "a88392",
"Name": "Card",
"Transform": {
"posX": 8.99592,
"posY": 3.73832488,
"posZ": -16.6936111,
"rotX": 359.645752,
"rotY": 270.01416,
"rotZ": 0.082934916,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Opportunist",
"Description": "",
"GMNotes": "{\n \"id\": \"01053\",\n \"alternate_ids\": [ \"60319\" ],\n \"type\": \"Skill\",\n \"class\": \"Rogue\",\n \"traits\": \"Innate.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 261702,
"SidewaysCard": false,
"CustomDeck": {
"2617": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "2f1166",
"Name": "Card",
"Transform": {
"posX": 8.996369,
"posY": 3.685333,
"posZ": -16.6937046,
"rotX": 359.865234,
"rotY": 270.0143,
"rotZ": 0.03006768,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Universal Solvent",
"Description": "",
"GMNotes": "{\n \"id\": \"85029\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Science.\",\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 233604,
"SidewaysCard": false,
"CustomDeck": {
"2336": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/784129708171655462/0B7EFEEA9A53B93350FEC7F68F39A20D1D6580A9/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "f60263",
"Name": "Card",
"Transform": {
"posX": 8.996874,
"posY": 3.67472267,
"posZ": -16.69381,
"rotX": 359.909149,
"rotY": 270.014282,
"rotZ": 0.0194949,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Extra Ammunition (1)",
"Description": "",
"GMNotes": "{\n \"id\": \"01026\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Supply.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Ammo\",\n \"count\": 3\n }\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 226337,
"SidewaysCard": false,
"CustomDeck": {
"2263": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "1339b0",
"Name": "Card",
"Transform": {
"posX": 8.996874,
"posY": 3.67472267,
"posZ": -16.69381,
"rotX": 359.909149,
"rotY": 270.014282,
"rotZ": 0.0194949042,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Mr. \"Rook\"",
"Description": "",
"GMNotes": "{\n \"id\": \"05153\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Ally.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 277811,
"SidewaysCard": false,
"CustomDeck": {
"2778": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "0edef1",
"Name": "Card",
"Transform": {
"posX": 8.997378,
"posY": 3.7108984,
"posZ": -16.6939144,
"rotX": 359.953,
"rotY": 270.014221,
"rotZ": 0.008933851,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "A Chance Encounter (2)",
"Description": "",
"GMNotes": "{\n \"id\": \"03238\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Fortune.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 368844,
"SidewaysCard": false,
"CustomDeck": {
"3688": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "f93ea8",
"Name": "Card",
"Transform": {
"posX": 8.997378,
"posY": 3.7108984,
"posZ": -16.6939144,
"rotX": 359.953,
"rotY": 270.014221,
"rotZ": 0.008933851,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Voice of the Messenger",
"Description": "",
"GMNotes": "{\n \"id\": \"04016\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Curse. Pact.\",\n \"permanent\": false,\n \"weakness\": true\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 376501,
"SidewaysCard": false,
"CustomDeck": {
"3765": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "57e648",
"Name": "Card",
"Transform": {
"posX": 8.997882,
"posY": 3.743926,
"posZ": -16.69402,
"rotX": -0.003206799,
"rotY": 270.01413,
"rotZ": -0.00161550718,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Narcolepsy",
"Description": "Basic Weakness",
"GMNotes": "{\n \"id\": \"06037\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Madness.\",\n \"permanent\": false,\n \"weakness\": true,\n \"basicWeaknessCount\": 1\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 438127,
"SidewaysCard": false,
"CustomDeck": {
"4381": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "1e9213",
"Name": "Card",
"Transform": {
"posX": 8.997882,
"posY": 3.743926,
"posZ": -16.69402,
"rotX": -0.003206799,
"rotY": 270.01413,
"rotZ": -0.00161550718,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Storm of Spirits (3)",
"Description": "",
"GMNotes": "{\n \"id\": \"52008\",\n \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 444021,
"SidewaysCard": false,
"CustomDeck": {
"4440": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025945336/04E36F64C2CBE1B4905FF44A869C75EC52CB3A56/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "d6771f",
"Name": "Card",
"Transform": {
"posX": 8.998385,
"posY": 3.776255,
"posZ": -16.6941242,
"rotX": 0.0405441076,
"rotY": 270.014069,
"rotZ": 359.987854,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Fieldwork",
"Description": "",
"GMNotes": "{\n \"id\": \"03024\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Talent.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 368429,
"SidewaysCard": false,
"CustomDeck": {
"3684": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "854c79",
"Name": "Card",
"Transform": {
"posX": 8.998385,
"posY": 3.776255,
"posZ": -16.6941242,
"rotX": 0.0405441076,
"rotY": 270.014069,
"rotZ": 359.987854,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Whitton Greene (2)",
"Description": "Hunter of Rare Books",
"GMNotes": "{\n \"id\": \"60223\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Ally. Miskatonic.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 538821,
"SidewaysCard": false,
"CustomDeck": {
"5388": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1546381162227145538/0F253FC5301911273C32210992261DD1D2EBB578/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "0feb74",
"Name": "Card",
"Transform": {
"posX": 8.998888,
"posY": 3.80554914,
"posZ": -16.69423,
"rotX": 0.0842463747,
"rotY": 270.013977,
"rotZ": 359.977325,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Lucky Cigarette Case (3)",
"Description": "",
"GMNotes": "{\n \"id\": \"60326\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Item. Charm.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 538624,
"SidewaysCard": false,
"CustomDeck": {
"5386": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456298037683/22C99DD745DFF65ECC72FD32EFA9C9D0F0C12862/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "542a70",
"Name": "Card",
"Transform": {
"posX": 8.99939,
"posY": 3.831641,
"posZ": -16.694334,
"rotX": 0.127900153,
"rotY": 270.0139,
"rotZ": 359.9668,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Favor of the Moon (1)",
"Description": "",
"GMNotes": "{\n \"id\": \"07271\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Pact. Cursed.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 449610,
"SidewaysCard": false,
"CustomDeck": {
"4496": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1747933191220177818/637923621F747375066D4DA39BEA3BA9C26086A5/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 7,
"NumHeight": 3,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "function onload()\r\n mode = \"Curse\"\r\n chaosbag = getChaosBag()\r\n manager = getObjectFromGUID(\"5933fb\")\r\n sealedTokens = { }\r\n IMAGE_TOKEN_MAP = { }\r\n for i,v in pairs(Global.getVar(\"IMAGE_TOKEN_MAP\")) do\r\n IMAGE_TOKEN_MAP[i] = v\r\n end\r\n\r\n -- add menu items\r\n self.clearContextMenu()\r\n self.addContextMenuItem(\"Release Token\", releaseTokens, true)\r\n for url,name in pairs(IMAGE_TOKEN_MAP) do\r\n if name == mode then\r\n self.addContextMenuItem(\"Seal \" .. mode, function(playerColor) sealToken(url, playerColor) end, true)\r\n end\r\n end\r\nend\r\n\r\nfunction sealToken(url, playerColor)\r\n local pos = self.getPosition()\r\n\r\n local name = IMAGE_TOKEN_MAP[url]\r\n for i,obj in ipairs(chaosbag.getObjects()) do\r\n if obj.name == name then\r\n chaosbag.takeObject({\r\n position={ pos.x, pos.y + 1, pos.z },\r\n index=i-1,\r\n smooth=false,\r\n callback_function=_sealToken\r\n })\r\n return\r\n end\r\n end\r\n printToColor(name .. \" token not found in bag\", playerColor)\r\nend\r\n\r\nfunction _sealToken(obj)\r\n table.insert(sealedTokens, obj)\r\n local guid = obj.getGUID()\r\n local tokensTaken = manager.getVar(\"tokensTaken\")\r\n table.insert(tokensTaken[mode], guid)\r\n manager.setVar(\"tokensTaken\", tokensTaken)\r\n manager.setVar(\"mode\", mode)\r\n printToAll(\"Sealing \" .. mode .. \" token \" .. manager.call(\"getTokenCount\"))\r\nend\r\n\r\nfunction releaseTokens(playerColor)\r\n if #sealedTokens == 0 then return end\r\n local token = sealedTokens[#sealedTokens]\r\n if token ~= nil then\r\n local guid = token.getGUID()\r\n chaosbag.putObject(token)\r\n local tokensTaken = manager.getVar(\"tokensTaken\")\r\n for i,v in ipairs(tokensTaken[mode]) do\r\n if v == guid then\r\n table.remove(tokensTaken[mode], i)\r\n break\r\n end\r\n end\r\n manager.setVar(\"tokensTaken\", tokensTaken)\r\n manager.setVar(\"mode\", mode)\r\n printToAll(\"Releasing \" .. mode .. \" token\" .. manager.call(\"getTokenCount\"))\r\n end\r\n\r\n table.remove(sealedTokens)\r\nend\r\n\r\nfunction getChaosBag()\r\n local items = getObjectFromGUID(\"83ef06\").getObjects()\r\n local chaosbag = nil\r\n for i,v in ipairs(items) do\r\n if v.getDescription() == \"Chaos Bag\" then\r\n chaosbag = getObjectFromGUID(v.getGUID())\r\n break\r\n end\r\n end\r\n if chaosbag == nil then printToAll(\"No chaos bag found\") end\r\n return chaosbag\r\nend\r\n",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "fc709b",
"Name": "Card",
"Transform": {
"posX": 8.999891,
"posY": 3.80463266,
"posZ": -16.6944389,
"rotX": 0.171505272,
"rotY": 270.0138,
"rotZ": 359.9563,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Blood Pact",
"Description": "",
"GMNotes": "{\n \"id\": \"07158\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell. Pact.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 232106,
"SidewaysCard": false,
"CustomDeck": {
"2321": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1655600400212405700/559F1F3EF87BDF7F067F9B7011EDC3A6ACE71259/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 5,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "814ce2",
"Name": "Card",
"Transform": {
"posX": 8.999891,
"posY": 3.80463266,
"posZ": -16.6944389,
"rotX": 0.171505272,
"rotY": 270.0138,
"rotZ": 359.9563,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Eidetic Memory (3)",
"Description": "",
"GMNotes": "{\n \"id\": \"03306\",\n \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"traits\": \"Spirit.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 430650,
"SidewaysCard": false,
"CustomDeck": {
"4306": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "14dcc4",
"Name": "Card",
"Transform": {
"posX": 9.000392,
"posY": 3.824429,
"posZ": -16.6945438,
"rotX": 0.215061978,
"rotY": 270.013672,
"rotZ": 359.9458,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Dynamite Blast (3)",
"Description": "",
"GMNotes": "{\n \"id\": \"60129\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Tactic.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 545327,
"SidewaysCard": false,
"CustomDeck": {
"5453": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1546380927206250326/18BF6D2B2BBFDDBE5B021A46C310E4F45493EC26/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "7e2896",
"Name": "Card",
"Transform": {
"posX": 9.000893,
"posY": 3.79113245,
"posZ": -16.6946487,
"rotX": 0.258570284,
"rotY": 270.01355,
"rotZ": 359.935333,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Elina Harper",
"Description": "Knows Too Much",
"GMNotes": "{\n \"id\": \"07083\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Agency. Detective.\",\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 369816,
"SidewaysCard": false,
"CustomDeck": {
"3698": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320664132663476/95B0BD966B579DEE644A25703730C8729B16AAF8/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "edd34a",
"Name": "Card",
"Transform": {
"posX": 9.000893,
"posY": 3.79113245,
"posZ": -16.6946487,
"rotX": 0.258570284,
"rotY": 270.01355,
"rotZ": 359.935333,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Quantum Flux",
"Description": "",
"GMNotes": "{\n \"id\": \"03196\",\n \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"traits\": \"Insight.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 230307,
"SidewaysCard": false,
"CustomDeck": {
"2303": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "3aa40e",
"Name": "Card",
"Transform": {
"posX": 9.000893,
"posY": 3.79113245,
"posZ": -16.6946487,
"rotX": 0.258570284,
"rotY": 270.01355,
"rotZ": 359.935333,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Dark Future",
"Description": "Weakness",
"GMNotes": "{\n \"id\": \"60403\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Omen. Endtimes.\",\n \"permanent\": false,\n \"weakness\": true\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 538701,
"SidewaysCard": false,
"CustomDeck": {
"5387": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297472038/B38A78EF27EBE0BDE1B36958D297701505AB936A/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "a57f19",
"Name": "Card",
"Transform": {
"posX": 9.001392,
"posY": 3.85454845,
"posZ": -16.6947536,
"rotX": 0.302030116,
"rotY": 270.013428,
"rotZ": 359.924866,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Meat Cleaver",
"Description": "",
"GMNotes": "{\n \"id\": \"05114\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Item. Weapon. Melee.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 277912,
"SidewaysCard": false,
"CustomDeck": {
"2779": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025946328/561232524C8EAA4B4371B28652F78969E6ED6FFB/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "0dc75e",
"Name": "Card",
"Transform": {
"posX": 9.001392,
"posY": 3.85454845,
"posZ": -16.6947536,
"rotX": 0.302030116,
"rotY": 270.013428,
"rotZ": 359.924866,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Keen Eye",
"Description": "",
"GMNotes": "{\n \"id\": \"07152\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Talent.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 232100,
"SidewaysCard": false,
"CustomDeck": {
"2321": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1655600400212405700/559F1F3EF87BDF7F067F9B7011EDC3A6ACE71259/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 5,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "a3bc7a",
"Name": "Card",
"Transform": {
"posX": 9.001892,
"posY": 3.86477971,
"posZ": -16.6948586,
"rotX": 0.345441848,
"rotY": 270.0133,
"rotZ": 359.9144,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Atychiphobia",
"Description": "Basic Weakness",
"GMNotes": "{\n \"id\": \"60504\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Madness.\",\n \"permanent\": false,\n \"weakness\": true,\n \"basicWeaknessCount\": 1\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 550802,
"SidewaysCard": false,
"CustomDeck": {
"5508": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456298038335/2CA532D7F0EED2B2B40E47709AC56D85C4613A33/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "a33470",
"Name": "Card",
"Transform": {
"posX": 9.001892,
"posY": 3.86477971,
"posZ": -16.6948586,
"rotX": 0.345441848,
"rotY": 270.0133,
"rotZ": 359.9144,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Spirit-Speaker",
"Description": "",
"GMNotes": "{\n \"id\": \"03014\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ritual.\",\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 375016,
"SidewaysCard": false,
"CustomDeck": {
"3750": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "f8a977",
"Name": "Card",
"Transform": {
"posX": 9.002391,
"posY": 3.87183,
"posZ": -16.6949635,
"rotX": 0.388805151,
"rotY": 270.013184,
"rotZ": 359.903961,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": ".18 Derringer (2)",
"Description": "",
"GMNotes": "{\n \"id\": \"60522\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Item. Weapon. Firearm. Illicit.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Ammo\",\n \"count\": 3\n }\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 550820,
"SidewaysCard": false,
"CustomDeck": {
"5508": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456298038335/2CA532D7F0EED2B2B40E47709AC56D85C4613A33/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "367aac",
"Name": "Card",
"Transform": {
"posX": 9.002391,
"posY": 3.87183,
"posZ": -16.6949635,
"rotX": 0.388805,
"rotY": 270.013184,
"rotZ": 359.903961,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Crisis of Identity",
"Description": "",
"GMNotes": "{\n \"id\": \"03019\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Madness.\",\n \"permanent\": false,\n \"weakness\": true\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 374935,
"SidewaysCard": false,
"CustomDeck": {
"3749": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "782e0a",
"Name": "CardCustom",
"Transform": {
"posX": 9.002889,
"posY": 3.92560363,
"posZ": -16.6950684,
"rotX": 0.4321202,
"rotY": 270.013031,
"rotZ": 359.893524,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Ruth Westmacott",
"Description": "Dark Revelations",
"GMNotes": "{\n \"id\": \"98020\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Artist.\",\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 273100,
"SidewaysCard": false,
"CustomDeck": {
"2731": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1684870715280920329/24678C1EA9F75CE15164134ACF04BD5642D9F434/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "78adda",
"Name": "Card",
"Transform": {
"posX": 9.002889,
"posY": 3.92560363,
"posZ": -16.6950684,
"rotX": 0.432120085,
"rotY": 270.013031,
"rotZ": 359.893524,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Hyperawareness (4)",
"Description": "",
"GMNotes": "{\n \"id\": \"07264\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Talent.\",\n \"level\": 4,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Resource\",\n \"count\": 2\n }\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 449603,
"SidewaysCard": false,
"CustomDeck": {
"4496": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1747933191220177818/637923621F747375066D4DA39BEA3BA9C26086A5/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 7,
"NumHeight": 3,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "706176",
"Name": "Card",
"Transform": {
"posX": 9.0033865,
"posY": 3.92620349,
"posZ": -16.6951733,
"rotX": 0.475386947,
"rotY": 270.012878,
"rotZ": 359.883118,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Directive",
"Description": "Red Tape",
"GMNotes": "{\n \"id\": \"90026\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"permanent\": true,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 536201,
"SidewaysCard": false,
"CustomDeck": {
"5362": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1697276706761486024/CC7FAD210F216229F1A721BF648855D156F052D5/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 4,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "230835",
"Name": "Card",
"Transform": {
"posX": 9.0033865,
"posY": 3.92620349,
"posZ": -16.6951733,
"rotX": 0.475386947,
"rotY": 270.012878,
"rotZ": 359.883118,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Scroll of Secrets",
"Description": "",
"GMNotes": "{\n \"id\": \"05116\",\n \"type\": \"Asset\",\n \"class\": \"Seeker|Mystic\",\n \"traits\": \"Item. Tome.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Secret\",\n \"count\": 3\n }\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 277604,
"SidewaysCard": false,
"CustomDeck": {
"2776": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025942034/FEADE7F6206804B42CC9B6049F51EDF6040C5D1D/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "5659d1",
"Name": "Card",
"Transform": {
"posX": 9.003883,
"posY": 3.92363262,
"posZ": -16.69528,
"rotX": 0.518606,
"rotY": 270.0127,
"rotZ": 359.872681,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Nephthys (4)",
"Description": "Huntress of Bast",
"GMNotes": "{\n \"id\": \"07262\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Ally. Blessed.\",\n \"level\": 4,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 449601,
"SidewaysCard": false,
"CustomDeck": {
"4496": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1747933191220177818/637923621F747375066D4DA39BEA3BA9C26086A5/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 7,
"NumHeight": 3,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "function onload()\n mode = \"Bless\"\n chaosbag = getChaosBag()\n manager = getObjectFromGUID(\"5933fb\")\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, true)\n for url,name in pairs(IMAGE_TOKEN_MAP) do\n if name == mode then\n self.addContextMenuItem(\"Seal \" .. mode, function(playerColor) sealToken(url, playerColor) end, true)\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)\n local guid = obj.getGUID()\n local tokensTaken = manager.getVar(\"tokensTaken\")\n table.insert(tokensTaken[mode], guid)\n manager.setVar(\"tokensTaken\", tokensTaken)\n manager.setVar(\"mode\", mode)\n printToAll(\"Sealing \" .. mode .. \" token \" .. manager.call(\"getTokenCount\"))\nend\n\nfunction releaseTokens(playerColor)\n if #sealedTokens == 0 then return end\n local token = sealedTokens[#sealedTokens]\n if token ~= nil then\n local guid = token.getGUID()\n chaosbag.putObject(token)\n local tokensTaken = manager.getVar(\"tokensTaken\")\n for i,v in ipairs(tokensTaken[mode]) do\n if v == guid then\n table.remove(tokensTaken[mode], i)\n break\n end\n end\n manager.setVar(\"tokensTaken\", tokensTaken)\n manager.setVar(\"mode\", mode)\n printToAll(\"Releasing \" .. mode .. \" token\" .. manager.call(\"getTokenCount\"))\n end\n\n table.remove(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\n",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "ec38db",
"Name": "Card",
"Transform": {
"posX": 9.00438,
"posY": 3.86799383,
"posZ": -16.695385,
"rotX": 0.5617769,
"rotY": 270.0125,
"rotZ": 359.8623,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Warning Shot",
"Description": "",
"GMNotes": "{\n \"id\": \"05229\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Tactic. Trick.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 292814,
"SidewaysCard": false,
"CustomDeck": {
"2928": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025943109/9C5481E6DFEACD450C5522F884E615482281DDB1/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "b80459",
"Name": "Card",
"Transform": {
"posX": 9.00438,
"posY": 3.86799383,
"posZ": -16.695385,
"rotX": 0.5617769,
"rotY": 270.0125,
"rotZ": 359.8623,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "The Home Front",
"Description": "",
"GMNotes": "{\n \"id\": \"03007\",\n \"type\": \"Skill\",\n \"class\": \"Neutral\",\n \"traits\": \"Practiced. Expert.\",\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 374330,
"SidewaysCard": false,
"CustomDeck": {
"3743": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "d87128",
"Name": "Card",
"Transform": {
"posX": 9.004876,
"posY": 3.85919142,
"posZ": -16.695488,
"rotX": 0.6048998,
"rotY": 270.01236,
"rotZ": 359.8519,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Jenny's Twin .45s",
"Description": "",
"GMNotes": "{\n \"id\": \"02010\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Weapon. Firearm.\",\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 371308,
"SidewaysCard": false,
"CustomDeck": {
"3713": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "2ea0d0",
"Name": "Card",
"Transform": {
"posX": 9.004876,
"posY": 3.85919142,
"posZ": -16.695488,
"rotX": 0.6048998,
"rotY": 270.01236,
"rotZ": 359.8519,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Token of Faith",
"Description": "",
"GMNotes": "{\n \"id\": \"07033\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Item. Charm.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 587627,
"SidewaysCard": false,
"CustomDeck": {
"5876": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320664132663842/9B2F50595A754585A4DF12D6D48DC2561DC0E2C9/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "5558f1",
"Name": "Card",
"Transform": {
"posX": 9.005371,
"posY": 3.84722877,
"posZ": -16.695591,
"rotX": 0.6479746,
"rotY": 270.012177,
"rotZ": 359.841522,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Mists of R'lyeh",
"Description": "",
"GMNotes": "{\n \"id\": \"04029\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Charge\",\n \"count\": 4\n }\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 230326,
"SidewaysCard": false,
"CustomDeck": {
"2303": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "d4fd4a",
"Name": "Card",
"Transform": {
"posX": 9.005371,
"posY": 3.84722877,
"posZ": -16.695591,
"rotX": 0.6479746,
"rotY": 270.012177,
"rotZ": 359.841522,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Shortcut",
"Description": "",
"GMNotes": "{\n \"id\": \"02022\",\n \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"traits\": \"Insight. Tactic.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 368405,
"SidewaysCard": false,
"CustomDeck": {
"3684": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "d253a6",
"Name": "Card",
"Transform": {
"posX": 9.005866,
"posY": 3.83210969,
"posZ": -16.695694,
"rotX": 0.6910015,
"rotY": 270.012,
"rotZ": 359.831177,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Randolph Carter",
"Description": "Chained to the Waking World",
"GMNotes": "{\n \"id\": \"06079\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Dreamer.\",\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 452504,
"SidewaysCard": false,
"CustomDeck": {
"4525": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "53f076",
"Name": "Card",
"Transform": {
"posX": 9.005866,
"posY": 3.83210969,
"posZ": -16.695694,
"rotX": 0.6910015,
"rotY": 270.012,
"rotZ": 359.831177,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Soothing Melody",
"Description": "",
"GMNotes": "{\n \"id\": \"05314\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Spell.\",\n \"permanent\": false,\n \"bonded_to\": [\n {\n \"id\": \"05313\",\n \"count\": 3\n },\n {\n \"id\": \"54002\",\n \"count\": 3\n }\n ],\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 378621,
"SidewaysCard": false,
"CustomDeck": {
"3786": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025943109/9C5481E6DFEACD450C5522F884E615482281DDB1/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "96ba38",
"Name": "Card",
"Transform": {
"posX": 9.00636,
"posY": 3.81383753,
"posZ": -16.695797,
"rotX": 0.7339806,
"rotY": 270.01178,
"rotZ": 359.8208,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "The Necronomicon (5)",
"Description": "Petrus de Dacia Translation",
"GMNotes": "{\n \"id\": \"60233\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Tome.\",\n \"level\": 5,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 538831,
"SidewaysCard": false,
"CustomDeck": {
"5388": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1546381162227145538/0F253FC5301911273C32210992261DD1D2EBB578/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "3bbc0b",
"Name": "Card",
"Transform": {
"posX": 9.006854,
"posY": 3.74251461,
"posZ": -16.6959,
"rotX": 0.776912034,
"rotY": 270.011566,
"rotZ": 359.810455,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Quick Learner (4)",
"Description": "",
"GMNotes": "{\n \"id\": \"60530\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Condition.\",\n \"level\": 4,\n \"permanent\": true,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 550828,
"SidewaysCard": false,
"CustomDeck": {
"5508": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456298038335/2CA532D7F0EED2B2B40E47709AC56D85C4613A33/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "8254d4",
"Name": "Card",
"Transform": {
"posX": 9.006854,
"posY": 3.74251461,
"posZ": -16.6959,
"rotX": 0.776912034,
"rotY": 270.011566,
"rotZ": 359.810455,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Blinding Light (2)",
"Description": "",
"GMNotes": "{\n \"id\": \"01069\",\n \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 230342,
"SidewaysCard": false,
"CustomDeck": {
"2303": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "ef91a9",
"Name": "Card",
"Transform": {
"posX": 9.006854,
"posY": 3.74251461,
"posZ": -16.6959,
"rotX": 0.776912034,
"rotY": 270.011566,
"rotZ": 359.810455,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Accursed Follower",
"Description": "Basic Weakness",
"GMNotes": "{\n \"id\": \"07038\",\n \"type\": \"Enemy\",\n \"class\": \"Neutral\",\n \"traits\": \"Humanoid. Cultist. Cursed.\",\n \"permanent\": false,\n \"weakness\": true,\n \"basicWeaknessCount\": 2\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 583332,
"SidewaysCard": false,
"CustomDeck": {
"5833": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320664132663842/9B2F50595A754585A4DF12D6D48DC2561DC0E2C9/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "05d263",
"Name": "Card",
"Transform": {
"posX": 9.007347,
"posY": 3.76794672,
"posZ": -16.696003,
"rotX": 0.8197957,
"rotY": 270.011353,
"rotZ": 359.80014,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Sign Magick",
"Description": "",
"GMNotes": "{\n \"id\": \"05112\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Ritual. Talent.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 277510,
"SidewaysCard": false,
"CustomDeck": {
"2775": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025945336/04E36F64C2CBE1B4905FF44A869C75EC52CB3A56/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "9a5782",
"Name": "Card",
"Transform": {
"posX": 9.007869,
"posY": 3.68743062,
"posZ": -16.6961117,
"rotX": 0.09999476,
"rotY": 270.01178,
"rotZ": 359.973541,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Eye of Chaos",
"Description": "",
"GMNotes": "{\n \"id\": \"07118\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell. Cursed.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Charge\",\n \"count\": 3\n }\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 553110,
"SidewaysCard": false,
"CustomDeck": {
"5531": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1684870715280867313/BFD2AF968EAC917D3B838DCB8B1656941CD8B5CC/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "bf151d",
"Name": "Card",
"Transform": {
"posX": 9.007869,
"posY": 3.68743062,
"posZ": -16.6961117,
"rotX": 0.09999476,
"rotY": 270.01178,
"rotZ": 359.973541,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Heirloom of Hyperborea",
"Description": "Artifact from Another Life (Advanced)",
"GMNotes": "{\n \"id\": \"90018\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Relic.\",\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 585400,
"SidewaysCard": false,
"CustomDeck": {
"5854": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1655599785038865190/8B0106D5599808B6E00387C2535AC1C3F2330034/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "45386d",
"Name": "Card",
"Transform": {
"posX": 9.008403,
"posY": 3.68386269,
"posZ": -16.6962242,
"rotX": 359.9561,
"rotY": 270.010925,
"rotZ": 0.008199415,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Unrelenting (1)",
"Description": "",
"GMNotes": "{\n \"id\": \"07196\",\n \"type\": \"Skill\",\n \"class\": \"Survivor\",\n \"traits\": \"Practiced.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 558007,
"SidewaysCard": false,
"CustomDeck": {
"5580": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1762566393205073673/1FABAC4DD6EF3706D8C8285A256A13F43AE6B1E1/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 6,
"NumHeight": 3,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "ASSEMBLY_POSITION = {69.08, 4, 36.45}\n\nfunction onload()\n chaosbag = getChaosBag()\n manager = getObjectFromGUID(\"5933fb\")\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 readBag()\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)\n local guid = obj.getGUID()\n local name = obj.getName()\n if name == \"Bless\" or name == \"Curse\" then\n local tokensTaken = manager.getVar(\"tokensTaken\")\n table.insert(tokensTaken[name], guid)\n manager.setVar(\"tokensTaken\", tokensTaken)\n manager.setVar(\"mode\", name)\n printToAll(\"Sealing \" .. name .. \" token \" .. manager.call(\"getTokenCount\"))\n end\nend\n\nfunction releaseTokens(playerColor)\n if #sealedTokens == 0 then return end\n for i,token in ipairs(sealedTokens) do\n local guid = token.getGUID()\n local name = token.getName()\n chaosbag.putObject(token)\n if name == \"Bless\" or name == \"Curse\" then\n local tokensTaken = manager.getVar(\"tokensTaken\")\n for i,v in ipairs(tokensTaken[name]) do\n if v == guid then\n table.remove(tokensTaken[name], i)\n break\n end\n end\n manager.setVar(\"tokensTaken\", tokensTaken)\n manager.setVar(\"mode\", name)\n printToAll(\"Releasing \" .. name .. \" token\" .. manager.call(\"getTokenCount\"))\n end\n end\n\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\n\nfunction readBag()\n -- add menu items\n self.clearContextMenu()\n self.addContextMenuItem(\"Release Tokens\", releaseTokens)\n\n local bagTokens = { }\n local tokens = chaosbag.getObjects()\n for i,token in ipairs(tokens) do\n bagTokens[token.name] = true\n end\n\n for url,token in pairs(IMAGE_TOKEN_MAP) do\n if bagTokens[token] then\n self.addContextMenuItem(\"Seal \" .. token, function(playerColor) sealToken(url, playerColor) end, true)\n end\n end\n self.addContextMenuItem(\"Refresh Seal Options\", readBag)\nend\n",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "9e4e11",
"Name": "Card",
"Transform": {
"posX": 9.008999,
"posY": 3.67441058,
"posZ": -16.6963482,
"rotX": 359.9273,
"rotY": 270.010071,
"rotZ": 0.01512632,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Alter Fate (1)",
"Description": "",
"GMNotes": "{\n \"id\": \"53009\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Spell. Blessed.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 545208,
"SidewaysCard": false,
"CustomDeck": {
"5452": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1487830656537158415/2EBB208AA994ED70FD0FEB02D4E4FE78FE43EE02/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "9c9196",
"Name": "Card",
"Transform": {
"posX": 9.00961,
"posY": 3.67251945,
"posZ": -16.6964741,
"rotX": 359.92157,
"rotY": 270.009216,
"rotZ": 0.0165125187,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Bauta",
"Description": "",
"GMNotes": "{\n \"id\": \"82023\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Mask.\",\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 295601,
"SidewaysCard": false,
"CustomDeck": {
"2956": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642329861/9768E9FE9C71E74721340D0D81607F534E54A3DE/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "2e33f7",
"Name": "Card",
"Transform": {
"posX": 9.00961,
"posY": 3.6725235,
"posZ": -16.6964741,
"rotX": 359.92157,
"rotY": 270.009216,
"rotZ": 0.0165125187,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Curse of the Rougarou",
"Description": "Curse.",
"GMNotes": "{\n \"id\": \"81029\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Curse.\",\n \"permanent\": false,\n \"weakness\": true\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 8901,
"SidewaysCard": false,
"CustomDeck": {
"89": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/138879070086634183/2856A2C2077CFA2C61B9EF2498CAE6865024DB72/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "3f3488",
"Name": "Card",
"Transform": {
"posX": 9.010221,
"posY": 3.71740985,
"posZ": -16.6966,
"rotX": 359.9158,
"rotY": 270.008362,
"rotZ": 0.0178972632,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "A Chance Encounter",
"Description": "",
"GMNotes": "{\n \"id\": \"02270\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Fortune.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 368812,
"SidewaysCard": false,
"CustomDeck": {
"3688": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "a8298f",
"Name": "Card",
"Transform": {
"posX": 9.010221,
"posY": 3.71740985,
"posZ": -16.6966,
"rotX": 359.9158,
"rotY": 270.008362,
"rotZ": 0.0178972632,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Drawn to the Flame",
"Description": "",
"GMNotes": "{\n \"id\": \"01064\",\n \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"traits\": \"Insight.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 230304,
"SidewaysCard": false,
"CustomDeck": {
"2303": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "e674e8",
"Name": "Card",
"Transform": {
"posX": 9.01083,
"posY": 3.75907755,
"posZ": -16.6967258,
"rotX": 359.910065,
"rotY": 270.0075,
"rotZ": 0.0192805417,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Fortune or Fate (2)",
"Description": "",
"GMNotes": "{\n \"id\": \"05237\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Fortune. Blessed.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 293015,
"SidewaysCard": false,
"CustomDeck": {
"2930": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025946328/561232524C8EAA4B4371B28652F78969E6ED6FFB/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "d2e026",
"Name": "Card",
"Transform": {
"posX": 9.01083,
"posY": 3.75907755,
"posZ": -16.6967258,
"rotX": 359.910065,
"rotY": 270.0075,
"rotZ": 0.0192805417,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Vicious Blow (2)",
"Description": "",
"GMNotes": "{\n \"id\": \"02299\",\n \"type\": \"Skill\",\n \"class\": \"Guardian\",\n \"traits\": \"Practiced. Expert.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 226341,
"SidewaysCard": false,
"CustomDeck": {
"2263": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "416f12",
"Name": "Card",
"Transform": {
"posX": 9.01083,
"posY": 3.75907755,
"posZ": -16.6967258,
"rotX": 359.910065,
"rotY": 270.0075,
"rotZ": 0.0192805417,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Cryptic Grimoire (4)",
"Description": "Text of the Elder Guardian",
"GMNotes": "{\n \"id\": \"07192\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Tome. Blessed.\",\n \"level\": 4,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 584203,
"SidewaysCard": false,
"CustomDeck": {
"5842": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1762566393205073673/1FABAC4DD6EF3706D8C8285A256A13F43AE6B1E1/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 6,
"NumHeight": 3,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "a8e495",
"Name": "Card",
"Transform": {
"posX": 9.011439,
"posY": 3.84743071,
"posZ": -16.6968555,
"rotX": 359.904327,
"rotY": 270.006653,
"rotZ": 0.02066239,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Anatomical Diagrams",
"Description": "",
"GMNotes": "{\n \"id\": \"03108\",\n \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"traits\": \"Insight.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 368409,
"SidewaysCard": false,
"CustomDeck": {
"3684": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "aec357",
"Name": "Card",
"Transform": {
"posX": 9.011439,
"posY": 3.84743071,
"posZ": -16.6968555,
"rotX": 359.904327,
"rotY": 270.006653,
"rotZ": 0.02066239,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Guardian of the Crystallizer",
"Description": "",
"GMNotes": "{\n \"id\": \"06025\",\n \"type\": \"Enemy\",\n \"class\": \"Neutral\",\n \"traits\": \"Monster.\",\n \"permanent\": false,\n \"bonded_to\": [\n {\n \"id\": \"06024\",\n \"count\": 1\n }\n ],\n \"weakness\": true\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 440723,
"SidewaysCard": false,
"CustomDeck": {
"4407": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025944587/520448D0E9C22F102C7DDF64322EAD6FC221ECC8/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "e470cd",
"Name": "Card",
"Transform": {
"posX": 9.012048,
"posY": 3.882572,
"posZ": -16.6969852,
"rotX": 359.8986,
"rotY": 270.0058,
"rotZ": 0.0220427774,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Premonition",
"Description": "",
"GMNotes": "{\n \"id\": \"04199\",\n \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"traits\": \"Augury.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 276300,
"SidewaysCard": false,
"CustomDeck": {
"2763": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025945336/04E36F64C2CBE1B4905FF44A869C75EC52CB3A56/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "5ec1a2",
"Name": "Card",
"Transform": {
"posX": 9.012048,
"posY": 3.882572,
"posZ": -16.6969852,
"rotX": 359.8986,
"rotY": 270.0058,
"rotZ": 0.0220427774,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Dario El-Amin",
"Description": "Unscrupulous Investor",
"GMNotes": "{\n \"id\": \"03151\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Ally. Patron.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 368630,
"SidewaysCard": false,
"CustomDeck": {
"3686": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "db90e2",
"Name": "Card",
"Transform": {
"posX": 9.012655,
"posY": 3.914505,
"posZ": -16.6971149,
"rotX": 359.892883,
"rotY": 270.004944,
"rotZ": 0.0234217159,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Ethereal Form",
"Description": "",
"GMNotes": "{\n \"id\": \"06164\",\n \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 380128,
"SidewaysCard": false,
"CustomDeck": {
"3801": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025945336/04E36F64C2CBE1B4905FF44A869C75EC52CB3A56/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "b81dcf",
"Name": "Card",
"Transform": {
"posX": 9.012655,
"posY": 3.914505,
"posZ": -16.6971149,
"rotX": 359.892883,
"rotY": 270.004944,
"rotZ": 0.0234217234,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Dream Diary",
"Description": "Untranslated",
"GMNotes": "{\n \"id\": \"06112\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Tome. Charm.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false,\n \"bonded\": [\n {\n \"id\": \"06113\",\n \"count\": 1\n }\n ]\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 379928,
"SidewaysCard": false,
"CustomDeck": {
"3799": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "d7dbac",
"Name": "Card",
"Transform": {
"posX": 9.013262,
"posY": 3.94323373,
"posZ": -16.6972446,
"rotX": 359.887146,
"rotY": 270.0041,
"rotZ": 0.0247992016,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Streetwise (3)",
"Description": "",
"GMNotes": "{\n \"id\": \"02189\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Talent.\",\n \"level\": 3,\n \"permanent\": true,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 315251,
"SidewaysCard": false,
"CustomDeck": {
"3152": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "3dc82f",
"Name": "Card",
"Transform": {
"posX": 9.013262,
"posY": 3.94323373,
"posZ": -16.6972446,
"rotX": 359.887146,
"rotY": 270.0041,
"rotZ": 0.0247992016,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Try and Try Again (1)",
"Description": "",
"GMNotes": "{\n \"id\": \"04159\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Talent.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Try\",\n \"count\": 3\n }\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 314802,
"SidewaysCard": false,
"CustomDeck": {
"3148": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025946328/561232524C8EAA4B4371B28652F78969E6ED6FFB/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "876557",
"Name": "Card",
"Transform": {
"posX": 9.013868,
"posY": 3.968761,
"posZ": -16.6973724,
"rotX": 359.881439,
"rotY": 270.003235,
"rotZ": 0.0261752438,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Duke",
"Description": "",
"GMNotes": "{\n \"id\": \"02014\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Creature.\",\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 371112,
"SidewaysCard": false,
"CustomDeck": {
"3711": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "58f534",
"Name": "Card",
"Transform": {
"posX": 9.014474,
"posY": 3.99109077,
"posZ": -16.6975,
"rotX": 359.875732,
"rotY": 270.00238,
"rotZ": 0.02754985,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Smite the Wicked",
"Description": "",
"GMNotes": "{\n \"id\": \"02007\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Task.\",\n \"permanent\": false,\n \"weakness\": true\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 582827,
"SidewaysCard": false,
"CustomDeck": {
"5828": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1697276627309509299/3B0E32939EB4599CCE3596975637C90FE4EE1DD6/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "96a440",
"Name": "Card",
"Transform": {
"posX": 9.014474,
"posY": 3.99109077,
"posZ": -16.6975,
"rotX": 359.875732,
"rotY": 270.00238,
"rotZ": 0.02754985,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Gravedigger's Shovel (2)",
"Description": "",
"GMNotes": "{\n \"id\": \"52010\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Item. Tool. Weapon. Melee.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 440622,
"SidewaysCard": false,
"CustomDeck": {
"4406": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025946328/561232524C8EAA4B4371B28652F78969E6ED6FFB/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "39452d",
"Name": "Card",
"Transform": {
"posX": 9.015079,
"posY": 4.01022673,
"posZ": -16.697628,
"rotX": 359.870056,
"rotY": 270.001556,
"rotZ": 0.0289230272,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Fine Print",
"Description": "Weakness",
"GMNotes": "{\n \"id\": \"53014\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Pact.\",\n \"permanent\": false,\n \"weakness\": true\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 545213,
"SidewaysCard": false,
"CustomDeck": {
"5452": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1487830656537158415/2EBB208AA994ED70FD0FEB02D4E4FE78FE43EE02/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "0988b2",
"Name": "Card",
"Transform": {
"posX": 9.015079,
"posY": 4.01022673,
"posZ": -16.697628,
"rotX": 359.870056,
"rotY": 270.001556,
"rotZ": 0.0289230272,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Voice of Ra",
"Description": "",
"GMNotes": "{\n \"id\": \"60416\",\n \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 538714,
"SidewaysCard": false,
"CustomDeck": {
"5387": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297472038/B38A78EF27EBE0BDE1B36958D297701505AB936A/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "6aae86",
"Name": "Card",
"Transform": {
"posX": 9.015079,
"posY": 4.01022673,
"posZ": -16.697628,
"rotX": 359.870056,
"rotY": 270.001556,
"rotZ": 0.0289230272,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Close Call (2)",
"Description": "",
"GMNotes": "{\n \"id\": \"01083\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Fortune.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 368848,
"SidewaysCard": false,
"CustomDeck": {
"3688": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "33455f",
"Name": "Card",
"Transform": {
"posX": 9.015079,
"posY": 4.01022673,
"posZ": -16.697628,
"rotX": 359.870056,
"rotY": 270.001556,
"rotZ": 0.0289230272,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Enchant Weapon (3)",
"Description": "",
"GMNotes": "{\n \"id\": \"07261\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Spell. Upgrade.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 449600,
"SidewaysCard": false,
"CustomDeck": {
"4496": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1747933191220177818/637923621F747375066D4DA39BEA3BA9C26086A5/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 7,
"NumHeight": 3,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "2f4db2",
"Name": "Card",
"Transform": {
"posX": 9.015683,
"posY": 4.12597466,
"posZ": -16.6977539,
"rotX": 359.864349,
"rotY": 270.000732,
"rotZ": 0.03029472,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Pickpocketing (2)",
"Description": "",
"GMNotes": "{\n \"id\": \"03195\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Talent. Illicit.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 315246,
"SidewaysCard": false,
"CustomDeck": {
"3152": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "4f5f0f",
"Name": "Card",
"Transform": {
"posX": 9.016287,
"posY": 4.08863449,
"posZ": -16.69788,
"rotX": 359.858673,
"rotY": 269.999847,
"rotZ": 0.0316650122,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Sawed-Off Shotgun (5)",
"Description": "",
"GMNotes": "{\n \"id\": \"06327\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Item. Weapon. Firearm. Illicit.\",\n \"level\": 5,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Ammo\",\n \"count\": 2\n }\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 449037,
"SidewaysCard": false,
"CustomDeck": {
"4490": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025944587/520448D0E9C22F102C7DDF64322EAD6FC221ECC8/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "b3ce16",
"Name": "Card",
"Transform": {
"posX": 9.01689,
"posY": 4.04821,
"posZ": -16.6980057,
"rotX": 359.853,
"rotY": 269.999,
"rotZ": 0.0330338925,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Shrivelling (3)",
"Description": "",
"GMNotes": "{\n \"id\": \"02154\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Charge\",\n \"count\": 4\n }\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 230355,
"SidewaysCard": false,
"CustomDeck": {
"2303": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "2c901b",
"Name": "Card",
"Transform": {
"posX": 9.01689,
"posY": 4.04821,
"posZ": -16.6980057,
"rotX": 359.853,
"rotY": 269.999,
"rotZ": 0.0330338925,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Final Rhapsody",
"Description": "",
"GMNotes": "{\n \"id\": \"02013\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Endtimes.\",\n \"permanent\": false,\n \"weakness\": true\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 372011,
"SidewaysCard": false,
"CustomDeck": {
"3720": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "4d74f6",
"Name": "Card",
"Transform": {
"posX": 9.017491,
"posY": 4.054606,
"posZ": -16.6981316,
"rotX": 359.847321,
"rotY": 269.998169,
"rotZ": 0.03440126,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Ward of Protection (2)",
"Description": "",
"GMNotes": "{\n \"id\": \"03270\",\n \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell. Spirit.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 230341,
"SidewaysCard": false,
"CustomDeck": {
"2303": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "f14dce",
"Name": "Card",
"Transform": {
"posX": 9.017491,
"posY": 4.054606,
"posZ": -16.6981316,
"rotX": 359.847321,
"rotY": 269.998169,
"rotZ": 0.03440126,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Earl Sawyer",
"Description": "Smarter Than He Lets On",
"GMNotes": "{\n \"id\": \"02218\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Dunwich.\",\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 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": 232950,
"SidewaysCard": false,
"CustomDeck": {
"2329": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "d287bc",
"Name": "Card",
"Transform": {
"posX": 9.018093,
"posY": 4.057825,
"posZ": -16.6982574,
"rotX": 359.841644,
"rotY": 269.9973,
"rotZ": 0.03576725,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Celaeno Fragments",
"Description": "Book of Books",
"GMNotes": "{\n \"id\": \"60206\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Tome.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 538804,
"SidewaysCard": false,
"CustomDeck": {
"5388": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1546381162227145538/0F253FC5301911273C32210992261DD1D2EBB578/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "4a45c6",
"Name": "Card",
"Transform": {
"posX": 9.018694,
"posY": 4.00797,
"posZ": -16.6983833,
"rotX": 359.836,
"rotY": 269.99646,
"rotZ": 0.03713177,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Slip Away (2)",
"Description": "",
"GMNotes": "{\n \"id\": \"60324\",\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"traits\": \"Trick.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 538622,
"SidewaysCard": false,
"CustomDeck": {
"5386": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456298037683/22C99DD745DFF65ECC72FD32EFA9C9D0F0C12862/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "819f52",
"Name": "Card",
"Transform": {
"posX": 9.018694,
"posY": 4.00797,
"posZ": -16.6983833,
"rotX": 359.836,
"rotY": 269.99646,
"rotZ": 0.03713177,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Poisoned",
"Description": "Poision.",
"GMNotes": "{\n \"id\": \"04102\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Poison.\",\n \"permanent\": true,\n \"weakness\": true\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 235644,
"SidewaysCard": false,
"CustomDeck": {
"2356": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1467561769777497046/3003A76996378249E6AAA4A60D85AE7EE59C1B8B/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "0bea17",
"Name": "Card",
"Transform": {
"posX": 9.019294,
"posY": 4.00494576,
"posZ": -16.69851,
"rotX": 359.830353,
"rotY": 269.995636,
"rotZ": 0.038494885,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Act of Desperation",
"Description": "",
"GMNotes": "{\n \"id\": \"05037\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Tactic. Gambit.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 274607,
"SidewaysCard": false,
"CustomDeck": {
"2746": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025946328/561232524C8EAA4B4371B28652F78969E6ED6FFB/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "ec7702",
"Name": "Card",
"Transform": {
"posX": 9.019294,
"posY": 4.00494576,
"posZ": -16.69851,
"rotX": 359.830353,
"rotY": 269.995636,
"rotZ": 0.038494885,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Predestined",
"Description": "",
"GMNotes": "{\n \"id\": \"07035\",\n \"type\": \"Skill\",\n \"class\": \"Survivor\",\n \"traits\": \"Fortune. Blessed.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 586029,
"SidewaysCard": false,
"CustomDeck": {
"5860": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320664132663842/9B2F50595A754585A4DF12D6D48DC2561DC0E2C9/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "cdd6aa",
"Name": "Card",
"Transform": {
"posX": 9.019294,
"posY": 4.00494576,
"posZ": -16.69851,
"rotX": 359.830353,
"rotY": 269.995636,
"rotZ": 0.038494885,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Hired Muscle (1)",
"Description": "",
"GMNotes": "{\n \"id\": \"02027\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Ally. Criminal.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 315234,
"SidewaysCard": false,
"CustomDeck": {
"3152": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "1934c6",
"Name": "Card",
"Transform": {
"posX": 9.019894,
"posY": 4.048657,
"posZ": -16.6986351,
"rotX": 359.824677,
"rotY": 269.994781,
"rotZ": 0.0398565568,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Shrine of the Moirai (3)",
"Description": "",
"GMNotes": "{\n \"id\": \"07310\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Fortune. Blessed. Cursed.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Offering\",\n \"count\": 3\n }\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 589909,
"SidewaysCard": false,
"CustomDeck": {
"5899": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1807607979163972370/50A45AE585D6404E677DFCA597A0F5FE13346B97/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 5,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "1d75d0",
"Name": "Card",
"Transform": {
"posX": 9.019894,
"posY": 4.048657,
"posZ": -16.6986351,
"rotX": 359.824677,
"rotY": 269.994781,
"rotZ": 0.0398565568,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Grimm's Fairy Tales",
"Description": "",
"GMNotes": "{\n \"id\": \"60506\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Item. Tome.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Secret\",\n \"count\": 4\n }\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 550804,
"SidewaysCard": false,
"CustomDeck": {
"5508": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456298038335/2CA532D7F0EED2B2B40E47709AC56D85C4613A33/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "f59085",
"Name": "Card",
"Transform": {
"posX": 9.020493,
"posY": 4.039206,
"posZ": -16.698761,
"rotX": 359.819061,
"rotY": 269.993927,
"rotZ": 0.04121677,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Backpack",
"Description": "",
"GMNotes": "{\n \"id\": \"04037\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 368517,
"SidewaysCard": false,
"CustomDeck": {
"3685": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "fc4168",
"Name": "Card",
"Transform": {
"posX": 9.020493,
"posY": 4.039206,
"posZ": -16.698761,
"rotX": 359.819061,
"rotY": 269.993927,
"rotZ": 0.04121677,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Nihilism",
"Description": "Basic Weakness",
"GMNotes": "{\n \"id\": \"60404\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Madness.\",\n \"permanent\": false,\n \"weakness\": true,\n \"basicWeaknessCount\": 1\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 538702,
"SidewaysCard": false,
"CustomDeck": {
"5387": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297472038/B38A78EF27EBE0BDE1B36958D297701505AB936A/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "90bf93",
"Name": "Card",
"Transform": {
"posX": 9.02109051,
"posY": 4.02659655,
"posZ": -16.6988869,
"rotX": 359.813416,
"rotY": 269.9931,
"rotZ": 0.0425755866,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Gregory Gry",
"Description": "Muckraker",
"GMNotes": "{\n \"id\": \"06162\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Ally. Criminal. Dreamer.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 380029,
"SidewaysCard": false,
"CustomDeck": {
"3800": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025944587/520448D0E9C22F102C7DDF64322EAD6FC221ECC8/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "308967",
"Name": "Card",
"Transform": {
"posX": 9.021688,
"posY": 4.010832,
"posZ": -16.6990128,
"rotX": 359.8078,
"rotY": 269.992249,
"rotZ": 0.043932993,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Quick Thinking (Taboo)",
"Description": "",
"GMNotes": "{\n \"id\": \"02229-t\",\n \"type\": \"Skill\",\n \"class\": \"Rogue\",\n \"traits\": \"Innate.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 450616,
"SidewaysCard": false,
"CustomDeck": {
"4506": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1656721113609569419/60B1DFC7C68C406C34641A1F53078F46D610821C/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "d6085d",
"Name": "Card",
"Transform": {
"posX": 9.021688,
"posY": 4.010832,
"posZ": -16.6990128,
"rotX": 359.8078,
"rotY": 269.992249,
"rotZ": 0.043932993,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "The Eye of Truth (5)",
"Description": "",
"GMNotes": "{\n \"id\": \"06325\",\n \"type\": \"Skill\",\n \"class\": \"Seeker\",\n \"traits\": \"Spell. Practiced.\",\n \"level\": 5,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 448840,
"SidewaysCard": false,
"CustomDeck": {
"4488": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "1433eb",
"Name": "Card",
"Transform": {
"posX": 9.022285,
"posY": 3.99191546,
"posZ": -16.6991386,
"rotX": 359.802155,
"rotY": 269.9914,
"rotZ": 0.0452889353,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Grisly Totem (3)",
"Description": "Seeker",
"GMNotes": "{\n \"id\": \"05194\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Charm. Cursed.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 293217,
"SidewaysCard": false,
"CustomDeck": {
"2932": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "26922c",
"Name": "Card",
"Transform": {
"posX": 9.022285,
"posY": 3.99191546,
"posZ": -16.6991386,
"rotX": 359.802155,
"rotY": 269.9914,
"rotZ": 0.0452889353,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Spiritual Resolve (5)",
"Description": "",
"GMNotes": "{\n \"id\": \"06323\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Ritual.\",\n \"level\": 5,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 448938,
"SidewaysCard": false,
"CustomDeck": {
"4489": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025943109/9C5481E6DFEACD450C5522F884E615482281DDB1/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "45cd73",
"Name": "Card",
"Transform": {
"posX": 9.02288151,
"posY": 3.96985078,
"posZ": -16.6992645,
"rotX": 359.796539,
"rotY": 269.99057,
"rotZ": 0.04664346,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Truth from Fiction (2)",
"Description": "",
"GMNotes": "{\n \"id\": \"53003\",\n \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"traits\": \"Insight.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 545202,
"SidewaysCard": false,
"CustomDeck": {
"5452": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1487830656537158415/2EBB208AA994ED70FD0FEB02D4E4FE78FE43EE02/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "3dc25c",
"Name": "Card",
"Transform": {
"posX": 9.02288151,
"posY": 3.96985078,
"posZ": -16.6992645,
"rotX": 359.796539,
"rotY": 269.99057,
"rotZ": 0.04664346,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Extensive Research (1)",
"Description": "",
"GMNotes": "{\n \"id\": \"06198\",\n \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"traits\": \"Insight.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 447833,
"SidewaysCard": false,
"CustomDeck": {
"4478": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "c0d236",
"Name": "Card",
"Transform": {
"posX": 9.023478,
"posY": 3.94464159,
"posZ": -16.6993885,
"rotX": 359.790924,
"rotY": 269.989746,
"rotZ": 0.04799662,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Empty Vessel (4)",
"Description": "Abandoned by the Gods",
"GMNotes": "{\n \"id\": \"06276\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Item. Relic. Blessed.\",\n \"level\": 4,\n \"permanent\": false,\n \"weakness\": false,\n \"bonded\": [\n {\n \"id\": \"06277\",\n \"count\": 1\n }\n ]\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 448936,
"SidewaysCard": false,
"CustomDeck": {
"4489": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025943109/9C5481E6DFEACD450C5522F884E615482281DDB1/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "2423e7",
"Name": "Card",
"Transform": {
"posX": 9.023478,
"posY": 3.94464159,
"posZ": -16.6993885,
"rotX": 359.790924,
"rotY": 269.989746,
"rotZ": 0.04799662,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Fence (1)",
"Description": "",
"GMNotes": "{\n \"id\": \"04108\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Connection. Illicit.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 315238,
"SidewaysCard": false,
"CustomDeck": {
"3152": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "75eca5",
"Name": "Card",
"Transform": {
"posX": 9.024073,
"posY": 3.916291,
"posZ": -16.69951,
"rotX": 359.7853,
"rotY": 269.9889,
"rotZ": 0.049348224,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Read the Signs",
"Description": "",
"GMNotes": "{\n \"id\": \"06117\",\n \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 380126,
"SidewaysCard": false,
"CustomDeck": {
"3801": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025945336/04E36F64C2CBE1B4905FF44A869C75EC52CB3A56/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "5606b3",
"Name": "Card",
"Transform": {
"posX": 9.024073,
"posY": 3.916291,
"posZ": -16.69951,
"rotX": 359.7853,
"rotY": 269.9889,
"rotZ": 0.049348224,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Manipulate Destiny (2)",
"Description": "",
"GMNotes": "{\n \"id\": \"07162\",\n \"type\": \"Event\",\n \"class\": \"Neutral\",\n \"traits\": \"Spell.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 232110,
"SidewaysCard": false,
"CustomDeck": {
"2321": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1655600400212405700/559F1F3EF87BDF7F067F9B7011EDC3A6ACE71259/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 5,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "4fbdb2",
"Name": "Card",
"Transform": {
"posX": 9.024667,
"posY": 3.884803,
"posZ": -16.6996346,
"rotX": 359.779724,
"rotY": 269.988068,
"rotZ": 0.0506984927,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Arbiter of Fates",
"Description": "",
"GMNotes": "{\n \"id\": \"60402\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Talent.\",\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 538700,
"SidewaysCard": false,
"CustomDeck": {
"5387": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297472038/B38A78EF27EBE0BDE1B36958D297701505AB936A/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "ea6d44",
"Name": "Card",
"Transform": {
"posX": 9.024667,
"posY": 3.884803,
"posZ": -16.6996346,
"rotX": 359.779724,
"rotY": 269.988068,
"rotZ": 0.0506984927,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "On the Lam",
"Description": "Signature",
"GMNotes": "{\n \"id\": \"01010\",\n \"type\": \"Event\",\n \"class\": \"Neutral\",\n \"traits\": \"Tactic.\",\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 586823,
"SidewaysCard": false,
"CustomDeck": {
"5868": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1697276627309509299/3B0E32939EB4599CCE3596975637C90FE4EE1DD6/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "7686cb",
"Name": "Card",
"Transform": {
"posX": 9.02526,
"posY": 3.85018039,
"posZ": -16.6997585,
"rotX": 359.774139,
"rotY": 269.987244,
"rotZ": 0.052047316,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Astounding Revelation",
"Description": "",
"GMNotes": "{\n \"id\": \"06023\",\n \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"traits\": \"Research.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 441025,
"SidewaysCard": false,
"CustomDeck": {
"4410": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "53867b",
"Name": "Card",
"Transform": {
"posX": 9.02526,
"posY": 3.85018039,
"posZ": -16.6997585,
"rotX": 359.774139,
"rotY": 269.987244,
"rotZ": 0.052047316,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Alyssa Graham",
"Description": "Speaker to the Dead",
"GMNotes": "{\n \"id\": \"02232\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Ally. Sorcerer.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 230330,
"SidewaysCard": false,
"CustomDeck": {
"2303": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "d4dbc7",
"Name": "Card",
"Transform": {
"posX": 9.02526,
"posY": 3.85018039,
"posZ": -16.6997585,
"rotX": 359.774139,
"rotY": 269.987244,
"rotZ": 0.052047316,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": ".45 Thompson (3)",
"Description": "Rogue",
"GMNotes": "{\n \"id\": \"05187\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Item. Weapon. Firearm. Illicit.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 292915,
"SidewaysCard": false,
"CustomDeck": {
"2929": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025944587/520448D0E9C22F102C7DDF64322EAD6FC221ECC8/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "a775ad",
"Name": "Card",
"Transform": {
"posX": 9.025853,
"posY": 3.86232853,
"posZ": -16.6998844,
"rotX": 359.768555,
"rotY": 269.9864,
"rotZ": 0.05339478,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "The Chthonian Stone (3)",
"Description": "Stygian Waymark",
"GMNotes": "{\n \"id\": \"53008\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Item. Relic. Cursed.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 545207,
"SidewaysCard": false,
"CustomDeck": {
"5452": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1487830656537158415/2EBB208AA994ED70FD0FEB02D4E4FE78FE43EE02/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "VALID_TOKENS = {\n Skull=true,\n Cultist=true,\n Tablet=true,\n [\"Elder Thing\"]=true\n}\n\nfunction 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 VALID_TOKENS[name] ~= nil then\n self.addContextMenuItem(\"Seal \" .. name, 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\n",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "9c4900",
"Name": "CardCustom",
"Transform": {
"posX": 9.026445,
"posY": 3.77144861,
"posZ": -16.70001,
"rotX": 359.76297,
"rotY": 269.9856,
"rotZ": 0.05474078,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "On the Lam",
"Description": "Advanced",
"GMNotes": "{\n \"id\": \"90009\",\n \"type\": \"Event\",\n \"class\": \"Neutral\",\n \"traits\": \"Tactic.\",\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 541200,
"SidewaysCard": false,
"CustomDeck": {
"5412": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1487830597915335413/F6B6100F5713A33245CFBB6F1D7316AA2DD0F760/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "121b2d",
"Name": "Card",
"Transform": {
"posX": 9.027062,
"posY": 3.69191432,
"posZ": -16.7001419,
"rotX": 359.8887,
"rotY": 269.9848,
"rotZ": 0.02446127,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Dendromorphosis",
"Description": "Basic Weakness",
"GMNotes": "{\n \"id\": \"53012\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Curse. Flora.\",\n \"permanent\": false,\n \"weakness\": true,\n \"basicWeaknessCount\": 1\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 545211,
"SidewaysCard": false,
"CustomDeck": {
"5452": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1487830656537158415/2EBB208AA994ED70FD0FEB02D4E4FE78FE43EE02/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "a13ca4",
"Name": "Card",
"Transform": {
"posX": 9.027062,
"posY": 3.69191432,
"posZ": -16.7001419,
"rotX": 359.8887,
"rotY": 269.9848,
"rotZ": 0.02446127,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "On the Hunt",
"Description": "",
"GMNotes": "{\n \"id\": \"03263\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Tactic.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 226314,
"SidewaysCard": false,
"CustomDeck": {
"2263": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "cdfd9f",
"Name": "Card",
"Transform": {
"posX": 9.027712,
"posY": 3.686003,
"posZ": -16.7002773,
"rotX": 359.913849,
"rotY": 269.983948,
"rotZ": 0.0184073858,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Backstab",
"Description": "",
"GMNotes": "{\n \"id\": \"01051\",\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"traits\": \"Tactic.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 368716,
"SidewaysCard": false,
"CustomDeck": {
"3687": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "96c9be",
"Name": "Card",
"Transform": {
"posX": 9.027712,
"posY": 3.686003,
"posZ": -16.7002773,
"rotX": 359.913849,
"rotY": 269.983948,
"rotZ": 0.0184073858,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Daisy's Tote Bag",
"Description": "Signature",
"GMNotes": "{\n \"id\": \"01008\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item.\",\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 581821,
"SidewaysCard": false,
"CustomDeck": {
"5818": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1697276627309509299/3B0E32939EB4599CCE3596975637C90FE4EE1DD6/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "17d34b",
"Name": "Card",
"Transform": {
"posX": 9.028363,
"posY": 3.68064785,
"posZ": -16.7004147,
"rotX": 0.09329872,
"rotY": 269.983032,
"rotZ": 359.943573,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Faustian Bargain",
"Description": "",
"GMNotes": "{\n \"id\": \"07028\",\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"traits\": \"Pact. Cursed.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 586622,
"SidewaysCard": false,
"CustomDeck": {
"5866": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320664132663842/9B2F50595A754585A4DF12D6D48DC2561DC0E2C9/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "90a106",
"Name": "Card",
"Transform": {
"posX": 9.028363,
"posY": 3.68064785,
"posZ": -16.7004147,
"rotX": 0.09329872,
"rotY": 269.983032,
"rotZ": 359.943573,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Spirit Athame (1)",
"Description": "",
"GMNotes": "{\n \"id\": \"03035\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Item. Relic. Weapon. Melee.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 230335,
"SidewaysCard": false,
"CustomDeck": {
"2303": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "f34090",
"Name": "Card",
"Transform": {
"posX": 9.029033,
"posY": 3.68232536,
"posZ": -16.7005577,
"rotX": 359.954773,
"rotY": 269.982117,
"rotZ": 0.00223540841,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Rabbit's Foot",
"Description": "",
"GMNotes": "{\n \"id\": \"01075\",\n \"alternate_ids\": [ \"60510\" ],\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Item. Charm.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 368823,
"SidewaysCard": false,
"CustomDeck": {
"3688": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "f03306",
"Name": "Card",
"Transform": {
"posX": 9.029033,
"posY": 3.682325,
"posZ": -16.7005577,
"rotX": 359.954773,
"rotY": 269.982117,
"rotZ": 0.00223540841,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Dr. Francis Morgan",
"Description": "Professor of Archaeology",
"GMNotes": "{\n \"id\": \"02080\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Miskatonic.\",\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 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": 232907,
"SidewaysCard": false,
"CustomDeck": {
"2329": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "a49751",
"Name": "Card",
"Transform": {
"posX": 9.029701,
"posY": 3.68795753,
"posZ": -16.7006989,
"rotX": 359.816345,
"rotY": 269.981079,
"rotZ": 0.0608271919,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Monstrous Transformation",
"Description": "",
"GMNotes": "{\n \"id\": \"81030\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Talent.\",\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 296804,
"SidewaysCard": false,
"CustomDeck": {
"2968": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/138879070086634183/2856A2C2077CFA2C61B9EF2498CAE6865024DB72/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "35166c",
"Name": "Card",
"Transform": {
"posX": 9.029701,
"posY": 3.68795753,
"posZ": -16.7006989,
"rotX": 359.816345,
"rotY": 269.981079,
"rotZ": 0.0608271919,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Book of Shadows (1)",
"Description": "",
"GMNotes": "{\n \"id\": \"03154\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Item. Tome.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 230336,
"SidewaysCard": false,
"CustomDeck": {
"2303": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "ab51ce",
"Name": "Card",
"Transform": {
"posX": 9.030374,
"posY": 3.68575835,
"posZ": -16.70084,
"rotX": 359.8891,
"rotY": 269.9801,
"rotZ": 0.0256839059,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Physical Training (4)",
"Description": "",
"GMNotes": "{\n \"id\": \"60131\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Talent.\",\n \"level\": 4,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Resource\",\n \"count\": 2\n }\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 545329,
"SidewaysCard": false,
"CustomDeck": {
"5453": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1546380927206250326/18BF6D2B2BBFDDBE5B021A46C310E4F45493EC26/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "ecbea8",
"Name": "Card",
"Transform": {
"posX": 9.031045,
"posY": 3.68075037,
"posZ": -16.7009811,
"rotX": 359.961761,
"rotY": 269.979065,
"rotZ": 359.99057,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Pathfinder (1) (Taboo)",
"Description": "",
"GMNotes": "{\n \"id\": \"02108-t\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Talent.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 450602,
"SidewaysCard": false,
"CustomDeck": {
"4506": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1656721113609569419/60B1DFC7C68C406C34641A1F53078F46D610821C/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "8a4673",
"Name": "Card",
"Transform": {
"posX": 9.031045,
"posY": 3.68075037,
"posZ": -16.7009811,
"rotX": 359.961761,
"rotY": 269.979065,
"rotZ": 359.99057,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Fire Extinguisher (1)",
"Description": "",
"GMNotes": "{\n \"id\": \"02114\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Item. Tool. Melee.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 368838,
"SidewaysCard": false,
"CustomDeck": {
"3688": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "017821",
"Name": "Card",
"Transform": {
"posX": 9.031727,
"posY": 3.683694,
"posZ": -16.7011242,
"rotX": 359.928467,
"rotY": 269.978027,
"rotZ": 0.01163791,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Flare (1)",
"Description": "",
"GMNotes": "{\n \"id\": \"02115\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Tactic.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 368839,
"SidewaysCard": false,
"CustomDeck": {
"3688": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "060943",
"Name": "Card",
"Transform": {
"posX": 9.032466,
"posY": 3.67435336,
"posZ": -16.7012787,
"rotX": 359.921783,
"rotY": 269.977,
"rotZ": 0.0158507172,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Sixth Sense (4)",
"Description": "",
"GMNotes": "{\n \"id\": \"05322\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\",\n \"level\": 4,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 379618,
"SidewaysCard": false,
"CustomDeck": {
"3796": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025945336/04E36F64C2CBE1B4905FF44A869C75EC52CB3A56/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "b65011",
"Name": "Card",
"Transform": {
"posX": 9.032466,
"posY": 3.67435336,
"posZ": -16.7012787,
"rotX": 359.921783,
"rotY": 269.977,
"rotZ": 0.0158507135,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Investments",
"Description": "",
"GMNotes": "{\n \"id\": \"05233\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Connection.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 292913,
"SidewaysCard": false,
"CustomDeck": {
"2929": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025944587/520448D0E9C22F102C7DDF64322EAD6FC221ECC8/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "719f7e",
"Name": "Card",
"Transform": {
"posX": 9.033204,
"posY": 3.71179867,
"posZ": -16.7014332,
"rotX": 359.915131,
"rotY": 269.975952,
"rotZ": 0.0200589448,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Seeking Answers (2)",
"Description": "",
"GMNotes": "{\n \"id\": \"60227\",\n \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"traits\": \"Insight.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 586710,
"SidewaysCard": false,
"CustomDeck": {
"5867": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1697277388086984548/E61F3E847797C2C9231829611E0D92BA6376FA67/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 4,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "9509e3",
"Name": "Card",
"Transform": {
"posX": 9.033204,
"posY": 3.71179867,
"posZ": -16.7014332,
"rotX": 359.915131,
"rotY": 269.975952,
"rotZ": 0.0200589448,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Enchanted Armor (2)",
"Description": "",
"GMNotes": "{\n \"id\": \"07189\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Ritual. Armor.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 588800,
"SidewaysCard": false,
"CustomDeck": {
"5888": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1762566393205073673/1FABAC4DD6EF3706D8C8285A256A13F43AE6B1E1/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 6,
"NumHeight": 3,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "8948c4",
"Name": "Card",
"Transform": {
"posX": 9.033204,
"posY": 3.71179867,
"posZ": -16.7014332,
"rotX": 359.915131,
"rotY": 269.975952,
"rotZ": 0.0200589448,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Emergency Cache (2)",
"Description": "",
"GMNotes": "{\n \"id\": \"02194\",\n \"type\": \"Event\",\n \"class\": \"Neutral\",\n \"traits\": \"Supply.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 368519,
"SidewaysCard": false,
"CustomDeck": {
"3685": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "4eb231",
"Name": "Card",
"Transform": {
"posX": 9.033941,
"posY": 3.79593444,
"posZ": -16.7015877,
"rotX": 359.9085,
"rotY": 269.9749,
"rotZ": 0.0242626518,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Hot Streak (4)",
"Description": "",
"GMNotes": "{\n \"id\": \"01057\",\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"traits\": \"Fortune.\",\n \"level\": 4,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 315258,
"SidewaysCard": false,
"CustomDeck": {
"3152": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "ce0dd5",
"Name": "Card",
"Transform": {
"posX": 9.03467751,
"posY": 3.7769618,
"posZ": -16.7017422,
"rotX": 359.901855,
"rotY": 269.973877,
"rotZ": 0.0284617729,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Lucky!",
"Description": "",
"GMNotes": "{\n \"id\": \"01080\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Fortune.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 368810,
"SidewaysCard": false,
"CustomDeck": {
"3688": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "22fc6c",
"Name": "Card",
"Transform": {
"posX": 9.03467751,
"posY": 3.7769618,
"posZ": -16.7017422,
"rotX": 359.901855,
"rotY": 269.973877,
"rotZ": 0.0284617729,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Butterfly Effect (1)",
"Description": "",
"GMNotes": "{\n \"id\": \"07160\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Paradox. Blessed. Cursed.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 232108,
"SidewaysCard": false,
"CustomDeck": {
"2321": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1655600400212405700/559F1F3EF87BDF7F067F9B7011EDC3A6ACE71259/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 5,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "59b24f",
"Name": "Card",
"Transform": {
"posX": 9.03467751,
"posY": 3.7769618,
"posZ": -16.7017422,
"rotX": 359.901855,
"rotY": 269.973877,
"rotZ": 0.0284617729,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Defiance",
"Description": "",
"GMNotes": "{\n \"id\": \"02190\",\n \"alternate_ids\": [ \"60418\" ],\n \"type\": \"Skill\",\n \"class\": \"Mystic\",\n \"traits\": \"Innate.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 230302,
"SidewaysCard": false,
"CustomDeck": {
"2303": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "9b1c5b",
"Name": "Card",
"Transform": {
"posX": 9.035413,
"posY": 3.85468674,
"posZ": -16.7018967,
"rotX": 359.895233,
"rotY": 269.972839,
"rotZ": 0.03265638,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Mind over Matter (2)",
"Description": "",
"GMNotes": "{\n \"id\": \"60226\",\n \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"traits\": \"Insight.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 538824,
"SidewaysCard": false,
"CustomDeck": {
"5388": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1546381162227145538/0F253FC5301911273C32210992261DD1D2EBB578/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "4e2d75",
"Name": "Card",
"Transform": {
"posX": 9.035413,
"posY": 3.85468674,
"posZ": -16.7018967,
"rotX": 359.895233,
"rotY": 269.972839,
"rotZ": 0.03265638,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Mariner's Compass",
"Description": "",
"GMNotes": "{\n \"id\": \"07121\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Item. Tool.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 553113,
"SidewaysCard": false,
"CustomDeck": {
"5531": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1684870715280867313/BFD2AF968EAC917D3B838DCB8B1656941CD8B5CC/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "b00b76",
"Name": "Card",
"Transform": {
"posX": 9.035413,
"posY": 3.85468674,
"posZ": -16.7018967,
"rotX": 359.895233,
"rotY": 269.972839,
"rotZ": 0.03265638,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Disc of Itzamna (2)",
"Description": "Protective Amulet",
"GMNotes": "{\n \"id\": \"01041\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Relic.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 430648,
"SidewaysCard": false,
"CustomDeck": {
"4306": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "d64b8f",
"Name": "Card",
"Transform": {
"posX": 9.036147,
"posY": 3.92911315,
"posZ": -16.7020512,
"rotX": 359.8886,
"rotY": 269.9718,
"rotZ": 0.0368464254,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Out of Body Experience",
"Description": "Madness. Paradox.",
"GMNotes": "{\n \"id\": \"04264\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Madness. Paradox.\",\n \"permanent\": false,\n \"weakness\": true\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 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": 235822,
"SidewaysCard": false,
"CustomDeck": {
"2358": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1467561769777501236/D145C8B748FB42258EB442B9DF36797851CEECC3/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "f1b0f9",
"Name": "Card",
"Transform": {
"posX": 9.036147,
"posY": 3.92911315,
"posZ": -16.7020512,
"rotX": 359.8886,
"rotY": 269.9718,
"rotZ": 0.0368464254,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Try and Try Again (3)",
"Description": "",
"GMNotes": "{\n \"id\": \"02309\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Talent.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 368857,
"SidewaysCard": false,
"CustomDeck": {
"3688": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "93381d",
"Name": "Card",
"Transform": {
"posX": 9.03688049,
"posY": 3.950343,
"posZ": -16.7022057,
"rotX": 359.882,
"rotY": 269.970764,
"rotZ": 0.0410319678,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Heroic Rescue (2)",
"Description": "",
"GMNotes": "{\n \"id\": \"06234\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Spirit. Tactic.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 447934,
"SidewaysCard": false,
"CustomDeck": {
"4479": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025943109/9C5481E6DFEACD450C5522F884E615482281DDB1/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "5ec6d0",
"Name": "Card",
"Transform": {
"posX": 9.03688049,
"posY": 3.950343,
"posZ": -16.7022057,
"rotX": 359.882,
"rotY": 269.970764,
"rotZ": 0.0410319678,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Obfuscation",
"Description": "",
"GMNotes": "{\n \"id\": \"07027\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Spell.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Charge\",\n \"count\": 3\n }\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 587421,
"SidewaysCard": false,
"CustomDeck": {
"5874": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320664132663842/9B2F50595A754585A4DF12D6D48DC2561DC0E2C9/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "256da2",
"Name": "Card",
"Transform": {
"posX": 9.037614,
"posY": 3.96838,
"posZ": -16.70236,
"rotX": 359.8754,
"rotY": 269.9697,
"rotZ": 0.0452129431,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Eavesdrop",
"Description": "",
"GMNotes": "{\n \"id\": \"04027\",\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"traits\": \"Insight. Trick.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 368711,
"SidewaysCard": false,
"CustomDeck": {
"3687": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "8cf335",
"Name": "Card",
"Transform": {
"posX": 9.038346,
"posY": 3.93332648,
"posZ": -16.7025146,
"rotX": 359.868774,
"rotY": 269.968658,
"rotZ": 0.0493894145,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Mind over Matter",
"Description": "",
"GMNotes": "{\n \"id\": \"01036\",\n \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"traits\": \"Insight.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 368408,
"SidewaysCard": false,
"CustomDeck": {
"3684": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "98fc57",
"Name": "Card",
"Transform": {
"posX": 9.038346,
"posY": 3.93332648,
"posZ": -16.7025146,
"rotX": 359.868774,
"rotY": 269.968658,
"rotZ": 0.0493894145,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Grounded (1)",
"Description": "",
"GMNotes": "{\n \"id\": \"03113\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Talent. Composure.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 230332,
"SidewaysCard": false,
"CustomDeck": {
"2303": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "b8380d",
"Name": "Card",
"Transform": {
"posX": 9.039078,
"posY": 3.94508719,
"posZ": -16.70267,
"rotX": 359.862183,
"rotY": 269.967621,
"rotZ": 0.05356135,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Jessica Hyde (1)",
"Description": "Wrong Place, Wrong Time",
"GMNotes": "{\n \"id\": \"06118\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Ally. Wayfarer. Cursed.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 380228,
"SidewaysCard": false,
"CustomDeck": {
"3802": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025946328/561232524C8EAA4B4371B28652F78969E6ED6FFB/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "c803ba",
"Name": "Card",
"Transform": {
"posX": 9.039808,
"posY": 3.90376425,
"posZ": -16.7028217,
"rotX": 359.855621,
"rotY": 269.9666,
"rotZ": 0.0577288121,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Infighting (3)",
"Description": "",
"GMNotes": "{\n \"id\": \"03314\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Trick.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 368854,
"SidewaysCard": false,
"CustomDeck": {
"3688": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "587589",
"Name": "Card",
"Transform": {
"posX": 9.039808,
"posY": 3.90376425,
"posZ": -16.7028217,
"rotX": 359.855621,
"rotY": 269.9666,
"rotZ": 0.0577288121,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Becky",
"Description": "Custom Marlin Model 1894",
"GMNotes": "{\n \"id\": \"06006\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Weapon. Firearm.\",\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 581200,
"SidewaysCard": false,
"CustomDeck": {
"5812": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1011562618093846571/13C76218853EE87123267F8F6BE99206DB40470B/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "30f90b",
"Name": "Card",
"Transform": {
"posX": 9.040538,
"posY": 3.90926242,
"posZ": -16.7029743,
"rotX": 359.84903,
"rotY": 269.965546,
"rotZ": 0.0618917458,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Improvised Weapon",
"Description": "",
"GMNotes": "{\n \"id\": \"04033\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Tactic. Improvised.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 368811,
"SidewaysCard": false,
"CustomDeck": {
"3688": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "cdbb37",
"Name": "Card",
"Transform": {
"posX": 9.040538,
"posY": 3.90926242,
"posZ": -16.7029743,
"rotX": 359.84903,
"rotY": 269.965546,
"rotZ": 0.0618917458,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Easy Mark (1)",
"Description": "",
"GMNotes": "{\n \"id\": \"06026\",\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"traits\": \"Trick.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 440724,
"SidewaysCard": false,
"CustomDeck": {
"4407": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025944587/520448D0E9C22F102C7DDF64322EAD6FC221ECC8/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "a53344",
"Name": "Card",
"Transform": {
"posX": 9.041266,
"posY": 3.91158533,
"posZ": -16.7031269,
"rotX": 359.842468,
"rotY": 269.9645,
"rotZ": 0.06605018,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Clarity of Mind (3)",
"Description": "",
"GMNotes": "{\n \"id\": \"51008\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Charge\",\n \"count\": 4\n }\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 313603,
"SidewaysCard": false,
"CustomDeck": {
"3136": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025945336/04E36F64C2CBE1B4905FF44A869C75EC52CB3A56/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "cf4571",
"Name": "Card",
"Transform": {
"posX": 9.041266,
"posY": 3.91158533,
"posZ": -16.7031269,
"rotX": 359.842468,
"rotY": 269.9645,
"rotZ": 0.06605018,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Blessed Blade",
"Description": "",
"GMNotes": "{\n \"id\": \"07018\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Item. Weapon. Melee. Blessed.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 581612,
"SidewaysCard": false,
"CustomDeck": {
"5816": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320664132663842/9B2F50595A754585A4DF12D6D48DC2561DC0E2C9/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "a614de",
"Name": "Card",
"Transform": {
"posX": 9.041994,
"posY": 3.91073632,
"posZ": -16.70328,
"rotX": 359.8359,
"rotY": 269.96347,
"rotZ": 0.07020406,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Feed the Mind",
"Description": "",
"GMNotes": "{\n \"id\": \"60209\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Spell.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Secret\",\n \"count\": 3\n }\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 538807,
"SidewaysCard": false,
"CustomDeck": {
"5388": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1546381162227145538/0F253FC5301911273C32210992261DD1D2EBB578/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "4d9b32",
"Name": "Card",
"Transform": {
"posX": 9.041994,
"posY": 3.91073632,
"posZ": -16.70328,
"rotX": 359.8359,
"rotY": 269.96347,
"rotZ": 0.07020406,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Bounty Contracts",
"Description": "",
"GMNotes": "{\n \"id\": \"06010\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Job.\",\n \"permanent\": true,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 582204,
"SidewaysCard": false,
"CustomDeck": {
"5822": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1011562618093846571/13C76218853EE87123267F8F6BE99206DB40470B/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "a5087b",
"Name": "Card",
"Transform": {
"posX": 9.042722,
"posY": 3.90671921,
"posZ": -16.7034321,
"rotX": 359.829346,
"rotY": 269.962433,
"rotZ": 0.07435351,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": ".25 Automatic",
"Description": "",
"GMNotes": "{\n \"id\": \"07025\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Item. Weapon. Firearm. Illicit.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Ammo\",\n \"count\": 4\n }\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 587219,
"SidewaysCard": false,
"CustomDeck": {
"5872": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320664132663842/9B2F50595A754585A4DF12D6D48DC2561DC0E2C9/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "48e103",
"Name": "Card",
"Transform": {
"posX": 9.042722,
"posY": 3.90671921,
"posZ": -16.7034321,
"rotX": 359.829346,
"rotY": 269.962433,
"rotZ": 0.07435351,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Baseball Bat",
"Description": "",
"GMNotes": "{\n \"id\": \"01074\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Item. Weapon. Melee.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 368830,
"SidewaysCard": false,
"CustomDeck": {
"3688": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "f7a9ab",
"Name": "Card",
"Transform": {
"posX": 9.043448,
"posY": 3.89953732,
"posZ": -16.7035847,
"rotX": 359.822784,
"rotY": 269.9614,
"rotZ": 0.07849841,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Armor of Ardennes (5)",
"Description": "",
"GMNotes": "{\n \"id\": \"03305\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Item. Armor. Relic.\",\n \"level\": 5,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 226360,
"SidewaysCard": false,
"CustomDeck": {
"2263": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "db2c81",
"Name": "Card",
"Transform": {
"posX": 9.043448,
"posY": 3.89953732,
"posZ": -16.7035847,
"rotX": 359.822784,
"rotY": 269.9614,
"rotZ": 0.07849841,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Telescopic Sight (3)",
"Description": "",
"GMNotes": "{\n \"id\": \"05230\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Item. Upgrade.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 292816,
"SidewaysCard": false,
"CustomDeck": {
"2928": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025943109/9C5481E6DFEACD450C5522F884E615482281DDB1/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "de40c8",
"Name": "Card",
"Transform": {
"posX": 9.044174,
"posY": 3.88919425,
"posZ": -16.7037373,
"rotX": 359.816254,
"rotY": 269.960358,
"rotZ": 0.08263885,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Copycat (3)",
"Description": "",
"GMNotes": "{\n \"id\": \"60330\",\n \"type\": \"Skill\",\n \"class\": \"Rogue\",\n \"traits\": \"Gambit.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 538628,
"SidewaysCard": false,
"CustomDeck": {
"5386": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456298037683/22C99DD745DFF65ECC72FD32EFA9C9D0F0C12862/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "6e4d54",
"Name": "Card",
"Transform": {
"posX": 9.044174,
"posY": 3.88919425,
"posZ": -16.7037373,
"rotX": 359.816254,
"rotY": 269.960358,
"rotZ": 0.08263885,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Glimpse the Unthinkable (1)",
"Description": "",
"GMNotes": "{\n \"id\": \"60221\",\n \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"traits\": \"Insight.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 538819,
"SidewaysCard": false,
"CustomDeck": {
"5388": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1546381162227145538/0F253FC5301911273C32210992261DD1D2EBB578/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "6d9881",
"Name": "Card",
"Transform": {
"posX": 9.044174,
"posY": 3.88919425,
"posZ": -16.7037373,
"rotX": 359.816254,
"rotY": 269.960358,
"rotZ": 0.08263885,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Drawing Thin",
"Description": "",
"GMNotes": "{\n \"id\": \"05159\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Talent.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 277910,
"SidewaysCard": false,
"CustomDeck": {
"2779": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025946328/561232524C8EAA4B4371B28652F78969E6ED6FFB/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "fb943f",
"Name": "Card",
"Transform": {
"posX": 9.044899,
"posY": 3.92559481,
"posZ": -16.70389,
"rotX": 359.809723,
"rotY": 269.959351,
"rotZ": 0.08677484,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Across Space and Time",
"Description": "Madness.",
"GMNotes": "{\n \"id\": \"02178\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Madness.\",\n \"permanent\": false,\n \"weakness\": true\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 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": 232941,
"SidewaysCard": false,
"CustomDeck": {
"2329": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "f21109",
"Name": "Card",
"Transform": {
"posX": 9.044899,
"posY": 3.92559481,
"posZ": -16.70389,
"rotX": 359.809723,
"rotY": 269.959351,
"rotZ": 0.08677484,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "A Glimmer of Hope",
"Description": "",
"GMNotes": "{\n \"id\": \"06245\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Blessed. Fortune.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 447733,
"SidewaysCard": false,
"CustomDeck": {
"4477": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025946328/561232524C8EAA4B4371B28652F78969E6ED6FFB/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "1c7a00",
"Name": "Card",
"Transform": {
"posX": 9.045623,
"posY": 3.90884113,
"posZ": -16.7040424,
"rotX": 359.8032,
"rotY": 269.9583,
"rotZ": 0.09090634,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Rational Thought",
"Description": "",
"GMNotes": "{\n \"id\": \"05008\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Flaw.\",\n \"permanent\": false,\n \"weakness\": true\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 379154,
"SidewaysCard": false,
"CustomDeck": {
"3791": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "00af4f",
"Name": "Card",
"Transform": {
"posX": 9.045623,
"posY": 3.90884113,
"posZ": -16.7040424,
"rotX": 359.8032,
"rotY": 269.9583,
"rotZ": 0.09090634,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Fight or Flight",
"Description": "",
"GMNotes": "{\n \"id\": \"03155\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Spirit.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 368813,
"SidewaysCard": false,
"CustomDeck": {
"3688": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "e21200",
"Name": "Card",
"Transform": {
"posX": 9.046346,
"posY": 3.88893676,
"posZ": -16.704195,
"rotX": 359.796661,
"rotY": 269.957275,
"rotZ": 0.09503333,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Clairvoyance (5)",
"Description": "",
"GMNotes": "{\n \"id\": \"60431\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\",\n \"level\": 5,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Charge\",\n \"count\": 3\n }\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 538729,
"SidewaysCard": false,
"CustomDeck": {
"5387": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297472038/B38A78EF27EBE0BDE1B36958D297701505AB936A/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "e628de",
"Name": "Card",
"Transform": {
"posX": 9.046346,
"posY": 3.88893676,
"posZ": -16.704195,
"rotX": 359.796661,
"rotY": 269.957275,
"rotZ": 0.09503333,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Called by the Mists",
"Description": "Weakness",
"GMNotes": "{\n \"id\": \"60503\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Curse.\",\n \"permanent\": false,\n \"weakness\": true\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 550801,
"SidewaysCard": false,
"CustomDeck": {
"5508": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456298038335/2CA532D7F0EED2B2B40E47709AC56D85C4613A33/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "5d6728",
"Name": "Card",
"Transform": {
"posX": 9.047069,
"posY": 3.86588573,
"posZ": -16.7043476,
"rotX": 359.790161,
"rotY": 269.956238,
"rotZ": 0.09915585,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Occult Lexicon",
"Description": "",
"GMNotes": "{\n \"id\": \"05316\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Tome. Occult.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false,\n \"bonded\": [\n {\n \"id\": \"05317\",\n \"count\": 3\n }\n ]\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 592120,
"SidewaysCard": false,
"CustomDeck": {
"5921": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "a8afba",
"Name": "Card",
"Transform": {
"posX": 9.047069,
"posY": 3.86588573,
"posZ": -16.7043476,
"rotX": 359.790161,
"rotY": 269.956238,
"rotZ": 0.09915585,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Mr. \"Rook\" (Taboo)",
"Description": "Dealer in Secrets",
"GMNotes": "{\n \"id\": \"05153-t\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Ally.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 450610,
"SidewaysCard": false,
"CustomDeck": {
"4506": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1656721113609569419/60B1DFC7C68C406C34641A1F53078F46D610821C/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "7f7ecc",
"Name": "Card",
"Transform": {
"posX": 9.047069,
"posY": 3.86588573,
"posZ": -16.7043476,
"rotX": 359.790161,
"rotY": 269.956238,
"rotZ": 0.09915585,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Naomi O'Bannion",
"Description": "Ruthless Tactician",
"GMNotes": "{\n \"id\": \"51052\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Criminal. Syndicate.\",\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 233135,
"SidewaysCard": false,
"CustomDeck": {
"2331": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "415ca2",
"Name": "Card",
"Transform": {
"posX": 9.047791,
"posY": 3.88959241,
"posZ": -16.7044983,
"rotX": 359.783661,
"rotY": 269.9552,
"rotZ": 0.10327398,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "\"Get over here!\" (2)",
"Description": "",
"GMNotes": "{\n \"id\": \"60123\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Spirit. Tactic.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 545321,
"SidewaysCard": false,
"CustomDeck": {
"5453": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1546380927206250326/18BF6D2B2BBFDDBE5B021A46C310E4F45493EC26/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "ad0ef0",
"Name": "Card",
"Transform": {
"posX": 9.047791,
"posY": 3.88959241,
"posZ": -16.7044983,
"rotX": 359.783661,
"rotY": 269.9552,
"rotZ": 0.10327398,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Lonnie Ritter",
"Description": "Feisty Mechanic",
"GMNotes": "{\n \"id\": \"60309\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Ally.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 538607,
"SidewaysCard": false,
"CustomDeck": {
"5386": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456298037683/22C99DD745DFF65ECC72FD32EFA9C9D0F0C12862/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "ce1b89",
"Name": "Card",
"Transform": {
"posX": 9.04851151,
"posY": 3.860159,
"posZ": -16.704649,
"rotX": 359.777161,
"rotY": 269.954163,
"rotZ": 0.107387617,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "High Roller (2)",
"Description": "",
"GMNotes": "{\n \"id\": \"04156\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Talent.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 315247,
"SidewaysCard": false,
"CustomDeck": {
"3152": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "c70ad8",
"Name": "Card",
"Transform": {
"posX": 9.04851151,
"posY": 3.860159,
"posZ": -16.704649,
"rotX": 359.777161,
"rotY": 269.954163,
"rotZ": 0.107387617,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Interrogate",
"Description": "",
"GMNotes": "{\n \"id\": \"05020\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Tactic. Insight.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 431008,
"SidewaysCard": false,
"CustomDeck": {
"4310": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025943109/9C5481E6DFEACD450C5522F884E615482281DDB1/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "0d006f",
"Name": "Card",
"Transform": {
"posX": 9.049232,
"posY": 3.827589,
"posZ": -16.7048,
"rotX": 359.77066,
"rotY": 269.953156,
"rotZ": 0.111496791,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Moonstone",
"Description": "",
"GMNotes": "{\n \"id\": \"06203\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Item. Relic. Dreamlands.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 447731,
"SidewaysCard": false,
"CustomDeck": {
"4477": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025946328/561232524C8EAA4B4371B28652F78969E6ED6FFB/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "70772b",
"Name": "Card",
"Transform": {
"posX": 9.049232,
"posY": 3.827589,
"posZ": -16.7048,
"rotX": 359.77066,
"rotY": 269.953156,
"rotZ": 0.111496791,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Oops! (2)",
"Description": "",
"GMNotes": "{\n \"id\": \"51009\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Fortune.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 314905,
"SidewaysCard": false,
"CustomDeck": {
"3149": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025946328/561232524C8EAA4B4371B28652F78969E6ED6FFB/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "3199f2",
"Name": "Card",
"Transform": {
"posX": 9.049951,
"posY": 3.791886,
"posZ": -16.70495,
"rotX": 359.7642,
"rotY": 269.952118,
"rotZ": 0.115601525,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Curse of Aeons (3)",
"Description": "",
"GMNotes": "{\n \"id\": \"07195\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Ritual. Cursed.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 580106,
"SidewaysCard": false,
"CustomDeck": {
"5801": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1762566393205073673/1FABAC4DD6EF3706D8C8285A256A13F43AE6B1E1/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 6,
"NumHeight": 3,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "c8505c",
"Name": "Card",
"Transform": {
"posX": 9.050669,
"posY": 3.75305343,
"posZ": -16.705101,
"rotX": 359.757721,
"rotY": 269.95105,
"rotZ": 0.119701818,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Scrapper",
"Description": "",
"GMNotes": "{\n \"id\": \"60511\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Talent.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 550809,
"SidewaysCard": false,
"CustomDeck": {
"5508": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456298038335/2CA532D7F0EED2B2B40E47709AC56D85C4613A33/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "1fe462",
"Name": "Card",
"Transform": {
"posX": 9.050669,
"posY": 3.75305343,
"posZ": -16.705101,
"rotX": 359.757721,
"rotY": 269.95105,
"rotZ": 0.119701818,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Last Chance",
"Description": "",
"GMNotes": "{\n \"id\": \"04036\",\n \"type\": \"Skill\",\n \"class\": \"Survivor\",\n \"traits\": \"Gambit.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 368804,
"SidewaysCard": false,
"CustomDeck": {
"3688": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "e58d2a",
"Name": "Card",
"Transform": {
"posX": 9.051386,
"posY": 3.760996,
"posZ": -16.7052517,
"rotX": 359.751251,
"rotY": 269.950043,
"rotZ": 0.123797633,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Scrying (3)",
"Description": "",
"GMNotes": "{\n \"id\": \"03236\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Charge\",\n \"count\": 3\n }\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 230350,
"SidewaysCard": false,
"CustomDeck": {
"2303": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "c54d7e",
"Name": "Card",
"Transform": {
"posX": 9.051386,
"posY": 3.760996,
"posZ": -16.7052517,
"rotX": 359.751251,
"rotY": 269.950043,
"rotZ": 0.123797633,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Dread Curse",
"Description": "Basic Weakness",
"GMNotes": "{\n \"id\": \"07039\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Curse.\",\n \"permanent\": false,\n \"weakness\": true,\n \"basicWeaknessCount\": 2\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 583433,
"SidewaysCard": false,
"CustomDeck": {
"5834": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320664132663842/9B2F50595A754585A4DF12D6D48DC2561DC0E2C9/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "f69e10",
"Name": "Card",
"Transform": {
"posX": 9.052103,
"posY": 3.7158165,
"posZ": -16.7054024,
"rotX": 359.744781,
"rotY": 269.948975,
"rotZ": 0.1278891,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Seeking Answers",
"Description": "",
"GMNotes": "{\n \"id\": \"02023\",\n \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"traits\": \"Insight.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 368407,
"SidewaysCard": false,
"CustomDeck": {
"3684": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "54832d",
"Name": "Card",
"Transform": {
"posX": 9.052103,
"posY": 3.7158165,
"posZ": -16.7054024,
"rotX": 359.744781,
"rotY": 269.948975,
"rotZ": 0.1278891,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Alchemical Transmutation",
"Description": "",
"GMNotes": "{\n \"id\": \"03032\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Charge\",\n \"count\": 3\n }\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 230320,
"SidewaysCard": false,
"CustomDeck": {
"2303": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "510c0d",
"Name": "Card",
"Transform": {
"posX": 9.052859,
"posY": 3.69076085,
"posZ": -16.70556,
"rotX": 359.885071,
"rotY": 269.94812,
"rotZ": 0.0391311869,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Emergency Cache",
"Description": "",
"GMNotes": "{\n \"id\": \"01088\",\n \"type\": \"Event\",\n \"class\": \"Neutral\",\n \"traits\": \"Supply.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 368509,
"SidewaysCard": false,
"CustomDeck": {
"3685": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "78858f",
"Name": "Card",
"Transform": {
"posX": 9.053697,
"posY": 3.67574239,
"posZ": -16.7057362,
"rotX": 359.913116,
"rotY": 269.947052,
"rotZ": 0.02138279,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Hallowed Mirror (3)",
"Description": "",
"GMNotes": "{\n \"id\": \"54002\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Item. Relic. Occult. Blessed.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false,\n \"bonded\": [\n {\n \"id\": \"05314\",\n \"count\": 3\n }\n ]\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 449522,
"SidewaysCard": false,
"CustomDeck": {
"4495": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1697276706766470010/D835D3A12B12173C78B2FFA055FEFD6042AEDD38/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 6,
"NumHeight": 6,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "016b72",
"Name": "Card",
"Transform": {
"posX": 9.053697,
"posY": 3.67574239,
"posZ": -16.7057362,
"rotX": 359.913116,
"rotY": 269.947052,
"rotZ": 0.02138279,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "The King in Yellow",
"Description": "",
"GMNotes": "{\n \"id\": \"03011\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Tome.\",\n \"permanent\": false,\n \"weakness\": true\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 374633,
"SidewaysCard": false,
"CustomDeck": {
"3746": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "0bb3da",
"Name": "Card",
"Transform": {
"posX": 9.054533,
"posY": 3.75741673,
"posZ": -16.7059116,
"rotX": 359.941162,
"rotY": 269.945984,
"rotZ": 0.00365336542,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "First Watch",
"Description": "",
"GMNotes": "{\n \"id\": \"06110\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Tactic.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 379828,
"SidewaysCard": false,
"CustomDeck": {
"3798": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025943109/9C5481E6DFEACD450C5522F884E615482281DDB1/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "870bdc",
"Name": "Card",
"Transform": {
"posX": 9.055368,
"posY": 3.736522,
"posZ": -16.7060871,
"rotX": 359.969147,
"rotY": 269.9449,
"rotZ": 359.985931,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Cryptic Writings (2)",
"Description": "",
"GMNotes": "{\n \"id\": \"60224\",\n \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"traits\": \"Insight.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 538822,
"SidewaysCard": false,
"CustomDeck": {
"5388": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1546381162227145538/0F253FC5301911273C32210992261DD1D2EBB578/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "9be144",
"Name": "Card",
"Transform": {
"posX": 9.055368,
"posY": 3.736522,
"posZ": -16.7060871,
"rotX": 359.969147,
"rotY": 269.9449,
"rotZ": 359.985931,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Shadow Agents",
"Description": "Weakness",
"GMNotes": "{\n \"id\": \"07011\",\n \"type\": \"Enemy\",\n \"class\": \"Neutral\",\n \"traits\": \"Humanoid. Cultist.\",\n \"permanent\": false,\n \"weakness\": true\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 586405,
"SidewaysCard": false,
"CustomDeck": {
"5864": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320664132663842/9B2F50595A754585A4DF12D6D48DC2561DC0E2C9/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "cf41be",
"Name": "CardCustom",
"Transform": {
"posX": 9.056203,
"posY": 3.76256442,
"posZ": -16.7062626,
"rotX": -0.00288962526,
"rotY": 269.9438,
"rotZ": 359.968262,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Daisy's Tote Bag",
"Description": "Advanced",
"GMNotes": "{\n \"id\": \"90002\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item.\",\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 231600,
"SidewaysCard": false,
"CustomDeck": {
"2316": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1017195287736529784/BEB850DCAA5497CC1A96E1603C0D3AFFE8B0F2BB/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "dbb0e0",
"Name": "Card",
"Transform": {
"posX": 9.056203,
"posY": 3.76256442,
"posZ": -16.7062626,
"rotX": -0.00288962526,
"rotY": 269.9438,
"rotZ": 359.968262,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Encyclopedia",
"Description": "",
"GMNotes": "{\n \"id\": \"60208\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Tome.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Secret\",\n \"count\": 5\n }\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 538806,
"SidewaysCard": false,
"CustomDeck": {
"5388": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1546381162227145538/0F253FC5301911273C32210992261DD1D2EBB578/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "a3f105",
"Name": "Card",
"Transform": {
"posX": 9.057036,
"posY": 3.78674674,
"posZ": -16.7064381,
"rotX": 0.0250428263,
"rotY": 269.9427,
"rotZ": 359.9506,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Something Worth Fighting For",
"Description": "",
"GMNotes": "{\n \"id\": \"05109\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Talent.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 278011,
"SidewaysCard": false,
"CustomDeck": {
"2780": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025943109/9C5481E6DFEACD450C5522F884E615482281DDB1/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "d1d7fa",
"Name": "Card",
"Transform": {
"posX": 9.057869,
"posY": 3.807887,
"posZ": -16.7066135,
"rotX": 0.0529439226,
"rotY": 269.941559,
"rotZ": 359.932922,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "\"Not without a fight!\"",
"Description": "",
"GMNotes": "{\n \"id\": \"03272\",\n \"type\": \"Skill\",\n \"class\": \"Survivor\",\n \"traits\": \"Innate.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 368803,
"SidewaysCard": false,
"CustomDeck": {
"3688": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "e0dff3",
"Name": "Card",
"Transform": {
"posX": 9.057869,
"posY": 3.807887,
"posZ": -16.7066135,
"rotX": 0.0529439226,
"rotY": 269.941559,
"rotZ": 359.932922,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Dodge",
"Description": "",
"GMNotes": "{\n \"id\": \"01023\",\n \"alternate_ids\": [ \"60113\" ],\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Tactic.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 226313,
"SidewaysCard": false,
"CustomDeck": {
"2263": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "22d886",
"Name": "Card",
"Transform": {
"posX": 9.058701,
"posY": 3.87573576,
"posZ": -16.706789,
"rotX": 0.08081364,
"rotY": 269.94046,
"rotZ": 359.915283,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Unsolved Case",
"Description": "",
"GMNotes": "{\n \"id\": \"05010\",\n \"type\": \"Event\",\n \"class\": \"Neutral\",\n \"traits\": \"Insight. Mystery.\",\n \"permanent\": false,\n \"weakness\": true\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 431656,
"SidewaysCard": false,
"CustomDeck": {
"4316": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "692ced",
"Name": "Card",
"Transform": {
"posX": 9.059531,
"posY": 3.840494,
"posZ": -16.7069645,
"rotX": 0.10865213,
"rotY": 269.939331,
"rotZ": 359.897675,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Molly Maxwell",
"Description": "The Exotic Morgana",
"GMNotes": "{\n \"id\": \"98017\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Assistant.\",\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 466112,
"SidewaysCard": false,
"CustomDeck": {
"4661": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1011562618093846571/13C76218853EE87123267F8F6BE99206DB40470B/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "f91fd9",
"Name": "Card",
"Transform": {
"posX": 9.059531,
"posY": 3.840494,
"posZ": -16.7069645,
"rotX": 0.10865213,
"rotY": 269.939331,
"rotZ": 359.897675,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Mitch Brown",
"Description": "",
"GMNotes": "{\n \"id\": \"04006\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Wayfarer.\",\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 377042,
"SidewaysCard": false,
"CustomDeck": {
"3770": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "c1ce8e",
"Name": "Card",
"Transform": {
"posX": 9.060361,
"posY": 3.852066,
"posZ": -16.7071381,
"rotX": 0.136459291,
"rotY": 269.9382,
"rotZ": 359.8801,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "The 13th Vision",
"Description": "",
"GMNotes": "{\n \"id\": \"05041\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Omen.\",\n \"permanent\": false,\n \"weakness\": true,\n \"basicWeaknessCount\": 2\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 290321,
"SidewaysCard": false,
"CustomDeck": {
"2903": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "863f1a",
"Name": "Card",
"Transform": {
"posX": 9.06119,
"posY": 3.86045575,
"posZ": -16.7073116,
"rotX": 0.1642352,
"rotY": 269.937073,
"rotZ": 359.862518,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Spectral Web",
"Description": "Spell.",
"GMNotes": "{\n \"id\": \"05177\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Spell.\",\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 275733,
"SidewaysCard": false,
"CustomDeck": {
"2757": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "d99735",
"Name": "Card",
"Transform": {
"posX": 9.06119,
"posY": 3.86045575,
"posZ": -16.7073116,
"rotX": 0.1642352,
"rotY": 269.937073,
"rotZ": 359.862518,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Jerome Davids",
"Description": "In Way Over His Head",
"GMNotes": "{\n \"id\": \"05259\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Assistant.\",\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 312512,
"SidewaysCard": false,
"CustomDeck": {
"3125": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "a7944d",
"Name": "Card",
"Transform": {
"posX": 9.062017,
"posY": 3.86566639,
"posZ": -16.7074852,
"rotX": 0.191979975,
"rotY": 269.9359,
"rotZ": 359.84494,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Springfield M1903 (4)",
"Description": "",
"GMNotes": "{\n \"id\": \"02226\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Item. Weapon. Firearm.\",\n \"level\": 4,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Ammo\",\n \"count\": 3\n }\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 226356,
"SidewaysCard": false,
"CustomDeck": {
"2263": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "dc4a2c",
"Name": "Card",
"Transform": {
"posX": 9.062017,
"posY": 3.86566639,
"posZ": -16.7074852,
"rotX": 0.191979975,
"rotY": 269.9359,
"rotZ": 359.84494,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Will to Survive",
"Description": "",
"GMNotes": "{\n \"id\": \"60512\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Spirit.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 550810,
"SidewaysCard": false,
"CustomDeck": {
"5508": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456298038335/2CA532D7F0EED2B2B40E47709AC56D85C4613A33/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "7307c4",
"Name": "Card",
"Transform": {
"posX": 9.062844,
"posY": 3.867702,
"posZ": -16.7076588,
"rotX": 0.219693378,
"rotY": 269.934753,
"rotZ": 359.827423,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Arcane Initiate",
"Description": "",
"GMNotes": "{\n \"id\": \"01063\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Ally. Sorcerer.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"doom\",\n \"type\": \"Doom\",\n \"count\": 1\n }\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 230318,
"SidewaysCard": false,
"CustomDeck": {
"2303": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "9934d2",
"Name": "Card",
"Transform": {
"posX": 9.062844,
"posY": 3.867702,
"posZ": -16.7076588,
"rotX": 0.219693378,
"rotY": 269.934753,
"rotZ": 359.827423,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Dr. Milan Christopher",
"Description": "Professor of Entomology",
"GMNotes": "{\n \"id\": \"01033\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Ally. Miskatonic.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 368434,
"SidewaysCard": false,
"CustomDeck": {
"3684": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "5efc92",
"Name": "Card",
"Transform": {
"posX": 9.062844,
"posY": 3.867702,
"posZ": -16.7076588,
"rotX": 0.219693378,
"rotY": 269.934753,
"rotZ": 359.827423,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Blood Eclipse (1)",
"Description": "",
"GMNotes": "{\n \"id\": \"53001\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Spell. Spirit.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 545200,
"SidewaysCard": false,
"CustomDeck": {
"5452": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1487830656537158415/2EBB208AA994ED70FD0FEB02D4E4FE78FE43EE02/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "e567ff",
"Name": "Card",
"Transform": {
"posX": 9.06367,
"posY": 3.91646719,
"posZ": -16.7078323,
"rotX": 0.247375742,
"rotY": 269.9336,
"rotZ": 359.809875,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Rookie Mistake",
"Description": "",
"GMNotes": "{\n \"id\": \"06007\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Blunder. Flaw.\",\n \"permanent\": false,\n \"weakness\": true\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 583901,
"SidewaysCard": false,
"CustomDeck": {
"5839": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1011562618093846571/13C76218853EE87123267F8F6BE99206DB40470B/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "ca23d4",
"Name": "Card",
"Transform": {
"posX": 9.06367,
"posY": 3.91646719,
"posZ": -16.7078323,
"rotX": 0.247375742,
"rotY": 269.9336,
"rotZ": 359.809875,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Arcane Studies (4)",
"Description": "",
"GMNotes": "{\n \"id\": \"60428\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Talent.\",\n \"level\": 4,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Resource\",\n \"count\": 2\n }\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 538726,
"SidewaysCard": false,
"CustomDeck": {
"5387": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297472038/B38A78EF27EBE0BDE1B36958D297701505AB936A/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "0e39c2",
"Name": "Card",
"Transform": {
"posX": 9.064495,
"posY": 3.91206431,
"posZ": -16.7080059,
"rotX": 0.275027,
"rotY": 269.932434,
"rotZ": 359.7924,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "The Council's Coffer (2)",
"Description": "What’s in the Box?",
"GMNotes": "{\n \"id\": \"05196\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Relic.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 312109,
"SidewaysCard": false,
"CustomDeck": {
"3121": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025942034/FEADE7F6206804B42CC9B6049F51EDF6040C5D1D/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "c4ae95",
"Name": "Card",
"Transform": {
"posX": 9.064495,
"posY": 3.91206431,
"posZ": -16.7080059,
"rotX": 0.275027,
"rotY": 269.932434,
"rotZ": 359.7924,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "The Stygian Eye (3)",
"Description": "",
"GMNotes": "{\n \"id\": \"07263\",\n \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"traits\": \"Insight. Cursed.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 449602,
"SidewaysCard": false,
"CustomDeck": {
"4496": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1747933191220177818/637923621F747375066D4DA39BEA3BA9C26086A5/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 7,
"NumHeight": 3,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "30062e",
"Name": "Card",
"Transform": {
"posX": 9.06532,
"posY": 3.90449643,
"posZ": -16.70818,
"rotX": 0.302647173,
"rotY": 269.931244,
"rotZ": 359.774872,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Three Aces (1)",
"Description": "",
"GMNotes": "{\n \"id\": \"06199\",\n \"type\": \"Skill\",\n \"class\": \"Rogue\",\n \"traits\": \"Fortune. Practiced.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 447630,
"SidewaysCard": false,
"CustomDeck": {
"4476": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025944587/520448D0E9C22F102C7DDF64322EAD6FC221ECC8/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "6720ef",
"Name": "Card",
"Transform": {
"posX": 9.06532,
"posY": 3.90449643,
"posZ": -16.70818,
"rotX": 0.302647173,
"rotY": 269.931244,
"rotZ": 359.774872,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "The Man in the Pallid Mask",
"Description": "Humanoid. Elite.",
"GMNotes": "{\n \"id\": \"03059\",\n \"type\": \"Enemy\",\n \"class\": \"Neutral\",\n \"traits\": \"Humanoid. Elite.\",\n \"permanent\": false,\n \"weakness\": true\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 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": 232300,
"SidewaysCard": false,
"CustomDeck": {
"2323": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "ff2776",
"Name": "Card",
"Transform": {
"posX": 9.066144,
"posY": 3.8937676,
"posZ": -16.708353,
"rotX": 0.330236256,
"rotY": 269.930054,
"rotZ": 359.757446,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Cryptic Writings",
"Description": "",
"GMNotes": "{\n \"id\": \"60215\",\n \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"traits\": \"Insight.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 538813,
"SidewaysCard": false,
"CustomDeck": {
"5388": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1546381162227145538/0F253FC5301911273C32210992261DD1D2EBB578/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "eccb8a",
"Name": "Card",
"Transform": {
"posX": 9.066144,
"posY": 3.8937676,
"posZ": -16.708353,
"rotX": 0.330236226,
"rotY": 269.930054,
"rotZ": 359.757446,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Knowledge is Power (Taboo)",
"Description": "",
"GMNotes": "{\n \"id\": \"05231-t\",\n \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"traits\": \"Insight.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 450611,
"SidewaysCard": false,
"CustomDeck": {
"4506": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1656721113609569419/60B1DFC7C68C406C34641A1F53078F46D610821C/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "d6f8d1",
"Name": "Card",
"Transform": {
"posX": 9.066967,
"posY": 3.87988114,
"posZ": -16.7085266,
"rotX": 0.357794285,
"rotY": 269.928864,
"rotZ": 359.74,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Tony's Quarry",
"Description": "",
"GMNotes": "{\n \"id\": \"06012\",\n \"type\": \"Enemy\",\n \"class\": \"Neutral\",\n \"traits\": \"Humanoid. Monster. Deep One.\",\n \"permanent\": false,\n \"weakness\": true\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 582106,
"SidewaysCard": false,
"CustomDeck": {
"5821": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1011562618093846571/13C76218853EE87123267F8F6BE99206DB40470B/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "c5fb42",
"Name": "Card",
"Transform": {
"posX": 9.066967,
"posY": 3.87988114,
"posZ": -16.7085266,
"rotX": 0.357794285,
"rotY": 269.928864,
"rotZ": 359.74,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Azure Flame (3)",
"Description": "",
"GMNotes": "{\n \"id\": \"60425\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Charge\",\n \"count\": 4\n }\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 538723,
"SidewaysCard": false,
"CustomDeck": {
"5387": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297472038/B38A78EF27EBE0BDE1B36958D297701505AB936A/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "bad8cb",
"Name": "Card",
"Transform": {
"posX": 9.067789,
"posY": 3.86284065,
"posZ": -16.7087,
"rotX": 0.3853216,
"rotY": 269.927673,
"rotZ": 359.722565,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Damned",
"Description": "Basic Weakness",
"GMNotes": "{\n \"id\": \"54014\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Curse. Omen.\",\n \"permanent\": true,\n \"weakness\": true,\n \"basicWeaknessCount\": 1\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 449520,
"SidewaysCard": false,
"CustomDeck": {
"4495": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1697276706766470010/D835D3A12B12173C78B2FFA055FEFD6042AEDD38/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 6,
"NumHeight": 6,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "541ee9",
"Name": "Card",
"Transform": {
"posX": 9.067789,
"posY": 3.86284065,
"posZ": -16.7087,
"rotX": 0.3853216,
"rotY": 269.927673,
"rotZ": 359.722565,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Paradoxical Covenant (2)",
"Description": "",
"GMNotes": "{\n \"id\": \"07120\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Covenant. Blessed. Cursed.\",\n \"level\": 2,\n \"permanent\": true,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 553112,
"SidewaysCard": false,
"CustomDeck": {
"5531": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1684870715280867313/BFD2AF968EAC917D3B838DCB8B1656941CD8B5CC/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "c55160",
"Name": "Card",
"Transform": {
"posX": 9.06861,
"posY": 3.84264946,
"posZ": -16.7088718,
"rotX": 0.4128178,
"rotY": 269.926483,
"rotZ": 359.70517,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Mano a Mano (1)",
"Description": "",
"GMNotes": "{\n \"id\": \"03229\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Spirit. Bold.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 226333,
"SidewaysCard": false,
"CustomDeck": {
"2263": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "1c98ff",
"Name": "Card",
"Transform": {
"posX": 9.06861,
"posY": 3.84264946,
"posZ": -16.7088718,
"rotX": 0.4128178,
"rotY": 269.926483,
"rotZ": 359.70517,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Key of Ys (5)",
"Description": "Let the Storm Rage",
"GMNotes": "{\n \"id\": \"03315\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Relic.\",\n \"level\": 5,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 368527,
"SidewaysCard": false,
"CustomDeck": {
"3685": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "dc674e",
"Name": "Card",
"Transform": {
"posX": 9.06861,
"posY": 3.84264946,
"posZ": -16.7088718,
"rotX": 0.4128178,
"rotY": 269.926483,
"rotZ": 359.70517,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Khopesh of the Abyss",
"Description": "Item. Weapon. Relic. Melee.",
"GMNotes": "{\n \"id\": \"83057\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Weapon. Relic. Melee.\",\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 546916,
"SidewaysCard": false,
"CustomDeck": {
"5469": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1747933191218960581/4546AD2542BDA831A52F111505063691712EE74F/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1747933191218961222/32A8F41F3FDA4387C71BA2668B2645E36EDAE74D/",
"NumWidth": 10,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "344d98",
"Name": "Card",
"Transform": {
"posX": 9.06943,
"posY": 3.86921287,
"posZ": -16.7090435,
"rotX": 0.44028303,
"rotY": 269.925232,
"rotZ": 359.687775,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Pnakotic Manuscripts (5)",
"Description": "Mind-Expanding Ideas",
"GMNotes": "{\n \"id\": \"04307\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Relic. Tome.\",\n \"level\": 5,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 262204,
"SidewaysCard": false,
"CustomDeck": {
"2622": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "e35bc2",
"Name": "Card",
"Transform": {
"posX": 9.07025,
"posY": 3.792731,
"posZ": -16.7092152,
"rotX": 0.467717379,
"rotY": 269.924042,
"rotZ": 359.6704,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Dynamite Blast (2)",
"Description": "",
"GMNotes": "{\n \"id\": \"50002\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Tactic.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 226349,
"SidewaysCard": false,
"CustomDeck": {
"2263": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "72deff",
"Name": "Card",
"Transform": {
"posX": 9.07025,
"posY": 3.792731,
"posZ": -16.7092152,
"rotX": 0.467717379,
"rotY": 269.924042,
"rotZ": 359.6704,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Moon Pendant (2)",
"Description": "",
"GMNotes": "{\n \"id\": \"54012\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Charm.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 449531,
"SidewaysCard": false,
"CustomDeck": {
"4495": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1697276706766470010/D835D3A12B12173C78B2FFA055FEFD6042AEDD38/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 6,
"NumHeight": 6,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "0d926f",
"Name": "Card",
"Transform": {
"posX": 9.071068,
"posY": 3.76310921,
"posZ": -16.7093868,
"rotX": 0.4951208,
"rotY": 269.922821,
"rotZ": 359.653046,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Scroll of Prophecies",
"Description": "",
"GMNotes": "{\n \"id\": \"06116\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Item. Tome.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Secret\",\n \"count\": 4\n }\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 380125,
"SidewaysCard": false,
"CustomDeck": {
"3801": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025945336/04E36F64C2CBE1B4905FF44A869C75EC52CB3A56/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "3c9617",
"Name": "Card",
"Transform": {
"posX": 9.071068,
"posY": 3.76310921,
"posZ": -16.7093868,
"rotX": 0.4951208,
"rotY": 269.922821,
"rotZ": 359.653046,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Brother Xavier (1)",
"Description": "Pure of Spirit",
"GMNotes": "{\n \"id\": \"02106\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Ally. \",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 226340,
"SidewaysCard": false,
"CustomDeck": {
"2263": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "2cfa4f",
"Name": "Card",
"Transform": {
"posX": 9.071068,
"posY": 3.76310921,
"posZ": -16.7093868,
"rotX": 0.4951208,
"rotY": 269.922821,
"rotZ": 359.653046,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Swift Reload (2)",
"Description": "",
"GMNotes": "{\n \"id\": \"06161\",\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"traits\": \"Tactic. Trick.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 380028,
"SidewaysCard": false,
"CustomDeck": {
"3800": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025944587/520448D0E9C22F102C7DDF64322EAD6FC221ECC8/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "97a795",
"Name": "Card",
"Transform": {
"posX": 9.071885,
"posY": 3.780252,
"posZ": -16.7095585,
"rotX": 0.52249366,
"rotY": 269.92157,
"rotZ": 359.6357,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Delilah O'Rourke (3)",
"Description": "Syndicate Assassin",
"GMNotes": "{\n \"id\": \"06281\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Ally. Criminal. Syndicate.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 449035,
"SidewaysCard": false,
"CustomDeck": {
"4490": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025944587/520448D0E9C22F102C7DDF64322EAD6FC221ECC8/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "b5e5f1",
"Name": "Card",
"Transform": {
"posX": 9.072701,
"posY": 3.744262,
"posZ": -16.70973,
"rotX": 0.549835563,
"rotY": 269.920349,
"rotZ": 359.6184,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Tennessee Sour Mash (3)",
"Description": "Rogue",
"GMNotes": "{\n \"id\": \"05190\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Item. Illicit.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Supply\",\n \"count\": 2\n }\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 292912,
"SidewaysCard": false,
"CustomDeck": {
"2929": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025944587/520448D0E9C22F102C7DDF64322EAD6FC221ECC8/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "6cbc01",
"Name": "Card",
"Transform": {
"posX": 9.073528,
"posY": 3.692538,
"posZ": -16.7099037,
"rotX": 0.045405414,
"rotY": 269.920044,
"rotZ": 359.937683,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "The Bell Tolls",
"Description": "Weakness",
"GMNotes": "{\n \"id\": \"04042\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Curse.\",\n \"permanent\": false,\n \"weakness\": true\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 537609,
"SidewaysCard": false,
"CustomDeck": {
"5376": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "426d28",
"Name": "Card",
"Transform": {
"posX": 9.074394,
"posY": 3.68511629,
"posZ": -16.7100849,
"rotX": 359.9452,
"rotY": 269.91803,
"rotZ": 0.00113002327,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Searching for Izzie",
"Description": "",
"GMNotes": "{\n \"id\": \"02011\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Task.\",\n \"permanent\": false,\n \"weakness\": true\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 586926,
"SidewaysCard": false,
"CustomDeck": {
"5869": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1697276627309509299/3B0E32939EB4599CCE3596975637C90FE4EE1DD6/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "58c435",
"Name": "Card",
"Transform": {
"posX": 9.075271,
"posY": 3.68458867,
"posZ": -16.71027,
"rotX": 359.925171,
"rotY": 269.915955,
"rotZ": 0.01381777,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Stunning Blow",
"Description": "",
"GMNotes": "{\n \"id\": \"04112\",\n \"type\": \"Skill\",\n \"class\": \"Survivor\",\n \"traits\": \"Practiced.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 368805,
"SidewaysCard": false,
"CustomDeck": {
"3688": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "4d9a97",
"Name": "Card",
"Transform": {
"posX": 9.075271,
"posY": 3.68458867,
"posZ": -16.71027,
"rotX": 359.925171,
"rotY": 269.915955,
"rotZ": 0.01381777,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Sharp Vision (1)",
"Description": "",
"GMNotes": "{\n \"id\": \"06204\",\n \"type\": \"Skill\",\n \"class\": \"Survivor\",\n \"traits\": \"Innate. Developed.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 447732,
"SidewaysCard": false,
"CustomDeck": {
"4477": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025946328/561232524C8EAA4B4371B28652F78969E6ED6FFB/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "36c0cb",
"Name": "Card",
"Transform": {
"posX": 9.075271,
"posY": 3.68458867,
"posZ": -16.71027,
"rotX": 359.925171,
"rotY": 269.915955,
"rotZ": 0.01381777,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "\"Let me handle this!\"",
"Description": "",
"GMNotes": "{\n \"id\": \"03022\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Spirit.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 226305,
"SidewaysCard": false,
"CustomDeck": {
"2263": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "82775a",
"Name": "Card",
"Transform": {
"posX": 9.076146,
"posY": 3.73079348,
"posZ": -16.7104549,
"rotX": 359.905151,
"rotY": 269.913879,
"rotZ": 0.0264921524,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Bandolier",
"Description": "",
"GMNotes": "{\n \"id\": \"02147\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Item.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 226325,
"SidewaysCard": false,
"CustomDeck": {
"2263": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "f32343",
"Name": "Card",
"Transform": {
"posX": 9.077036,
"posY": 3.68372226,
"posZ": -16.7106419,
"rotX": 359.917145,
"rotY": 269.911835,
"rotZ": 0.0188942961,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Mauser C96",
"Description": "",
"GMNotes": "{\n \"id\": \"60306\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Item. Weapon. Firearm. Illicit.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Ammo\",\n \"count\": 5\n }\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 538604,
"SidewaysCard": false,
"CustomDeck": {
"5386": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456298037683/22C99DD745DFF65ECC72FD32EFA9C9D0F0C12862/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "68744b",
"Name": "Card",
"Transform": {
"posX": 9.077036,
"posY": 3.68372226,
"posZ": -16.7106419,
"rotX": 359.917145,
"rotY": 269.911835,
"rotZ": 0.0188942961,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Hard Knocks",
"Description": "",
"GMNotes": "{\n \"id\": \"01049\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Talent.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 368623,
"SidewaysCard": false,
"CustomDeck": {
"3686": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "1cccfe",
"Name": "Card",
"Transform": {
"posX": 9.077036,
"posY": 3.68372226,
"posZ": -16.7106419,
"rotX": 359.917145,
"rotY": 269.911835,
"rotZ": 0.0188942961,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Granny Orne",
"Description": "Tough Old Bird",
"GMNotes": "{\n \"id\": \"60508\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Ally.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 550806,
"SidewaysCard": false,
"CustomDeck": {
"5508": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456298038335/2CA532D7F0EED2B2B40E47709AC56D85C4613A33/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "097dcc",
"Name": "Card",
"Transform": {
"posX": 9.077925,
"posY": 3.7333796,
"posZ": -16.7108288,
"rotX": 359.929138,
"rotY": 269.90976,
"rotZ": 0.0113044456,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Blackjack",
"Description": "",
"GMNotes": "{\n \"id\": \"02016\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Item. Weapon. Melee.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 226321,
"SidewaysCard": false,
"CustomDeck": {
"2263": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "07b163",
"Name": "Card",
"Transform": {
"posX": 9.077925,
"posY": 3.7333796,
"posZ": -16.7108288,
"rotX": 359.929138,
"rotY": 269.90976,
"rotZ": 0.0113044456,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Lucky Dice (2)",
"Description": "... Or Are They?",
"GMNotes": "{\n \"id\": \"02230\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Item. Relic.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 580707,
"SidewaysCard": false,
"CustomDeck": {
"5807": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1697276627309509299/3B0E32939EB4599CCE3596975637C90FE4EE1DD6/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "1a1b58",
"Name": "Card",
"Transform": {
"posX": 9.078813,
"posY": 3.72986817,
"posZ": -16.7110157,
"rotX": 359.941132,
"rotY": 269.9077,
"rotZ": 0.00372262276,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Miskatonic Archaeology Funding (4)",
"Description": "",
"GMNotes": "{\n \"id\": \"60232\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Grant.\",\n \"level\": 4,\n \"permanent\": true,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 538830,
"SidewaysCard": false,
"CustomDeck": {
"5388": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1546381162227145538/0F253FC5301911273C32210992261DD1D2EBB578/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "c5d8a9",
"Name": "Card",
"Transform": {
"posX": 9.078813,
"posY": 3.72986817,
"posZ": -16.7110157,
"rotX": 359.941132,
"rotY": 269.9077,
"rotZ": 0.00372262276,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Obscure Studies",
"Description": "",
"GMNotes": "{\n \"id\": \"07008\",\n \"type\": \"Event\",\n \"class\": \"Neutral\",\n \"traits\": \"Insight.\",\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 588202,
"SidewaysCard": false,
"CustomDeck": {
"5882": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320664132663842/9B2F50595A754585A4DF12D6D48DC2561DC0E2C9/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "d27d12",
"Name": "Card",
"Transform": {
"posX": 9.078813,
"posY": 3.72986817,
"posZ": -16.7110157,
"rotX": 359.941132,
"rotY": 269.9077,
"rotZ": 0.00372262276,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "\"You owe me one!\"",
"Description": "",
"GMNotes": "{\n \"id\": \"05319\",\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"traits\": \"Favor. Gambit.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 378018,
"SidewaysCard": false,
"CustomDeck": {
"3780": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025944587/520448D0E9C22F102C7DDF64322EAD6FC221ECC8/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "5a2b49",
"Name": "Card",
"Transform": {
"posX": 9.07969952,
"posY": 3.77323985,
"posZ": -16.7112026,
"rotX": 359.9531,
"rotY": 269.90564,
"rotZ": -0.00385122071,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Cherished Keepsake (1)",
"Description": "",
"GMNotes": "{\n \"id\": \"60520\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Item. Charm.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 550818,
"SidewaysCard": false,
"CustomDeck": {
"5508": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456298038335/2CA532D7F0EED2B2B40E47709AC56D85C4613A33/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "96fd5d",
"Name": "Card",
"Transform": {
"posX": 9.07969952,
"posY": 3.77323985,
"posZ": -16.7112026,
"rotX": 359.9531,
"rotY": 269.90564,
"rotZ": -0.00385122071,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Plan of Action",
"Description": "",
"GMNotes": "{\n \"id\": \"07024\",\n \"type\": \"Skill\",\n \"class\": \"Seeker\",\n \"traits\": \"Practiced.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 580418,
"SidewaysCard": false,
"CustomDeck": {
"5804": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320664132663842/9B2F50595A754585A4DF12D6D48DC2561DC0E2C9/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "a2e7d7",
"Name": "Card",
"Transform": {
"posX": 9.08058548,
"posY": 3.76359153,
"posZ": -16.71139,
"rotX": 359.965027,
"rotY": 269.9036,
"rotZ": 359.9886,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Obsessive",
"Description": "Basic Weakness",
"GMNotes": "{\n \"id\": \"60204\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Flaw.\",\n \"permanent\": false,\n \"weakness\": true,\n \"basicWeaknessCount\": 1\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 538802,
"SidewaysCard": false,
"CustomDeck": {
"5388": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1546381162227145538/0F253FC5301911273C32210992261DD1D2EBB578/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "493b03",
"Name": "Card",
"Transform": {
"posX": 9.08147049,
"posY": 3.70088363,
"posZ": -16.7115765,
"rotX": 359.977,
"rotY": 269.90155,
"rotZ": 359.981018,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Prophesy",
"Description": "",
"GMNotes": "{\n \"id\": \"05034\",\n \"type\": \"Skill\",\n \"class\": \"Mystic\",\n \"traits\": \"Practiced.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 430906,
"SidewaysCard": false,
"CustomDeck": {
"4309": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025945336/04E36F64C2CBE1B4905FF44A869C75EC52CB3A56/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "296dc8",
"Name": "Card",
"Transform": {
"posX": 9.08147049,
"posY": 3.70088363,
"posZ": -16.7115765,
"rotX": 359.977,
"rotY": 269.90155,
"rotZ": 359.981018,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Book of Shadows (3)",
"Description": "",
"GMNotes": "{\n \"id\": \"01070\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Item. Tome.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 230354,
"SidewaysCard": false,
"CustomDeck": {
"2303": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "3d08dc",
"Name": "Card",
"Transform": {
"posX": 9.08147049,
"posY": 3.70088363,
"posZ": -16.7115765,
"rotX": 359.977,
"rotY": 269.90155,
"rotZ": 359.981018,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Drawing Thin (Taboo)",
"Description": "",
"GMNotes": "{\n \"id\": \"05159-t\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Talent.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 450609,
"SidewaysCard": false,
"CustomDeck": {
"4506": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1656721113609569419/60B1DFC7C68C406C34641A1F53078F46D610821C/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "8bec05",
"Name": "Card",
"Transform": {
"posX": 9.082355,
"posY": 3.73492146,
"posZ": -16.7117615,
"rotX": 359.9889,
"rotY": 269.899475,
"rotZ": 359.97348,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Lola Santiago (3)",
"Description": "No-Nonsense Archaeologist",
"GMNotes": "{\n \"id\": \"04196\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Ally. Wayfarer.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 315256,
"SidewaysCard": false,
"CustomDeck": {
"3152": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "29fc24",
"Name": "Card",
"Transform": {
"posX": 9.082355,
"posY": 3.73492146,
"posZ": -16.7117615,
"rotX": 359.9889,
"rotY": 269.899475,
"rotZ": 359.97348,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Ichtaca",
"Description": "The Forgotten Guardian",
"GMNotes": "{\n \"id\": \"04147\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Eztli. Wayfarer.\",\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 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": 235648,
"SidewaysCard": false,
"CustomDeck": {
"2356": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1467561769777497046/3003A76996378249E6AAA4A60D85AE7EE59C1B8B/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "83b588",
"Name": "Card",
"Transform": {
"posX": 9.083238,
"posY": 3.71585178,
"posZ": -16.7119465,
"rotX": 0.00081750995,
"rotY": 269.89743,
"rotZ": 359.965942,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "August Lindquist",
"Description": "Elegant and Elusive",
"GMNotes": "{\n \"id\": \"05227\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Cultist. Silver Twilight.\",\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 312509,
"SidewaysCard": false,
"CustomDeck": {
"3125": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "c025bf",
"Name": "Card",
"Transform": {
"posX": 9.083238,
"posY": 3.71585178,
"posZ": -16.7119465,
"rotX": 0.00081750995,
"rotY": 269.89743,
"rotZ": 359.965942,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Dark Memory",
"Description": "Signature",
"GMNotes": "{\n \"id\": \"01013\",\n \"type\": \"Event\",\n \"class\": \"Neutral\",\n \"traits\": \"Spell.\",\n \"permanent\": false,\n \"weakness\": true\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 230527,
"SidewaysCard": false,
"CustomDeck": {
"2305": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "3d35aa",
"Name": "Card",
"Transform": {
"posX": 9.08412,
"posY": 3.6942265,
"posZ": -16.7121315,
"rotX": 0.01271618,
"rotY": 269.8954,
"rotZ": 359.9584,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Archaic Glyphs (3)",
"Description": "Prophecy Foretold",
"GMNotes": "{\n \"id\": \"03193\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Spell.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 430653,
"SidewaysCard": false,
"CustomDeck": {
"4306": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "b8c891",
"Name": "Card",
"Transform": {
"posX": 9.08412,
"posY": 3.6942265,
"posZ": -16.7121315,
"rotX": 0.01271618,
"rotY": 269.8954,
"rotZ": 359.9584,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Gate Box",
"Description": "Worlds within Worlds",
"GMNotes": "{\n \"id\": \"06013\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Relic.\",\n \"permanent\": false,\n \"weakness\": false,\n \"bonded\": [\n {\n \"id\": \"06015a\",\n \"count\": 1\n }\n ]\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 582507,
"SidewaysCard": false,
"CustomDeck": {
"5825": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1011562618093846571/13C76218853EE87123267F8F6BE99206DB40470B/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "8cc0a6",
"Name": "Card",
"Transform": {
"posX": 9.085024,
"posY": 3.68594813,
"posZ": -16.7123222,
"rotX": 359.93866,
"rotY": 269.893341,
"rotZ": 0.005297798,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Magnifying Glass",
"Description": "",
"GMNotes": "{\n \"id\": \"01030\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Tool.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 368421,
"SidewaysCard": false,
"CustomDeck": {
"3684": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "b2ef43",
"Name": "Card",
"Transform": {
"posX": 9.085024,
"posY": 3.68594813,
"posZ": -16.7123222,
"rotX": 359.93866,
"rotY": 269.893341,
"rotZ": 0.005297798,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Indebted",
"Description": "Basic Weakness",
"GMNotes": "{\n \"id\": \"02037\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Flaw.\",\n \"permanent\": true,\n \"weakness\": true,\n \"basicWeaknessCount\": 2\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 431205,
"SidewaysCard": false,
"CustomDeck": {
"4312": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "cbe256",
"Name": "Card",
"Transform": {
"posX": 9.085941,
"posY": 3.68474317,
"posZ": -16.7125149,
"rotX": 359.923859,
"rotY": 269.891266,
"rotZ": 0.0146787642,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Tennessee Sour Mash (3)",
"Description": "Survivor",
"GMNotes": "{\n \"id\": \"05191\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Item. Illicit.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Supply\",\n \"count\": 3\n }\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 293013,
"SidewaysCard": false,
"CustomDeck": {
"2930": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025946328/561232524C8EAA4B4371B28652F78969E6ED6FFB/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "344e90",
"Name": "Card",
"Transform": {
"posX": 9.085941,
"posY": 3.68474317,
"posZ": -16.7125149,
"rotX": 359.923859,
"rotY": 269.891266,
"rotZ": 0.0146787642,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "\"I've got a plan!\" (2)",
"Description": "",
"GMNotes": "{\n \"id\": \"60225\",\n \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"traits\": \"Insight. Tactic.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 538823,
"SidewaysCard": false,
"CustomDeck": {
"5388": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1546381162227145538/0F253FC5301911273C32210992261DD1D2EBB578/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "2f4507",
"Name": "Card",
"Transform": {
"posX": 9.086858,
"posY": 3.68036985,
"posZ": -16.7127075,
"rotX": 359.909058,
"rotY": 269.889221,
"rotZ": 0.02404982,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Forbidden Tome (3)",
"Description": "Dark Knowledge",
"GMNotes": "{\n \"id\": \"60229\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Relic. Tome.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 538827,
"SidewaysCard": false,
"CustomDeck": {
"5388": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1546381162227145538/0F253FC5301911273C32210992261DD1D2EBB578/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "2f9ab1",
"Name": "Card",
"Transform": {
"posX": 9.086858,
"posY": 3.68036985,
"posZ": -16.7127075,
"rotX": 359.909058,
"rotY": 269.889221,
"rotZ": 0.02404982,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Vantage Point",
"Description": "",
"GMNotes": "{\n \"id\": \"04306\",\n \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"traits\": \"Insight.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 368411,
"SidewaysCard": false,
"CustomDeck": {
"3684": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "2f2190",
"Name": "Card",
"Transform": {
"posX": 9.08779,
"posY": 3.68362546,
"posZ": -16.712904,
"rotX": 359.917938,
"rotY": 269.887146,
"rotZ": 0.018433325,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Unexpected Courage (2)",
"Description": "",
"GMNotes": "{\n \"id\": \"60526\",\n \"type\": \"Skill\",\n \"class\": \"Survivor\",\n \"traits\": \"Innate. Developed.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 550824,
"SidewaysCard": false,
"CustomDeck": {
"5508": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456298038335/2CA532D7F0EED2B2B40E47709AC56D85C4613A33/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "5b1550",
"Name": "Card",
"Transform": {
"posX": 9.08779,
"posY": 3.68362546,
"posZ": -16.712904,
"rotX": 359.917938,
"rotY": 269.887146,
"rotZ": 0.018433325,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Leather Coat (1)",
"Description": "",
"GMNotes": "{\n \"id\": \"60521\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Item. Armor.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 550819,
"SidewaysCard": false,
"CustomDeck": {
"5508": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456298038335/2CA532D7F0EED2B2B40E47709AC56D85C4613A33/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "914053",
"Name": "Card",
"Transform": {
"posX": 9.08872,
"posY": 3.683708,
"posZ": -16.7131,
"rotX": 359.9268,
"rotY": 269.8851,
"rotZ": 0.0128227491,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Shrivelling",
"Description": "",
"GMNotes": "{\n \"id\": \"01060\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Charge\",\n \"count\": 4\n }\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 230328,
"SidewaysCard": false,
"CustomDeck": {
"2303": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "5d25b1",
"Name": "Card",
"Transform": {
"posX": 9.089649,
"posY": 3.68062139,
"posZ": -16.713295,
"rotX": 359.935669,
"rotY": 269.883,
"rotZ": 0.007218097,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Cryptic Research (4)",
"Description": "",
"GMNotes": "{\n \"id\": \"01043\",\n \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"traits\": \"Insight.\",\n \"level\": 4,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 430657,
"SidewaysCard": false,
"CustomDeck": {
"4306": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "092e92",
"Name": "Card",
"Transform": {
"posX": 9.089649,
"posY": 3.68062139,
"posZ": -16.713295,
"rotX": 359.935669,
"rotY": 269.883,
"rotZ": 0.007218097,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Quick Study (2)",
"Description": "",
"GMNotes": "{\n \"id\": \"04154\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Talent.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 430645,
"SidewaysCard": false,
"CustomDeck": {
"4306": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "9375f4",
"Name": "Card",
"Transform": {
"posX": 9.089649,
"posY": 3.68062139,
"posZ": -16.713295,
"rotX": 359.935669,
"rotY": 269.883,
"rotZ": 0.007218097,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Guiding Spirit (1)",
"Description": "",
"GMNotes": "{\n \"id\": \"05236\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Ally. Geist.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 588405,
"SidewaysCard": false,
"CustomDeck": {
"5884": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1697276627309509299/3B0E32939EB4599CCE3596975637C90FE4EE1DD6/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "3289b0",
"Name": "Card",
"Transform": {
"posX": 9.090577,
"posY": 3.72427,
"posZ": -16.71349,
"rotX": 359.9445,
"rotY": 269.880981,
"rotZ": 0.0016193476,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Ancient Stone (4)",
"Description": "Transient Thoughts",
"GMNotes": "{\n \"id\": \"53004\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Relic.\",\n \"level\": 4,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 545203,
"SidewaysCard": false,
"CustomDeck": {
"5452": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1487830656537158415/2EBB208AA994ED70FD0FEB02D4E4FE78FE43EE02/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "da46e0",
"Name": "Card",
"Transform": {
"posX": 9.090577,
"posY": 3.72427,
"posZ": -16.71349,
"rotX": 359.9445,
"rotY": 269.880981,
"rotZ": 0.0016193476,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Police Badge (2)",
"Description": "",
"GMNotes": "{\n \"id\": \"01027\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Item.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 226346,
"SidewaysCard": false,
"CustomDeck": {
"2263": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "b7223c",
"Name": "Card",
"Transform": {
"posX": 9.091504,
"posY": 3.7149086,
"posZ": -16.7136841,
"rotX": 359.953339,
"rotY": 269.8789,
"rotZ": -0.0039734873,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Geas (2)",
"Description": "",
"GMNotes": "{\n \"id\": \"07265\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Pact.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 449604,
"SidewaysCard": false,
"CustomDeck": {
"4496": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1747933191220177818/637923621F747375066D4DA39BEA3BA9C26086A5/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 7,
"NumHeight": 3,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "31d087",
"Name": "Card",
"Transform": {
"posX": 9.091504,
"posY": 3.7149086,
"posZ": -16.7136841,
"rotX": 359.953339,
"rotY": 269.8789,
"rotZ": -0.0039734873,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Astral Travel",
"Description": "",
"GMNotes": "{\n \"id\": \"03034\",\n \"alternate_ids\": [ \"60413\" ],\n \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 230312,
"SidewaysCard": false,
"CustomDeck": {
"2303": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "27e7b3",
"Name": "Card",
"Transform": {
"posX": 9.09243,
"posY": 3.70245,
"posZ": -16.7138786,
"rotX": 359.962158,
"rotY": 269.8769,
"rotZ": 359.990448,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Dr. Elli Horowitz",
"Description": "Assistant Curator",
"GMNotes": "{\n \"id\": \"04021\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Ally. Assistant.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 368433,
"SidewaysCard": false,
"CustomDeck": {
"3684": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "a11abb",
"Name": "Card",
"Transform": {
"posX": 9.09243,
"posY": 3.70245,
"posZ": -16.7138786,
"rotX": 359.962158,
"rotY": 269.8769,
"rotZ": 359.990448,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Three Aces (1) (Taboo)",
"Description": "",
"GMNotes": "{\n \"id\": \"06199-t\",\n \"type\": \"Skill\",\n \"class\": \"Rogue\",\n \"traits\": \"Fortune. Practiced.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 584413,
"SidewaysCard": false,
"CustomDeck": {
"5844": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1697277388086984548/E61F3E847797C2C9231829611E0D92BA6376FA67/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 4,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "833305",
"Name": "Card",
"Transform": {
"posX": 9.093355,
"posY": 3.68683624,
"posZ": -16.7140732,
"rotX": 359.970978,
"rotY": 269.874817,
"rotZ": 359.984833,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Elusive",
"Description": "",
"GMNotes": "{\n \"id\": \"01050\",\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"traits\": \"Tactic.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 368712,
"SidewaysCard": false,
"CustomDeck": {
"3687": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "5f9a10",
"Name": "Card",
"Transform": {
"posX": 9.093355,
"posY": 3.68683624,
"posZ": -16.7140732,
"rotX": 359.970978,
"rotY": 269.874817,
"rotZ": 359.984833,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Dream Diary (3)",
"Description": "Dreams of an Explorer",
"GMNotes": "{\n \"id\": \"06236\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Tome. Charm.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false,\n \"bonded\": [\n {\n \"id\": \"06113\",\n \"count\": 1\n }\n ]\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 447834,
"SidewaysCard": false,
"CustomDeck": {
"4478": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "69116c",
"Name": "Card",
"Transform": {
"posX": 9.094301,
"posY": 3.684796,
"posZ": -16.7142715,
"rotX": 359.930328,
"rotY": 269.872772,
"rotZ": 0.0106119607,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Ward of Radiance",
"Description": "",
"GMNotes": "{\n \"id\": \"07031\",\n \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"traits\": \"Insight. Blessed.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 583025,
"SidewaysCard": false,
"CustomDeck": {
"5830": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320664132663842/9B2F50595A754585A4DF12D6D48DC2561DC0E2C9/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "97986a",
"Name": "Card",
"Transform": {
"posX": 9.094301,
"posY": 3.684796,
"posZ": -16.7142715,
"rotX": 359.930328,
"rotY": 269.872772,
"rotZ": 0.0106119607,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Dynamite Blast",
"Description": "",
"GMNotes": "{\n \"id\": \"01024\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Tactic.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 226319,
"SidewaysCard": false,
"CustomDeck": {
"2263": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "4fb446",
"Name": "Card",
"Transform": {
"posX": 9.094301,
"posY": 3.684796,
"posZ": -16.7142715,
"rotX": 359.930328,
"rotY": 269.872772,
"rotZ": 0.0106119607,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Internal Injury",
"Description": "Basic Weakness",
"GMNotes": "{\n \"id\": \"02038\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Injury.\",\n \"permanent\": false,\n \"weakness\": true,\n \"basicWeaknessCount\": 2\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 431206,
"SidewaysCard": false,
"CustomDeck": {
"4312": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "5630c2",
"Name": "Card",
"Transform": {
"posX": 9.095246,
"posY": 3.73006725,
"posZ": -16.71447,
"rotX": 359.8897,
"rotY": 269.870728,
"rotZ": 0.036338266,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Sergeant Monroe",
"Description": "Two Days Until Retirement",
"GMNotes": "{\n \"id\": \"84008\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Police.\",\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 534902,
"SidewaysCard": false,
"CustomDeck": {
"5349": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493212055041441/90F035BD69A7C5C6B6F43426DDDA3A09DFCBCBDF/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "a2d392",
"Name": "Card",
"Transform": {
"posX": 9.09621,
"posY": 3.68355536,
"posZ": -16.7146721,
"rotX": 359.914063,
"rotY": 269.868683,
"rotZ": 0.0209112931,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Abyssal Tome (2)",
"Description": "",
"GMNotes": "{\n \"id\": \"07159\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Item. Tome.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 232107,
"SidewaysCard": false,
"CustomDeck": {
"2321": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1655600400212405700/559F1F3EF87BDF7F067F9B7011EDC3A6ACE71259/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 5,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "d946d9",
"Name": "Card",
"Transform": {
"posX": 9.09621,
"posY": 3.68355536,
"posZ": -16.7146721,
"rotX": 359.914063,
"rotY": 269.868683,
"rotZ": 0.0209112931,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Wither",
"Description": "",
"GMNotes": "{\n \"id\": \"05157\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 277511,
"SidewaysCard": false,
"CustomDeck": {
"2775": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025945336/04E36F64C2CBE1B4905FF44A869C75EC52CB3A56/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "389a34",
"Name": "Card",
"Transform": {
"posX": 9.097172,
"posY": 3.68387032,
"posZ": -16.7148743,
"rotX": 359.9384,
"rotY": 269.866638,
"rotZ": 0.00550059369,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Backpack (2)",
"Description": "",
"GMNotes": "{\n \"id\": \"53011\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 545210,
"SidewaysCard": false,
"CustomDeck": {
"5452": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1487830656537158415/2EBB208AA994ED70FD0FEB02D4E4FE78FE43EE02/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "223ba3",
"Name": "Card",
"Transform": {
"posX": 9.097172,
"posY": 3.68387032,
"posZ": -16.7148743,
"rotX": 359.9384,
"rotY": 269.866638,
"rotZ": 0.00550059369,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Twilight Blade",
"Description": "Sanctum's Reward",
"GMNotes": "{\n \"id\": \"05013\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Relic. Weapon.\",\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 449359,
"SidewaysCard": false,
"CustomDeck": {
"4493": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "2fba3b",
"Name": "Card",
"Transform": {
"posX": 9.097172,
"posY": 3.68387032,
"posZ": -16.7148743,
"rotX": 359.9384,
"rotY": 269.866638,
"rotZ": 0.00550059369,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Switchblade (2)",
"Description": "",
"GMNotes": "{\n \"id\": \"02152\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Item. Weapon. Melee. Illicit.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 315243,
"SidewaysCard": false,
"CustomDeck": {
"3152": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "f00301",
"Name": "Card",
"Transform": {
"posX": 9.098133,
"posY": 3.73129439,
"posZ": -16.7150764,
"rotX": 359.962677,
"rotY": 269.864563,
"rotZ": 359.9901,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Ineffable Truth (5)",
"Description": "",
"GMNotes": "{\n \"id\": \"60432\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\",\n \"level\": 5,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Charge\",\n \"count\": 3\n }\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 538730,
"SidewaysCard": false,
"CustomDeck": {
"5387": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297472038/B38A78EF27EBE0BDE1B36958D297701505AB936A/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "dc3b07",
"Name": "Card",
"Transform": {
"posX": 9.098133,
"posY": 3.73129439,
"posZ": -16.7150764,
"rotX": 359.962677,
"rotY": 269.864563,
"rotZ": 359.9901,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Lone Wolf",
"Description": "",
"GMNotes": "{\n \"id\": \"02188\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Talent.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 368619,
"SidewaysCard": false,
"CustomDeck": {
"3686": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "4156cf",
"Name": "Card",
"Transform": {
"posX": 9.09909248,
"posY": 3.72576165,
"posZ": -16.7152786,
"rotX": 359.986969,
"rotY": 269.862518,
"rotZ": 359.974731,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Search for the Truth",
"Description": "",
"GMNotes": "{\n \"id\": \"02008\",\n \"type\": \"Event\",\n \"class\": \"Neutral\",\n \"traits\": \"Insight.\",\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 371806,
"SidewaysCard": false,
"CustomDeck": {
"3718": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "5a51d1",
"Name": "Card",
"Transform": {
"posX": 9.09909248,
"posY": 3.72576165,
"posZ": -16.7152786,
"rotX": 359.986969,
"rotY": 269.862518,
"rotZ": 359.974731,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Sleight of Hand (Taboo)",
"Description": "",
"GMNotes": "{\n \"id\": \"03029-t\",\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"traits\": \"Trick.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 450618,
"SidewaysCard": false,
"CustomDeck": {
"4506": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1656721113609569419/60B1DFC7C68C406C34641A1F53078F46D610821C/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "2210c1",
"Name": "Card",
"Transform": {
"posX": 9.100051,
"posY": 3.71766448,
"posZ": -16.71548,
"rotX": 0.0111988876,
"rotY": 269.860474,
"rotZ": 359.959381,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Amnesia",
"Description": "Basic Weakness",
"GMNotes": "{\n \"id\": \"01096\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Madness.\",\n \"permanent\": false,\n \"weakness\": true,\n \"basicWeaknessCount\": 2\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 527400,
"SidewaysCard": false,
"CustomDeck": {
"5274": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "050ba1",
"Name": "Card",
"Transform": {
"posX": 9.100051,
"posY": 3.71766448,
"posZ": -16.71548,
"rotX": 0.0111988876,
"rotY": 269.860474,
"rotZ": 359.959381,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Live and Learn",
"Description": "",
"GMNotes": "{\n \"id\": \"04200\",\n \"alternate_ids\": [ \"60516\" ],\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Spirit.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 368807,
"SidewaysCard": false,
"CustomDeck": {
"3688": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "d6c44a",
"Name": "Card",
"Transform": {
"posX": 9.101008,
"posY": 3.707103,
"posZ": -16.715683,
"rotX": 0.0354111865,
"rotY": 269.8584,
"rotZ": 359.944031,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Disc of Itzamna",
"Description": "Protective Amulet",
"GMNotes": "{\n \"id\": \"60207\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Relic.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 538805,
"SidewaysCard": false,
"CustomDeck": {
"5388": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1546381162227145538/0F253FC5301911273C32210992261DD1D2EBB578/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "f4bac6",
"Name": "Card",
"Transform": {
"posX": 9.101008,
"posY": 3.707103,
"posZ": -16.715683,
"rotX": 0.0354111865,
"rotY": 269.8584,
"rotZ": 359.944031,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Detective's Colt 1911s",
"Description": "",
"GMNotes": "{\n \"id\": \"05009\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Weapon. Firearm.\",\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Ammo\",\n \"count\": 4\n }\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 592055,
"SidewaysCard": false,
"CustomDeck": {
"5920": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "644af9",
"Name": "Card",
"Transform": {
"posX": 9.101008,
"posY": 3.707103,
"posZ": -16.715683,
"rotX": 0.0354111865,
"rotY": 269.8584,
"rotZ": 359.944031,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Arcane Studies (2)",
"Description": "",
"GMNotes": "{\n \"id\": \"50007\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Talent.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 230340,
"SidewaysCard": false,
"CustomDeck": {
"2303": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "968a26",
"Name": "Card",
"Transform": {
"posX": 9.101965,
"posY": 3.74328518,
"posZ": -16.7158852,
"rotX": 0.05959603,
"rotY": 269.856323,
"rotZ": 359.92868,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Stargazing (1)",
"Description": "",
"GMNotes": "{\n \"id\": \"06027\",\n \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"traits\": \"Insight. Augury.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false,\n \"bonded\": [\n {\n \"id\": \"06028\",\n \"count\": 1\n }\n ]\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 444022,
"SidewaysCard": false,
"CustomDeck": {
"4440": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025945336/04E36F64C2CBE1B4905FF44A869C75EC52CB3A56/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "275dc3",
"Name": "Card",
"Transform": {
"posX": 9.101965,
"posY": 3.74328518,
"posZ": -16.7158852,
"rotX": 0.05959603,
"rotY": 269.856323,
"rotZ": 359.92868,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Bought in Blood",
"Description": "",
"GMNotes": "{\n \"id\": \"04007\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Flaw.\",\n \"permanent\": false,\n \"weakness\": true\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 377141,
"SidewaysCard": false,
"CustomDeck": {
"3771": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "66d5a3",
"Name": "Card",
"Transform": {
"posX": 9.102921,
"posY": 3.72631288,
"posZ": -16.7160854,
"rotX": 0.08375344,
"rotY": 269.854248,
"rotZ": 359.9134,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Archaic Glyphs (3)",
"Description": "Markings of Isis",
"GMNotes": "{\n \"id\": \"52004\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Spell.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 441024,
"SidewaysCard": false,
"CustomDeck": {
"4410": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "80acd2",
"Name": "Card",
"Transform": {
"posX": 9.103875,
"posY": 3.70619035,
"posZ": -16.7162857,
"rotX": 0.107883453,
"rotY": 269.852173,
"rotZ": 359.898071,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Forbidden Knowledge",
"Description": "",
"GMNotes": "{\n \"id\": \"01058\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Talent.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Secret\",\n \"count\": 4\n }\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 230316,
"SidewaysCard": false,
"CustomDeck": {
"2303": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "e99f0d",
"Name": "Card",
"Transform": {
"posX": 9.103875,
"posY": 3.70619035,
"posZ": -16.7162857,
"rotX": 0.107883453,
"rotY": 269.852173,
"rotZ": 359.898071,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Stirring Up Trouble (1)",
"Description": "",
"GMNotes": "{\n \"id\": \"07112\",\n \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"traits\": \"Insight. Cursed.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 553104,
"SidewaysCard": false,
"CustomDeck": {
"5531": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1684870715280867313/BFD2AF968EAC917D3B838DCB8B1656941CD8B5CC/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "c2d211",
"Name": "Card",
"Transform": {
"posX": 9.10484,
"posY": 3.68828,
"posZ": -16.7164879,
"rotX": 359.9035,
"rotY": 269.8501,
"rotZ": 0.0271747485,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Swift Reflexes",
"Description": "",
"GMNotes": "{\n \"id\": \"05156\",\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"traits\": \"Gambit.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 277711,
"SidewaysCard": false,
"CustomDeck": {
"2777": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025944587/520448D0E9C22F102C7DDF64322EAD6FC221ECC8/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "76978f",
"Name": "Card",
"Transform": {
"posX": 9.105883,
"posY": 3.67518687,
"posZ": -16.7167072,
"rotX": 359.91684,
"rotY": 269.847931,
"rotZ": 0.0191023089,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Trial by Fire (3)",
"Description": "",
"GMNotes": "{\n \"id\": \"54010\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Spirit.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 449530,
"SidewaysCard": false,
"CustomDeck": {
"4495": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1697276706766470010/D835D3A12B12173C78B2FFA055FEFD6042AEDD38/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 6,
"NumHeight": 6,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "df0e22",
"Name": "Card",
"Transform": {
"posX": 9.105883,
"posY": 3.67518687,
"posZ": -16.7167072,
"rotX": 359.91684,
"rotY": 269.847931,
"rotZ": 0.0191023089,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Otherworld Codex (2)",
"Description": "",
"GMNotes": "{\n \"id\": \"06158\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Tome.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Secret\",\n \"count\": 3\n }\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 379930,
"SidewaysCard": false,
"CustomDeck": {
"3799": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "cfb393",
"Name": "Card",
"Transform": {
"posX": 9.105883,
"posY": 3.67518687,
"posZ": -16.7167072,
"rotX": 359.91684,
"rotY": 269.847931,
"rotZ": 0.0191023089,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "John & Jessie Burke",
"Description": "Ally. Government.",
"GMNotes": "{\n \"id\": \"83055\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Government.\",\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 454740,
"SidewaysCard": false,
"CustomDeck": {
"4547": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1747933191218921670/8EF5B59C1AC4559A3947140F08010D8B014A11E9/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1747933191218923075/6DE3A0F2FBB17DAA8374540DBE43CE6BD65EB541/",
"NumWidth": 10,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "e6efe6",
"Name": "Card",
"Transform": {
"posX": 9.106924,
"posY": 3.75878477,
"posZ": -16.7169266,
"rotX": 359.930145,
"rotY": 269.8457,
"rotZ": 0.01103833,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Bury Them Deep",
"Description": "",
"GMNotes": "{\n \"id\": \"03016\",\n \"type\": \"Event\",\n \"class\": \"Neutral\",\n \"traits\": \"Task.\",\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 431818,
"SidewaysCard": false,
"CustomDeck": {
"4318": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "f5d382",
"Name": "Card",
"Transform": {
"posX": 9.106924,
"posY": 3.75878477,
"posZ": -16.7169266,
"rotX": 359.930145,
"rotY": 269.8457,
"rotZ": 0.01103833,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Clairvoyance (3)",
"Description": "",
"GMNotes": "{\n \"id\": \"60426\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Charge\",\n \"count\": 3\n }\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 538724,
"SidewaysCard": false,
"CustomDeck": {
"5387": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297472038/B38A78EF27EBE0BDE1B36958D297701505AB936A/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "8aa0c3",
"Name": "Card",
"Transform": {
"posX": 9.10796452,
"posY": 3.789176,
"posZ": -16.7171459,
"rotX": 359.94342,
"rotY": 269.843536,
"rotZ": 0.00298282132,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Deny Existence",
"Description": "",
"GMNotes": "{\n \"id\": \"05032\",\n \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell. Paradox.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 430908,
"SidewaysCard": false,
"CustomDeck": {
"4309": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025945336/04E36F64C2CBE1B4905FF44A869C75EC52CB3A56/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "4f903e",
"Name": "Card",
"Transform": {
"posX": 9.10796452,
"posY": 3.789176,
"posZ": -16.7171459,
"rotX": 359.94342,
"rotY": 269.843536,
"rotZ": 0.00298282132,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Lost Soul",
"Description": "Madness. Pact.",
"GMNotes": "{\n \"id\": \"03227\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Madness. Pact.\",\n \"permanent\": false,\n \"weakness\": true\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 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": 232348,
"SidewaysCard": false,
"CustomDeck": {
"2323": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "090fcf",
"Name": "Card",
"Transform": {
"posX": 9.109004,
"posY": 3.81655741,
"posZ": -16.7173653,
"rotX": 359.956665,
"rotY": 269.84137,
"rotZ": -0.0050642537,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Glimpse the Unthinkable (5)",
"Description": "",
"GMNotes": "{\n \"id\": \"05318\",\n \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"traits\": \"Insight.\",\n \"level\": 5,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 591922,
"SidewaysCard": false,
"CustomDeck": {
"5919": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "cc1ef3",
"Name": "Card",
"Transform": {
"posX": 9.110042,
"posY": 3.840853,
"posZ": -16.7175846,
"rotX": 359.969971,
"rotY": 269.839142,
"rotZ": 359.9869,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Book of Psalms",
"Description": "",
"GMNotes": "{\n \"id\": \"07017\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Item. Tome. Blessed.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Secret\",\n \"count\": 4\n }\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 588011,
"SidewaysCard": false,
"CustomDeck": {
"5880": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320664132663842/9B2F50595A754585A4DF12D6D48DC2561DC0E2C9/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "946a58",
"Name": "Card",
"Transform": {
"posX": 9.110042,
"posY": 3.840853,
"posZ": -16.7175846,
"rotX": 359.969971,
"rotY": 269.839142,
"rotZ": 359.9869,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Decorated Skull (3)",
"Description": "Doom Begets Doom",
"GMNotes": "{\n \"id\": \"53005\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Item. Relic. Cursed.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 545204,
"SidewaysCard": false,
"CustomDeck": {
"5452": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1487830656537158415/2EBB208AA994ED70FD0FEB02D4E4FE78FE43EE02/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "063fd8",
"Name": "Card",
"Transform": {
"posX": 9.110042,
"posY": 3.840853,
"posZ": -16.7175846,
"rotX": 359.969971,
"rotY": 269.839142,
"rotZ": 359.9869,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Old Book of Lore",
"Description": "",
"GMNotes": "{\n \"id\": \"01031\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Tome.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 368431,
"SidewaysCard": false,
"CustomDeck": {
"3684": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "d753d7",
"Name": "Card",
"Transform": {
"posX": 9.111078,
"posY": 3.91185355,
"posZ": -16.717802,
"rotX": 359.983215,
"rotY": 269.836975,
"rotZ": 359.978882,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Momentum (1)",
"Description": "",
"GMNotes": "{\n \"id\": \"06115\",\n \"type\": \"Skill\",\n \"class\": \"Rogue\",\n \"traits\": \"Practiced.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 380026,
"SidewaysCard": false,
"CustomDeck": {
"3800": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025944587/520448D0E9C22F102C7DDF64322EAD6FC221ECC8/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "be33f5",
"Name": "Card",
"Transform": {
"posX": 9.112114,
"posY": 3.929662,
"posZ": -16.71802,
"rotX": -0.00355284731,
"rotY": 269.834778,
"rotZ": 359.970856,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Tennessee Sour Mash",
"Description": "",
"GMNotes": "{\n \"id\": \"05117\",\n \"type\": \"Asset\",\n \"class\": \"Rogue|Survivor\",\n \"traits\": \"Item. Illicit.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Supply\",\n \"count\": 2\n }\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 277605,
"SidewaysCard": false,
"CustomDeck": {
"2776": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025942034/FEADE7F6206804B42CC9B6049F51EDF6040C5D1D/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "438cca",
"Name": "Card",
"Transform": {
"posX": 9.112114,
"posY": 3.929662,
"posZ": -16.71802,
"rotX": -0.00355285057,
"rotY": 269.834778,
"rotZ": 359.970856,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Drawing the Sign",
"Description": "Basic Weakness",
"GMNotes": "{\n \"id\": \"03041\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Pact. Madness.\",\n \"permanent\": false,\n \"weakness\": true,\n \"basicWeaknessCount\": 1\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 580603,
"SidewaysCard": false,
"CustomDeck": {
"5806": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1697276627309509299/3B0E32939EB4599CCE3596975637C90FE4EE1DD6/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "0e0530",
"Name": "Card",
"Transform": {
"posX": 9.113149,
"posY": 3.94479752,
"posZ": -16.7182369,
"rotX": 0.009662581,
"rotY": 269.832581,
"rotZ": 359.96283,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Double, Double (4)",
"Description": "",
"GMNotes": "{\n \"id\": \"05320\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Ritual.\",\n \"level\": 4,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 378019,
"SidewaysCard": false,
"CustomDeck": {
"3780": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025944587/520448D0E9C22F102C7DDF64322EAD6FC221ECC8/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "7001be",
"Name": "Card",
"Transform": {
"posX": 9.113149,
"posY": 3.94479752,
"posZ": -16.7182369,
"rotX": 0.009662581,
"rotY": 269.832581,
"rotZ": 359.96283,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Beat Cop (2)",
"Description": "",
"GMNotes": "{\n \"id\": \"01028\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Ally. Police.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 226348,
"SidewaysCard": false,
"CustomDeck": {
"2263": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "bd65dc",
"Name": "Card",
"Transform": {
"posX": 9.113149,
"posY": 3.94479752,
"posZ": -16.7182369,
"rotX": 0.009662581,
"rotY": 269.832581,
"rotZ": 359.96283,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Yaztaroth",
"Description": "Weakness",
"GMNotes": "{\n \"id\": \"98018\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Curse. Pact.\",\n \"permanent\": false,\n \"weakness\": true\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 590201,
"SidewaysCard": false,
"CustomDeck": {
"5902": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1697277388086984548/E61F3E847797C2C9231829611E0D92BA6376FA67/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 4,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "2561b9",
"Name": "Card",
"Transform": {
"posX": 9.114182,
"posY": 4.006838,
"posZ": -16.7184544,
"rotX": 0.0228630137,
"rotY": 269.830383,
"rotZ": 359.954834,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "In the Shadows",
"Description": "",
"GMNotes": "{\n \"id\": \"07010\",\n \"type\": \"Event\",\n \"class\": \"Neutral\",\n \"traits\": \"Tactic.\",\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 582904,
"SidewaysCard": false,
"CustomDeck": {
"5829": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320664132663842/9B2F50595A754585A4DF12D6D48DC2561DC0E2C9/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "fab3a9",
"Name": "Card",
"Transform": {
"posX": 9.115214,
"posY": 4.01569557,
"posZ": -16.7186718,
"rotX": 0.0360484868,
"rotY": 269.8282,
"rotZ": 359.946838,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Library Docent (1)",
"Description": "",
"GMNotes": "{\n \"id\": \"60220\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Ally. Miskatonic.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 538818,
"SidewaysCard": false,
"CustomDeck": {
"5388": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1546381162227145538/0F253FC5301911273C32210992261DD1D2EBB578/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "9f0b34",
"Name": "Card",
"Transform": {
"posX": 9.115214,
"posY": 4.01569557,
"posZ": -16.7186718,
"rotX": 0.0360484868,
"rotY": 269.8282,
"rotZ": 359.946838,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Pay Day (1)",
"Description": "",
"GMNotes": "{\n \"id\": \"04233\",\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"traits\": \"Illicit. Fated.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 315262,
"SidewaysCard": false,
"CustomDeck": {
"3152": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "857238",
"Name": "Card",
"Transform": {
"posX": 9.116245,
"posY": 4.07127571,
"posZ": -16.71889,
"rotX": 0.0492190123,
"rotY": 269.826019,
"rotZ": 359.938843,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Hatchet Man",
"Description": "",
"GMNotes": "{\n \"id\": \"04155\",\n \"type\": \"Skill\",\n \"class\": \"Rogue\",\n \"traits\": \"Practiced.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 261704,
"SidewaysCard": false,
"CustomDeck": {
"2617": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "249d83",
"Name": "Card",
"Transform": {
"posX": 9.116245,
"posY": 4.07127571,
"posZ": -16.71889,
"rotX": 0.0492190123,
"rotY": 269.826019,
"rotZ": 359.938843,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Haunted",
"Description": "Basic Weakness",
"GMNotes": "{\n \"id\": \"01098\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Curse.\",\n \"permanent\": false,\n \"weakness\": true,\n \"basicWeaknessCount\": 1\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 527402,
"SidewaysCard": false,
"CustomDeck": {
"5274": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "db4a43",
"Name": "Card",
"Transform": {
"posX": 9.117275,
"posY": 4.0736804,
"posZ": -16.7191067,
"rotX": 0.06237457,
"rotY": 269.823822,
"rotZ": 359.930847,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Boxing Gloves",
"Description": "",
"GMNotes": "{\n \"id\": \"60105\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Item. Weapon.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 545303,
"SidewaysCard": false,
"CustomDeck": {
"5453": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1546380927206250326/18BF6D2B2BBFDDBE5B021A46C310E4F45493EC26/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "a1fd61",
"Name": "Card",
"Transform": {
"posX": 9.117275,
"posY": 4.0736804,
"posZ": -16.7191067,
"rotX": 0.06237457,
"rotY": 269.823822,
"rotZ": 359.930847,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Ambush (1)",
"Description": "",
"GMNotes": "{\n \"id\": \"03148\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Tactic.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 226338,
"SidewaysCard": false,
"CustomDeck": {
"2263": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "0b963c",
"Name": "Card",
"Transform": {
"posX": 9.118304,
"posY": 4.072913,
"posZ": -16.7193241,
"rotX": 0.07551522,
"rotY": 269.821655,
"rotZ": 359.922882,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Cheap Shot (2)",
"Description": "",
"GMNotes": "{\n \"id\": \"60323\",\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"traits\": \"Trick.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 538621,
"SidewaysCard": false,
"CustomDeck": {
"5386": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456298037683/22C99DD745DFF65ECC72FD32EFA9C9D0F0C12862/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "1e6a06",
"Name": "Card",
"Transform": {
"posX": 9.118304,
"posY": 4.072913,
"posZ": -16.7193241,
"rotX": 0.07551522,
"rotY": 269.821655,
"rotZ": 359.922882,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Favor of the Sun (1)",
"Description": "",
"GMNotes": "{\n \"id\": \"07272\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Pact. Blessed.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 449611,
"SidewaysCard": false,
"CustomDeck": {
"4496": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1747933191220177818/637923621F747375066D4DA39BEA3BA9C26086A5/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 7,
"NumHeight": 3,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "function onload()\r\n mode = \"Bless\"\r\n chaosbag = getChaosBag()\r\n manager = getObjectFromGUID(\"5933fb\")\r\n sealedTokens = { }\r\n IMAGE_TOKEN_MAP = { }\r\n for i,v in pairs(Global.getVar(\"IMAGE_TOKEN_MAP\")) do\r\n IMAGE_TOKEN_MAP[i] = v\r\n end\r\n\r\n -- add menu items\r\n self.clearContextMenu()\r\n self.addContextMenuItem(\"Release Token\", releaseTokens, true)\r\n for url,name in pairs(IMAGE_TOKEN_MAP) do\r\n if name == mode then\r\n self.addContextMenuItem(\"Seal \" .. mode, function(playerColor) sealToken(url, playerColor) end, true)\r\n end\r\n end\r\nend\r\n\r\nfunction sealToken(url, playerColor)\r\n local pos = self.getPosition()\r\n\r\n local name = IMAGE_TOKEN_MAP[url]\r\n for i,obj in ipairs(chaosbag.getObjects()) do\r\n if obj.name == name then\r\n chaosbag.takeObject({\r\n position={ pos.x, pos.y + 1, pos.z },\r\n index=i-1,\r\n smooth=false,\r\n callback_function=_sealToken\r\n })\r\n return\r\n end\r\n end\r\n printToColor(name .. \" token not found in bag\", playerColor)\r\nend\r\n\r\nfunction _sealToken(obj)\r\n table.insert(sealedTokens, obj)\r\n local guid = obj.getGUID()\r\n local tokensTaken = manager.getVar(\"tokensTaken\")\r\n table.insert(tokensTaken[mode], guid)\r\n manager.setVar(\"tokensTaken\", tokensTaken)\r\n manager.setVar(\"mode\", mode)\r\n printToAll(\"Sealing \" .. mode .. \" token \" .. manager.call(\"getTokenCount\"))\r\nend\r\n\r\nfunction releaseTokens(playerColor)\r\n if #sealedTokens == 0 then return end\r\n local token = sealedTokens[#sealedTokens]\r\n if token ~= nil then\r\n local guid = token.getGUID()\r\n chaosbag.putObject(token)\r\n local tokensTaken = manager.getVar(\"tokensTaken\")\r\n for i,v in ipairs(tokensTaken[mode]) do\r\n if v == guid then\r\n table.remove(tokensTaken[mode], i)\r\n break\r\n end\r\n end\r\n manager.setVar(\"tokensTaken\", tokensTaken)\r\n manager.setVar(\"mode\", mode)\r\n printToAll(\"Releasing \" .. mode .. \" token\" .. manager.call(\"getTokenCount\"))\r\n end\r\n\r\n table.remove(sealedTokens)\r\nend\r\n\r\nfunction getChaosBag()\r\n local items = getObjectFromGUID(\"83ef06\").getObjects()\r\n local chaosbag = nil\r\n for i,v in ipairs(items) do\r\n if v.getDescription() == \"Chaos Bag\" then\r\n chaosbag = getObjectFromGUID(v.getGUID())\r\n break\r\n end\r\n end\r\n if chaosbag == nil then printToAll(\"No chaos bag found\") end\r\n return chaosbag\r\nend\r\n",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "16e57b",
"Name": "Card",
"Transform": {
"posX": 9.119332,
"posY": 4.06897736,
"posZ": -16.71954,
"rotX": 0.08864097,
"rotY": 269.819458,
"rotZ": 359.914917,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "The Black Cat (5)",
"Description": "A Liar, or a Prophet, or Both",
"GMNotes": "{\n \"id\": \"06285\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Avatar. Dreamlands.\",\n \"level\": 5,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 448613,
"SidewaysCard": false,
"CustomDeck": {
"4486": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025942034/FEADE7F6206804B42CC9B6049F51EDF6040C5D1D/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "ff1dfe",
"Name": "Card",
"Transform": {
"posX": 9.120358,
"posY": 4.011976,
"posZ": -16.7197552,
"rotX": 0.101751834,
"rotY": 269.817261,
"rotZ": 359.906982,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "All In (5) (Taboo)",
"Description": "",
"GMNotes": "{\n \"id\": \"04309-t\",\n \"type\": \"Skill\",\n \"class\": \"Rogue\",\n \"traits\": \"Fortune.\",\n \"level\": 5,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 450620,
"SidewaysCard": false,
"CustomDeck": {
"4506": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1656721113609569419/60B1DFC7C68C406C34641A1F53078F46D610821C/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "e66002",
"Name": "Card",
"Transform": {
"posX": 9.121384,
"posY": 3.951911,
"posZ": -16.71997,
"rotX": 0.114847831,
"rotY": 269.815063,
"rotZ": 359.899017,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Lantern",
"Description": "",
"GMNotes": "{\n \"id\": \"03036\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Item. Tool.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 368827,
"SidewaysCard": false,
"CustomDeck": {
"3688": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "7667ef",
"Name": "Card",
"Transform": {
"posX": 9.121384,
"posY": 3.951911,
"posZ": -16.71997,
"rotX": 0.114847831,
"rotY": 269.815063,
"rotZ": 359.899017,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Relic of Ages",
"Description": "Forestalling the Future",
"GMNotes": "{\n \"id\": \"04191\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Relic.\",\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 235667,
"SidewaysCard": false,
"CustomDeck": {
"2356": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1467561769777497046/3003A76996378249E6AAA4A60D85AE7EE59C1B8B/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "ea0007",
"Name": "Card",
"Transform": {
"posX": 9.122408,
"posY": 3.93868828,
"posZ": -16.7201862,
"rotX": 0.127928942,
"rotY": 269.812866,
"rotZ": 359.891083,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Patrice's Violin",
"Description": "My Muse",
"GMNotes": "{\n \"id\": \"06016\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Instrument.\",\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 586210,
"SidewaysCard": false,
"CustomDeck": {
"5862": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1011562618093846571/13C76218853EE87123267F8F6BE99206DB40470B/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "334f03",
"Name": "Card",
"Transform": {
"posX": 9.122408,
"posY": 3.93868828,
"posZ": -16.7201862,
"rotX": 0.127928942,
"rotY": 269.812866,
"rotZ": 359.891083,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Resourceful",
"Description": "",
"GMNotes": "{\n \"id\": \"03039\",\n \"type\": \"Skill\",\n \"class\": \"Survivor\",\n \"traits\": \"Innate.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 368802,
"SidewaysCard": false,
"CustomDeck": {
"3688": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "c6c260",
"Name": "Card",
"Transform": {
"posX": 9.123431,
"posY": 3.92231083,
"posZ": -16.7204018,
"rotX": 0.140995249,
"rotY": 269.8107,
"rotZ": 359.883118,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Cornered (2)",
"Description": "",
"GMNotes": "{\n \"id\": \"04160\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Talent.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 368851,
"SidewaysCard": false,
"CustomDeck": {
"3688": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "8e57b8",
"Name": "Card",
"Transform": {
"posX": 9.123431,
"posY": 3.92231083,
"posZ": -16.7204018,
"rotX": 0.140995249,
"rotY": 269.8107,
"rotZ": 359.883118,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Clarity of Mind",
"Description": "",
"GMNotes": "{\n \"id\": \"02030\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Charge\",\n \"count\": 3\n }\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 230322,
"SidewaysCard": false,
"CustomDeck": {
"2303": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "d45f10",
"Name": "Card",
"Transform": {
"posX": 9.123431,
"posY": 3.92231083,
"posZ": -16.7204018,
"rotX": 0.140995249,
"rotY": 269.8107,
"rotZ": 359.883118,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "The Necronomicon",
"Description": "Olaus Wormius Translation",
"GMNotes": "{\n \"id\": \"02140\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Tome.\",\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 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": 232934,
"SidewaysCard": false,
"CustomDeck": {
"2329": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "603e29",
"Name": "Card",
"Transform": {
"posX": 9.124454,
"posY": 3.95268369,
"posZ": -16.7206173,
"rotX": 0.154046729,
"rotY": 269.808533,
"rotZ": 359.875244,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Smoking Pipe",
"Description": "",
"GMNotes": "{\n \"id\": \"02116\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Supply\",\n \"count\": 3\n }\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 368514,
"SidewaysCard": false,
"CustomDeck": {
"3685": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "f2877e",
"Name": "Card",
"Transform": {
"posX": 9.125474,
"posY": 3.880008,
"posZ": -16.7208328,
"rotX": 0.167083412,
"rotY": 269.806335,
"rotZ": 359.8673,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Sacrifice (1)",
"Description": "",
"GMNotes": "{\n \"id\": \"04234\",\n \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"traits\": \"Ritual.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 230362,
"SidewaysCard": false,
"CustomDeck": {
"2303": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "170127",
"Name": "Card",
"Transform": {
"posX": 9.125474,
"posY": 3.880008,
"posZ": -16.7208328,
"rotX": 0.167083412,
"rotY": 269.806335,
"rotZ": 359.8673,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Well Connected (3)",
"Description": "",
"GMNotes": "{\n \"id\": \"54006\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Condition.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 449526,
"SidewaysCard": false,
"CustomDeck": {
"4495": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1697276706766470010/D835D3A12B12173C78B2FFA055FEFD6042AEDD38/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 6,
"NumHeight": 6,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "125f13",
"Name": "Card",
"Transform": {
"posX": 9.125474,
"posY": 3.880008,
"posZ": -16.7208328,
"rotX": 0.167083412,
"rotY": 269.806335,
"rotZ": 359.8673,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "A Watchful Peace (3) (Taboo)",
"Description": "",
"GMNotes": "{\n \"id\": \"07269-t\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Spirit. Blessed.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 585500,
"SidewaysCard": false,
"CustomDeck": {
"5855": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1697277388086984548/E61F3E847797C2C9231829611E0D92BA6376FA67/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 4,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "e5d5f0",
"Name": "Card",
"Transform": {
"posX": 9.126493,
"posY": 3.90408921,
"posZ": -16.7210484,
"rotX": 0.180105254,
"rotY": 269.804138,
"rotZ": 359.859375,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Ace in the Hole (3) (Taboo)",
"Description": "",
"GMNotes": "{\n \"id\": \"02266-t\",\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"traits\": \"Trick.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 450617,
"SidewaysCard": false,
"CustomDeck": {
"4506": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1656721113609569419/60B1DFC7C68C406C34641A1F53078F46D610821C/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "1ad931",
"Name": "Card",
"Transform": {
"posX": 9.126493,
"posY": 3.90408921,
"posZ": -16.7210484,
"rotX": 0.180105254,
"rotY": 269.804138,
"rotZ": 359.859375,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Hand of Fate",
"Description": "",
"GMNotes": "{\n \"id\": \"07020\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Spell. Blessed.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 588314,
"SidewaysCard": false,
"CustomDeck": {
"5883": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320664132663842/9B2F50595A754585A4DF12D6D48DC2561DC0E2C9/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "47bdba",
"Name": "Card",
"Transform": {
"posX": 9.127512,
"posY": 3.87503028,
"posZ": -16.721262,
"rotX": 0.193112358,
"rotY": 269.801971,
"rotZ": 359.851532,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Parallel Fates",
"Description": "",
"GMNotes": "{\n \"id\": \"60415\",\n \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"traits\": \"Augury.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 538713,
"SidewaysCard": false,
"CustomDeck": {
"5387": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297472038/B38A78EF27EBE0BDE1B36958D297701505AB936A/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "9d7d4a",
"Name": "Card",
"Transform": {
"posX": 9.127512,
"posY": 3.87503028,
"posZ": -16.721262,
"rotX": 0.193112358,
"rotY": 269.801971,
"rotZ": 359.851532,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Ikiaq (3)",
"Description": "The Council's Chosen",
"GMNotes": "{\n \"id\": \"07267\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Ally. Sorcerer.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 449606,
"SidewaysCard": false,
"CustomDeck": {
"4496": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1747933191220177818/637923621F747375066D4DA39BEA3BA9C26086A5/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 7,
"NumHeight": 3,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "e27c93",
"Name": "Card",
"Transform": {
"posX": 9.12853,
"posY": 3.84283423,
"posZ": -16.7214756,
"rotX": 0.206104755,
"rotY": 269.7998,
"rotZ": 359.843628,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Offer You Cannot Refuse",
"Description": "Basic Weakness",
"GMNotes": "{\n \"id\": \"53013\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Pact.\",\n \"permanent\": false,\n \"weakness\": true,\n \"basicWeaknessCount\": 1\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 545212,
"SidewaysCard": false,
"CustomDeck": {
"5452": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1487830656537158415/2EBB208AA994ED70FD0FEB02D4E4FE78FE43EE02/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "84b918",
"Name": "Card",
"Transform": {
"posX": 9.12853,
"posY": 3.84283423,
"posZ": -16.7214756,
"rotX": 0.206104755,
"rotY": 269.7998,
"rotZ": 359.843628,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Enchanted Blade (3)",
"Description": "Guardian",
"GMNotes": "{\n \"id\": \"05192\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Item. Relic. Weapon. Melee.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Charge\",\n \"count\": 3\n }\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 292815,
"SidewaysCard": false,
"CustomDeck": {
"2928": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025943109/9C5481E6DFEACD450C5522F884E615482281DDB1/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "3fe6de",
"Name": "Card",
"Transform": {
"posX": 9.131704,
"posY": 3.65937924,
"posZ": -16.7225761,
"rotX": 359.920135,
"rotY": 269.795776,
"rotZ": 0.0171972513,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Gravedigger's Shovel",
"Description": "",
"GMNotes": "{\n \"id\": \"03037\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Item. Tool. Weapon. Melee.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 368829,
"SidewaysCard": false,
"CustomDeck": {
"3688": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "dd3d09",
"Name": "Card",
"Transform": {
"posX": 9.131704,
"posY": 3.66270638,
"posZ": -16.7225761,
"rotX": 359.920166,
"rotY": 269.795776,
"rotZ": 0.0170837417,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Dark Pact",
"Description": "Basic Weakness",
"GMNotes": "{\n \"id\": \"04038\",\n \"type\": \"Event\",\n \"class\": \"Neutral\",\n \"traits\": \"Pact.\",\n \"permanent\": false,\n \"weakness\": true,\n \"basicWeaknessCount\": 1\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 440813,
"SidewaysCard": false,
"CustomDeck": {
"4408": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "a20887",
"Name": "Card",
"Transform": {
"posX": 9.131704,
"posY": 3.694062,
"posZ": -16.7225761,
"rotX": 359.920166,
"rotY": 269.795776,
"rotZ": 0.01706111,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Grisly Totem",
"Description": "",
"GMNotes": "{\n \"id\": \"05119\",\n \"type\": \"Asset\",\n \"class\": \"Survivor|Seeker\",\n \"traits\": \"Item. Charm.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 277606,
"SidewaysCard": false,
"CustomDeck": {
"2776": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025942034/FEADE7F6206804B42CC9B6049F51EDF6040C5D1D/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "dd130e",
"Name": "Card",
"Transform": {
"posX": 9.131704,
"posY": 3.72225666,
"posZ": -16.7225761,
"rotX": 359.920166,
"rotY": 269.795776,
"rotZ": 0.01703851,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Hiding Spot",
"Description": "",
"GMNotes": "{\n \"id\": \"03038\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Tactic. Trick.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 368808,
"SidewaysCard": false,
"CustomDeck": {
"3688": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "2fc31c",
"Name": "Card",
"Transform": {
"posX": 9.131704,
"posY": 3.72225666,
"posZ": -16.7225761,
"rotX": 359.920166,
"rotY": 269.795776,
"rotZ": 0.01703851,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Mi-Go Weapon",
"Description": "",
"GMNotes": "{\n \"id\": \"85031\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Weapon. Science.\",\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 233606,
"SidewaysCard": false,
"CustomDeck": {
"2336": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/784129708171655462/0B7EFEEA9A53B93350FEC7F68F39A20D1D6580A9/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "6abfbc",
"Name": "Card",
"Transform": {
"posX": 9.131704,
"posY": 3.79719543,
"posZ": -16.7225761,
"rotX": 359.9202,
"rotY": 269.795776,
"rotZ": 0.017015934,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Erynn MacAoidh",
"Description": "Devoted Enchantress",
"GMNotes": "{\n \"id\": \"54041\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Witch.\",\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 449503,
"SidewaysCard": false,
"CustomDeck": {
"4495": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1697276706766470010/D835D3A12B12173C78B2FFA055FEFD6042AEDD38/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 6,
"NumHeight": 6,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "f6aba5",
"Name": "Card",
"Transform": {
"posX": 9.131704,
"posY": 3.79719543,
"posZ": -16.7225761,
"rotX": 359.9202,
"rotY": 269.795776,
"rotZ": 0.017015934,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Unspeakable Oath (Curiosity)",
"Description": "Basic Weakness",
"GMNotes": "{\n \"id\": \"52012\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Madness. Pact.\",\n \"permanent\": false,\n \"weakness\": true,\n \"basicWeaknessCount\": 1\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 438123,
"SidewaysCard": false,
"CustomDeck": {
"4381": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "fc4ce8",
"Name": "Card",
"Transform": {
"posX": 9.131704,
"posY": 3.8688817,
"posZ": -16.7225761,
"rotX": 359.9202,
"rotY": 269.795776,
"rotZ": 0.0169933755,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "The Chthonian Stone",
"Description": "Stygian Waymark",
"GMNotes": "{\n \"id\": \"04030\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Item. Relic. Cursed.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 230327,
"SidewaysCard": false,
"CustomDeck": {
"2303": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "VALID_TOKENS = {\n Skull=true,\n Cultist=true,\n Tablet=true,\n [\"Elder Thing\"]=true\n}\n\nfunction 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 VALID_TOKENS[name] ~= nil then\n self.addContextMenuItem(\"Seal \" .. name, 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": "ff4aea",
"Name": "Card",
"Transform": {
"posX": 9.131704,
"posY": 3.88741779,
"posZ": -16.7225761,
"rotX": 359.9202,
"rotY": 269.795776,
"rotZ": 0.0169708543,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Scavenging (2)",
"Description": "",
"GMNotes": "{\n \"id\": \"06332\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Talent.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 448737,
"SidewaysCard": false,
"CustomDeck": {
"4487": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025946328/561232524C8EAA4B4371B28652F78969E6ED6FFB/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "cc11e4",
"Name": "Card",
"Transform": {
"posX": 9.131704,
"posY": 3.902807,
"posZ": -16.7225761,
"rotX": 359.9202,
"rotY": 269.795776,
"rotZ": 0.0169483516,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Lockpicks",
"Description": "",
"GMNotes": "{\n \"id\": \"60305\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Item. Tool. Illicit.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 538603,
"SidewaysCard": false,
"CustomDeck": {
"5386": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456298037683/22C99DD745DFF65ECC72FD32EFA9C9D0F0C12862/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "31cfbf",
"Name": "Card",
"Transform": {
"posX": 9.131704,
"posY": 3.902807,
"posZ": -16.7225761,
"rotX": 359.9202,
"rotY": 269.795776,
"rotZ": 0.0169483516,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Breaking and Entering",
"Description": "",
"GMNotes": "{\n \"id\": \"07114\",\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"traits\": \"Trick.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 553106,
"SidewaysCard": false,
"CustomDeck": {
"5531": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1684870715280867313/BFD2AF968EAC917D3B838DCB8B1656941CD8B5CC/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "73bccf",
"Name": "Card",
"Transform": {
"posX": 9.131704,
"posY": 3.902807,
"posZ": -16.7225761,
"rotX": 359.9202,
"rotY": 269.795776,
"rotZ": 0.0169483516,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Penny White",
"Description": "The Nightmare is Over",
"GMNotes": "{\n \"id\": \"05260\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Assistant.\",\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 312513,
"SidewaysCard": false,
"CustomDeck": {
"3125": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "074858",
"Name": "Card",
"Transform": {
"posX": 9.131704,
"posY": 4.014856,
"posZ": -16.7225761,
"rotX": 359.9202,
"rotY": 269.795776,
"rotZ": 0.0169258751,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Ace in the Hole (3)",
"Description": "",
"GMNotes": "{\n \"id\": \"02266\",\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"traits\": \"Trick.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 315252,
"SidewaysCard": false,
"CustomDeck": {
"3152": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "c8bb2a",
"Name": "Card",
"Transform": {
"posX": 9.131704,
"posY": 4.014856,
"posZ": -16.7225761,
"rotX": 359.9202,
"rotY": 269.795776,
"rotZ": 0.0169258751,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Lucky Dice (3)",
"Description": "... Or Are They?",
"GMNotes": "{\n \"id\": \"07307\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Item. Relic.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 589606,
"SidewaysCard": false,
"CustomDeck": {
"5896": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1807607979163972370/50A45AE585D6404E677DFCA597A0F5FE13346B97/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 5,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "48e516",
"Name": "Card",
"Transform": {
"posX": 9.131704,
"posY": 4.07366657,
"posZ": -16.7225761,
"rotX": 359.9202,
"rotY": 269.795776,
"rotZ": 0.0169034135,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "A Test of Will",
"Description": "",
"GMNotes": "{\n \"id\": \"60513\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Spirit.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 550811,
"SidewaysCard": false,
"CustomDeck": {
"5508": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456298038335/2CA532D7F0EED2B2B40E47709AC56D85C4613A33/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "63b3e5",
"Name": "Card",
"Transform": {
"posX": 9.131704,
"posY": 4.07366657,
"posZ": -16.7225761,
"rotX": 359.9202,
"rotY": 269.795776,
"rotZ": 0.0169034135,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Monster Slayer",
"Description": "",
"GMNotes": "{\n \"id\": \"60116\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Spirit.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 545314,
"SidewaysCard": false,
"CustomDeck": {
"5453": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1546380927206250326/18BF6D2B2BBFDDBE5B021A46C310E4F45493EC26/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "6eceef",
"Name": "Card",
"Transform": {
"posX": 9.131704,
"posY": 4.129243,
"posZ": -16.7225761,
"rotX": 359.9202,
"rotY": 269.795776,
"rotZ": 0.0168809947,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Sixth Sense",
"Description": "",
"GMNotes": "{\n \"id\": \"05158\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 277512,
"SidewaysCard": false,
"CustomDeck": {
"2775": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025945336/04E36F64C2CBE1B4905FF44A869C75EC52CB3A56/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "ea8324",
"Name": "Card",
"Transform": {
"posX": 9.131704,
"posY": 4.129243,
"posZ": -16.7225761,
"rotX": 359.9202,
"rotY": 269.795776,
"rotZ": 0.0168809947,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Expeditious Retreat (1)",
"Description": "",
"GMNotes": "{\n \"id\": \"06246\",\n \"type\": \"Skill\",\n \"class\": \"Survivor\",\n \"traits\": \"Innate. Developed.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 447734,
"SidewaysCard": false,
"CustomDeck": {
"4477": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025946328/561232524C8EAA4B4371B28652F78969E6ED6FFB/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "2e93fd",
"Name": "Card",
"Transform": {
"posX": 9.131704,
"posY": 4.181588,
"posZ": -16.7225761,
"rotX": 359.920227,
"rotY": 269.795776,
"rotZ": 0.0168585833,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Expose Weakness (1)",
"Description": "",
"GMNotes": "{\n \"id\": \"02228\",\n \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"traits\": \"Insight.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 430635,
"SidewaysCard": false,
"CustomDeck": {
"4306": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "41a9ec",
"Name": "Card",
"Transform": {
"posX": 9.131704,
"posY": 4.181588,
"posZ": -16.7225761,
"rotX": 359.920227,
"rotY": 269.795776,
"rotZ": 0.0168585833,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Until the End of Time",
"Description": "",
"GMNotes": "{\n \"id\": \"04015\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Talent.\",\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 376600,
"SidewaysCard": false,
"CustomDeck": {
"3766": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "97781f",
"Name": "Card",
"Transform": {
"posX": 9.131704,
"posY": 4.181588,
"posZ": -16.7225761,
"rotX": 359.920227,
"rotY": 269.795776,
"rotZ": 0.0168585833,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Wracked by Nightmares",
"Description": "",
"GMNotes": "{\n \"id\": \"02015\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Madness.\",\n \"permanent\": false,\n \"weakness\": true\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 371013,
"SidewaysCard": false,
"CustomDeck": {
"3710": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "53d765",
"Name": "Card",
"Transform": {
"posX": 9.131704,
"posY": 4.181588,
"posZ": -16.7225761,
"rotX": 359.920227,
"rotY": 269.795776,
"rotZ": 0.0168585833,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Blood Eclipse (3)",
"Description": "",
"GMNotes": "{\n \"id\": \"04266\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Spell. Spirit.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 314000,
"SidewaysCard": false,
"CustomDeck": {
"3140": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025943109/9C5481E6DFEACD450C5522F884E615482281DDB1/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "c73bb0",
"Name": "Card",
"Transform": {
"posX": 9.131704,
"posY": 4.330508,
"posZ": -16.7225761,
"rotX": 359.920227,
"rotY": 269.795776,
"rotZ": 0.0168362074,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Signum Crucis (2)",
"Description": "",
"GMNotes": "{\n \"id\": \"07197\",\n \"type\": \"Skill\",\n \"class\": \"Survivor\",\n \"traits\": \"Practiced. Blessed.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 588508,
"SidewaysCard": false,
"CustomDeck": {
"5885": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1762566393205073673/1FABAC4DD6EF3706D8C8285A256A13F43AE6B1E1/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 6,
"NumHeight": 3,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "0d29be",
"Name": "Card",
"Transform": {
"posX": 9.131704,
"posY": 4.330508,
"posZ": -16.7225761,
"rotX": 359.920227,
"rotY": 269.795776,
"rotZ": 0.0168362074,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Burning the Midnight Oil",
"Description": "",
"GMNotes": "{\n \"id\": \"60214\",\n \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"traits\": \"Insight.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 538812,
"SidewaysCard": false,
"CustomDeck": {
"5388": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1546381162227145538/0F253FC5301911273C32210992261DD1D2EBB578/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "863f91",
"Name": "Card",
"Transform": {
"posX": 9.131704,
"posY": 4.330508,
"posZ": -16.7225761,
"rotX": 359.920227,
"rotY": 269.795776,
"rotZ": 0.0168362074,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Ancient Stone (4)",
"Description": "Knowledge of the Elders",
"GMNotes": "{\n \"id\": \"04230\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Relic.\",\n \"level\": 4,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 262202,
"SidewaysCard": false,
"CustomDeck": {
"2622": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "48e4a3",
"Name": "Card",
"Transform": {
"posX": 9.131704,
"posY": 4.426107,
"posZ": -16.7225761,
"rotX": 359.920227,
"rotY": 269.795776,
"rotZ": 0.0168138556,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Priest of Two Faiths (1)",
"Description": "",
"GMNotes": "{\n \"id\": \"07156\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Ally. Blessed. Cursed.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 232104,
"SidewaysCard": false,
"CustomDeck": {
"2321": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1655600400212405700/559F1F3EF87BDF7F067F9B7011EDC3A6ACE71259/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 5,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "e4ab48",
"Name": "Card",
"Transform": {
"posX": 9.131704,
"posY": 4.42610264,
"posZ": -16.7225761,
"rotX": 359.920227,
"rotY": 269.795776,
"rotZ": 0.0168138556,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Cloak of the Outer Realm",
"Description": "Interwoven Distortion",
"GMNotes": "{\n \"id\": \"86051\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Relic. Clothing.\",\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 587926,
"SidewaysCard": false,
"CustomDeck": {
"5879": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1655600953065965648/5A0D88CCA811A490C2FEF2675A397E1CEE010870/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 8,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "3c1944",
"Name": "Card",
"Transform": {
"posX": 9.131704,
"posY": 4.42610836,
"posZ": -16.7225761,
"rotX": 359.920227,
"rotY": 269.795776,
"rotZ": 0.0168138556,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Lita Chantler",
"Description": "Ally",
"GMNotes": "{\n \"id\": \"01117\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally.\",\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 295128,
"SidewaysCard": false,
"CustomDeck": {
"2951": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642393244/74ADDF83D8B03DBF4AD5DC7230C2D12E84685317/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/254843371583121486/AF36A64D6D25AEB0E50FB36B34AD2A95C2B485BF/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "f6b1b6",
"Name": "CardCustom",
"Transform": {
"posX": 9.131704,
"posY": 4.51838636,
"posZ": -16.7225761,
"rotX": 359.920227,
"rotY": 269.795776,
"rotZ": 0.0167915281,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Eldritch Sophist",
"Description": "",
"GMNotes": "{\n \"id\": \"07111\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Ally. Miskatonic\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Secret\",\n \"count\": 3\n }\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 549300,
"SidewaysCard": false,
"CustomDeck": {
"5493": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1537373727958826520/EE54EF6510734FC86ADD47E84DB253493A2F87B7/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/766099859120034153/D864BCCCC1C811EC7F0AED69D1C30C678D3D9FC9/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "5d559a",
"Name": "Card",
"Transform": {
"posX": 9.131704,
"posY": 4.51838636,
"posZ": -16.7225761,
"rotX": 359.920227,
"rotY": 269.795776,
"rotZ": 0.0167915281,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "The Skeleton Key (2)",
"Description": "",
"GMNotes": "{\n \"id\": \"04270\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Item. Relic. Cursed.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 581409,
"SidewaysCard": false,
"CustomDeck": {
"5814": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1697276627309509299/3B0E32939EB4599CCE3596975637C90FE4EE1DD6/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "9da37c",
"Name": "Card",
"Transform": {
"posX": 9.131704,
"posY": 4.51838636,
"posZ": -16.7225761,
"rotX": 359.920227,
"rotY": 269.795776,
"rotZ": 0.0167915281,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Fire Axe",
"Description": "",
"GMNotes": "{\n \"id\": \"02032\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Item. Weapon. Melee.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 368825,
"SidewaysCard": false,
"CustomDeck": {
"3688": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "6fa7fa",
"Name": "Card",
"Transform": {
"posX": 9.131704,
"posY": 4.51838255,
"posZ": -16.7225761,
"rotX": 359.920227,
"rotY": 269.795776,
"rotZ": 0.0167915281,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Track Shoes",
"Description": "",
"GMNotes": "{\n \"id\": \"05036\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Item. Clothing. Footwear.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 274608,
"SidewaysCard": false,
"CustomDeck": {
"2746": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025946328/561232524C8EAA4B4371B28652F78969E6ED6FFB/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "d0e108",
"Name": "Card",
"Transform": {
"posX": 9.131704,
"posY": 4.657253,
"posZ": -16.7225761,
"rotX": 359.920227,
"rotY": 269.795776,
"rotZ": 0.0167692229,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Gilded Volto",
"Description": "",
"GMNotes": "{\n \"id\": \"82026\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Mask.\",\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 295604,
"SidewaysCard": false,
"CustomDeck": {
"2956": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642329861/9768E9FE9C71E74721340D0D81607F534E54A3DE/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "42806b",
"Name": "Card",
"Transform": {
"posX": 9.131704,
"posY": 4.657253,
"posZ": -16.7225761,
"rotX": 359.920227,
"rotY": 269.795776,
"rotZ": 0.0167692229,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Professor Warren Rice",
"Description": "Professor of Languages",
"GMNotes": "{\n \"id\": \"02061\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Miskatonic.\",\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 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": 232904,
"SidewaysCard": false,
"CustomDeck": {
"2329": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "acf2b0",
"Name": "Card",
"Transform": {
"posX": 9.131704,
"posY": 4.657253,
"posZ": -16.7225761,
"rotX": 359.920227,
"rotY": 269.795776,
"rotZ": 0.0167692229,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "\"If it bleeds...\"",
"Description": "",
"GMNotes": "{\n \"id\": \"02225\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 226312,
"SidewaysCard": false,
"CustomDeck": {
"2263": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "9dc3d4",
"Name": "Card",
"Transform": {
"posX": 9.131704,
"posY": 4.74280834,
"posZ": -16.7225761,
"rotX": 359.920227,
"rotY": 269.795776,
"rotZ": 0.0167469513,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Expedition Journal",
"Description": "",
"GMNotes": "{\n \"id\": \"04148\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Tome.\",\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 235649,
"SidewaysCard": false,
"CustomDeck": {
"2356": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1467561769777497046/3003A76996378249E6AAA4A60D85AE7EE59C1B8B/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "eab2ed",
"Name": "Card",
"Transform": {
"posX": 9.131704,
"posY": 4.74280834,
"posZ": -16.7225761,
"rotX": 359.920227,
"rotY": 269.795776,
"rotZ": 0.0167469513,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Teamwork",
"Description": "",
"GMNotes": "{\n \"id\": \"02018\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Tactic.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 226306,
"SidewaysCard": false,
"CustomDeck": {
"2263": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "08e5a6",
"Name": "Card",
"Transform": {
"posX": 9.131704,
"posY": 4.74280834,
"posZ": -16.7225761,
"rotX": 359.920227,
"rotY": 269.795776,
"rotZ": 0.0167469513,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Tetsuo Mori",
"Description": "Too Noble for His Own Good",
"GMNotes": "{\n \"id\": \"06155\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Ally. Police.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 379829,
"SidewaysCard": false,
"CustomDeck": {
"3798": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025943109/9C5481E6DFEACD450C5522F884E615482281DDB1/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "536b52",
"Name": "Card",
"Transform": {
"posX": 9.131704,
"posY": 4.874957,
"posZ": -16.7225761,
"rotX": 359.920258,
"rotY": 269.795776,
"rotZ": 0.016724702,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Arcane Insight (4)",
"Description": "",
"GMNotes": "{\n \"id\": \"03266\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Spell.\",\n \"level\": 4,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Charge\",\n \"count\": 3\n }\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 430659,
"SidewaysCard": false,
"CustomDeck": {
"4306": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "308be1",
"Name": "Card",
"Transform": {
"posX": 9.131704,
"posY": 4.874957,
"posZ": -16.7225761,
"rotX": 359.920258,
"rotY": 269.795776,
"rotZ": 0.016724702,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Sure Gamble (3)",
"Description": "",
"GMNotes": "{\n \"id\": \"01056\",\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"traits\": \"Fortune. Insight.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 315254,
"SidewaysCard": false,
"CustomDeck": {
"3152": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "9bcdee",
"Name": "Card",
"Transform": {
"posX": 9.131704,
"posY": 4.953803,
"posZ": -16.7225761,
"rotX": 359.920258,
"rotY": 269.795776,
"rotZ": 0.0167024639,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Newspaper (2)",
"Description": "",
"GMNotes": "{\n \"id\": \"03313\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Item.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 368847,
"SidewaysCard": false,
"CustomDeck": {
"3688": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "2ae3ce",
"Name": "Card",
"Transform": {
"posX": 9.131704,
"posY": 4.953803,
"posZ": -16.7225761,
"rotX": 359.920258,
"rotY": 269.795776,
"rotZ": 0.0167024639,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Song of the Dead (2)",
"Description": "",
"GMNotes": "{\n \"id\": \"02112\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell. Song.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Charge\",\n \"count\": 5\n }\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 230345,
"SidewaysCard": false,
"CustomDeck": {
"2303": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "5d30a1",
"Name": "Card",
"Transform": {
"posX": 9.131704,
"posY": 4.953803,
"posZ": -16.7225761,
"rotX": 359.920258,
"rotY": 269.795776,
"rotZ": 0.0167024639,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "The Tattered Cloak",
"Description": "Regalia Dementia",
"GMNotes": "{\n \"id\": \"03143\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Clothing.\",\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 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": 232333,
"SidewaysCard": false,
"CustomDeck": {
"2323": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "658d38",
"Name": "Card",
"Transform": {
"posX": 9.131704,
"posY": 5.029349,
"posZ": -16.7225761,
"rotX": 359.920258,
"rotY": 269.795776,
"rotZ": 0.016680263,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Shrewd Analysis",
"Description": "",
"GMNotes": "{\n \"id\": \"04106\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Talent.\",\n \"level\": 0,\n \"permanent\": true,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 368419,
"SidewaysCard": false,
"CustomDeck": {
"3684": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "85fe46",
"Name": "Card",
"Transform": {
"posX": 9.131704,
"posY": 5.029349,
"posZ": -16.7225761,
"rotX": 359.920258,
"rotY": 269.795776,
"rotZ": 0.016680263,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Taunt (3)",
"Description": "",
"GMNotes": "{\n \"id\": \"60130\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Tactic.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 545328,
"SidewaysCard": false,
"CustomDeck": {
"5453": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1546380927206250326/18BF6D2B2BBFDDBE5B021A46C310E4F45493EC26/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "44cf4a",
"Name": "Card",
"Transform": {
"posX": 9.131704,
"posY": 5.029349,
"posZ": -16.7225761,
"rotX": 359.920258,
"rotY": 269.795776,
"rotZ": 0.016680263,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "No Stone Unturned",
"Description": "",
"GMNotes": "{\n \"id\": \"03026\",\n \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"traits\": \"Insight.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 368415,
"SidewaysCard": false,
"CustomDeck": {
"3684": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "99989c",
"Name": "Card",
"Transform": {
"posX": 9.131704,
"posY": 5.10159874,
"posZ": -16.7225761,
"rotX": 359.920258,
"rotY": 269.795776,
"rotZ": 0.0166580845,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Quick Thinking",
"Description": "",
"GMNotes": "{\n \"id\": \"02229\",\n \"type\": \"Skill\",\n \"class\": \"Rogue\",\n \"traits\": \"Innate.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 261703,
"SidewaysCard": false,
"CustomDeck": {
"2617": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "f08934",
"Name": "Card",
"Transform": {
"posX": 9.131704,
"posY": 5.10159874,
"posZ": -16.7225761,
"rotX": 359.920258,
"rotY": 269.795776,
"rotZ": 0.0166580845,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Dark Insight",
"Description": "",
"GMNotes": "{\n \"id\": \"05014\",\n \"type\": \"Event\",\n \"class\": \"Neutral\",\n \"traits\": \"Insight.\",\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 444260,
"SidewaysCard": false,
"CustomDeck": {
"4442": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "bf3dd1",
"Name": "Card",
"Transform": {
"posX": 9.131704,
"posY": 5.10159874,
"posZ": -16.7225761,
"rotX": 359.920258,
"rotY": 269.795776,
"rotZ": 0.0166580845,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Defiance (2)",
"Description": "",
"GMNotes": "{\n \"id\": \"04198\",\n \"type\": \"Skill\",\n \"class\": \"Mystic\",\n \"traits\": \"Innate. Developed.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 230338,
"SidewaysCard": false,
"CustomDeck": {
"2303": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "41e560",
"Name": "Card",
"Transform": {
"posX": 9.131704,
"posY": 5.10159874,
"posZ": -16.7225761,
"rotX": 359.920258,
"rotY": 269.795776,
"rotZ": 0.0166580845,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": ".35 Winchester (Taboo)",
"Description": "",
"GMNotes": "{\n \"id\": \"06195-t\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Item. Weapon. Firearm.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Ammo\",\n \"count\": 5\n }\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 450624,
"SidewaysCard": false,
"CustomDeck": {
"4506": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1656721113609569419/60B1DFC7C68C406C34641A1F53078F46D610821C/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "0e72b6",
"Name": "Card",
"Transform": {
"posX": 9.131704,
"posY": 5.220458,
"posZ": -16.7225761,
"rotX": 359.920258,
"rotY": 269.795776,
"rotZ": 0.01663593,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Chuck Fergus (5)",
"Description": "O'Bannion Driver",
"GMNotes": "{\n \"id\": \"60332\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Ally. Criminal.\",\n \"level\": 5,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 538630,
"SidewaysCard": false,
"CustomDeck": {
"5386": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456298037683/22C99DD745DFF65ECC72FD32EFA9C9D0F0C12862/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "d708d9",
"Name": "Card",
"Transform": {
"posX": 9.131704,
"posY": 5.220458,
"posZ": -16.7225761,
"rotX": 359.920258,
"rotY": 269.795776,
"rotZ": 0.01663593,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Physical Training (2)",
"Description": "",
"GMNotes": "{\n \"id\": \"50001\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Talent.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 226343,
"SidewaysCard": false,
"CustomDeck": {
"2263": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "9393ec",
"Name": "Card",
"Transform": {
"posX": 9.131704,
"posY": 5.220458,
"posZ": -16.7225761,
"rotX": 359.920258,
"rotY": 269.795776,
"rotZ": 0.01663593,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Aquinnah (1)",
"Description": "The Forgotten Daughter",
"GMNotes": "{\n \"id\": \"01082\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Ally.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 368841,
"SidewaysCard": false,
"CustomDeck": {
"3688": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "3586e6",
"Name": "Card",
"Transform": {
"posX": 9.131704,
"posY": 5.28602839,
"posZ": -16.7225761,
"rotX": 359.920258,
"rotY": 269.795776,
"rotZ": 0.01661379,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Occult Evidence",
"Description": "",
"GMNotes": "{\n \"id\": \"06008\",\n \"type\": \"Event\",\n \"class\": \"Neutral\",\n \"traits\": \"Insight. Research.\",\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 582702,
"SidewaysCard": false,
"CustomDeck": {
"5827": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1011562618093846571/13C76218853EE87123267F8F6BE99206DB40470B/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "e8b179",
"Name": "Card",
"Transform": {
"posX": 9.131704,
"posY": 5.28602839,
"posZ": -16.7225761,
"rotX": 359.920258,
"rotY": 269.795776,
"rotZ": 0.01661379,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Cryptic Grimoire (4)",
"Description": "Text of the Elder Herald",
"GMNotes": "{\n \"id\": \"07191\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Tome. Cursed.\",\n \"level\": 4,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 588102,
"SidewaysCard": false,
"CustomDeck": {
"5881": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1762566393205073673/1FABAC4DD6EF3706D8C8285A256A13F43AE6B1E1/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 6,
"NumHeight": 3,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "5c3aea",
"Name": "Card",
"Transform": {
"posX": 9.131704,
"posY": 5.28602839,
"posZ": -16.7225761,
"rotX": 359.920258,
"rotY": 269.795776,
"rotZ": 0.01661379,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Inquiring Mind",
"Description": "",
"GMNotes": "{\n \"id\": \"02227\",\n \"type\": \"Skill\",\n \"class\": \"Seeker\",\n \"traits\": \"Innate.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 368401,
"SidewaysCard": false,
"CustomDeck": {
"3684": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "91e53c",
"Name": "Card",
"Transform": {
"posX": 9.131704,
"posY": 5.34831333,
"posZ": -16.7225761,
"rotX": 359.9203,
"rotY": 269.795776,
"rotZ": 0.0165916868,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Daring",
"Description": "",
"GMNotes": "{\n \"id\": \"06111\",\n \"type\": \"Skill\",\n \"class\": \"Guardian\",\n \"traits\": \"Innate.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 379827,
"SidewaysCard": false,
"CustomDeck": {
"3798": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025943109/9C5481E6DFEACD450C5522F884E615482281DDB1/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "3f91af",
"Name": "Card",
"Transform": {
"posX": 9.131704,
"posY": 5.34830952,
"posZ": -16.7225761,
"rotX": 359.9203,
"rotY": 269.795776,
"rotZ": 0.0165916868,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Rabbit's Foot (3)",
"Description": "",
"GMNotes": "{\n \"id\": \"50010\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Item. Charm.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 368855,
"SidewaysCard": false,
"CustomDeck": {
"3688": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "c7b748",
"Name": "Card",
"Transform": {
"posX": 9.131704,
"posY": 5.34831333,
"posZ": -16.7225761,
"rotX": 359.9203,
"rotY": 269.795776,
"rotZ": 0.0165916868,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Fishing Net",
"Description": "Trap.",
"GMNotes": "{\n \"id\": \"81021\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Trap.\",\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 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": 7502,
"SidewaysCard": false,
"CustomDeck": {
"75": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/138879070086634183/2856A2C2077CFA2C61B9EF2498CAE6865024DB72/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "6da7c4",
"Name": "Card",
"Transform": {
"posX": 9.131704,
"posY": 5.407317,
"posZ": -16.7225761,
"rotX": 359.9203,
"rotY": 269.795776,
"rotZ": 0.0165696088,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Neither Rain nor Snow",
"Description": "",
"GMNotes": "{\n \"id\": \"60502\",\n \"type\": \"Skill\",\n \"class\": \"Survivor\",\n \"traits\": \"Innate. Developed.\",\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 550800,
"SidewaysCard": false,
"CustomDeck": {
"5508": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456298038335/2CA532D7F0EED2B2B40E47709AC56D85C4613A33/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "aa3984",
"Name": "Card",
"Transform": {
"posX": 9.131704,
"posY": 5.407317,
"posZ": -16.7225761,
"rotX": 359.9203,
"rotY": 269.795776,
"rotZ": 0.0165696088,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Winging It",
"Description": "",
"GMNotes": "{\n \"id\": \"04272\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Tactic. Improvised.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 430501,
"SidewaysCard": false,
"CustomDeck": {
"4305": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025946328/561232524C8EAA4B4371B28652F78969E6ED6FFB/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "0ce005",
"Name": "Card",
"Transform": {
"posX": 9.131704,
"posY": 5.463039,
"posZ": -16.7225761,
"rotX": 359.9203,
"rotY": 269.795776,
"rotZ": 0.0165475514,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Esoteric Atlas (1)",
"Description": "",
"GMNotes": "{\n \"id\": \"05232\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Tome.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Secret\",\n \"count\": 4\n }\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 293216,
"SidewaysCard": false,
"CustomDeck": {
"2932": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "ab24a6",
"Name": "Card",
"Transform": {
"posX": 9.131704,
"posY": 5.463043,
"posZ": -16.7225761,
"rotX": 359.9203,
"rotY": 269.795776,
"rotZ": 0.0165475514,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Lady Esprit",
"Description": "Dangerous Bokor",
"GMNotes": "{\n \"id\": \"81019\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Sorcerer.\",\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 449703,
"SidewaysCard": false,
"CustomDeck": {
"4497": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/138879070086634183/2856A2C2077CFA2C61B9EF2498CAE6865024DB72/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "f375bf",
"Name": "Card",
"Transform": {
"posX": 9.131704,
"posY": 5.463043,
"posZ": -16.7225761,
"rotX": 359.9203,
"rotY": 269.795776,
"rotZ": 0.0165475514,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Forbidden Tome (3)",
"Description": "Secrets Revealed",
"GMNotes": "{\n \"id\": \"60230\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Relic. Tome.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 538828,
"SidewaysCard": false,
"CustomDeck": {
"5388": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1546381162227145538/0F253FC5301911273C32210992261DD1D2EBB578/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "b04c8e",
"Name": "Card",
"Transform": {
"posX": 9.131704,
"posY": 5.515495,
"posZ": -16.7225761,
"rotX": 359.9203,
"rotY": 269.795776,
"rotZ": 0.0165255256,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Randolph Carter",
"Description": "Expert Dreamer",
"GMNotes": "{\n \"id\": \"06059\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Dreamer.\",\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 452300,
"SidewaysCard": false,
"CustomDeck": {
"4523": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "276477",
"Name": "Card",
"Transform": {
"posX": 9.131704,
"posY": 5.515495,
"posZ": -16.7225761,
"rotX": 359.9203,
"rotY": 269.795776,
"rotZ": 0.0165255256,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Money Talks",
"Description": "",
"GMNotes": "{\n \"id\": \"05029\",\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"traits\": \"Favor. Gambit.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 527607,
"SidewaysCard": false,
"CustomDeck": {
"5276": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025944587/520448D0E9C22F102C7DDF64322EAD6FC221ECC8/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "e44c96",
"Name": "Card",
"Transform": {
"posX": 9.131704,
"posY": 5.51477432,
"posZ": -16.7225761,
"rotX": 359.9203,
"rotY": 269.795776,
"rotZ": 0.0165035222,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Headdress of Y'ha-nthlei",
"Description": "",
"GMNotes": "{\n \"id\": \"07181\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Relic.\",\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 451114,
"SidewaysCard": false,
"CustomDeck": {
"4511": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1655600400212405700/559F1F3EF87BDF7F067F9B7011EDC3A6ACE71259/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 5,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "033a35",
"Name": "Card",
"Transform": {
"posX": 9.131704,
"posY": 5.51477432,
"posZ": -16.7225761,
"rotX": 359.9203,
"rotY": 269.795776,
"rotZ": 0.0165035222,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Rex's Curse",
"Description": "",
"GMNotes": "{\n \"id\": \"02009\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Curse.\",\n \"permanent\": false,\n \"weakness\": true\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 371907,
"SidewaysCard": false,
"CustomDeck": {
"3719": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "6411d5",
"Name": "Card",
"Transform": {
"posX": 9.131704,
"posY": 5.51088572,
"posZ": -16.7225761,
"rotX": 359.9203,
"rotY": 269.795776,
"rotZ": 0.01648153,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Machete (Taboo)",
"Description": "",
"GMNotes": "{\n \"id\": \"01020-t\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Item. Weapon. Melee.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 450600,
"SidewaysCard": false,
"CustomDeck": {
"4506": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1656721113609569419/60B1DFC7C68C406C34641A1F53078F46D610821C/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "725690",
"Name": "Card",
"Transform": {
"posX": 9.131704,
"posY": 5.51088572,
"posZ": -16.7225761,
"rotX": 359.9203,
"rotY": 269.795776,
"rotZ": 0.01648153,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Mauser C96 (2)",
"Description": "",
"GMNotes": "{\n \"id\": \"60321\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Item. Weapon. Firearm. Illicit.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Ammo\",\n \"count\": 5\n }\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 538619,
"SidewaysCard": false,
"CustomDeck": {
"5386": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456298037683/22C99DD745DFF65ECC72FD32EFA9C9D0F0C12862/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "8a0060",
"Name": "Card",
"Transform": {
"posX": 9.131704,
"posY": 5.51088572,
"posZ": -16.7225761,
"rotX": 359.9203,
"rotY": 269.795776,
"rotZ": 0.01648153,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Old Book of Lore (3)",
"Description": "",
"GMNotes": "{\n \"id\": \"06279\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Tome.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Secret\",\n \"count\": 2\n }\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 448837,
"SidewaysCard": false,
"CustomDeck": {
"4488": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "97e9ce",
"Name": "Card",
"Transform": {
"posX": 9.131704,
"posY": 5.553734,
"posZ": -16.7225761,
"rotX": 359.9203,
"rotY": 269.795776,
"rotZ": 0.0164595749,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Abigail Foreman (4)",
"Description": "Library Intern",
"GMNotes": "{\n \"id\": \"06324\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Ally. Miskatonic.\",\n \"level\": 4,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 448839,
"SidewaysCard": false,
"CustomDeck": {
"4488": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "848d9c",
"Name": "Card",
"Transform": {
"posX": 9.131704,
"posY": 5.553734,
"posZ": -16.7225761,
"rotX": 359.9203,
"rotY": 269.795776,
"rotZ": 0.0164595749,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Finn's Trusty .38",
"Description": "",
"GMNotes": "{\n \"id\": \"04011\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Weapon. Firearm. Illicit.\",\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 376739,
"SidewaysCard": false,
"CustomDeck": {
"3767": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "c7fe4a",
"Name": "Card",
"Transform": {
"posX": 9.131704,
"posY": 5.54342,
"posZ": -16.7225761,
"rotX": 359.920319,
"rotY": 269.795776,
"rotZ": 0.0164376311,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Nine of Rods (3)",
"Description": "Every Trial a Lesson",
"GMNotes": "{\n \"id\": \"54009\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Tarot.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 449529,
"SidewaysCard": false,
"CustomDeck": {
"4495": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1697276706766470010/D835D3A12B12173C78B2FFA055FEFD6042AEDD38/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 6,
"NumHeight": 6,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "26853e",
"Name": "Card",
"Transform": {
"posX": 9.131704,
"posY": 5.54342,
"posZ": -16.7225761,
"rotX": 359.920319,
"rotY": 269.795776,
"rotZ": 0.0164376311,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Word of Command (2)",
"Description": "",
"GMNotes": "{\n \"id\": \"06202\",\n \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 448030,
"SidewaysCard": false,
"CustomDeck": {
"4480": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025945336/04E36F64C2CBE1B4905FF44A869C75EC52CB3A56/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "cf5ac8",
"Name": "Card",
"Transform": {
"posX": 9.131704,
"posY": 5.52994871,
"posZ": -16.7225761,
"rotX": 359.920319,
"rotY": 269.795776,
"rotZ": 0.01641573,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Observed (4)",
"Description": "",
"GMNotes": "{\n \"id\": \"54013\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Blessed.\",\n \"level\": 4,\n \"permanent\": true,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 449533,
"SidewaysCard": false,
"CustomDeck": {
"4495": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1697276706766470010/D835D3A12B12173C78B2FFA055FEFD6042AEDD38/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 6,
"NumHeight": 6,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "1ee492",
"Name": "Card",
"Transform": {
"posX": 9.131704,
"posY": 5.52994871,
"posZ": -16.7225761,
"rotX": 359.920319,
"rotY": 269.795776,
"rotZ": 0.01641573,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Madame Labranche",
"Description": "Mysterious Benefactress",
"GMNotes": "{\n \"id\": \"03198\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Ally. Patron.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 368828,
"SidewaysCard": false,
"CustomDeck": {
"3688": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "7b42b6",
"Name": "Card",
"Transform": {
"posX": 9.131704,
"posY": 5.563225,
"posZ": -16.7225761,
"rotX": 359.920319,
"rotY": 269.795776,
"rotZ": 0.016393844,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "In the Know (1)",
"Description": "",
"GMNotes": "{\n \"id\": \"03027\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Talent.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Secret\",\n \"count\": 3\n }\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 430640,
"SidewaysCard": false,
"CustomDeck": {
"4306": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "010509",
"Name": "Card",
"Transform": {
"posX": 9.131704,
"posY": 5.563225,
"posZ": -16.7225761,
"rotX": 359.920319,
"rotY": 269.795776,
"rotZ": 0.016393844,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Occult Invocation",
"Description": "",
"GMNotes": "{\n \"id\": \"60217\",\n \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"traits\": \"Spell.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 538815,
"SidewaysCard": false,
"CustomDeck": {
"5388": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1546381162227145538/0F253FC5301911273C32210992261DD1D2EBB578/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "9fa2a5",
"Name": "Card",
"Transform": {
"posX": 9.131704,
"posY": 5.563225,
"posZ": -16.7225761,
"rotX": 359.920319,
"rotY": 269.795776,
"rotZ": 0.016393844,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "The Necronomicon (5) (Taboo)",
"Description": "Petrus de Dacia Translation",
"GMNotes": "{\n \"id\": \"60233-t\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Tome.\",\n \"level\": 5,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 450613,
"SidewaysCard": false,
"CustomDeck": {
"4506": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1656721113609569419/60B1DFC7C68C406C34641A1F53078F46D610821C/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "4425b5",
"Name": "Card",
"Transform": {
"posX": 9.131704,
"posY": 5.59325171,
"posZ": -16.7225761,
"rotX": 359.920319,
"rotY": 269.795776,
"rotZ": 0.01637198,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": ".25 Automatic (2)",
"Description": "",
"GMNotes": "{\n \"id\": \"07305\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Item. Weapon. Firearm. Illicit.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Ammo\",\n \"count\": 4\n }\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 589404,
"SidewaysCard": false,
"CustomDeck": {
"5894": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1807607979163972370/50A45AE585D6404E677DFCA597A0F5FE13346B97/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 5,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "ffdeb5",
"Name": "Card",
"Transform": {
"posX": 9.131704,
"posY": 5.52023,
"posZ": -16.7225761,
"rotX": 359.920319,
"rotY": 269.795776,
"rotZ": 0.016350152,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Peter Sylvestre",
"Description": "Big Man on Campus",
"GMNotes": "{\n \"id\": \"02033\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Ally. Miskatonic.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 368832,
"SidewaysCard": false,
"CustomDeck": {
"3688": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "6b2e97",
"Name": "Card",
"Transform": {
"posX": 9.131704,
"posY": 5.52023,
"posZ": -16.7225761,
"rotX": 359.920319,
"rotY": 269.795776,
"rotZ": 0.016350152,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Grotesque Statue (2)",
"Description": "",
"GMNotes": "{\n \"id\": \"60421\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Item. Relic.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Charge\",\n \"count\": 3\n }\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 538719,
"SidewaysCard": false,
"CustomDeck": {
"5387": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297472038/B38A78EF27EBE0BDE1B36958D297701505AB936A/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "fbfa24",
"Name": "Card",
"Transform": {
"posX": 9.131704,
"posY": 5.543966,
"posZ": -16.7225761,
"rotX": 359.920319,
"rotY": 269.795776,
"rotZ": 0.0163283348,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Cryptic Grimoire",
"Description": "Untranslated",
"GMNotes": "{\n \"id\": \"07022\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Tome. Occult.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 587116,
"SidewaysCard": false,
"CustomDeck": {
"5871": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320664132663842/9B2F50595A754585A4DF12D6D48DC2561DC0E2C9/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "1f3f16",
"Name": "Card",
"Transform": {
"posX": 9.131704,
"posY": 5.543966,
"posZ": -16.7225761,
"rotX": 359.920319,
"rotY": 269.795776,
"rotZ": 0.0163283348,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "No Stone Unturned (5)",
"Description": "",
"GMNotes": "{\n \"id\": \"03307\",\n \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"traits\": \"Insight.\",\n \"level\": 5,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 430658,
"SidewaysCard": false,
"CustomDeck": {
"4306": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "86feae",
"Name": "Card",
"Transform": {
"posX": 9.131704,
"posY": 5.514561,
"posZ": -16.7225761,
"rotX": 359.920349,
"rotY": 269.795776,
"rotZ": 0.0163065474,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Call of the Unknown",
"Description": "",
"GMNotes": "{\n \"id\": \"04009\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Task.\",\n \"permanent\": false,\n \"weakness\": true\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 377244,
"SidewaysCard": false,
"CustomDeck": {
"3772": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "e7f37b",
"Name": "Card",
"Transform": {
"posX": 9.131704,
"posY": 5.514561,
"posZ": -16.7225761,
"rotX": 359.920349,
"rotY": 269.795776,
"rotZ": 0.0163065474,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Suggestion (4)",
"Description": "",
"GMNotes": "{\n \"id\": \"03268\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Spell.\",\n \"level\": 4,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Charge\",\n \"count\": 3\n }\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 315259,
"SidewaysCard": false,
"CustomDeck": {
"3152": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "1258c6",
"Name": "Card",
"Transform": {
"posX": 9.131704,
"posY": 5.482021,
"posZ": -16.7225761,
"rotX": 359.920349,
"rotY": 269.795776,
"rotZ": 0.016284775,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Logical Reasoning (4)",
"Description": "",
"GMNotes": "{\n \"id\": \"52003\",\n \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"traits\": \"Insight.\",\n \"level\": 4,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 441023,
"SidewaysCard": false,
"CustomDeck": {
"4410": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "fe68c6",
"Name": "Card",
"Transform": {
"posX": 9.131704,
"posY": 5.482021,
"posZ": -16.7225761,
"rotX": 359.920349,
"rotY": 269.795776,
"rotZ": 0.016284775,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "The Dirge of Reason",
"Description": "",
"GMNotes": "{\n \"id\": \"98006\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Madness.\",\n \"permanent\": false,\n \"weakness\": true\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 369945,
"SidewaysCard": false,
"CustomDeck": {
"3699": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "27f6aa",
"Name": "Card",
"Transform": {
"posX": 9.131704,
"posY": 5.446347,
"posZ": -16.7225761,
"rotX": 359.920349,
"rotY": 269.795776,
"rotZ": 0.0162630416,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Ariadne's Twine (3)",
"Description": "",
"GMNotes": "{\n \"id\": \"07304\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Ritual.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 589303,
"SidewaysCard": false,
"CustomDeck": {
"5893": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1807607979163972370/50A45AE585D6404E677DFCA597A0F5FE13346B97/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 5,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "cc6b14",
"Name": "Card",
"Transform": {
"posX": 9.131704,
"posY": 5.446347,
"posZ": -16.7225761,
"rotX": 359.920349,
"rotY": 269.795776,
"rotZ": 0.0162630416,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Daring Maneuver",
"Description": "",
"GMNotes": "{\n \"id\": \"03030\",\n \"alternate_ids\": [ \"60313\" ],\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"traits\": \"Gambit.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 368706,
"SidewaysCard": false,
"CustomDeck": {
"3687": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "324e49",
"Name": "Card",
"Transform": {
"posX": 9.131704,
"posY": 5.407544,
"posZ": -16.7225761,
"rotX": 359.920349,
"rotY": 269.795776,
"rotZ": 0.0162413288,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Elder Sign Amulet (3)",
"Description": "",
"GMNotes": "{\n \"id\": \"01095\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Relic.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 368522,
"SidewaysCard": false,
"CustomDeck": {
"3685": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "c33a10",
"Name": "Card",
"Transform": {
"posX": 9.131704,
"posY": 5.31571341,
"posZ": -16.7225761,
"rotX": 359.920349,
"rotY": 269.795776,
"rotZ": 0.016219642,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Liquid Courage",
"Description": "",
"GMNotes": "{\n \"id\": \"02024\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Item. Illicit.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Supply\",\n \"count\": 4\n }\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 368620,
"SidewaysCard": false,
"CustomDeck": {
"3686": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "6ad46b",
"Name": "Card",
"Transform": {
"posX": 9.131704,
"posY": 5.31571341,
"posZ": -16.7225761,
"rotX": 359.920349,
"rotY": 269.795776,
"rotZ": 0.016219642,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Essence of the Dream",
"Description": "",
"GMNotes": "{\n \"id\": \"06113\",\n \"type\": \"Skill\",\n \"class\": \"Seeker\",\n \"traits\": \"Practiced. Expert.\",\n \"permanent\": false,\n \"bonded_to\": [\n {\n \"id\": \"06112\",\n \"count\": 1\n },\n {\n \"id\": \"06236\",\n \"count\": 1\n },\n {\n \"id\": \"06237\",\n \"count\": 1\n },\n {\n \"id\": \"06238\",\n \"count\": 1\n }\n ],\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 379929,
"SidewaysCard": false,
"CustomDeck": {
"3799": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "8b0193",
"Name": "Card",
"Transform": {
"posX": 9.131704,
"posY": 5.27076,
"posZ": -16.7225761,
"rotX": 359.920349,
"rotY": 269.795776,
"rotZ": 0.0161979739,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Deciphered Reality (5)",
"Description": "",
"GMNotes": "{\n \"id\": \"02303\",\n \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"traits\": \"Insight.\",\n \"level\": 5,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 430660,
"SidewaysCard": false,
"CustomDeck": {
"4306": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "6aea76",
"Name": "Card",
"Transform": {
"posX": 9.131704,
"posY": 5.172786,
"posZ": -16.7225761,
"rotX": 359.92038,
"rotY": 269.795776,
"rotZ": 0.0161763337,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Occult Scraps",
"Description": "Weakness",
"GMNotes": "{\n \"id\": \"07013\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item.\",\n \"permanent\": false,\n \"weakness\": true\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 587707,
"SidewaysCard": false,
"CustomDeck": {
"5877": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320664132663842/9B2F50595A754585A4DF12D6D48DC2561DC0E2C9/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "fa1d67",
"Name": "Card",
"Transform": {
"posX": 9.131704,
"posY": 5.172786,
"posZ": -16.7225761,
"rotX": 359.92038,
"rotY": 269.795776,
"rotZ": 0.0161763337,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Holy Rosary",
"Description": "",
"GMNotes": "{\n \"id\": \"01059\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Item. Charm.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 230323,
"SidewaysCard": false,
"CustomDeck": {
"2303": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "ca25bc",
"Name": "Card",
"Transform": {
"posX": 9.131704,
"posY": 5.01759243,
"posZ": -16.7225761,
"rotX": 359.92038,
"rotY": 269.795776,
"rotZ": 0.016133124,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Cover Up",
"Description": "",
"GMNotes": "{\n \"id\": \"01007\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Task.\",\n \"permanent\": false,\n \"weakness\": true,\n \"uses\": {\n \"token\": \"clue\",\n \"type\": \"Clue\",\n \"count\": 3\n }\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 552421,
"SidewaysCard": false,
"CustomDeck": {
"5524": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "acce72",
"Name": "Card",
"Transform": {
"posX": 9.131704,
"posY": 5.01759243,
"posZ": -16.7225761,
"rotX": 359.92038,
"rotY": 269.795776,
"rotZ": 0.016133124,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Lodge \"Debts\"",
"Description": "",
"GMNotes": "{\n \"id\": \"05012\",\n \"type\": \"Event\",\n \"class\": \"Neutral\",\n \"traits\": \"Pact.\",\n \"permanent\": false,\n \"weakness\": true\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 591858,
"SidewaysCard": false,
"CustomDeck": {
"5918": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "679b13",
"Name": "Card",
"Transform": {
"posX": 9.131704,
"posY": 4.9603796,
"posZ": -16.7225761,
"rotX": 359.92038,
"rotY": 269.795776,
"rotZ": 0.016111549,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Manual Dexterity",
"Description": "",
"GMNotes": "{\n \"id\": \"01092\",\n \"type\": \"Skill\",\n \"class\": \"Neutral\",\n \"traits\": \"Innate.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 368504,
"SidewaysCard": false,
"CustomDeck": {
"3685": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "61fd07",
"Name": "Card",
"Transform": {
"posX": 9.131704,
"posY": 4.85015965,
"posZ": -16.7225761,
"rotX": 359.92038,
"rotY": 269.795776,
"rotZ": 0.0160899945,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "The Silver Key",
"Description": "Key to the Gate of Dreams",
"GMNotes": "{\n \"id\": \"06189\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Charm. Relic.\",\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 278846,
"SidewaysCard": false,
"CustomDeck": {
"2788": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "ba1460",
"Name": "Card",
"Transform": {
"posX": 9.131704,
"posY": 4.85015965,
"posZ": -16.7225761,
"rotX": 359.92038,
"rotY": 269.795776,
"rotZ": 0.0160899945,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Bind Monster (2)",
"Description": "",
"GMNotes": "{\n \"id\": \"02031\",\n \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 230347,
"SidewaysCard": false,
"CustomDeck": {
"2303": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "12660b",
"Name": "Card",
"Transform": {
"posX": 9.131704,
"posY": 4.786837,
"posZ": -16.7225761,
"rotX": 359.92038,
"rotY": 269.795776,
"rotZ": 0.01606848,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": ".45 Automatic",
"Description": "",
"GMNotes": "{\n \"id\": \"01016\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Item. Weapon. Firearm.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Ammo\",\n \"count\": 4\n }\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 226330,
"SidewaysCard": false,
"CustomDeck": {
"2263": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "efb09b",
"Name": "Card",
"Transform": {
"posX": 9.131704,
"posY": 4.67051458,
"posZ": -16.7225761,
"rotX": 359.92038,
"rotY": 269.795776,
"rotZ": 0.0160469785,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Double or Nothing",
"Description": "",
"GMNotes": "{\n \"id\": \"02026\",\n \"type\": \"Skill\",\n \"class\": \"Rogue\",\n \"traits\": \"Fortune.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 261701,
"SidewaysCard": false,
"CustomDeck": {
"2617": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "b8c93a",
"Name": "Card",
"Transform": {
"posX": 9.131704,
"posY": 4.60109663,
"posZ": -16.7225761,
"rotX": 359.9204,
"rotY": 269.795776,
"rotZ": 0.0160255078,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Cheap Shot",
"Description": "",
"GMNotes": "{\n \"id\": \"03194\",\n \"alternate_ids\": [ \"60312\" ],\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"traits\": \"Trick.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 368715,
"SidewaysCard": false,
"CustomDeck": {
"3687": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "620b6e",
"Name": "Card",
"Transform": {
"posX": 9.131704,
"posY": 4.60109663,
"posZ": -16.7225761,
"rotX": 359.9204,
"rotY": 269.795776,
"rotZ": 0.0160255078,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Contraband (2)",
"Description": "",
"GMNotes": "{\n \"id\": \"51005\",\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"traits\": \"Supply. Illicit.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 315304,
"SidewaysCard": false,
"CustomDeck": {
"3153": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025944587/520448D0E9C22F102C7DDF64322EAD6FC221ECC8/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "a14a11",
"Name": "Card",
"Transform": {
"posX": 9.131704,
"posY": 4.52858639,
"posZ": -16.7225761,
"rotX": 359.9204,
"rotY": 269.795776,
"rotZ": 0.0160040539,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Archaic Glyphs (3)",
"Description": "Guiding Stones",
"GMNotes": "{\n \"id\": \"03192\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Spell.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 430652,
"SidewaysCard": false,
"CustomDeck": {
"4306": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "18927e",
"Name": "Card",
"Transform": {
"posX": 9.131704,
"posY": 4.52858639,
"posZ": -16.7225761,
"rotX": 359.9204,
"rotY": 269.795776,
"rotZ": 0.0160040539,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Treasure Hunter (1)",
"Description": "",
"GMNotes": "{\n \"id\": \"04025\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Ally. Wayfarer.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 315236,
"SidewaysCard": false,
"CustomDeck": {
"3152": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "14d04f",
"Name": "Card",
"Transform": {
"posX": 9.131704,
"posY": 4.45298767,
"posZ": -16.7225761,
"rotX": 359.9204,
"rotY": 269.795776,
"rotZ": 0.01598262,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Dr. William T. Maleson",
"Description": "Working on Something Big",
"GMNotes": "{\n \"id\": \"02302\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Ally. Miskatonic.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 581102,
"SidewaysCard": false,
"CustomDeck": {
"5811": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1697276627309509299/3B0E32939EB4599CCE3596975637C90FE4EE1DD6/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "f6ff32",
"Name": "Card",
"Transform": {
"posX": 9.131704,
"posY": 4.374304,
"posZ": -16.7225761,
"rotX": 359.9204,
"rotY": 269.795776,
"rotZ": 0.0159612186,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Narrow Escape",
"Description": "",
"GMNotes": "{\n \"id\": \"03267\",\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"traits\": \"Fortune.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 368708,
"SidewaysCard": false,
"CustomDeck": {
"3687": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "a06aa7",
"Name": "Card",
"Transform": {
"posX": 9.131704,
"posY": 4.242637,
"posZ": -16.7225761,
"rotX": 359.9204,
"rotY": 269.795776,
"rotZ": 0.0159398448,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Recall the Future (2)",
"Description": "",
"GMNotes": "{\n \"id\": \"04158\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Augury. Ritual.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 230344,
"SidewaysCard": false,
"CustomDeck": {
"2303": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "baef55",
"Name": "Card",
"Transform": {
"posX": 9.131704,
"posY": 4.242637,
"posZ": -16.7225761,
"rotX": 359.9204,
"rotY": 269.795776,
"rotZ": 0.0159398448,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Second Wind",
"Description": "",
"GMNotes": "{\n \"id\": \"04149\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Spirit. Bold.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 226316,
"SidewaysCard": false,
"CustomDeck": {
"2263": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "889121",
"Name": "Card",
"Transform": {
"posX": 9.131704,
"posY": 4.15789127,
"posZ": -16.7225761,
"rotX": 359.9204,
"rotY": 269.795776,
"rotZ": 0.0159184858,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Vicious Blow",
"Description": "",
"GMNotes": "{\n \"id\": \"01025\",\n \"alternate_ids\": [ \"60119\" ],\n \"type\": \"Skill\",\n \"class\": \"Guardian\",\n \"traits\": \"Practiced.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 226302,
"SidewaysCard": false,
"CustomDeck": {
"2263": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "28289a",
"Name": "Card",
"Transform": {
"posX": 9.131704,
"posY": 4.15789127,
"posZ": -16.7225761,
"rotX": 359.9204,
"rotY": 269.795776,
"rotZ": 0.0159184858,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Holy Spear (5)",
"Description": "",
"GMNotes": "{\n \"id\": \"07302\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Item. Weapon. Melee. Blessed.\",\n \"level\": 5,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 590001,
"SidewaysCard": false,
"CustomDeck": {
"5900": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1807607979163972370/50A45AE585D6404E677DFCA597A0F5FE13346B97/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 5,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "function onload()\n mode = \"Bless\"\n chaosbag = getChaosBag()\n manager = getObjectFromGUID(\"5933fb\")\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, true)\n for url,name in pairs(IMAGE_TOKEN_MAP) do\n if name == mode then\n self.addContextMenuItem(\"Seal 2 \" .. mode, function(playerColor) sealToken(url, playerColor) end, true)\n end\n end\nend\n\nfunction sealToken(url, playerColor)\n local pos = self.getPosition()\n\n local name = IMAGE_TOKEN_MAP[url]\n local indexes = {}\n\n for i,obj in ipairs(chaosbag.getObjects()) do\n if obj.name == name then\n table.insert(indexes, obj.index)\n end\n end\n if #indexes < 2 then\n printToColor(\"Fewer than 2 \" .. name .. \" tokens in bag\", playerColor)\n return\n end\n table.sort(indexes)\n chaosbag.takeObject({\n position={ pos.x, pos.y + 1, pos.z },\n index=indexes[#indexes],\n smooth=false,\n callback_function=_sealToken\n })\n chaosbag.takeObject({\n position={ pos.x, pos.y + 2, pos.z },\n index=indexes[#indexes-1],\n smooth=false,\n callback_function=_sealToken\n })\nend\n\nfunction _sealToken(obj)\n table.insert(sealedTokens, obj)\n local guid = obj.getGUID()\n local tokensTaken = manager.getVar(\"tokensTaken\")\n table.insert(tokensTaken[mode], guid)\n manager.setVar(\"tokensTaken\", tokensTaken)\n manager.setVar(\"mode\", mode)\n printToAll(\"Sealing \" .. mode .. \" token \" .. manager.call(\"getTokenCount\"))\nend\n\nfunction releaseTokens(playerColor)\n if #sealedTokens == 0 then return end\n local token = sealedTokens[#sealedTokens]\n if token ~= nil then\n local guid = token.getGUID()\n chaosbag.putObject(token)\n local tokensTaken = manager.getVar(\"tokensTaken\")\n for i,v in ipairs(tokensTaken[mode]) do\n if v == guid then\n table.remove(tokensTaken[mode], i)\n break\n end\n end\n manager.setVar(\"tokensTaken\", tokensTaken)\n manager.setVar(\"mode\", mode)\n printToAll(\"Releasing \" .. mode .. \" token\" .. manager.call(\"getTokenCount\"))\n end\n\n table.remove(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\n",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "7b7d14",
"Name": "Card",
"Transform": {
"posX": 9.131704,
"posY": 4.070071,
"posZ": -16.7225761,
"rotX": 359.9204,
"rotY": 269.795776,
"rotZ": 0.0158971529,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Ancestral Knowledge (3)",
"Description": "",
"GMNotes": "{\n \"id\": \"07303\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Talent.\",\n \"level\": 3,\n \"permanent\": true,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 589202,
"SidewaysCard": false,
"CustomDeck": {
"5892": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1807607979163972370/50A45AE585D6404E677DFCA597A0F5FE13346B97/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 5,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "a973aa",
"Name": "Card",
"Transform": {
"posX": 9.131704,
"posY": 3.78551483,
"posZ": -16.7225761,
"rotX": 359.9204,
"rotY": 269.795776,
"rotZ": 0.01585456,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Streetwise",
"Description": "",
"GMNotes": "{\n \"id\": \"60311\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Talent.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 538609,
"SidewaysCard": false,
"CustomDeck": {
"5386": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456298037683/22C99DD745DFF65ECC72FD32EFA9C9D0F0C12862/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "9956d5",
"Name": "Card",
"Transform": {
"posX": 9.131783,
"posY": 3.6946044,
"posZ": -16.7225914,
"rotX": 359.920227,
"rotY": 269.795776,
"rotZ": 0.0168955587,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Taunt (2)",
"Description": "",
"GMNotes": "{\n \"id\": \"02019\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Tactic.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 226344,
"SidewaysCard": false,
"CustomDeck": {
"2263": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "8b68f4",
"Name": "Card",
"Transform": {
"posX": 9.131783,
"posY": 3.6946044,
"posZ": -16.7225914,
"rotX": 359.920227,
"rotY": 269.795776,
"rotZ": 0.0168955587,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Crisis of Faith",
"Description": "Weakness",
"GMNotes": "{\n \"id\": \"07007\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Madness.\",\n \"permanent\": false,\n \"weakness\": true\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 582001,
"SidewaysCard": false,
"CustomDeck": {
"5820": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320664132663842/9B2F50595A754585A4DF12D6D48DC2561DC0E2C9/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "bda4fd",
"Name": "Card",
"Transform": {
"posX": 9.13191,
"posY": 3.686422,
"posZ": -16.7226181,
"rotX": 359.9202,
"rotY": 269.795776,
"rotZ": 0.0171038024,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Lantern (2)",
"Description": "",
"GMNotes": "{\n \"id\": \"52009\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Item. Tool.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 440621,
"SidewaysCard": false,
"CustomDeck": {
"4406": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025946328/561232524C8EAA4B4371B28652F78969E6ED6FFB/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "fc82a5",
"Name": "Card",
"Transform": {
"posX": 9.132051,
"posY": 3.6847856,
"posZ": -16.7226467,
"rotX": 359.9202,
"rotY": 269.795776,
"rotZ": 0.0171456467,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Daring Maneuver (2)",
"Description": "",
"GMNotes": "{\n \"id\": \"60322\",\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"traits\": \"Gambit.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 538620,
"SidewaysCard": false,
"CustomDeck": {
"5386": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456298037683/22C99DD745DFF65ECC72FD32EFA9C9D0F0C12862/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "1b0235",
"Name": "Card",
"Transform": {
"posX": 9.132051,
"posY": 3.6847856,
"posZ": -16.7226467,
"rotX": 359.9202,
"rotY": 269.795776,
"rotZ": 0.0171456467,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Persuasion",
"Description": "",
"GMNotes": "{\n \"id\": \"04105\",\n \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"traits\": \"Insight. Trick.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 368414,
"SidewaysCard": false,
"CustomDeck": {
"3684": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "ae20e0",
"Name": "Card",
"Transform": {
"posX": 9.132193,
"posY": 3.67998171,
"posZ": -16.7226753,
"rotX": 359.920166,
"rotY": 269.795776,
"rotZ": 0.0171874557,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Alice Luxley",
"Description": "Fearless Flatfoot",
"GMNotes": "{\n \"id\": \"05151\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Ally. Detective. Police.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 278010,
"SidewaysCard": false,
"CustomDeck": {
"2780": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025943109/9C5481E6DFEACD450C5522F884E615482281DDB1/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "1b4434",
"Name": "Card",
"Transform": {
"posX": 9.132193,
"posY": 3.67998171,
"posZ": -16.7226753,
"rotX": 359.920166,
"rotY": 269.795776,
"rotZ": 0.0171874557,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Dark Horse",
"Description": "",
"GMNotes": "{\n \"id\": \"02234\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Condition.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 368833,
"SidewaysCard": false,
"CustomDeck": {
"3688": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "d83baf",
"Name": "Card",
"Transform": {
"posX": 9.132349,
"posY": 3.68349719,
"posZ": -16.7227077,
"rotX": 359.9202,
"rotY": 269.795776,
"rotZ": 0.017162323,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Psychosis",
"Description": "Basic Weakness",
"GMNotes": "{\n \"id\": \"01099\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Madness.\",\n \"permanent\": false,\n \"weakness\": true,\n \"basicWeaknessCount\": 1\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 527403,
"SidewaysCard": false,
"CustomDeck": {
"5274": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "2172e2",
"Name": "Card",
"Transform": {
"posX": 9.132349,
"posY": 3.68349719,
"posZ": -16.7227077,
"rotX": 359.9202,
"rotY": 269.795776,
"rotZ": 0.017162323,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Esoteric Atlas (2)",
"Description": "",
"GMNotes": "{\n \"id\": \"60222\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Tome.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Secret\",\n \"count\": 4\n }\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 538820,
"SidewaysCard": false,
"CustomDeck": {
"5388": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1546381162227145538/0F253FC5301911273C32210992261DD1D2EBB578/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "5690d1",
"Name": "Card",
"Transform": {
"posX": 9.132505,
"posY": 3.68383932,
"posZ": -16.72274,
"rotX": 359.9202,
"rotY": 269.795776,
"rotZ": 0.0171372034,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Knuckleduster",
"Description": "",
"GMNotes": "{\n \"id\": \"03110\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Item. Weapon. Melee. Illicit.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 368627,
"SidewaysCard": false,
"CustomDeck": {
"3686": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "07a8f0",
"Name": "Card",
"Transform": {
"posX": 9.132505,
"posY": 3.68383932,
"posZ": -16.72274,
"rotX": 359.9202,
"rotY": 269.795776,
"rotZ": 0.0171372034,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Art Student",
"Description": "",
"GMNotes": "{\n \"id\": \"02149\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Ally. Miskatonic.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 368428,
"SidewaysCard": false,
"CustomDeck": {
"3684": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "dcdcea",
"Name": "Card",
"Transform": {
"posX": 9.132505,
"posY": 3.68383932,
"posZ": -16.72274,
"rotX": 359.9202,
"rotY": 269.795776,
"rotZ": 0.0171372034,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "\"You handle this one!\"",
"Description": "",
"GMNotes": "{\n \"id\": \"04028\",\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"traits\": \"Trick.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 368705,
"SidewaysCard": false,
"CustomDeck": {
"3687": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "0cc3e7",
"Name": "Card",
"Transform": {
"posX": 9.132662,
"posY": 3.7309134,
"posZ": -16.7227726,
"rotX": 359.9202,
"rotY": 269.795776,
"rotZ": 0.0171121173,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Followed",
"Description": "",
"GMNotes": "{\n \"id\": \"06114\",\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"traits\": \"Tactic.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 380025,
"SidewaysCard": false,
"CustomDeck": {
"3800": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025944587/520448D0E9C22F102C7DDF64322EAD6FC221ECC8/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "5b14dc",
"Name": "Card",
"Transform": {
"posX": 9.132662,
"posY": 3.7309134,
"posZ": -16.7227726,
"rotX": 359.9202,
"rotY": 269.795776,
"rotZ": 0.0171121173,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Thermos",
"Description": "",
"GMNotes": "{\n \"id\": \"04274\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Supply\",\n \"count\": 3\n }\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 261102,
"SidewaysCard": false,
"CustomDeck": {
"2611": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025942034/FEADE7F6206804B42CC9B6049F51EDF6040C5D1D/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "2237f4",
"Name": "Card",
"Transform": {
"posX": 9.132818,
"posY": 3.77472258,
"posZ": -16.722805,
"rotX": 359.9202,
"rotY": 269.795776,
"rotZ": 0.017087061,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Gavriella Mizrah",
"Description": "Not Going Down That Easily",
"GMNotes": "{\n \"id\": \"05258\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Veteran.\",\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 312511,
"SidewaysCard": false,
"CustomDeck": {
"3125": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "88d3c0",
"Name": "Card",
"Transform": {
"posX": 9.132818,
"posY": 3.77472258,
"posZ": -16.722805,
"rotX": 359.9202,
"rotY": 269.795776,
"rotZ": 0.017087061,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "\"Look what I found!\"",
"Description": "",
"GMNotes": "{\n \"id\": \"01079\",\n \"alternate_ids\": [ \"60517\" ],\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Fortune.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 368816,
"SidewaysCard": false,
"CustomDeck": {
"3688": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "f57a6f",
"Name": "Card",
"Transform": {
"posX": 9.132975,
"posY": 3.76536965,
"posZ": -16.7228374,
"rotX": 359.9202,
"rotY": 269.795776,
"rotZ": 0.017062027,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Wither (4)",
"Description": "",
"GMNotes": "{\n \"id\": \"05321\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\",\n \"level\": 4,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 379619,
"SidewaysCard": false,
"CustomDeck": {
"3796": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025945336/04E36F64C2CBE1B4905FF44A869C75EC52CB3A56/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "fb9dbb",
"Name": "Card",
"Transform": {
"posX": 9.132975,
"posY": 3.76536965,
"posZ": -16.7228374,
"rotX": 359.9202,
"rotY": 269.795776,
"rotZ": 0.017062027,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Aquinnah (3)",
"Description": "The Forgotten Daughter",
"GMNotes": "{\n \"id\": \"02308\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Ally.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 368861,
"SidewaysCard": false,
"CustomDeck": {
"3688": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "2d94ed",
"Name": "Card",
"Transform": {
"posX": 9.132975,
"posY": 3.76536965,
"posZ": -16.7228374,
"rotX": 359.9202,
"rotY": 269.795776,
"rotZ": 0.017062027,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "The Hungering Blade (1)",
"Description": "Calamitous Blade of Celephaïs",
"GMNotes": "{\n \"id\": \"06018\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Item. Weapon. Melee. Relic. Cursed.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false,\n \"bonded\": [\n {\n \"id\": \"06019\",\n \"count\": 3\n }\n ]\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 590414,
"SidewaysCard": false,
"CustomDeck": {
"5904": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1697277388086984548/E61F3E847797C2C9231829611E0D92BA6376FA67/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 4,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "e2bc49",
"Name": "Card",
"Transform": {
"posX": 9.13313,
"posY": 3.80275917,
"posZ": -16.72287,
"rotX": 359.9202,
"rotY": 269.795776,
"rotZ": 0.0170370322,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Hypnotic Gaze (2)",
"Description": "",
"GMNotes": "{\n \"id\": \"60423\",\n \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 538721,
"SidewaysCard": false,
"CustomDeck": {
"5387": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297472038/B38A78EF27EBE0BDE1B36958D297701505AB936A/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "fcffa3",
"Name": "Card",
"Transform": {
"posX": 9.13313,
"posY": 3.80275917,
"posZ": -16.72287,
"rotX": 359.9202,
"rotY": 269.795776,
"rotZ": 0.0170370322,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Scrapper (3) (Taboo)",
"Description": "",
"GMNotes": "{\n \"id\": \"02193-t\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Talent.\",\n \"level\": 3,\n \"permanent\": true,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 450606,
"SidewaysCard": false,
"CustomDeck": {
"4506": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1656721113609569419/60B1DFC7C68C406C34641A1F53078F46D610821C/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "f2508d",
"Name": "Card",
"Transform": {
"posX": 9.13328552,
"posY": 3.836895,
"posZ": -16.7229023,
"rotX": 359.9202,
"rotY": 269.795776,
"rotZ": 0.0170120485,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Hot Streak (2)",
"Description": "",
"GMNotes": "{\n \"id\": \"50006\",\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"traits\": \"Fortune.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 315250,
"SidewaysCard": false,
"CustomDeck": {
"3152": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "4cfcc7",
"Name": "Card",
"Transform": {
"posX": 9.133441,
"posY": 3.817879,
"posZ": -16.7229347,
"rotX": 359.920227,
"rotY": 269.795776,
"rotZ": 0.01698711,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "A Test of Will (1)",
"Description": "",
"GMNotes": "{\n \"id\": \"03156\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Spirit.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 368837,
"SidewaysCard": false,
"CustomDeck": {
"3688": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "f98f6f",
"Name": "Card",
"Transform": {
"posX": 9.133596,
"posY": 3.79571486,
"posZ": -16.7229671,
"rotX": 359.920227,
"rotY": 269.795776,
"rotZ": 0.01696219,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Double or Nothing (Taboo)",
"Description": "",
"GMNotes": "{\n \"id\": \"02026-t\",\n \"type\": \"Skill\",\n \"class\": \"Rogue\",\n \"traits\": \"Fortune.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 450625,
"SidewaysCard": false,
"CustomDeck": {
"4506": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1656721113609569419/60B1DFC7C68C406C34641A1F53078F46D610821C/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "e21854",
"Name": "Card",
"Transform": {
"posX": 9.133596,
"posY": 3.79571486,
"posZ": -16.7229671,
"rotX": 359.920227,
"rotY": 269.795776,
"rotZ": 0.01696219,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Monster Slayer (5)",
"Description": "",
"GMNotes": "{\n \"id\": \"02300\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Spirit.\",\n \"level\": 5,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 226359,
"SidewaysCard": false,
"CustomDeck": {
"2263": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "025ed2",
"Name": "Card",
"Transform": {
"posX": 9.133596,
"posY": 3.79571486,
"posZ": -16.7229671,
"rotX": 359.920227,
"rotY": 269.795776,
"rotZ": 0.01696219,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Justify the Means (3)",
"Description": "",
"GMNotes": "{\n \"id\": \"07306\",\n \"type\": \"Skill\",\n \"class\": \"Rogue\",\n \"traits\": \"Practiced. Cursed.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 589505,
"SidewaysCard": false,
"CustomDeck": {
"5895": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1807607979163972370/50A45AE585D6404E677DFCA597A0F5FE13346B97/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 5,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "591284",
"Name": "Card",
"Transform": {
"posX": 9.133752,
"posY": 3.82030773,
"posZ": -16.723,
"rotX": 359.920227,
"rotY": 269.795776,
"rotZ": 0.0169372931,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Waveworn Idol",
"Description": "",
"GMNotes": "{\n \"id\": \"07179\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Relic.\",\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 451112,
"SidewaysCard": false,
"CustomDeck": {
"4511": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1655600400212405700/559F1F3EF87BDF7F067F9B7011EDC3A6ACE71259/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 5,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "cc6e4d",
"Name": "Card",
"Transform": {
"posX": 9.133752,
"posY": 3.82030773,
"posZ": -16.723,
"rotX": 359.920227,
"rotY": 269.795776,
"rotZ": 0.0169372931,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Take Heart",
"Description": "",
"GMNotes": "{\n \"id\": \"04201\",\n \"alternate_ids\": [ \"60519\" ],\n \"type\": \"Skill\",\n \"class\": \"Survivor\",\n \"traits\": \"Innate.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 368806,
"SidewaysCard": false,
"CustomDeck": {
"3688": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "9683d0",
"Name": "Card",
"Transform": {
"posX": 9.133907,
"posY": 3.79175949,
"posZ": -16.723032,
"rotX": 359.920227,
"rotY": 269.795776,
"rotZ": 0.016912438,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Olive McBride",
"Description": "Will Try Anything Once",
"GMNotes": "{\n \"id\": \"04197\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Ally. Witch.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 230321,
"SidewaysCard": false,
"CustomDeck": {
"2303": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "c92ea3",
"Name": "Card",
"Transform": {
"posX": 9.133907,
"posY": 3.79175949,
"posZ": -16.723032,
"rotX": 359.920227,
"rotY": 269.795776,
"rotZ": 0.016912438,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Shotgun (4)",
"Description": "",
"GMNotes": "{\n \"id\": \"01029\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Item. Weapon. Firearm.\",\n \"level\": 4,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Ammo\",\n \"count\": 2\n }\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 226357,
"SidewaysCard": false,
"CustomDeck": {
"2263": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "20645e",
"Name": "Card",
"Transform": {
"posX": 9.133907,
"posY": 3.79175949,
"posZ": -16.723032,
"rotX": 359.920227,
"rotY": 269.795776,
"rotZ": 0.016912438,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Counterpunch",
"Description": "",
"GMNotes": "{\n \"id\": \"60112\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Spirit. Tactic.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 545310,
"SidewaysCard": false,
"CustomDeck": {
"5453": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1546380927206250326/18BF6D2B2BBFDDBE5B021A46C310E4F45493EC26/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "7885cf",
"Name": "Card",
"Transform": {
"posX": 9.134062,
"posY": 3.80997539,
"posZ": -16.7230644,
"rotX": 359.920227,
"rotY": 269.795776,
"rotZ": 0.016887594,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Harmony Restored (2)",
"Description": "",
"GMNotes": "{\n \"id\": \"07230\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Fortune. Blessed.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 580010,
"SidewaysCard": false,
"CustomDeck": {
"5800": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1747933191219101327/797556CAC112D6D289B3A5D3A28433C9F0999CB5/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "273584",
"Name": "Card",
"Transform": {
"posX": 9.134062,
"posY": 3.80997539,
"posZ": -16.7230644,
"rotX": 359.920227,
"rotY": 269.795776,
"rotZ": 0.016887594,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Glory",
"Description": "",
"GMNotes": "{\n \"id\": \"60115\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Spirit.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 545313,
"SidewaysCard": false,
"CustomDeck": {
"5453": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1546380927206250326/18BF6D2B2BBFDDBE5B021A46C310E4F45493EC26/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "5b2e10",
"Name": "CardCustom",
"Transform": {
"posX": 9.134216,
"posY": 3.77505732,
"posZ": -16.7230968,
"rotX": 359.920227,
"rotY": 269.795776,
"rotZ": 0.016862791,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "The Necronomicon",
"Description": "John Dee Translation (Advanced)",
"GMNotes": "{\n \"id\": \"90003\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Tome.\",\n \"permanent\": false,\n \"weakness\": true\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 539500,
"SidewaysCard": false,
"CustomDeck": {
"5395": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1017195287736531119/B300331BEF8B29732A2AD6123D59380B7ECB631C/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "99d061",
"Name": "Card",
"Transform": {
"posX": 9.134216,
"posY": 3.77505732,
"posZ": -16.7230968,
"rotX": 359.920227,
"rotY": 269.795776,
"rotZ": 0.016862791,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Intrepid",
"Description": "",
"GMNotes": "{\n \"id\": \"04192\",\n \"type\": \"Skill\",\n \"class\": \"Guardian\",\n \"traits\": \"Innate.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 226304,
"SidewaysCard": false,
"CustomDeck": {
"2263": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "ad18a6",
"Name": "Card",
"Transform": {
"posX": 9.134371,
"posY": 3.7869103,
"posZ": -16.72313,
"rotX": 359.920258,
"rotY": 269.795776,
"rotZ": 0.016838029,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "The Red-Gloved Man (5)",
"Description": "He Was Never There",
"GMNotes": "{\n \"id\": \"02310\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Conspirator.\",\n \"level\": 5,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 368526,
"SidewaysCard": false,
"CustomDeck": {
"3685": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "051742",
"Name": "Card",
"Transform": {
"posX": 9.134371,
"posY": 3.7869103,
"posZ": -16.72313,
"rotX": 359.920258,
"rotY": 269.795776,
"rotZ": 0.016838029,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Able Bodied",
"Description": "",
"GMNotes": "{\n \"id\": \"05038\",\n \"type\": \"Skill\",\n \"class\": \"Survivor\",\n \"traits\": \"Innate.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 274606,
"SidewaysCard": false,
"CustomDeck": {
"2746": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025946328/561232524C8EAA4B4371B28652F78969E6ED6FFB/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "44a37f",
"Name": "Card",
"Transform": {
"posX": 9.134525,
"posY": 3.79553771,
"posZ": -16.7231617,
"rotX": 359.920258,
"rotY": 269.795776,
"rotZ": 0.016813267,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Old Hunting Rifle (3)",
"Description": "",
"GMNotes": "{\n \"id\": \"04273\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Item. Weapon. Firearm.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Ammo\",\n \"count\": 3\n }\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 314800,
"SidewaysCard": false,
"CustomDeck": {
"3148": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025946328/561232524C8EAA4B4371B28652F78969E6ED6FFB/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "dd4a25",
"Name": "Card",
"Transform": {
"posX": 9.134525,
"posY": 3.79553771,
"posZ": -16.7231617,
"rotX": 359.920258,
"rotY": 269.795776,
"rotZ": 0.016813267,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Whispers from the Deep",
"Description": "Weakness",
"GMNotes": "{\n \"id\": \"07009\",\n \"type\": \"Skill\",\n \"class\": \"Neutral\",\n \"traits\": \"Curse.\",\n \"permanent\": false,\n \"weakness\": true\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 585903,
"SidewaysCard": false,
"CustomDeck": {
"5859": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320664132663842/9B2F50595A754585A4DF12D6D48DC2561DC0E2C9/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "cbfc12",
"Name": "Card",
"Transform": {
"posX": 9.13468,
"posY": 3.75104213,
"posZ": -16.7231941,
"rotX": 359.920258,
"rotY": 269.795776,
"rotZ": 0.0167885367,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Archaic Glyphs",
"Description": "Untranslated",
"GMNotes": "{\n \"id\": \"03025\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Occult. Tome.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 368420,
"SidewaysCard": false,
"CustomDeck": {
"3684": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "5e808d",
"Name": "Card",
"Transform": {
"posX": 9.13468,
"posY": 3.75104213,
"posZ": -16.7231941,
"rotX": 359.920258,
"rotY": 269.795776,
"rotZ": 0.0167885367,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Self-Sacrifice",
"Description": "",
"GMNotes": "{\n \"id\": \"06157\",\n \"type\": \"Skill\",\n \"class\": \"Guardian\",\n \"traits\": \"Spirit.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 379831,
"SidewaysCard": false,
"CustomDeck": {
"3798": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025943109/9C5481E6DFEACD450C5522F884E615482281DDB1/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "006d44",
"Name": "Card",
"Transform": {
"posX": 9.13468,
"posY": 3.75104213,
"posZ": -16.7231941,
"rotX": 359.920258,
"rotY": 269.795776,
"rotZ": 0.0167885367,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Another Day, Another Dollar (3)",
"Description": "",
"GMNotes": "{\n \"id\": \"05278\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Talent.\",\n \"level\": 3,\n \"permanent\": true,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 378017,
"SidewaysCard": false,
"CustomDeck": {
"3780": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025944587/520448D0E9C22F102C7DDF64322EAD6FC221ECC8/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "013446",
"Name": "Card",
"Transform": {
"posX": 9.134833,
"posY": 3.75332785,
"posZ": -16.7232265,
"rotX": 359.920258,
"rotY": 269.795776,
"rotZ": 0.0167638455,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Extensive Research",
"Description": "",
"GMNotes": "{\n \"id\": \"60216\",\n \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"traits\": \"Insight.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 538814,
"SidewaysCard": false,
"CustomDeck": {
"5388": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1546381162227145538/0F253FC5301911273C32210992261DD1D2EBB578/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "bcf406",
"Name": "Card",
"Transform": {
"posX": 9.134833,
"posY": 3.75332785,
"posZ": -16.7232265,
"rotX": 359.920258,
"rotY": 269.795776,
"rotZ": 0.0167638455,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Shell Shock",
"Description": "",
"GMNotes": "{\n \"id\": \"03008\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Flaw.\",\n \"permanent\": false,\n \"weakness\": true\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 431731,
"SidewaysCard": false,
"CustomDeck": {
"4317": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "284bbe",
"Name": "Card",
"Transform": {
"posX": 9.134833,
"posY": 3.75332785,
"posZ": -16.7232265,
"rotX": 359.920258,
"rotY": 269.795776,
"rotZ": 0.0167638455,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Yaotl (1)",
"Description": "Lost Son of Eztli",
"GMNotes": "{\n \"id\": \"04035\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Ally. Wayfarer.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 584811,
"SidewaysCard": false,
"CustomDeck": {
"5848": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1697276627309509299/3B0E32939EB4599CCE3596975637C90FE4EE1DD6/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "bc3451",
"Name": "Card",
"Transform": {
"posX": 9.134987,
"posY": 3.752399,
"posZ": -16.723259,
"rotX": 359.920258,
"rotY": 269.795776,
"rotZ": 0.0167391729,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Burglary",
"Description": "",
"GMNotes": "{\n \"id\": \"01045\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Talent. Illicit.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 368622,
"SidewaysCard": false,
"CustomDeck": {
"3686": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "d5c93d",
"Name": "Card",
"Transform": {
"posX": 9.134987,
"posY": 3.752399,
"posZ": -16.723259,
"rotX": 359.920258,
"rotY": 269.795776,
"rotZ": 0.0167391729,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "The Tower • XVI",
"Description": "Circumstances Beyond Your Control",
"GMNotes": "{\n \"id\": \"05042\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Omen. Tarot.\",\n \"permanent\": false,\n \"weakness\": true,\n \"basicWeaknessCount\": 2\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 290320,
"SidewaysCard": false,
"CustomDeck": {
"2903": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "7f27d6",
"Name": "Card",
"Transform": {
"posX": 9.13514,
"posY": 3.69835758,
"posZ": -16.7232914,
"rotX": 359.920258,
"rotY": 269.795776,
"rotZ": 0.0167145245,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Sharpshooter (3)",
"Description": "",
"GMNotes": "{\n \"id\": \"60327\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Talent.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 538625,
"SidewaysCard": false,
"CustomDeck": {
"5386": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456298037683/22C99DD745DFF65ECC72FD32EFA9C9D0F0C12862/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "ff9f23",
"Name": "Card",
"Transform": {
"posX": 9.13514,
"posY": 3.69835758,
"posZ": -16.7232914,
"rotX": 359.920258,
"rotY": 269.795776,
"rotZ": 0.0167145245,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Segment of Onyx (1)",
"Description": "",
"GMNotes": "{\n \"id\": \"06021\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Relic. Occult.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false,\n \"bonded\": [\n {\n \"id\": \"06022\",\n \"count\": 1\n }\n ]\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 441026,
"SidewaysCard": false,
"CustomDeck": {
"4410": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "439af2",
"Name": "Card",
"Transform": {
"posX": 9.135294,
"posY": 3.691108,
"posZ": -16.7233238,
"rotX": 359.920258,
"rotY": 269.795776,
"rotZ": 0.0166899,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Lucky! (2)",
"Description": "",
"GMNotes": "{\n \"id\": \"01084\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Fortune.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 368846,
"SidewaysCard": false,
"CustomDeck": {
"3688": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "3ff641",
"Name": "Card",
"Transform": {
"posX": 9.135294,
"posY": 3.691108,
"posZ": -16.7233238,
"rotX": 359.920258,
"rotY": 269.795776,
"rotZ": 0.0166899,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Reckless Assault",
"Description": "",
"GMNotes": "{\n \"id\": \"03118\",\n \"type\": \"Skill\",\n \"class\": \"Neutral\",\n \"traits\": \"Desperate.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 368503,
"SidewaysCard": false,
"CustomDeck": {
"3685": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "3b8cb7",
"Name": "Card",
"Transform": {
"posX": 9.135524,
"posY": 3.68571877,
"posZ": -16.7233715,
"rotX": 359.9202,
"rotY": 269.795776,
"rotZ": 0.0170629621,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Mystifying Song",
"Description": "",
"GMNotes": "{\n \"id\": \"05018\",\n \"alternate_ids\": [ \"99002\" ],\n \"type\": \"Event\",\n \"class\": \"Neutral\",\n \"traits\": \"Spell. Song.\",\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 444451,
"SidewaysCard": false,
"CustomDeck": {
"4444": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "16ad5d",
"Name": "Card",
"Transform": {
"posX": 9.135524,
"posY": 3.68571877,
"posZ": -16.7233715,
"rotX": 359.9202,
"rotY": 269.795776,
"rotZ": 0.0170629621,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Baron Samedi",
"Description": "",
"GMNotes": "{\n \"id\": \"05019\",\n \"alternate_ids\": [ \"99003\" ],\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Avatar.\",\n \"permanent\": false,\n \"weakness\": true\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 527552,
"SidewaysCard": false,
"CustomDeck": {
"5275": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "7ec473",
"Name": "Card",
"Transform": {
"posX": 9.135754,
"posY": 3.67716622,
"posZ": -16.72342,
"rotX": 359.920135,
"rotY": 269.795776,
"rotZ": 0.0174355973,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Stand Together",
"Description": "",
"GMNotes": "{\n \"id\": \"60118\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Spirit.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 545316,
"SidewaysCard": false,
"CustomDeck": {
"5453": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1546380927206250326/18BF6D2B2BBFDDBE5B021A46C310E4F45493EC26/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "eeb330",
"Name": "Card",
"Transform": {
"posX": 9.136007,
"posY": 3.68292975,
"posZ": -16.7234726,
"rotX": 359.920166,
"rotY": 269.795776,
"rotZ": 0.0172122344,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Chronophobia",
"Description": "Basic Weakness",
"GMNotes": "{\n \"id\": \"02039\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Madness.\",\n \"permanent\": false,\n \"weakness\": true,\n \"basicWeaknessCount\": 2\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 431207,
"SidewaysCard": false,
"CustomDeck": {
"4312": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "372b5b",
"Name": "Card",
"Transform": {
"posX": 9.136261,
"posY": 3.73541927,
"posZ": -16.723526,
"rotX": 359.920227,
"rotY": 269.795776,
"rotZ": 0.0169891268,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "The World • XXI (3)",
"Description": "The Journey is Complete",
"GMNotes": "{\n \"id\": \"54003\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Tarot.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 449523,
"SidewaysCard": false,
"CustomDeck": {
"4495": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1697276706766470010/D835D3A12B12173C78B2FFA055FEFD6042AEDD38/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 6,
"NumHeight": 6,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "b74c69",
"Name": "Card",
"Transform": {
"posX": 9.136261,
"posY": 3.73541927,
"posZ": -16.723526,
"rotX": 359.920227,
"rotY": 269.795776,
"rotZ": 0.0169891268,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "The Fool • 0 (3)",
"Description": "Unlimited Potential",
"GMNotes": "{\n \"id\": \"54011\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Tarot.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 449532,
"SidewaysCard": false,
"CustomDeck": {
"4495": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1697276706766470010/D835D3A12B12173C78B2FFA055FEFD6042AEDD38/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 6,
"NumHeight": 6,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "f1f24e",
"Name": "Card",
"Transform": {
"posX": 9.136261,
"posY": 3.73541927,
"posZ": -16.723526,
"rotX": 359.920227,
"rotY": 269.795776,
"rotZ": 0.0169891268,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Ríastrad (1)",
"Description": "",
"GMNotes": "{\n \"id\": \"07193\",\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"traits\": \"Spell. Spirit. Cursed.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 588604,
"SidewaysCard": false,
"CustomDeck": {
"5886": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1762566393205073673/1FABAC4DD6EF3706D8C8285A256A13F43AE6B1E1/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 6,
"NumHeight": 3,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "2240f9",
"Name": "Card",
"Transform": {
"posX": 9.136515,
"posY": 3.784638,
"posZ": -16.72358,
"rotX": 359.920258,
"rotY": 269.795776,
"rotZ": 0.0167662855,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Coup de Grâce",
"Description": "",
"GMNotes": "{\n \"id\": \"04269\",\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"traits\": \"Tactic. Fated.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 276200,
"SidewaysCard": false,
"CustomDeck": {
"2762": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025944587/520448D0E9C22F102C7DDF64322EAD6FC221ECC8/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "3b6834",
"Name": "Card",
"Transform": {
"posX": 9.136515,
"posY": 3.784638,
"posZ": -16.72358,
"rotX": 359.920258,
"rotY": 269.795776,
"rotZ": 0.0167662855,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "\"I've had worse…\" (4)",
"Description": "",
"GMNotes": "{\n \"id\": \"02261\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Spirit.\",\n \"level\": 4,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 226355,
"SidewaysCard": false,
"CustomDeck": {
"2263": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "76147b",
"Name": "Card",
"Transform": {
"posX": 9.136515,
"posY": 3.784638,
"posZ": -16.72358,
"rotX": 359.920258,
"rotY": 269.795776,
"rotZ": 0.0167662855,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "\"I've had worse…\" (2)",
"Description": "",
"GMNotes": "{\n \"id\": \"05315\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Spirit.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 378619,
"SidewaysCard": false,
"CustomDeck": {
"3786": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025943109/9C5481E6DFEACD450C5522F884E615482281DDB1/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "719a45",
"Name": "Card",
"Transform": {
"posX": 9.136767,
"posY": 3.83058953,
"posZ": -16.7236328,
"rotX": 359.9203,
"rotY": 269.795776,
"rotZ": 0.0165436547,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Déjà Vu (5)",
"Description": "",
"GMNotes": "{\n \"id\": \"60531\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Talent. Cursed.\",\n \"level\": 5,\n \"permanent\": true,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 550829,
"SidewaysCard": false,
"CustomDeck": {
"5508": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456298038335/2CA532D7F0EED2B2B40E47709AC56D85C4613A33/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "d40f4e",
"Name": "Card",
"Transform": {
"posX": 9.136767,
"posY": 3.83058953,
"posZ": -16.7236328,
"rotX": 359.9203,
"rotY": 269.795776,
"rotZ": 0.0165436547,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Chainsaw (4)",
"Description": "",
"GMNotes": "{\n \"id\": \"60529\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Item. Tool. Weapon. Melee.\",\n \"level\": 4,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Supply\",\n \"count\": 3\n }\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 550827,
"SidewaysCard": false,
"CustomDeck": {
"5508": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456298038335/2CA532D7F0EED2B2B40E47709AC56D85C4613A33/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "b4121c",
"Name": "Card",
"Transform": {
"posX": 9.13702,
"posY": 3.82337666,
"posZ": -16.7236862,
"rotX": 359.920349,
"rotY": 269.795776,
"rotZ": 0.01632129,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Farsight (4)",
"Description": "",
"GMNotes": "{\n \"id\": \"60231\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Ritual.\",\n \"level\": 4,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 538829,
"SidewaysCard": false,
"CustomDeck": {
"5388": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1546381162227145538/0F253FC5301911273C32210992261DD1D2EBB578/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "a77ce0",
"Name": "Card",
"Transform": {
"posX": 9.13702,
"posY": 3.82337666,
"posZ": -16.7236862,
"rotX": 359.920349,
"rotY": 269.795776,
"rotZ": 0.01632129,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "The Star • XVII (3)",
"Description": "You Have Been Chosen",
"GMNotes": "{\n \"id\": \"54001\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Tarot.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 449521,
"SidewaysCard": false,
"CustomDeck": {
"4495": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1697276706766470010/D835D3A12B12173C78B2FFA055FEFD6042AEDD38/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 6,
"NumHeight": 6,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "1165db",
"Name": "Card",
"Transform": {
"posX": 9.13702,
"posY": 3.82337666,
"posZ": -16.7236862,
"rotX": 359.920349,
"rotY": 269.795776,
"rotZ": 0.01632129,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Physical Training",
"Description": "",
"GMNotes": "{\n \"id\": \"01017\",\n \"alternate_ids\": [ \"60108\" ],\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Talent.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 226323,
"SidewaysCard": false,
"CustomDeck": {
"2263": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "9e5cd2",
"Name": "Card",
"Transform": {
"posX": 9.137273,
"posY": 3.86290383,
"posZ": -16.72374,
"rotX": 359.92038,
"rotY": 269.795776,
"rotZ": 0.0160991754,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Curiosity",
"Description": "",
"GMNotes": "{\n \"id\": \"05026\",\n \"type\": \"Skill\",\n \"class\": \"Seeker\",\n \"traits\": \"Innate.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 430808,
"SidewaysCard": false,
"CustomDeck": {
"4308": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "29169e",
"Name": "Card",
"Transform": {
"posX": 9.137273,
"posY": 3.86290383,
"posZ": -16.72374,
"rotX": 359.92038,
"rotY": 269.795776,
"rotZ": 0.0160991754,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Shortcut (2)",
"Description": "",
"GMNotes": "{\n \"id\": \"03232\",\n \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"traits\": \"Insight. Tactic.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 585308,
"SidewaysCard": false,
"CustomDeck": {
"5853": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1697276627309509299/3B0E32939EB4599CCE3596975637C90FE4EE1DD6/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "64e131",
"Name": "Card",
"Transform": {
"posX": 9.137525,
"posY": 3.84927368,
"posZ": -16.723793,
"rotX": 359.9204,
"rotY": 269.795776,
"rotZ": 0.0158773176,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Blood Pact (3)",
"Description": "",
"GMNotes": "{\n \"id\": \"02191\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell. Pact.\",\n \"level\": 3,\n \"permanent\": true,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 230348,
"SidewaysCard": false,
"CustomDeck": {
"2303": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "c17498",
"Name": "Card",
"Transform": {
"posX": 9.137525,
"posY": 3.84927368,
"posZ": -16.723793,
"rotX": 359.9204,
"rotY": 269.795776,
"rotZ": 0.0158773176,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Paranoia",
"Description": "Basic Weakness",
"GMNotes": "{\n \"id\": \"01097\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Madness.\",\n \"permanent\": false,\n \"weakness\": true,\n \"basicWeaknessCount\": 2\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 527401,
"SidewaysCard": false,
"CustomDeck": {
"5274": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "9f76ec",
"Name": "Card",
"Transform": {
"posX": 9.137776,
"posY": 3.83248925,
"posZ": -16.7238464,
"rotX": 359.920471,
"rotY": 269.795776,
"rotZ": 0.0156557,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Twila Katherine Price (3)",
"Description": "Lost in a Dream",
"GMNotes": "{\n \"id\": \"06244\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Ally. Artist. Dreamer.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 448034,
"SidewaysCard": false,
"CustomDeck": {
"4480": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025945336/04E36F64C2CBE1B4905FF44A869C75EC52CB3A56/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "20c8a9",
"Name": "Card",
"Transform": {
"posX": 9.137776,
"posY": 3.83248925,
"posZ": -16.7238464,
"rotX": 359.920471,
"rotY": 269.795776,
"rotZ": 0.0156557,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "The Hierophant • V (3)",
"Description": "Your True Master Awaits",
"GMNotes": "{\n \"id\": \"54007\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Tarot.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 449527,
"SidewaysCard": false,
"CustomDeck": {
"4495": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1697276706766470010/D835D3A12B12173C78B2FFA055FEFD6042AEDD38/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 6,
"NumHeight": 6,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "591789",
"Name": "Card",
"Transform": {
"posX": 9.138028,
"posY": 3.81255436,
"posZ": -16.7239,
"rotX": 359.9205,
"rotY": 269.795776,
"rotZ": 0.0154343164,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Recharge (4)",
"Description": "",
"GMNotes": "{\n \"id\": \"60429\",\n \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\",\n \"level\": 4,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 538727,
"SidewaysCard": false,
"CustomDeck": {
"5387": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297472038/B38A78EF27EBE0BDE1B36958D297701505AB936A/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "2e5b03",
"Name": "Card",
"Transform": {
"posX": 9.138028,
"posY": 3.81255436,
"posZ": -16.7239,
"rotX": 359.9205,
"rotY": 269.795776,
"rotZ": 0.0154343164,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Death • XIII (1)",
"Description": "Free from the Past",
"GMNotes": "{\n \"id\": \"05027\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Tarot.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 290207,
"SidewaysCard": false,
"CustomDeck": {
"2902": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "d099f4",
"Name": "Card",
"Transform": {
"posX": 9.138279,
"posY": 3.78947258,
"posZ": -16.7239532,
"rotX": 359.920563,
"rotY": 269.795776,
"rotZ": 0.0152131757,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Sneak By",
"Description": "",
"GMNotes": "{\n \"id\": \"60316\",\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"traits\": \"Trick.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 538614,
"SidewaysCard": false,
"CustomDeck": {
"5386": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456298037683/22C99DD745DFF65ECC72FD32EFA9C9D0F0C12862/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "e80bd8",
"Name": "Card",
"Transform": {
"posX": 9.138279,
"posY": 3.78947258,
"posZ": -16.7239532,
"rotX": 359.920563,
"rotY": 269.795776,
"rotZ": 0.0152131757,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "The Moon • XVIII (1)",
"Description": "Message from Your Inner Self",
"GMNotes": "{\n \"id\": \"05031\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Tarot.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 527605,
"SidewaysCard": false,
"CustomDeck": {
"5276": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025944587/520448D0E9C22F102C7DDF64322EAD6FC221ECC8/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "7bcaf3",
"Name": "Card",
"Transform": {
"posX": 9.13853,
"posY": 3.763247,
"posZ": -16.7240067,
"rotX": 359.9206,
"rotY": 269.795776,
"rotZ": 0.01499229,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "The Devil • XV",
"Description": "Your Shadow Hungers",
"GMNotes": "{\n \"id\": \"54015\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Omen. Tarot.\",\n \"permanent\": false,\n \"weakness\": true,\n \"basicWeaknessCount\": 2\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 449534,
"SidewaysCard": false,
"CustomDeck": {
"4495": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1697276706766470010/D835D3A12B12173C78B2FFA055FEFD6042AEDD38/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 6,
"NumHeight": 6,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "86b9c5",
"Name": "Card",
"Transform": {
"posX": 9.13853,
"posY": 3.763247,
"posZ": -16.7240067,
"rotX": 359.9206,
"rotY": 269.795776,
"rotZ": 0.01499229,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Plucky (1)",
"Description": "",
"GMNotes": "{\n \"id\": \"03115\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Talent. Composure.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 368834,
"SidewaysCard": false,
"CustomDeck": {
"3688": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "8ffa44",
"Name": "Card",
"Transform": {
"posX": 9.138781,
"posY": 3.73388171,
"posZ": -16.72406,
"rotX": 359.920624,
"rotY": 269.795776,
"rotZ": 0.0147716571,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "One-Two Punch (5)",
"Description": "",
"GMNotes": "{\n \"id\": \"60132\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Spirit. Tactic.\",\n \"level\": 5,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 545330,
"SidewaysCard": false,
"CustomDeck": {
"5453": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1546380927206250326/18BF6D2B2BBFDDBE5B021A46C310E4F45493EC26/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "2d362c",
"Name": "Card",
"Transform": {
"posX": 9.138781,
"posY": 3.73388171,
"posZ": -16.72406,
"rotX": 359.920624,
"rotY": 269.795776,
"rotZ": 0.0147716571,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Lightning Gun (5)",
"Description": "",
"GMNotes": "{\n \"id\": \"02301\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Item. Weapon. Firearm.\",\n \"level\": 5,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Ammo\",\n \"count\": 3\n }\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 226361,
"SidewaysCard": false,
"CustomDeck": {
"2263": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "c077bf",
"Name": "Card",
"Transform": {
"posX": 9.139031,
"posY": 3.70137978,
"posZ": -16.7241135,
"rotX": 359.9207,
"rotY": 269.795776,
"rotZ": 0.01455126,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Against All Odds (2)",
"Description": "",
"GMNotes": "{\n \"id\": \"04202\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Spirit.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 368850,
"SidewaysCard": false,
"CustomDeck": {
"3688": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "87226d",
"Name": "Card",
"Transform": {
"posX": 9.139031,
"posY": 3.70137978,
"posZ": -16.7241135,
"rotX": 359.9207,
"rotY": 269.795776,
"rotZ": 0.01455126,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Sacred Covenant (2)",
"Description": "",
"GMNotes": "{\n \"id\": \"07110\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Covenant. Blessed.\",\n \"level\": 2,\n \"permanent\": true,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 553102,
"SidewaysCard": false,
"CustomDeck": {
"5531": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1684870715280867313/BFD2AF968EAC917D3B838DCB8B1656941CD8B5CC/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "edb554",
"Name": "Card",
"Transform": {
"posX": 9.139031,
"posY": 3.70137978,
"posZ": -16.7241135,
"rotX": 359.9207,
"rotY": 269.795776,
"rotZ": 0.01455126,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Barricade",
"Description": "",
"GMNotes": "{\n \"id\": \"01038\",\n \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"traits\": \"Insight. Tactic.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 368404,
"SidewaysCard": false,
"CustomDeck": {
"3684": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "52a66f",
"Name": "Card",
"Transform": {
"posX": 9.139281,
"posY": 3.71564579,
"posZ": -16.724165,
"rotX": 359.920715,
"rotY": 269.795776,
"rotZ": 0.0143311061,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Granny Orne (3)",
"Description": "Tough Old Bird",
"GMNotes": "{\n \"id\": \"60527\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Ally.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 550825,
"SidewaysCard": false,
"CustomDeck": {
"5508": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456298038335/2CA532D7F0EED2B2B40E47709AC56D85C4613A33/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "565b6b",
"Name": "Card",
"Transform": {
"posX": 9.139281,
"posY": 3.71564579,
"posZ": -16.724165,
"rotX": 359.920715,
"rotY": 269.795776,
"rotZ": 0.0143311061,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Strange Solution",
"Description": "Unidentified",
"GMNotes": "{\n \"id\": \"02021\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Science.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 368422,
"SidewaysCard": false,
"CustomDeck": {
"3684": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "5a305e",
"Name": "Card",
"Transform": {
"posX": 9.139281,
"posY": 3.71564579,
"posZ": -16.724165,
"rotX": 359.920715,
"rotY": 269.795776,
"rotZ": 0.0143311061,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Colt Vest Pocket",
"Description": "",
"GMNotes": "{\n \"id\": \"04268\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Item. Weapon. Firearm. Illicit.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Ammo\",\n \"count\": 5\n }\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 276101,
"SidewaysCard": false,
"CustomDeck": {
"2761": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025944587/520448D0E9C22F102C7DDF64322EAD6FC221ECC8/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "9229a8",
"Name": "Card",
"Transform": {
"posX": 9.139531,
"posY": 3.72668386,
"posZ": -16.7242165,
"rotX": 359.920746,
"rotY": 269.795776,
"rotZ": 0.0141111994,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Dr. Henry Armitage",
"Description": "The Head Librarian",
"GMNotes": "{\n \"id\": \"02040\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Miskatonic.\",\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 588913,
"SidewaysCard": false,
"CustomDeck": {
"5889": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1697276627309509299/3B0E32939EB4599CCE3596975637C90FE4EE1DD6/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "c026c9",
"Name": "Card",
"Transform": {
"posX": 9.139531,
"posY": 3.72668386,
"posZ": -16.7242165,
"rotX": 359.920746,
"rotY": 269.795776,
"rotZ": 0.0141111994,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": ".32 Colt (2)",
"Description": "",
"GMNotes": "{\n \"id\": \"52001\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Item. Weapon. Firearm.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Ammo\",\n \"count\": 6\n }\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 440922,
"SidewaysCard": false,
"CustomDeck": {
"4409": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025943109/9C5481E6DFEACD450C5522F884E615482281DDB1/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "dfbc13",
"Name": "Card",
"Transform": {
"posX": 9.139781,
"posY": 3.684596,
"posZ": -16.724268,
"rotX": 359.9208,
"rotY": 269.795776,
"rotZ": 0.01389154,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Leather Jacket",
"Description": "",
"GMNotes": "{\n \"id\": \"60310\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Item. Armor.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 538608,
"SidewaysCard": false,
"CustomDeck": {
"5386": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456298037683/22C99DD745DFF65ECC72FD32EFA9C9D0F0C12862/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "4874bc",
"Name": "Card",
"Transform": {
"posX": 9.139781,
"posY": 3.684596,
"posZ": -16.724268,
"rotX": 359.9208,
"rotY": 269.795776,
"rotZ": 0.01389154,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Strange Solution (4)",
"Description": "Restorative Concoction",
"GMNotes": "{\n \"id\": \"02262\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Science.\",\n \"level\": 4,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 430656,
"SidewaysCard": false,
"CustomDeck": {
"4306": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "d0de54",
"Name": "Card",
"Transform": {
"posX": 9.140093,
"posY": 3.68441081,
"posZ": -16.7243328,
"rotX": 359.920319,
"rotY": 269.795776,
"rotZ": 0.0165034272,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Enchanted Blade (3)",
"Description": "Mystic",
"GMNotes": "{\n \"id\": \"05193\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Item. Relic. Weapon. Melee.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Charge\",\n \"count\": 4\n }\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 293314,
"SidewaysCard": false,
"CustomDeck": {
"2933": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025945336/04E36F64C2CBE1B4905FF44A869C75EC52CB3A56/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "5c3dd0",
"Name": "Card",
"Transform": {
"posX": 9.140093,
"posY": 3.68441081,
"posZ": -16.7243328,
"rotX": 359.920319,
"rotY": 269.795776,
"rotZ": 0.0165034272,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Say Your Prayers",
"Description": "",
"GMNotes": "{\n \"id\": \"03116\",\n \"type\": \"Skill\",\n \"class\": \"Neutral\",\n \"traits\": \"Desperate.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 368501,
"SidewaysCard": false,
"CustomDeck": {
"3685": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "4f2668",
"Name": "Card",
"Transform": {
"posX": 9.140405,
"posY": 3.68105674,
"posZ": -16.7243977,
"rotX": 359.91983,
"rotY": 269.795776,
"rotZ": 0.0191124957,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Rite of Seeking (2)",
"Description": "",
"GMNotes": "{\n \"id\": \"51007\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Charge\",\n \"count\": 3\n }\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 313604,
"SidewaysCard": false,
"CustomDeck": {
"3136": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025945336/04E36F64C2CBE1B4905FF44A869C75EC52CB3A56/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "731d2a",
"Name": "Card",
"Transform": {
"posX": 9.140405,
"posY": 3.68105674,
"posZ": -16.7243977,
"rotX": 359.91983,
"rotY": 269.795776,
"rotZ": 0.0191124957,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Adaptable (1)",
"Description": "",
"GMNotes": "{\n \"id\": \"02110\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Talent.\",\n \"level\": 1,\n \"permanent\": true,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 315232,
"SidewaysCard": false,
"CustomDeck": {
"3152": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "4d971e",
"Name": "Card",
"Transform": {
"posX": 9.140729,
"posY": 3.68370223,
"posZ": -16.7244663,
"rotX": 359.9201,
"rotY": 269.795776,
"rotZ": 0.01754738,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Survival Knife",
"Description": "",
"GMNotes": "{\n \"id\": \"04017\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Item. Weapon. Melee.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 226322,
"SidewaysCard": false,
"CustomDeck": {
"2263": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "c6caf6",
"Name": "Card",
"Transform": {
"posX": 9.140729,
"posY": 3.68370223,
"posZ": -16.7244663,
"rotX": 359.9201,
"rotY": 269.795776,
"rotZ": 0.01754738,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Ineffable Truth",
"Description": "",
"GMNotes": "{\n \"id\": \"60409\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Charge\",\n \"count\": 3\n }\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 538707,
"SidewaysCard": false,
"CustomDeck": {
"5387": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297472038/B38A78EF27EBE0BDE1B36958D297701505AB936A/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "fe0cc0",
"Name": "Card",
"Transform": {
"posX": 9.141053,
"posY": 3.68317556,
"posZ": -16.724535,
"rotX": 359.9204,
"rotY": 269.795776,
"rotZ": 0.0159839876,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": ".45 Automatic (2)",
"Description": "",
"GMNotes": "{\n \"id\": \"03190\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Item. Weapon. Firearm.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Ammo\",\n \"count\": 4\n }\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 226347,
"SidewaysCard": false,
"CustomDeck": {
"2263": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "63f145",
"Name": "Card",
"Transform": {
"posX": 9.141053,
"posY": 3.68317556,
"posZ": -16.724535,
"rotX": 359.9204,
"rotY": 269.795776,
"rotZ": 0.0159839876,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Opportunist (2)",
"Description": "",
"GMNotes": "{\n \"id\": \"02231\",\n \"type\": \"Skill\",\n \"class\": \"Rogue\",\n \"traits\": \"Innate. Developed.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 315241,
"SidewaysCard": false,
"CustomDeck": {
"3152": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "4ea68b",
"Name": "Card",
"Transform": {
"posX": 9.141053,
"posY": 3.68317556,
"posZ": -16.724535,
"rotX": 359.9204,
"rotY": 269.795776,
"rotZ": 0.0159839876,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Stubborn Detective",
"Description": "Enemy",
"GMNotes": "{\n \"id\": \"01103\",\n \"type\": \"Enemy\",\n \"class\": \"Neutral\",\n \"traits\": \"Humanoid. Detective.\",\n \"permanent\": false,\n \"weakness\": true,\n \"basicWeaknessCount\": 1\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 527418,
"SidewaysCard": false,
"CustomDeck": {
"5274": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "1cd2bd",
"Name": "Card",
"Transform": {
"posX": 9.1413765,
"posY": 3.72938156,
"posZ": -16.7246037,
"rotX": 359.9207,
"rotY": 269.795776,
"rotZ": 0.0144223394,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Moonlight Ritual",
"Description": "",
"GMNotes": "{\n \"id\": \"02267\",\n \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell. Insight.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 230306,
"SidewaysCard": false,
"CustomDeck": {
"2303": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "f0e425",
"Name": "Card",
"Transform": {
"posX": 9.1413765,
"posY": 3.72938156,
"posZ": -16.7246037,
"rotX": 359.9207,
"rotY": 269.795776,
"rotZ": 0.0144223394,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Dumb Luck",
"Description": "",
"GMNotes": "{\n \"id\": \"04034\",\n \"alternate_ids\": [ \"60514\" ],\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Fortune.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 368814,
"SidewaysCard": false,
"CustomDeck": {
"3688": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "96b5ed",
"Name": "Card",
"Transform": {
"posX": 9.1417,
"posY": 3.72242284,
"posZ": -16.7246723,
"rotX": 359.921,
"rotY": 269.795776,
"rotZ": 0.0128624151,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Perception (2)",
"Description": "",
"GMNotes": "{\n \"id\": \"60228\",\n \"type\": \"Skill\",\n \"class\": \"Seeker\",\n \"traits\": \"Practiced. Expert.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 538826,
"SidewaysCard": false,
"CustomDeck": {
"5388": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1546381162227145538/0F253FC5301911273C32210992261DD1D2EBB578/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "45d2d2",
"Name": "Card",
"Transform": {
"posX": 9.1417,
"posY": 3.72242284,
"posZ": -16.7246723,
"rotX": 359.921,
"rotY": 269.795776,
"rotZ": 0.0128624151,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Uncage the Soul",
"Description": "",
"GMNotes": "{\n \"id\": \"03033\",\n \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"traits\": \"Spirit.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 230305,
"SidewaysCard": false,
"CustomDeck": {
"2303": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "da227d",
"Name": "Card",
"Transform": {
"posX": 9.142022,
"posY": 3.71230245,
"posZ": -16.724741,
"rotX": 359.9213,
"rotY": 269.795776,
"rotZ": 0.0113042342,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "The Thing That Follows",
"Description": "Enemy",
"GMNotes": "{\n \"id\": \"03042\",\n \"type\": \"Enemy\",\n \"class\": \"Neutral\",\n \"traits\": \"Monster. Curse.\",\n \"permanent\": false,\n \"weakness\": true,\n \"basicWeaknessCount\": 1\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 431115,
"SidewaysCard": false,
"CustomDeck": {
"4311": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "2db518",
"Name": "Card",
"Transform": {
"posX": 9.142022,
"posY": 3.71230245,
"posZ": -16.724741,
"rotX": 359.9213,
"rotY": 269.795776,
"rotZ": 0.0113042342,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Evidence!",
"Description": "",
"GMNotes": "{\n \"id\": \"01022\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Insight.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 226309,
"SidewaysCard": false,
"CustomDeck": {
"2263": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "44334c",
"Name": "Card",
"Transform": {
"posX": 9.142022,
"posY": 3.71230245,
"posZ": -16.724741,
"rotX": 359.9213,
"rotY": 269.795776,
"rotZ": 0.0113042342,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Puzzle Box",
"Description": "Mysterious Device",
"GMNotes": "{\n \"id\": \"05228\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Relic.\",\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 312510,
"SidewaysCard": false,
"CustomDeck": {
"3125": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "7c958e",
"Name": "Card",
"Transform": {
"posX": 9.142344,
"posY": 3.74892545,
"posZ": -16.7248077,
"rotX": 359.92157,
"rotY": 269.795776,
"rotZ": 0.00974779,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Jake Williams",
"Description": "",
"GMNotes": "{\n \"id\": \"04008\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Wayfarer.\",\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 377343,
"SidewaysCard": false,
"CustomDeck": {
"3773": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "bb1cce",
"Name": "Card",
"Transform": {
"posX": 9.142344,
"posY": 3.74892545,
"posZ": -16.7248077,
"rotX": 359.92157,
"rotY": 269.795776,
"rotZ": 0.00974779,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Flashlight",
"Description": "",
"GMNotes": "{\n \"id\": \"01087\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Tool.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Supply\",\n \"count\": 3\n }\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 368515,
"SidewaysCard": false,
"CustomDeck": {
"3685": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "3689dd",
"Name": "Card",
"Transform": {
"posX": 9.142667,
"posY": 3.73239422,
"posZ": -16.7248745,
"rotX": 359.921875,
"rotY": 269.795776,
"rotZ": 0.008193066,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Barricade (3)",
"Description": "",
"GMNotes": "{\n \"id\": \"50004\",\n \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"traits\": \"Insight. Tactic.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 580901,
"SidewaysCard": false,
"CustomDeck": {
"5809": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1697276627309509299/3B0E32939EB4599CCE3596975637C90FE4EE1DD6/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "600a3c",
"Name": "Card",
"Transform": {
"posX": 9.142667,
"posY": 3.73239422,
"posZ": -16.7248745,
"rotX": 359.921875,
"rotY": 269.795776,
"rotZ": 0.008193066,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "The Stars Are Right",
"Description": "",
"GMNotes": "{\n \"id\": \"06028\",\n \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"traits\": \"Augury.\",\n \"permanent\": false,\n \"bonded_to\": [\n {\n \"id\": \"06027\",\n \"count\": 1\n }\n ],\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 443723,
"SidewaysCard": false,
"CustomDeck": {
"4437": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025945336/04E36F64C2CBE1B4905FF44A869C75EC52CB3A56/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "3df5fb",
"Name": "Card",
"Transform": {
"posX": 9.142667,
"posY": 3.73239422,
"posZ": -16.7248745,
"rotX": 359.921875,
"rotY": 269.795776,
"rotZ": 0.008193066,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Evidence! (1)",
"Description": "",
"GMNotes": "{\n \"id\": \"60120\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Insight.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 545318,
"SidewaysCard": false,
"CustomDeck": {
"5453": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1546380927206250326/18BF6D2B2BBFDDBE5B021A46C310E4F45493EC26/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "4e1d91",
"Name": "Card",
"Transform": {
"posX": 9.142988,
"posY": 3.76261353,
"posZ": -16.7249413,
"rotX": 359.92215,
"rotY": 269.795776,
"rotZ": 0.00664008735,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Steadfast",
"Description": "",
"GMNotes": "{\n \"id\": \"05022\",\n \"type\": \"Skill\",\n \"class\": \"Guardian\",\n \"traits\": \"Innate.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 431006,
"SidewaysCard": false,
"CustomDeck": {
"4310": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025943109/9C5481E6DFEACD450C5522F884E615482281DDB1/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "3c959c",
"Name": "Card",
"Transform": {
"posX": 9.142988,
"posY": 3.76261353,
"posZ": -16.7249413,
"rotX": 359.92215,
"rotY": 269.795776,
"rotZ": 0.00664008735,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Relic Hunter (3)",
"Description": "",
"GMNotes": "{\n \"id\": \"02157\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Talent.\",\n \"level\": 3,\n \"permanent\": true,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 368523,
"SidewaysCard": false,
"CustomDeck": {
"3685": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "17319c",
"Name": "Card",
"Transform": {
"posX": 9.14331,
"posY": 3.73968577,
"posZ": -16.725008,
"rotX": 359.922455,
"rotY": 269.795776,
"rotZ": 0.00508881826,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Azure Flame",
"Description": "",
"GMNotes": "{\n \"id\": \"60407\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Charge\",\n \"count\": 4\n }\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 538705,
"SidewaysCard": false,
"CustomDeck": {
"5387": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297472038/B38A78EF27EBE0BDE1B36958D297701505AB936A/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "e4688b",
"Name": "Card",
"Transform": {
"posX": 9.14331,
"posY": 3.73968577,
"posZ": -16.725008,
"rotX": 359.922455,
"rotY": 269.795776,
"rotZ": 0.00508881826,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Daredevil",
"Description": "",
"GMNotes": "{\n \"id\": \"60318\",\n \"type\": \"Skill\",\n \"class\": \"Rogue\",\n \"traits\": \"Fortune. Practiced.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 538616,
"SidewaysCard": false,
"CustomDeck": {
"5386": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456298037683/22C99DD745DFF65ECC72FD32EFA9C9D0F0C12862/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "e89f48",
"Name": "Card",
"Transform": {
"posX": 9.14331,
"posY": 3.73968577,
"posZ": -16.725008,
"rotX": 359.922455,
"rotY": 269.795776,
"rotZ": 0.00508881826,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Blade of Ark'at",
"Description": "Shellblade Tribute",
"GMNotes": "{\n \"id\": \"86054\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Relic. Weapon. Melee.\",\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 582629,
"SidewaysCard": false,
"CustomDeck": {
"5826": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1655600953065965648/5A0D88CCA811A490C2FEF2675A397E1CEE010870/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 8,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "0a4d22",
"Name": "Card",
"Transform": {
"posX": 9.143631,
"posY": 3.76351547,
"posZ": -16.7250748,
"rotX": 359.92276,
"rotY": 269.795776,
"rotZ": 0.003539268,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Forbidden Tome",
"Description": "Untranslated",
"GMNotes": "{\n \"id\": \"60210\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Relic. Tome.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 538808,
"SidewaysCard": false,
"CustomDeck": {
"5388": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1546381162227145538/0F253FC5301911273C32210992261DD1D2EBB578/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "4f2489",
"Name": "Card",
"Transform": {
"posX": 9.143631,
"posY": 3.76351547,
"posZ": -16.7250748,
"rotX": 359.92276,
"rotY": 269.795776,
"rotZ": 0.003539268,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Dayana Esperence (3)",
"Description": "Deals with \"Devils\"",
"GMNotes": "{\n \"id\": \"05279\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Ally. Witch.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 379616,
"SidewaysCard": false,
"CustomDeck": {
"3796": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025945336/04E36F64C2CBE1B4905FF44A869C75EC52CB3A56/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "e81861",
"Name": "Card",
"Transform": {
"posX": 9.143631,
"posY": 3.76351547,
"posZ": -16.7250748,
"rotX": 359.92276,
"rotY": 269.795776,
"rotZ": 0.003539268,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Awakened Mantle",
"Description": "",
"GMNotes": "{\n \"id\": \"07180\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Relic. Clothing.\",\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 451113,
"SidewaysCard": false,
"CustomDeck": {
"4511": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1655600400212405700/559F1F3EF87BDF7F067F9B7011EDC3A6ACE71259/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 5,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "785f68",
"Name": "Card",
"Transform": {
"posX": 9.143951,
"posY": 3.78410625,
"posZ": -16.7251415,
"rotX": 359.923035,
"rotY": 269.795776,
"rotZ": 0.00199144566,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Hoods",
"Description": "",
"GMNotes": "{\n \"id\": \"05017\",\n \"type\": \"Enemy\",\n \"class\": \"Neutral\",\n \"traits\": \"Humanoid. Cultist.\",\n \"permanent\": false,\n \"weakness\": true\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 378863,
"SidewaysCard": false,
"CustomDeck": {
"3788": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "fa777f",
"Name": "Card",
"Transform": {
"posX": 9.143951,
"posY": 3.78410625,
"posZ": -16.7251415,
"rotX": 359.923035,
"rotY": 269.795776,
"rotZ": 0.00199144566,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Foolishness",
"Description": "",
"GMNotes": "{\n \"id\": \"98011\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Creature. Dreamlands.\",\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 230502,
"SidewaysCard": false,
"CustomDeck": {
"2305": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "9b0dcf",
"Name": "Card",
"Transform": {
"posX": 9.144272,
"posY": 3.751561,
"posZ": -16.7252083,
"rotX": 359.92334,
"rotY": 269.795776,
"rotZ": 0.0004453401,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Pendant of the Queen",
"Description": "Of Nothing at All",
"GMNotes": "{\n \"id\": \"06022\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Relic.\",\n \"permanent\": false,\n \"bonded_to\": [\n {\n \"id\": \"06021\",\n \"count\": 1\n }\n ],\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 441027,
"SidewaysCard": false,
"CustomDeck": {
"4410": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "cc8321",
"Name": "Card",
"Transform": {
"posX": 9.144272,
"posY": 3.751561,
"posZ": -16.7252083,
"rotX": 359.92334,
"rotY": 269.795776,
"rotZ": 0.0004453401,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Under Surveillance (1)",
"Description": "",
"GMNotes": "{\n \"id\": \"07157\",\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"traits\": \"Tactic. Trap.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 232105,
"SidewaysCard": false,
"CustomDeck": {
"2321": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1655600400212405700/559F1F3EF87BDF7F067F9B7011EDC3A6ACE71259/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 5,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "16a89d",
"Name": "Card",
"Transform": {
"posX": 9.144591,
"posY": 3.71592426,
"posZ": -16.725275,
"rotX": 359.9236,
"rotY": 269.795776,
"rotZ": -0.00109904457,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Silver Twilight Acolyte",
"Description": "Enemy",
"GMNotes": "{\n \"id\": \"01102\",\n \"type\": \"Enemy\",\n \"class\": \"Neutral\",\n \"traits\": \"Humanoid. Cultist. Silver Twilight.\",\n \"permanent\": false,\n \"weakness\": true,\n \"basicWeaknessCount\": 1\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 527417,
"SidewaysCard": false,
"CustomDeck": {
"5274": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "e69708",
"Name": "Card",
"Transform": {
"posX": 9.144591,
"posY": 3.71592426,
"posZ": -16.725275,
"rotX": 359.9236,
"rotY": 269.795776,
"rotZ": -0.00109904457,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Arcane Enlightenment",
"Description": "",
"GMNotes": "{\n \"id\": \"60205\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Ritual.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 538803,
"SidewaysCard": false,
"CustomDeck": {
"5388": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1546381162227145538/0F253FC5301911273C32210992261DD1D2EBB578/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "7f1b48",
"Name": "Card",
"Transform": {
"posX": 9.144591,
"posY": 3.71592426,
"posZ": -16.725275,
"rotX": 359.9236,
"rotY": 269.795776,
"rotZ": -0.00109904457,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Hypnotic Therapy",
"Description": "",
"GMNotes": "{\n \"id\": \"05007\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Talent.\",\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 591753,
"SidewaysCard": false,
"CustomDeck": {
"5917": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "eaa415",
"Name": "Card",
"Transform": {
"posX": 9.144911,
"posY": 3.72707629,
"posZ": -16.7253418,
"rotX": 359.92392,
"rotY": 269.795776,
"rotZ": -0.00264171441,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Leo De Luca",
"Description": "The Louisiana Lion",
"GMNotes": "{\n \"id\": \"01048\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Ally. Criminal.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 368631,
"SidewaysCard": false,
"CustomDeck": {
"3686": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "1ac667",
"Name": "Card",
"Transform": {
"posX": 9.144911,
"posY": 3.72707629,
"posZ": -16.7253418,
"rotX": 359.92392,
"rotY": 269.795776,
"rotZ": -0.00264171441,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Practice Makes Perfect",
"Description": "",
"GMNotes": "{\n \"id\": \"06197\",\n \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"traits\": \"Gambit. Tactic.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 447832,
"SidewaysCard": false,
"CustomDeck": {
"4478": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "037b2e",
"Name": "Card",
"Transform": {
"posX": 9.14523,
"posY": 3.68510246,
"posZ": -16.7254086,
"rotX": 359.9242,
"rotY": 269.795776,
"rotZ": -0.0041826833,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Lesson Learned (2)",
"Description": "",
"GMNotes": "{\n \"id\": \"60124\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Insight. Spirit.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 545322,
"SidewaysCard": false,
"CustomDeck": {
"5453": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1546380927206250326/18BF6D2B2BBFDDBE5B021A46C310E4F45493EC26/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "3a85c4",
"Name": "Card",
"Transform": {
"posX": 9.14523,
"posY": 3.68510246,
"posZ": -16.7254086,
"rotX": 359.9242,
"rotY": 269.795776,
"rotZ": -0.0041826833,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Hallow (3) (Taboo)",
"Description": "",
"GMNotes": "{\n \"id\": \"07301-t\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Spell. Blessed.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 585607,
"SidewaysCard": false,
"CustomDeck": {
"5856": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1697277388086984548/E61F3E847797C2C9231829611E0D92BA6376FA67/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 4,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "ff59dd",
"Name": "Card",
"Transform": {
"posX": 9.145611,
"posY": 3.68447375,
"posZ": -16.7254887,
"rotX": 359.921,
"rotY": 269.795776,
"rotZ": 0.0128883617,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Surprising Find (1)",
"Description": "",
"GMNotes": "{\n \"id\": \"06278\",\n \"type\": \"Skill\",\n \"class\": \"Seeker\",\n \"traits\": \"Fortune. Research.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 448838,
"SidewaysCard": false,
"CustomDeck": {
"4488": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "1fd630",
"Name": "Card",
"Transform": {
"posX": 9.145611,
"posY": 3.68447375,
"posZ": -16.7254887,
"rotX": 359.921,
"rotY": 269.795776,
"rotZ": 0.0128883617,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Tristan Botley (2)",
"Description": "Fixer for Hire",
"GMNotes": "{\n \"id\": \"07194\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Ally. Criminal. Cursed.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 588705,
"SidewaysCard": false,
"CustomDeck": {
"5887": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1762566393205073673/1FABAC4DD6EF3706D8C8285A256A13F43AE6B1E1/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 6,
"NumHeight": 3,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "678391",
"Name": "Card",
"Transform": {
"posX": 9.145991,
"posY": 3.680836,
"posZ": -16.7255688,
"rotX": 359.9178,
"rotY": 269.795776,
"rotZ": 0.0299404319,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Serpents of Yig",
"Description": "Humanoid. Monster. Serpent.",
"GMNotes": "{\n \"id\": \"04014\",\n \"type\": \"Enemy\",\n \"class\": \"Neutral\",\n \"traits\": \"Humanoid. Monster. Serpent.\",\n \"permanent\": false,\n \"weakness\": true\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 232837,
"SidewaysCard": false,
"CustomDeck": {
"2328": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/",
"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": "dbdaff",
"Name": "Card",
"Transform": {
"posX": 9.14644051,
"posY": 3.67365146,
"posZ": -16.7256641,
"rotX": 359.9197,
"rotY": 269.795776,
"rotZ": 0.0197128616,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Roland's .38 Special",
"Description": "Advanced",
"GMNotes": "{\n \"id\": \"90030\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Weapon. Firearm.\",\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 536205,
"SidewaysCard": false,
"CustomDeck": {
"5362": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1697276706761486024/CC7FAD210F216229F1A721BF648855D156F052D5/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 4,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "ecfa42",
"Name": "Card",
"Transform": {
"posX": 9.146902,
"posY": 3.67221427,
"posZ": -16.7257614,
"rotX": 359.920074,
"rotY": 269.795776,
"rotZ": 0.0176675785,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Chicago Typewriter (4)",
"Description": "",
"GMNotes": "{\n \"id\": \"02304\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Item. Weapon. Firearm. Illicit.\",\n \"level\": 4,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Ammo\",\n \"count\": 4\n }\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 315260,
"SidewaysCard": false,
"CustomDeck": {
"3152": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "bba97a",
"Name": "Card",
"Transform": {
"posX": 9.146902,
"posY": 3.67221427,
"posZ": -16.7257614,
"rotX": 359.920074,
"rotY": 269.795776,
"rotZ": 0.0176675785,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Healing Words",
"Description": "",
"GMNotes": "{\n \"id\": \"06163\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Charge\",\n \"count\": 3\n }\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 380127,
"SidewaysCard": false,
"CustomDeck": {
"3801": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025945336/04E36F64C2CBE1B4905FF44A869C75EC52CB3A56/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "b9fbff",
"Name": "Card",
"Transform": {
"posX": 9.146902,
"posY": 3.67221427,
"posZ": -16.7257614,
"rotX": 359.920074,
"rotY": 269.795776,
"rotZ": 0.0176675785,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Siren Call",
"Description": "Weakness",
"GMNotes": "{\n \"id\": \"07016\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Curse.\",\n \"permanent\": false,\n \"weakness\": true\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 585110,
"SidewaysCard": false,
"CustomDeck": {
"5851": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320664132663842/9B2F50595A754585A4DF12D6D48DC2561DC0E2C9/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "8dce44",
"Name": "Card",
"Transform": {
"posX": 9.147363,
"posY": 3.767455,
"posZ": -16.7258587,
"rotX": 359.920471,
"rotY": 269.7958,
"rotZ": 0.0156245679,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Crack the Case",
"Description": "",
"GMNotes": "{\n \"id\": \"05110\",\n \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"traits\": \"Insight.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 277812,
"SidewaysCard": false,
"CustomDeck": {
"2778": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "1890d0",
"Name": "Card",
"Transform": {
"posX": 9.147363,
"posY": 3.767455,
"posZ": -16.7258587,
"rotX": 359.920471,
"rotY": 269.7958,
"rotZ": 0.0156245679,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Stars of Hyades",
"Description": "",
"GMNotes": "{\n \"id\": \"03013\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Curse.\",\n \"permanent\": false,\n \"weakness\": true\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 374115,
"SidewaysCard": false,
"CustomDeck": {
"3741": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "f10690",
"Name": "Card",
"Transform": {
"posX": 9.147363,
"posY": 3.767455,
"posZ": -16.7258587,
"rotX": 359.920471,
"rotY": 269.7958,
"rotZ": 0.0156245679,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Fey (1)",
"Description": "",
"GMNotes": "{\n \"id\": \"07222\",\n \"type\": \"Skill\",\n \"class\": \"Seeker\",\n \"traits\": \"Innate. Cursed.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 579402,
"SidewaysCard": false,
"CustomDeck": {
"5794": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1747933191219101327/797556CAC112D6D289B3A5D3A28433C9F0999CB5/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "9cbac1",
"Name": "Card",
"Transform": {
"posX": 9.147823,
"posY": 3.859378,
"posZ": -16.725956,
"rotX": 359.920868,
"rotY": 269.7958,
"rotZ": 0.0135838017,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Seal of the Seventh Sign (5)",
"Description": "Over the Threshold and Beyond",
"GMNotes": "{\n \"id\": \"04311\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell. Ritual.\",\n \"level\": 5,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 278101,
"SidewaysCard": false,
"CustomDeck": {
"2781": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025945336/04E36F64C2CBE1B4905FF44A869C75EC52CB3A56/",
"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 == \"Auto-fail\" then\n self.addContextMenuItem(\"Seal Auto-fail\", 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": "b239d7",
"Name": "Card",
"Transform": {
"posX": 9.148283,
"posY": 3.84818387,
"posZ": -16.7260532,
"rotX": 359.921234,
"rotY": 269.7958,
"rotZ": 0.0115453182,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Mob Enforcer",
"Description": "Enemy",
"GMNotes": "{\n \"id\": \"01101\",\n \"type\": \"Enemy\",\n \"class\": \"Neutral\",\n \"traits\": \"Humanoid. Criminal.\",\n \"permanent\": false,\n \"weakness\": true,\n \"basicWeaknessCount\": 1\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 527416,
"SidewaysCard": false,
"CustomDeck": {
"5274": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "29b842",
"Name": "Card",
"Transform": {
"posX": 9.148742,
"posY": 3.833876,
"posZ": -16.72615,
"rotX": 359.921631,
"rotY": 269.7958,
"rotZ": 0.009509103,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Rite of Seeking",
"Description": "",
"GMNotes": "{\n \"id\": \"02028\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Charge\",\n \"count\": 3\n }\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 230329,
"SidewaysCard": false,
"CustomDeck": {
"2303": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "0e2987",
"Name": "Card",
"Transform": {
"posX": 9.148742,
"posY": 3.833876,
"posZ": -16.72615,
"rotX": 359.921631,
"rotY": 269.7958,
"rotZ": 0.009509103,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Venturer",
"Description": "",
"GMNotes": "{\n \"id\": \"04018\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Ally. Wayfarer.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Supply\",\n \"count\": 3\n }\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 226332,
"SidewaysCard": false,
"CustomDeck": {
"2263": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "71a760",
"Name": "Card",
"Transform": {
"posX": 9.1492,
"posY": 3.86635971,
"posZ": -16.7262478,
"rotX": 359.922,
"rotY": 269.7958,
"rotZ": 0.00747515541,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "A Test of Will (2)",
"Description": "",
"GMNotes": "{\n \"id\": \"60523\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Spirit.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 550821,
"SidewaysCard": false,
"CustomDeck": {
"5508": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456298038335/2CA532D7F0EED2B2B40E47709AC56D85C4613A33/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "d2cd42",
"Name": "CardCustom",
"Transform": {
"posX": 9.1492,
"posY": 3.866359,
"posZ": -16.7262478,
"rotX": 359.922,
"rotY": 269.7958,
"rotZ": 0.00747515541,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Skeptic (1)",
"Description": "",
"GMNotes": "{\n \"id\": \"07115\",\n \"type\": \"Skill\",\n \"class\": \"Rogue\",\n \"traits\": \"Practiced.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 550100,
"SidewaysCard": false,
"CustomDeck": {
"5501": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1537373966843940006/71700050B0B2CD56C458047D94B9E605ED01B989/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1537373966843931844/D864BCCCC1C811EC7F0AED69D1C30C678D3D9FC9/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "812685",
"Name": "Card",
"Transform": {
"posX": 9.149658,
"posY": 3.895637,
"posZ": -16.7263451,
"rotX": 359.9224,
"rotY": 269.7958,
"rotZ": 0.00544347428,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Devil's Luck (1)",
"Description": "",
"GMNotes": "{\n \"id\": \"03157\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Fortune.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 368835,
"SidewaysCard": false,
"CustomDeck": {
"3688": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "423d46",
"Name": "Card",
"Transform": {
"posX": 9.149658,
"posY": 3.895637,
"posZ": -16.7263451,
"rotX": 359.9224,
"rotY": 269.7958,
"rotZ": 0.00544347428,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "St. Hubert's Key",
"Description": "Cleansing Fire",
"GMNotes": "{\n \"id\": \"03269\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Item. Charm.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 230331,
"SidewaysCard": false,
"CustomDeck": {
"2303": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "06322f",
"Name": "Card",
"Transform": {
"posX": 9.149658,
"posY": 3.895637,
"posZ": -16.7263451,
"rotX": 359.9224,
"rotY": 269.7958,
"rotZ": 0.00544347428,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Terrible Secret",
"Description": "",
"GMNotes": "{\n \"id\": \"05015\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Madness.\",\n \"permanent\": false,\n \"weakness\": true\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 527561,
"SidewaysCard": false,
"CustomDeck": {
"5275": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "dacbf0",
"Name": "Card",
"Transform": {
"posX": 9.150116,
"posY": 3.9716146,
"posZ": -16.72644,
"rotX": 359.92276,
"rotY": 269.7958,
"rotZ": 0.00341404323,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Fortuitous Discovery",
"Description": "",
"GMNotes": "{\n \"id\": \"06034\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Fortune. Insight.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 440627,
"SidewaysCard": false,
"CustomDeck": {
"4406": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025946328/561232524C8EAA4B4371B28652F78969E6ED6FFB/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "982716",
"Name": "Card",
"Transform": {
"posX": 9.150116,
"posY": 3.9716146,
"posZ": -16.72644,
"rotX": 359.92276,
"rotY": 269.7958,
"rotZ": 0.00341404323,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Manual Dexterity (2)",
"Description": "",
"GMNotes": "{\n \"id\": \"60325\",\n \"type\": \"Skill\",\n \"class\": \"Rogue\",\n \"traits\": \"Innate. Developed.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 538623,
"SidewaysCard": false,
"CustomDeck": {
"5386": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456298037683/22C99DD745DFF65ECC72FD32EFA9C9D0F0C12862/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "aafc17",
"Name": "Card",
"Transform": {
"posX": 9.150573,
"posY": 3.994394,
"posZ": -16.7265358,
"rotX": 359.923157,
"rotY": 269.7958,
"rotZ": 0.00138684327,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Bloodlust",
"Description": "Treachery",
"GMNotes": "{\n \"id\": \"06019\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Madness.\",\n \"permanent\": false,\n \"bonded_to\": [\n {\n \"id\": \"06018\",\n \"count\": 3\n }\n ],\n \"weakness\": true\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 440925,
"SidewaysCard": false,
"CustomDeck": {
"4409": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025943109/9C5481E6DFEACD450C5522F884E615482281DDB1/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "0ce113",
"Name": "Card",
"Transform": {
"posX": 9.150573,
"posY": 3.994394,
"posZ": -16.7265358,
"rotX": 359.923157,
"rotY": 269.7958,
"rotZ": 0.00138684327,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Ancient Ankh",
"Description": "Item. Relic.",
"GMNotes": "{\n \"id\": \"83056\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Relic.\",\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 454741,
"SidewaysCard": false,
"CustomDeck": {
"4547": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1747933191218921670/8EF5B59C1AC4559A3947140F08010D8B014A11E9/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1747933191218923075/6DE3A0F2FBB17DAA8374540DBE43CE6BD65EB541/",
"NumWidth": 10,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "1f50e9",
"Name": "Card",
"Transform": {
"posX": 9.150573,
"posY": 3.994394,
"posZ": -16.7265358,
"rotX": 359.923157,
"rotY": 269.7958,
"rotZ": 0.00138684327,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Randall Cho",
"Description": "Concerned Brother",
"GMNotes": "{\n \"id\": \"60102\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Ally. Medic.\",\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 585024,
"SidewaysCard": false,
"CustomDeck": {
"5850": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1697276627309509299/3B0E32939EB4599CCE3596975637C90FE4EE1DD6/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "e454c3",
"Name": "Card",
"Transform": {
"posX": 9.15103,
"posY": 4.063905,
"posZ": -16.7266312,
"rotX": 359.923523,
"rotY": 269.7958,
"rotZ": -0.000638073,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Well-Maintained (1)",
"Description": "",
"GMNotes": "{\n \"id\": \"05152\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Upgrade.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 278012,
"SidewaysCard": false,
"CustomDeck": {
"2780": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025943109/9C5481E6DFEACD450C5522F884E615482281DDB1/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "48c9ff",
"Name": "Card",
"Transform": {
"posX": 9.15103,
"posY": 4.063905,
"posZ": -16.7266312,
"rotX": 359.923523,
"rotY": 269.7958,
"rotZ": -0.000638073,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Joey \"The Rat\" Vigil (3)",
"Description": "Lookin' Out For #1",
"GMNotes": "{\n \"id\": \"06326\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Ally. Criminal.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 449036,
"SidewaysCard": false,
"CustomDeck": {
"4490": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025944587/520448D0E9C22F102C7DDF64322EAD6FC221ECC8/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "d88407",
"Name": "Card",
"Transform": {
"posX": 9.151485,
"posY": 4.13017845,
"posZ": -16.7267265,
"rotX": 359.92392,
"rotY": 269.7958,
"rotZ": -0.002660761,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Lure (1)",
"Description": "",
"GMNotes": "{\n \"id\": \"02156\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Trick.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 368836,
"SidewaysCard": false,
"CustomDeck": {
"3688": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "92c295",
"Name": "Card",
"Transform": {
"posX": 9.151485,
"posY": 4.13017845,
"posZ": -16.7267265,
"rotX": 359.92392,
"rotY": 269.7958,
"rotZ": -0.002660761,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Radiant Smite (1)",
"Description": "",
"GMNotes": "{\n \"id\": \"07153\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Spell. Spirit. Blessed.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 232101,
"SidewaysCard": false,
"CustomDeck": {
"2321": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1655600400212405700/559F1F3EF87BDF7F067F9B7011EDC3A6ACE71259/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 5,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "function onload()\n mode = \"Bless\"\n chaosbag = getChaosBag()\n manager = getObjectFromGUID(\"5933fb\")\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, true)\n for url,name in pairs(IMAGE_TOKEN_MAP) do\n if name == mode then\n self.addContextMenuItem(\"Seal \" .. mode, function(playerColor) sealToken(url, playerColor) end, true)\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)\n local guid = obj.getGUID()\n local tokensTaken = manager.getVar(\"tokensTaken\")\n table.insert(tokensTaken[mode], guid)\n manager.setVar(\"tokensTaken\", tokensTaken)\n manager.setVar(\"mode\", mode)\n printToAll(\"Sealing \" .. mode .. \" token \" .. manager.call(\"getTokenCount\"))\nend\n\nfunction releaseTokens(playerColor)\n if #sealedTokens == 0 then return end\n local token = sealedTokens[#sealedTokens]\n if token ~= nil then\n local guid = token.getGUID()\n chaosbag.putObject(token)\n local tokensTaken = manager.getVar(\"tokensTaken\")\n for i,v in ipairs(tokensTaken[mode]) do\n if v == guid then\n table.remove(tokensTaken[mode], i)\n break\n end\n end\n manager.setVar(\"tokensTaken\", tokensTaken)\n manager.setVar(\"mode\", mode)\n printToAll(\"Releasing \" .. mode .. \" token\" .. manager.call(\"getTokenCount\"))\n end\n\n table.remove(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\n",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "b0c61c",
"Name": "Card",
"Transform": {
"posX": 9.151941,
"posY": 4.14326525,
"posZ": -16.7268219,
"rotX": 359.9243,
"rotY": 269.7958,
"rotZ": -0.00468120072,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "On Your Own (3)",
"Description": "",
"GMNotes": "{\n \"id\": \"04236\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Talent.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 368858,
"SidewaysCard": false,
"CustomDeck": {
"3688": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "491c09",
"Name": "Card",
"Transform": {
"posX": 9.152396,
"posY": 4.103267,
"posZ": -16.7269173,
"rotX": 359.924683,
"rotY": 269.7958,
"rotZ": 359.9933,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Righteous Hunt (1)",
"Description": "",
"GMNotes": "{\n \"id\": \"07109\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Tactic. Blessed.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 553101,
"SidewaysCard": false,
"CustomDeck": {
"5531": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1684870715280867313/BFD2AF968EAC917D3B838DCB8B1656941CD8B5CC/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "8a927c",
"Name": "Card",
"Transform": {
"posX": 9.152851,
"posY": 4.06018734,
"posZ": -16.7270126,
"rotX": 359.925049,
"rotY": 269.7958,
"rotZ": 359.991272,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Scrying",
"Description": "",
"GMNotes": "{\n \"id\": \"01061\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Charge\",\n \"count\": 3\n }\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 230319,
"SidewaysCard": false,
"CustomDeck": {
"2303": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "06228f",
"Name": "Card",
"Transform": {
"posX": 9.152851,
"posY": 4.06018734,
"posZ": -16.7270126,
"rotX": 359.925049,
"rotY": 269.7958,
"rotZ": 359.991272,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Stroke of Luck (2)",
"Description": "",
"GMNotes": "{\n \"id\": \"02271\",\n \"type\": \"Skill\",\n \"class\": \"Survivor\",\n \"traits\": \"Innate. Fortune.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 368843,
"SidewaysCard": false,
"CustomDeck": {
"3688": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "eafd12",
"Name": "Card",
"Transform": {
"posX": 9.152851,
"posY": 4.06018734,
"posZ": -16.7270126,
"rotX": 359.925049,
"rotY": 269.7958,
"rotZ": 359.991272,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Blood-Rite",
"Description": "",
"GMNotes": "{\n \"id\": \"05317\",\n \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"traits\": \"Spell.\",\n \"permanent\": false,\n \"bonded_to\": [\n {\n \"id\": \"05316\",\n \"count\": 3\n },\n {\n \"id\": \"54004\",\n \"count\": 3\n }\n ],\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 591621,
"SidewaysCard": false,
"CustomDeck": {
"5916": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "d8a324",
"Name": "Card",
"Transform": {
"posX": 9.153305,
"posY": 4.113832,
"posZ": -16.727108,
"rotX": 359.925446,
"rotY": 269.7958,
"rotZ": 359.989258,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "\"I'm done runnin'!\"",
"Description": "",
"GMNotes": "{\n \"id\": \"05016\",\n \"type\": \"Event\",\n \"class\": \"Neutral\",\n \"traits\": \"Spirit.\",\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 378762,
"SidewaysCard": false,
"CustomDeck": {
"3787": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "9b9e8b",
"Name": "Card",
"Transform": {
"posX": 9.153305,
"posY": 4.113832,
"posZ": -16.727108,
"rotX": 359.925446,
"rotY": 269.7958,
"rotZ": 359.989258,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Calling in Favors",
"Description": "",
"GMNotes": "{\n \"id\": \"03158\",\n \"type\": \"Event\",\n \"class\": \"Neutral\",\n \"traits\": \"Favor.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 368510,
"SidewaysCard": false,
"CustomDeck": {
"3685": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "fc9e1b",
"Name": "Card",
"Transform": {
"posX": 9.153759,
"posY": 4.114303,
"posZ": -16.7272034,
"rotX": 359.9258,
"rotY": 269.7958,
"rotZ": 359.987274,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Dig Deep",
"Description": "",
"GMNotes": "{\n \"id\": \"01077\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Talent.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 368831,
"SidewaysCard": false,
"CustomDeck": {
"3688": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "8f91ce",
"Name": "Card",
"Transform": {
"posX": 9.153759,
"posY": 4.114303,
"posZ": -16.7272034,
"rotX": 359.9258,
"rotY": 269.7958,
"rotZ": 359.987274,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Research Librarian",
"Description": "",
"GMNotes": "{\n \"id\": \"01032\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Ally. Miskatonic.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 368426,
"SidewaysCard": false,
"CustomDeck": {
"3684": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "833501",
"Name": "Card",
"Transform": {
"posX": 9.154212,
"posY": 4.11160469,
"posZ": -16.7272987,
"rotX": 359.926147,
"rotY": 269.795837,
"rotZ": 359.98526,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Higher Education (3) (Taboo)",
"Description": "",
"GMNotes": "{\n \"id\": \"02187-t\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Talent.\",\n \"level\": 3,\n \"permanent\": true,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 450604,
"SidewaysCard": false,
"CustomDeck": {
"4506": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1656721113609569419/60B1DFC7C68C406C34641A1F53078F46D610821C/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "c1a687",
"Name": "Card",
"Transform": {
"posX": 9.154212,
"posY": 4.11160469,
"posZ": -16.7272987,
"rotX": 359.926147,
"rotY": 269.795837,
"rotZ": 359.98526,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Tooth of Eztli",
"Description": "Mortal Reminder",
"GMNotes": "{\n \"id\": \"04023\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Relic.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 368432,
"SidewaysCard": false,
"CustomDeck": {
"3684": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "e5dd39",
"Name": "Card",
"Transform": {
"posX": 9.154212,
"posY": 4.11160469,
"posZ": -16.7272987,
"rotX": 359.926147,
"rotY": 269.795837,
"rotZ": 359.98526,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Hyperawareness",
"Description": "",
"GMNotes": "{\n \"id\": \"01034\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Talent.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 368424,
"SidewaysCard": false,
"CustomDeck": {
"3684": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "c32e40",
"Name": "Card",
"Transform": {
"posX": 9.154665,
"posY": 4.15564156,
"posZ": -16.7273941,
"rotX": 359.926575,
"rotY": 269.795837,
"rotZ": 359.983246,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": ".35 Winchester",
"Description": "",
"GMNotes": "{\n \"id\": \"06195\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Item. Weapon. Firearm.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Ammo\",\n \"count\": 5\n }\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 583200,
"SidewaysCard": false,
"CustomDeck": {
"5832": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1697276627309509299/3B0E32939EB4599CCE3596975637C90FE4EE1DD6/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "cf96b9",
"Name": "Card",
"Transform": {
"posX": 9.154665,
"posY": 4.15564156,
"posZ": -16.7273941,
"rotX": 359.926575,
"rotY": 269.795837,
"rotZ": 359.983246,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Summoned Nightgaunt",
"Description": "Monster. Nightgaunt. Power.",
"GMNotes": "{\n \"id\": \"83058\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Monster. Nightgaunt. Power.\",\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 546917,
"SidewaysCard": false,
"CustomDeck": {
"5469": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1747933191218960581/4546AD2542BDA831A52F111505063691712EE74F/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1747933191218961222/32A8F41F3FDA4387C71BA2668B2645E36EDAE74D/",
"NumWidth": 10,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "eff3c8",
"Name": "Card",
"Transform": {
"posX": 9.155117,
"posY": 4.14651537,
"posZ": -16.72749,
"rotX": 359.926941,
"rotY": 269.795837,
"rotZ": 359.981232,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Self-Centered",
"Description": "Basic Weakness",
"GMNotes": "{\n \"id\": \"06035\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Flaw.\",\n \"permanent\": false,\n \"weakness\": true,\n \"basicWeaknessCount\": 1\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 438125,
"SidewaysCard": false,
"CustomDeck": {
"4381": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "a6af13",
"Name": "Card",
"Transform": {
"posX": 9.155117,
"posY": 4.14651537,
"posZ": -16.72749,
"rotX": 359.926941,
"rotY": 269.795837,
"rotZ": 359.981232,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Lupara (3)",
"Description": "",
"GMNotes": "{\n \"id\": \"03309\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Item. Weapon. Firearm. Illicit.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Ammo\",\n \"count\": 2\n }\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 315255,
"SidewaysCard": false,
"CustomDeck": {
"3152": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "b6506d",
"Name": "Card",
"Transform": {
"posX": 9.155569,
"posY": 4.184132,
"posZ": -16.7275848,
"rotX": 359.9273,
"rotY": 269.795837,
"rotZ": 359.979248,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "\"Fool me once...\" (1)",
"Description": "",
"GMNotes": "{\n \"id\": \"06156\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Insight. Tactic.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 379830,
"SidewaysCard": false,
"CustomDeck": {
"3798": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025943109/9C5481E6DFEACD450C5522F884E615482281DDB1/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "52c686",
"Name": "Card",
"Transform": {
"posX": 9.155569,
"posY": 4.184132,
"posZ": -16.7275848,
"rotX": 359.9273,
"rotY": 269.795837,
"rotZ": 359.979248,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Flesh Ward",
"Description": "",
"GMNotes": "{\n \"id\": \"60106\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Ritual.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Charge\",\n \"count\": 4\n }\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 545304,
"SidewaysCard": false,
"CustomDeck": {
"5453": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1546380927206250326/18BF6D2B2BBFDDBE5B021A46C310E4F45493EC26/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "d2663c",
"Name": "Card",
"Transform": {
"posX": 9.15602,
"posY": 4.168593,
"posZ": -16.72768,
"rotX": 359.9277,
"rotY": 269.795837,
"rotZ": 359.977234,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Hemispheric Map (3)",
"Description": "",
"GMNotes": "{\n \"id\": \"04275\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Relic.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 261101,
"SidewaysCard": false,
"CustomDeck": {
"2611": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025942034/FEADE7F6206804B42CC9B6049F51EDF6040C5D1D/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "122e98",
"Name": "Card",
"Transform": {
"posX": 9.15602,
"posY": 4.168593,
"posZ": -16.72768,
"rotX": 359.9277,
"rotY": 269.795837,
"rotZ": 359.977234,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Lucid Dreaming (2)",
"Description": "",
"GMNotes": "{\n \"id\": \"06205\",\n \"type\": \"Event\",\n \"class\": \"Neutral\",\n \"traits\": \"Spell.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 527312,
"SidewaysCard": false,
"CustomDeck": {
"5273": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025942034/FEADE7F6206804B42CC9B6049F51EDF6040C5D1D/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "b18b33",
"Name": "Card",
"Transform": {
"posX": 9.15647,
"posY": 4.14990234,
"posZ": -16.7277756,
"rotX": 359.92807,
"rotY": 269.795837,
"rotZ": 359.97525,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Sneak Attack",
"Description": "",
"GMNotes": "{\n \"id\": \"01052\",\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"traits\": \"Tactic.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 368713,
"SidewaysCard": false,
"CustomDeck": {
"3687": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "3a0df6",
"Name": "Card",
"Transform": {
"posX": 9.15647,
"posY": 4.14990234,
"posZ": -16.7277756,
"rotX": 359.92807,
"rotY": 269.795837,
"rotZ": 359.97525,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Scientific Theory (1)",
"Description": "",
"GMNotes": "{\n \"id\": \"03109\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Talent. Composure.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 430638,
"SidewaysCard": false,
"CustomDeck": {
"4306": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "0f32e8",
"Name": "Card",
"Transform": {
"posX": 9.15647,
"posY": 4.14990234,
"posZ": -16.7277756,
"rotX": 359.92807,
"rotY": 269.795837,
"rotZ": 359.97525,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Run For Your Life",
"Description": "",
"GMNotes": "{\n \"id\": \"03119\",\n \"type\": \"Skill\",\n \"class\": \"Neutral\",\n \"traits\": \"Desperate.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 368505,
"SidewaysCard": false,
"CustomDeck": {
"3685": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "436401",
"Name": "CardCustom",
"Transform": {
"posX": 9.15692,
"posY": 4.177964,
"posZ": -16.72787,
"rotX": 359.928436,
"rotY": 269.795837,
"rotZ": 359.973236,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Ancient Covenant (2)",
"Description": "",
"GMNotes": "{\n \"id\": \"07122\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Covenant. Blessed.\",\n \"level\": 2,\n \"permanent\": true,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 546400,
"SidewaysCard": false,
"CustomDeck": {
"5464": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1597044073918730334/45D2725C3553953A73DAFBEF631E78D459716EA7/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1056604690734334657/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "e5f9cb",
"Name": "Card",
"Transform": {
"posX": 9.15692,
"posY": 4.177964,
"posZ": -16.72787,
"rotX": 359.928436,
"rotY": 269.795837,
"rotZ": 359.973236,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Dream Diary (3)",
"Description": "Dreams of a Madman",
"GMNotes": "{\n \"id\": \"06237\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Tome. Charm.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false,\n \"bonded\": [\n {\n \"id\": \"06113\",\n \"count\": 1\n }\n ]\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 447835,
"SidewaysCard": false,
"CustomDeck": {
"4478": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "a5be8b",
"Name": "Card",
"Transform": {
"posX": 9.15692,
"posY": 4.177755,
"posZ": -16.72787,
"rotX": 359.928436,
"rotY": 269.795837,
"rotZ": 359.973236,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Unspeakable Oath (Bloodthirst)",
"Description": "Basic Weakness",
"GMNotes": "{\n \"id\": \"52011\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Madness. Pact.\",\n \"permanent\": false,\n \"weakness\": true,\n \"basicWeaknessCount\": 1\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 438124,
"SidewaysCard": false,
"CustomDeck": {
"4381": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "6656ad",
"Name": "Card",
"Transform": {
"posX": 9.15737,
"posY": 4.19775963,
"posZ": -16.7279663,
"rotX": 359.928833,
"rotY": 269.795837,
"rotZ": 359.971252,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Ward of Protection",
"Description": "",
"GMNotes": "{\n \"id\": \"01065\",\n \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell. Spirit.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 230308,
"SidewaysCard": false,
"CustomDeck": {
"2303": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "bc80ab",
"Name": "Card",
"Transform": {
"posX": 9.15737,
"posY": 4.19294548,
"posZ": -16.7279663,
"rotX": 359.928833,
"rotY": 269.795837,
"rotZ": 359.971252,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "First Aid (3)",
"Description": "",
"GMNotes": "{\n \"id\": \"03230\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Talent. Science.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Supply\",\n \"count\": 4\n }\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 226353,
"SidewaysCard": false,
"CustomDeck": {
"2263": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "a2136a",
"Name": "Card",
"Transform": {
"posX": 9.157819,
"posY": 4.15980864,
"posZ": -16.7280617,
"rotX": 359.9292,
"rotY": 269.795837,
"rotZ": 359.969269,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Scroll of Secrets (3) (Taboo)",
"Description": "Seeker",
"GMNotes": "{\n \"id\": \"05188-t\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Tome.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Secret\",\n \"count\": 3\n }\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 450622,
"SidewaysCard": false,
"CustomDeck": {
"4506": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1656721113609569419/60B1DFC7C68C406C34641A1F53078F46D610821C/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "15643b",
"Name": "Card",
"Transform": {
"posX": 9.157819,
"posY": 4.154995,
"posZ": -16.7280617,
"rotX": 359.9292,
"rotY": 269.795837,
"rotZ": 359.969269,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Hard Knocks (2)",
"Description": "",
"GMNotes": "{\n \"id\": \"50005\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Talent.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 315242,
"SidewaysCard": false,
"CustomDeck": {
"3152": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "cf1d4e",
"Name": "Card",
"Transform": {
"posX": 9.157819,
"posY": 4.150181,
"posZ": -16.7280617,
"rotX": 359.9292,
"rotY": 269.795837,
"rotZ": 359.969269,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Slip Away",
"Description": "",
"GMNotes": "{\n \"id\": \"04232\",\n \"alternate_ids\": [ \"60314\" ],\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"traits\": \"Trick.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 368714,
"SidewaysCard": false,
"CustomDeck": {
"3687": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "47d6c9",
"Name": "Card",
"Transform": {
"posX": 9.158267,
"posY": 4.163808,
"posZ": -16.7281551,
"rotX": 359.929535,
"rotY": 269.795837,
"rotZ": 359.967255,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Hospital Debts",
"Description": "Signature",
"GMNotes": "{\n \"id\": \"01011\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Task.\",\n \"permanent\": false,\n \"weakness\": true\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 431425,
"SidewaysCard": false,
"CustomDeck": {
"4314": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "88ee43",
"Name": "Card",
"Transform": {
"posX": 9.158267,
"posY": 4.15899372,
"posZ": -16.7281551,
"rotX": 359.929535,
"rotY": 269.795837,
"rotZ": 359.967255,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Hypochondria",
"Description": "Basic Weakness",
"GMNotes": "{\n \"id\": \"01100\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Madness.\",\n \"permanent\": false,\n \"weakness\": true,\n \"basicWeaknessCount\": 1\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 527404,
"SidewaysCard": false,
"CustomDeck": {
"5274": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "59d89b",
"Name": "Card",
"Transform": {
"posX": 9.158267,
"posY": 4.15417957,
"posZ": -16.7281551,
"rotX": 359.929535,
"rotY": 269.795837,
"rotZ": 359.967255,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Oops!",
"Description": "",
"GMNotes": "{\n \"id\": \"02113\",\n \"alternate_ids\": [ \"60518\" ],\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Fortune.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 368815,
"SidewaysCard": false,
"CustomDeck": {
"3688": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "e701af",
"Name": "Card",
"Transform": {
"posX": 9.158715,
"posY": 4.16457367,
"posZ": -16.7282486,
"rotX": 359.929962,
"rotY": 269.795837,
"rotZ": 359.965271,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Day of Reckoning",
"Description": "Basic Weakness",
"GMNotes": "{\n \"id\": \"07040\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Endtimes.\",\n \"permanent\": false,\n \"weakness\": true,\n \"basicWeaknessCount\": 1\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 586334,
"SidewaysCard": false,
"CustomDeck": {
"5863": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320664132663842/9B2F50595A754585A4DF12D6D48DC2561DC0E2C9/",
"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": "2f9de4",
"Name": "Card",
"Transform": {
"posX": 9.15916252,
"posY": 4.071936,
"posZ": -16.7283421,
"rotX": 359.930328,
"rotY": 269.795837,
"rotZ": 359.9633,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Keen Eye (3)",
"Description": "",
"GMNotes": "{\n \"id\": \"02185\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Talent.\",\n \"level\": 3,\n \"permanent\": true,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 226351,
"SidewaysCard": false,
"CustomDeck": {
"2263": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "9e7f6a",
"Name": "Card",
"Transform": {
"posX": 9.15916252,
"posY": 4.067122,
"posZ": -16.7283421,
"rotX": 359.930328,
"rotY": 269.795837,
"rotZ": 359.9633,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Galvanize (1)",
"Description": "",
"GMNotes": "{\n \"id\": \"60121\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Spirit.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 545319,
"SidewaysCard": false,
"CustomDeck": {
"5453": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1546380927206250326/18BF6D2B2BBFDDBE5B021A46C310E4F45493EC26/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "593deb",
"Name": "Card",
"Transform": {
"posX": 9.15961,
"posY": 4.02135754,
"posZ": -16.7284336,
"rotX": 359.9307,
"rotY": 269.795837,
"rotZ": 359.9613,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Leather Coat",
"Description": "",
"GMNotes": "{\n \"id\": \"01072\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Item. Armor.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 368820,
"SidewaysCard": false,
"CustomDeck": {
"3688": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "6692de",
"Name": "Card",
"Transform": {
"posX": 9.15961,
"posY": 4.01654339,
"posZ": -16.7284336,
"rotX": 359.9307,
"rotY": 269.795837,
"rotZ": 359.9613,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Crystallizer of Dreams",
"Description": "",
"GMNotes": "{\n \"id\": \"06024\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Item. Relic.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false,\n \"bonded\": [\n {\n \"id\": \"06025\",\n \"count\": 1\n }\n ]\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 590503,
"SidewaysCard": false,
"CustomDeck": {
"5905": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1697277388086984548/E61F3E847797C2C9231829611E0D92BA6376FA67/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 4,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "283e54",
"Name": "Card",
"Transform": {
"posX": 9.160056,
"posY": 3.96765471,
"posZ": -16.7285252,
"rotX": 359.931061,
"rotY": 269.795837,
"rotZ": 359.95932,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Alchemical Transmutation (2)",
"Description": "",
"GMNotes": "{\n \"id\": \"52007\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Charge\",\n \"count\": 4\n }\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 444020,
"SidewaysCard": false,
"CustomDeck": {
"4440": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025945336/04E36F64C2CBE1B4905FF44A869C75EC52CB3A56/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "e8b7ad",
"Name": "Card",
"Transform": {
"posX": 9.160056,
"posY": 3.96284056,
"posZ": -16.7285252,
"rotX": 359.931061,
"rotY": 269.795837,
"rotZ": 359.95932,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Bandolier (2)",
"Description": "",
"GMNotes": "{\n \"id\": \"51001\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Item.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 314204,
"SidewaysCard": false,
"CustomDeck": {
"3142": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025943109/9C5481E6DFEACD450C5522F884E615482281DDB1/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "90fdb0",
"Name": "Card",
"Transform": {
"posX": 9.160056,
"posY": 3.95802665,
"posZ": -16.7285252,
"rotX": 359.931061,
"rotY": 269.795837,
"rotZ": 359.95932,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Teachings of the Order",
"Description": "",
"GMNotes": "{\n \"id\": \"07151\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Tome.\",\n \"permanent\": true,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 581922,
"SidewaysCard": false,
"CustomDeck": {
"5819": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1684870715280867313/BFD2AF968EAC917D3B838DCB8B1656941CD8B5CC/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "ffa4f9",
"Name": "Card",
"Transform": {
"posX": 9.160502,
"posY": 3.955919,
"posZ": -16.7286186,
"rotX": 359.931427,
"rotY": 269.795837,
"rotZ": 359.957367,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Eureka!",
"Description": "",
"GMNotes": "{\n \"id\": \"03231\",\n \"type\": \"Skill\",\n \"class\": \"Seeker\",\n \"traits\": \"Innate.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 368400,
"SidewaysCard": false,
"CustomDeck": {
"3684": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "0ee874",
"Name": "Card",
"Transform": {
"posX": 9.160502,
"posY": 3.951105,
"posZ": -16.7286186,
"rotX": 359.931427,
"rotY": 269.795837,
"rotZ": 359.957367,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Azure Flame (5)",
"Description": "",
"GMNotes": "{\n \"id\": \"60430\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\",\n \"level\": 5,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Charge\",\n \"count\": 4\n }\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 538728,
"SidewaysCard": false,
"CustomDeck": {
"5387": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297472038/B38A78EF27EBE0BDE1B36958D297701505AB936A/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "b492cb",
"Name": "Card",
"Transform": {
"posX": 9.160948,
"posY": 3.89588118,
"posZ": -16.7287121,
"rotX": 359.931824,
"rotY": 269.795837,
"rotZ": 359.955353,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": ".45 Thompson (3)",
"Description": "Guardian",
"GMNotes": "{\n \"id\": \"05186\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Item. Weapon. Firearm. Illicit.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 292813,
"SidewaysCard": false,
"CustomDeck": {
"2928": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025943109/9C5481E6DFEACD450C5522F884E615482281DDB1/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "8837ff",
"Name": "Card",
"Transform": {
"posX": 9.160948,
"posY": 3.891067,
"posZ": -16.7287121,
"rotX": 359.931824,
"rotY": 269.795837,
"rotZ": 359.955353,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "True Survivor (3)",
"Description": "",
"GMNotes": "{\n \"id\": \"03273\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Spirit.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 368859,
"SidewaysCard": false,
"CustomDeck": {
"3688": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "dffa9d",
"Name": "Card",
"Transform": {
"posX": 9.160948,
"posY": 3.886253,
"posZ": -16.7287121,
"rotX": 359.931824,
"rotY": 269.795837,
"rotZ": 359.955353,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Belly of the Beast",
"Description": "",
"GMNotes": "{\n \"id\": \"05160\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Gambit. Trick.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 277911,
"SidewaysCard": false,
"CustomDeck": {
"2779": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025946328/561232524C8EAA4B4371B28652F78969E6ED6FFB/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "f9a232",
"Name": "Card",
"Transform": {
"posX": 9.161393,
"posY": 3.87781715,
"posZ": -16.7288055,
"rotX": 359.9322,
"rotY": 269.795837,
"rotZ": 359.9534,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Bait and Switch (3)",
"Description": "",
"GMNotes": "{\n \"id\": \"05282\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Tactic.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 590302,
"SidewaysCard": false,
"CustomDeck": {
"5903": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1697277388086984548/E61F3E847797C2C9231829611E0D92BA6376FA67/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 4,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "9565f0",
"Name": "Card",
"Transform": {
"posX": 9.161393,
"posY": 3.873003,
"posZ": -16.7288055,
"rotX": 359.9322,
"rotY": 269.795837,
"rotZ": 359.9534,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Hard Knocks (4)",
"Description": "",
"GMNotes": "{\n \"id\": \"07266\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Talent.\",\n \"level\": 4,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Resource\",\n \"count\": 2\n }\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 449605,
"SidewaysCard": false,
"CustomDeck": {
"4496": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1747933191220177818/637923621F747375066D4DA39BEA3BA9C26086A5/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 7,
"NumHeight": 3,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "1b76c9",
"Name": "Card",
"Transform": {
"posX": 9.161393,
"posY": 3.868189,
"posZ": -16.7288055,
"rotX": 359.9322,
"rotY": 269.795837,
"rotZ": 359.9534,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Scavenging",
"Description": "",
"GMNotes": "{\n \"id\": \"01073\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Talent.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 368822,
"SidewaysCard": false,
"CustomDeck": {
"3688": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "21664c",
"Name": "Card",
"Transform": {
"posX": 9.161838,
"posY": 3.85654473,
"posZ": -16.728899,
"rotX": 359.932556,
"rotY": 269.795837,
"rotZ": 359.951447,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Springfield M1903 (4) (Taboo)",
"Description": "",
"GMNotes": "{\n \"id\": \"02226-t\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Item. Weapon. Firearm.\",\n \"level\": 4,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Ammo\",\n \"count\": 3\n }\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 584611,
"SidewaysCard": false,
"CustomDeck": {
"5846": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1697277388086984548/E61F3E847797C2C9231829611E0D92BA6376FA67/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 4,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "5839e4",
"Name": "Card",
"Transform": {
"posX": 9.161838,
"posY": 3.85173082,
"posZ": -16.728899,
"rotX": 359.932556,
"rotY": 269.795837,
"rotZ": 359.951447,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Scroll of Secrets (3) (Taboo)",
"Description": "Mystic",
"GMNotes": "{\n \"id\": \"05189-t\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Item. Tome.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Secret\",\n \"count\": 4\n }\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 450623,
"SidewaysCard": false,
"CustomDeck": {
"4506": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1656721113609569419/60B1DFC7C68C406C34641A1F53078F46D610821C/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "eaaee9",
"Name": "Card",
"Transform": {
"posX": 9.162282,
"posY": 3.78698063,
"posZ": -16.7289925,
"rotX": 359.932922,
"rotY": 269.795837,
"rotZ": 359.949463,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Eucatastrophe (3)",
"Description": "",
"GMNotes": "{\n \"id\": \"05324\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Fortune. Blessed.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 374419,
"SidewaysCard": false,
"CustomDeck": {
"3744": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025946328/561232524C8EAA4B4371B28652F78969E6ED6FFB/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "ef7c11",
"Name": "Card",
"Transform": {
"posX": 9.162282,
"posY": 3.78216672,
"posZ": -16.7289925,
"rotX": 359.932922,
"rotY": 269.795837,
"rotZ": 359.949463,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Solemn Vow",
"Description": "",
"GMNotes": "{\n \"id\": \"06020\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Spirit.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 440926,
"SidewaysCard": false,
"CustomDeck": {
"4409": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025943109/9C5481E6DFEACD450C5522F884E615482281DDB1/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "d48b25",
"Name": "Card",
"Transform": {
"posX": 9.162725,
"posY": 3.714314,
"posZ": -16.7290859,
"rotX": 359.9333,
"rotY": 269.795837,
"rotZ": 359.9475,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Higher Education (3)",
"Description": "",
"GMNotes": "{\n \"id\": \"02187\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Talent.\",\n \"level\": 3,\n \"permanent\": true,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 430649,
"SidewaysCard": false,
"CustomDeck": {
"4306": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "7a33b2",
"Name": "Card",
"Transform": {
"posX": 9.162725,
"posY": 3.7095,
"posZ": -16.7290859,
"rotX": 359.9333,
"rotY": 269.795837,
"rotZ": 359.9475,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Shrivelling (5)",
"Description": "",
"GMNotes": "{\n \"id\": \"02306\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\",\n \"level\": 5,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Charge\",\n \"count\": 4\n }\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 230361,
"SidewaysCard": false,
"CustomDeck": {
"2303": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "1a94ad",
"Name": "Card",
"Transform": {
"posX": 9.162725,
"posY": 3.704686,
"posZ": -16.7290859,
"rotX": 359.9333,
"rotY": 269.795837,
"rotZ": 359.9475,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Dreaded End",
"Description": "Gift of the Void",
"GMNotes": "{\n \"id\": \"86053\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Spell.\",\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 587828,
"SidewaysCard": false,
"CustomDeck": {
"5878": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1655600953065965648/5A0D88CCA811A490C2FEF2675A397E1CEE010870/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 8,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "f57af7",
"Name": "Card",
"Transform": {
"posX": 9.163169,
"posY": 3.68363523,
"posZ": -16.72918,
"rotX": 359.933655,
"rotY": 269.795837,
"rotZ": 359.945526,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": ".41 Derringer (2)",
"Description": "",
"GMNotes": "{\n \"id\": \"03234\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Item. Weapon. Firearm. Illicit.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Ammo\",\n \"count\": 3\n }\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 315248,
"SidewaysCard": false,
"CustomDeck": {
"3152": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "244d61",
"Name": "Card",
"Transform": {
"posX": 9.163169,
"posY": 3.67882133,
"posZ": -16.72918,
"rotX": 359.933655,
"rotY": 269.795837,
"rotZ": 359.945526,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Key of Ys (5) (Taboo)",
"Description": "Let the Storm Rage",
"GMNotes": "{\n \"id\": \"03315-t\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Relic.\",\n \"level\": 5,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 450619,
"SidewaysCard": false,
"CustomDeck": {
"4506": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1656721113609569419/60B1DFC7C68C406C34641A1F53078F46D610821C/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "d6f6f1",
"Name": "Card",
"Transform": {
"posX": 9.163611,
"posY": 3.604675,
"posZ": -16.7292728,
"rotX": 359.934021,
"rotY": 269.795837,
"rotZ": 359.943573,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Nightmare Bauble (3)",
"Description": "",
"GMNotes": "{\n \"id\": \"06330\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Item. Charm. Cursed.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false,\n \"bonded\": [\n {\n \"id\": \"06331\",\n \"count\": 3\n }\n ]\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 448735,
"SidewaysCard": false,
"CustomDeck": {
"4487": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025946328/561232524C8EAA4B4371B28652F78969E6ED6FFB/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "2c76d9",
"Name": "Card",
"Transform": {
"posX": 9.163611,
"posY": 3.59986115,
"posZ": -16.7292728,
"rotX": 359.934021,
"rotY": 269.795837,
"rotZ": 359.943573,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "What Have You Done?",
"Description": "Madness.",
"GMNotes": "{\n \"id\": \"84007\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Madness.\",\n \"permanent\": false,\n \"weakness\": true\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 534901,
"SidewaysCard": false,
"CustomDeck": {
"5349": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493212055041441/90F035BD69A7C5C6B6F43426DDDA3A09DFCBCBDF/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "c17f2c",
"Name": "Card",
"Transform": {
"posX": 9.164054,
"posY": 3.52262282,
"posZ": -16.7293663,
"rotX": 359.934418,
"rotY": 269.795837,
"rotZ": 359.94162,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Forewarned (1)",
"Description": "",
"GMNotes": "{\n \"id\": \"03150\",\n \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"traits\": \"Insight.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 430636,
"SidewaysCard": false,
"CustomDeck": {
"4306": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "a00fca",
"Name": "Card",
"Transform": {
"posX": 9.164054,
"posY": 3.51780868,
"posZ": -16.7293663,
"rotX": 359.934418,
"rotY": 269.795837,
"rotZ": 359.94162,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Banish (1)",
"Description": "",
"GMNotes": "{\n \"id\": \"05113\",\n \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 277509,
"SidewaysCard": false,
"CustomDeck": {
"2775": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025945336/04E36F64C2CBE1B4905FF44A869C75EC52CB3A56/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "dd4e2a",
"Name": "Card",
"Transform": {
"posX": 9.164495,
"posY": 3.43748164,
"posZ": -16.72946,
"rotX": 359.934753,
"rotY": 269.795837,
"rotZ": 359.939636,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Four of Cups (1)",
"Description": "Chalice of the Heart",
"GMNotes": "{\n \"id\": \"05035\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Tarot.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 430905,
"SidewaysCard": false,
"CustomDeck": {
"4309": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025945336/04E36F64C2CBE1B4905FF44A869C75EC52CB3A56/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "d8705c",
"Name": "Card",
"Transform": {
"posX": 9.164495,
"posY": 3.43266773,
"posZ": -16.72946,
"rotX": 359.934753,
"rotY": 269.795837,
"rotZ": 359.939636,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Angered Spirits",
"Description": "",
"GMNotes": "{\n \"id\": \"03015\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Task.\",\n \"permanent\": false,\n \"weakness\": true\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 374717,
"SidewaysCard": false,
"CustomDeck": {
"3747": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "26398a",
"Name": "Card",
"Transform": {
"posX": 9.164937,
"posY": 3.39434266,
"posZ": -16.7295532,
"rotX": 359.93515,
"rotY": 269.795837,
"rotZ": 359.937683,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Pet Oozeling",
"Description": "",
"GMNotes": "{\n \"id\": \"85030\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Monster. Ooze.\",\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 233605,
"SidewaysCard": false,
"CustomDeck": {
"2336": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/784129708171655462/0B7EFEEA9A53B93350FEC7F68F39A20D1D6580A9/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "3feff1",
"Name": "Card",
"Transform": {
"posX": 9.164937,
"posY": 3.38952851,
"posZ": -16.7295532,
"rotX": 359.93515,
"rotY": 269.795837,
"rotZ": 359.937683,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Armageddon",
"Description": "",
"GMNotes": "{\n \"id\": \"07117\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell. Cursed.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Charge\",\n \"count\": 3\n }\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 553109,
"SidewaysCard": false,
"CustomDeck": {
"5531": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1684870715280867313/BFD2AF968EAC917D3B838DCB8B1656941CD8B5CC/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "d96e4b",
"Name": "Card",
"Transform": {
"posX": 9.165378,
"posY": 3.30293584,
"posZ": -16.7296467,
"rotX": 359.935516,
"rotY": 269.795837,
"rotZ": 359.93573,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Strange Solution (4)",
"Description": "Empowering Elixir",
"GMNotes": "{\n \"id\": \"51004\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Science.\",\n \"level\": 4,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Supply\",\n \"count\": 3\n }\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 313905,
"SidewaysCard": false,
"CustomDeck": {
"3139": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "b2ccf8",
"Name": "Card",
"Transform": {
"posX": 9.165378,
"posY": 3.29812169,
"posZ": -16.7296467,
"rotX": 359.935516,
"rotY": 269.795837,
"rotZ": 359.93573,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Eucatastrophe (3) (Taboo)",
"Description": "",
"GMNotes": "{\n \"id\": \"05324-t\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Fortune. Blessed.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 585705,
"SidewaysCard": false,
"CustomDeck": {
"5857": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1697277388086984548/E61F3E847797C2C9231829611E0D92BA6376FA67/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 4,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "0ec9bf",
"Name": "Card",
"Transform": {
"posX": 9.165378,
"posY": 3.29330778,
"posZ": -16.7296467,
"rotX": 359.935516,
"rotY": 269.795837,
"rotZ": 359.93573,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Suggestion (1)",
"Description": "",
"GMNotes": "{\n \"id\": \"52006\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Spell.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Charge\",\n \"count\": 3\n }\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 440721,
"SidewaysCard": false,
"CustomDeck": {
"4407": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025944587/520448D0E9C22F102C7DDF64322EAD6FC221ECC8/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "9e6c55",
"Name": "Card",
"Transform": {
"posX": 9.165818,
"posY": 3.253538,
"posZ": -16.72974,
"rotX": 359.935883,
"rotY": 269.795837,
"rotZ": 359.933777,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Charisma (3)",
"Description": "",
"GMNotes": "{\n \"id\": \"02158\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Talent.\",\n \"level\": 3,\n \"permanent\": true,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 292524,
"SidewaysCard": false,
"CustomDeck": {
"2925": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "acb83a",
"Name": "Card",
"Transform": {
"posX": 9.165818,
"posY": 3.24872375,
"posZ": -16.72974,
"rotX": 359.935883,
"rotY": 269.795837,
"rotZ": 359.933777,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Unexpected Courage",
"Description": "",
"GMNotes": "{\n \"id\": \"01093\",\n \"type\": \"Skill\",\n \"class\": \"Neutral\",\n \"traits\": \"Innate.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 368508,
"SidewaysCard": false,
"CustomDeck": {
"3685": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "0a390e",
"Name": "Card",
"Transform": {
"posX": 9.165818,
"posY": 3.24390984,
"posZ": -16.72974,
"rotX": 359.935883,
"rotY": 269.795837,
"rotZ": 359.933777,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Perseverance",
"Description": "",
"GMNotes": "{\n \"id\": \"04111\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Spirit.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 368817,
"SidewaysCard": false,
"CustomDeck": {
"3688": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "ba0fe7",
"Name": "Card",
"Transform": {
"posX": 9.166301,
"posY": 3.2308712,
"posZ": -16.7298412,
"rotX": 359.923279,
"rotY": 269.795837,
"rotZ": 0.0004825293,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Time Warp (2)",
"Description": "",
"GMNotes": "{\n \"id\": \"03311\",\n \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell. Paradox.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 583810,
"SidewaysCard": false,
"CustomDeck": {
"5838": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1697276627309509299/3B0E32939EB4599CCE3596975637C90FE4EE1DD6/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "0994c9",
"Name": "Card",
"Transform": {
"posX": 9.166301,
"posY": 3.22605729,
"posZ": -16.7298412,
"rotX": 359.923279,
"rotY": 269.795837,
"rotZ": 0.0004825293,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Directive",
"Description": "Seek the Truth",
"GMNotes": "{\n \"id\": \"90028\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"permanent\": true,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 536203,
"SidewaysCard": false,
"CustomDeck": {
"5362": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1697276706761486024/CC7FAD210F216229F1A721BF648855D156F052D5/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 4,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "f0389b",
"Name": "Card",
"Transform": {
"posX": 9.166841,
"posY": 3.20239973,
"posZ": -16.7299557,
"rotX": 359.9208,
"rotY": 269.795837,
"rotZ": 0.0138212712,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Nothing Left to Lose (3)",
"Description": "",
"GMNotes": "{\n \"id\": \"06284\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Spirit.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 448738,
"SidewaysCard": false,
"CustomDeck": {
"4487": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025946328/561232524C8EAA4B4371B28652F78969E6ED6FFB/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "a2c7ef",
"Name": "Card",
"Transform": {
"posX": 9.166841,
"posY": 3.19758582,
"posZ": -16.7299557,
"rotX": 359.9208,
"rotY": 269.795837,
"rotZ": 0.0138212712,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "\"Eat lead!\"",
"Description": "",
"GMNotes": "{\n \"id\": \"52002\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Tactic.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 440923,
"SidewaysCard": false,
"CustomDeck": {
"4409": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025943109/9C5481E6DFEACD450C5522F884E615482281DDB1/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "695bb7",
"Name": "Card",
"Transform": {
"posX": 9.167395,
"posY": 3.1813,
"posZ": -16.730072,
"rotX": 359.920319,
"rotY": 269.795837,
"rotZ": 0.0164893,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Zeal",
"Description": "",
"GMNotes": "{\n \"id\": \"06032\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Ally. Creature. Dreamlands.\",\n \"permanent\": false,\n \"bonded_to\": [\n {\n \"id\": \"06030\",\n \"count\": 1\n }\n ],\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 440625,
"SidewaysCard": false,
"CustomDeck": {
"4406": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025946328/561232524C8EAA4B4371B28652F78969E6ED6FFB/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "8f170b",
"Name": "Card",
"Transform": {
"posX": 9.167395,
"posY": 3.17648578,
"posZ": -16.730072,
"rotX": 359.920319,
"rotY": 269.795837,
"rotZ": 0.0164893,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Flamethrower (5) (Taboo)",
"Description": "",
"GMNotes": "{\n \"id\": \"04305-t\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Item. Weapon. Firearm.\",\n \"level\": 5,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Ammo\",\n \"count\": 4\n }\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 450608,
"SidewaysCard": false,
"CustomDeck": {
"4506": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1656721113609569419/60B1DFC7C68C406C34641A1F53078F46D610821C/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "e27b3c",
"Name": "Card",
"Transform": {
"posX": 9.167395,
"posY": 3.17167187,
"posZ": -16.730072,
"rotX": 359.920319,
"rotY": 269.795837,
"rotZ": 0.0164893,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Recharge (2)",
"Description": "",
"GMNotes": "{\n \"id\": \"03197\",\n \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 230339,
"SidewaysCard": false,
"CustomDeck": {
"2303": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "bd3ecc",
"Name": "Card",
"Transform": {
"posX": 9.167948,
"posY": 3.197317,
"posZ": -16.7301884,
"rotX": 359.9198,
"rotY": 269.795837,
"rotZ": 0.01915434,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Combat Training (1)",
"Description": "",
"GMNotes": "{\n \"id\": \"03107\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Talent. Composure.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 226335,
"SidewaysCard": false,
"CustomDeck": {
"2263": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "07e7bd",
"Name": "Card",
"Transform": {
"posX": 9.168501,
"posY": 3.17462325,
"posZ": -16.7303047,
"rotX": 359.9193,
"rotY": 269.795837,
"rotZ": 0.0218164213,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Directive",
"Description": "Leave No Doubt",
"GMNotes": "{\n \"id\": \"90029\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"permanent\": true,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 536204,
"SidewaysCard": false,
"CustomDeck": {
"5362": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1697276706761486024/CC7FAD210F216229F1A721BF648855D156F052D5/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 4,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "ba2ae1",
"Name": "Card",
"Transform": {
"posX": 9.168501,
"posY": 3.169809,
"posZ": -16.7303047,
"rotX": 359.9193,
"rotY": 269.795837,
"rotZ": 0.0218164213,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Doomed",
"Description": "Basic Weakness",
"GMNotes": "{\n \"id\": \"04040\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Curse.\",\n \"permanent\": false,\n \"weakness\": true,\n \"basicWeaknessCount\": 1\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 440814,
"SidewaysCard": false,
"CustomDeck": {
"4408": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "8595fb",
"Name": "Card",
"Transform": {
"posX": 9.169053,
"posY": 3.1439662,
"posZ": -16.7304211,
"rotX": 359.9188,
"rotY": 269.795837,
"rotZ": 0.0244755521,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Higher Education",
"Description": "",
"GMNotes": "{\n \"id\": \"60211\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Talent.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 538809,
"SidewaysCard": false,
"CustomDeck": {
"5388": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1546381162227145538/0F253FC5301911273C32210992261DD1D2EBB578/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "477e79",
"Name": "Card",
"Transform": {
"posX": 9.169053,
"posY": 3.139152,
"posZ": -16.7304211,
"rotX": 359.9188,
"rotY": 269.795837,
"rotZ": 0.0244755521,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Guided by the Unseen (3)",
"Description": "",
"GMNotes": "{\n \"id\": \"07223\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Ritual.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Secret\",\n \"count\": 4\n }\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 590706,
"SidewaysCard": false,
"CustomDeck": {
"5907": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1697277388086984548/E61F3E847797C2C9231829611E0D92BA6376FA67/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 4,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "5b0f86",
"Name": "Card",
"Transform": {
"posX": 9.169053,
"posY": 3.13433814,
"posZ": -16.7304211,
"rotX": 359.9188,
"rotY": 269.795837,
"rotZ": 0.0244755521,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "\"Get over here!\"",
"Description": "",
"GMNotes": "{\n \"id\": \"60114\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Spirit. Tactic.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 545312,
"SidewaysCard": false,
"CustomDeck": {
"5453": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1546380927206250326/18BF6D2B2BBFDDBE5B021A46C310E4F45493EC26/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "ad58aa",
"Name": "Card",
"Transform": {
"posX": 9.169604,
"posY": 3.15525055,
"posZ": -16.7305374,
"rotX": 359.9183,
"rotY": 269.795837,
"rotZ": 0.0271317326,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Mind's Eye (2)",
"Description": "",
"GMNotes": "{\n \"id\": \"06328\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Ritual.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Charge\",\n \"count\": 3\n }\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 527237,
"SidewaysCard": false,
"CustomDeck": {
"5272": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025945336/04E36F64C2CBE1B4905FF44A869C75EC52CB3A56/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "fc2629",
"Name": "Card",
"Transform": {
"posX": 9.169604,
"posY": 3.1504364,
"posZ": -16.7305374,
"rotX": 359.9183,
"rotY": 269.795837,
"rotZ": 0.0271317326,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "\"Eat lead!\" (2)",
"Description": "",
"GMNotes": "{\n \"id\": \"03304\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Tactic.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 226342,
"SidewaysCard": false,
"CustomDeck": {
"2263": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "219c78",
"Name": "Card",
"Transform": {
"posX": 9.170156,
"posY": 3.11820674,
"posZ": -16.7306538,
"rotX": 359.917816,
"rotY": 269.795837,
"rotZ": 0.0297849588,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Guts (2)",
"Description": "",
"GMNotes": "{\n \"id\": \"60424\",\n \"type\": \"Skill\",\n \"class\": \"Mystic\",\n \"traits\": \"Innate. Developed.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 538722,
"SidewaysCard": false,
"CustomDeck": {
"5387": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297472038/B38A78EF27EBE0BDE1B36958D297701505AB936A/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "0db666",
"Name": "Card",
"Transform": {
"posX": 9.170156,
"posY": 3.10857868,
"posZ": -16.7306538,
"rotX": 359.917816,
"rotY": 269.795837,
"rotZ": 0.0297849588,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Borrowed Time (3)",
"Description": "",
"GMNotes": "{\n \"id\": \"04308\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Ritual.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 315253,
"SidewaysCard": false,
"CustomDeck": {
"3152": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "dc5b38",
"Name": "Card",
"Transform": {
"posX": 9.170706,
"posY": 3.12311149,
"posZ": -16.73077,
"rotX": 359.9173,
"rotY": 269.795837,
"rotZ": 0.0324352272,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "The Price of Failure",
"Description": "Weakness",
"GMNotes": "{\n \"id\": \"04039\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Pact.\",\n \"permanent\": false,\n \"weakness\": true\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 537612,
"SidewaysCard": false,
"CustomDeck": {
"5376": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "901de5",
"Name": "Card",
"Transform": {
"posX": 9.170706,
"posY": 3.11829758,
"posZ": -16.73077,
"rotX": 359.9173,
"rotY": 269.795837,
"rotZ": 0.03243524,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Jacob Morrison (3)",
"Description": "Coast Guard Captain",
"GMNotes": "{\n \"id\": \"07309\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Ally. Blessed.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 589808,
"SidewaysCard": false,
"CustomDeck": {
"5898": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1807607979163972370/50A45AE585D6404E677DFCA597A0F5FE13346B97/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 5,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "b8843c",
"Name": "Card",
"Transform": {
"posX": 9.171255,
"posY": 3.07969522,
"posZ": -16.7308865,
"rotX": 359.9168,
"rotY": 269.795837,
"rotZ": 0.0350825451,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Nimble",
"Description": "",
"GMNotes": "{\n \"id\": \"60317\",\n \"type\": \"Skill\",\n \"class\": \"Rogue\",\n \"traits\": \"Innate.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 538615,
"SidewaysCard": false,
"CustomDeck": {
"5386": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456298037683/22C99DD745DFF65ECC72FD32EFA9C9D0F0C12862/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "943332",
"Name": "Card",
"Transform": {
"posX": 9.171255,
"posY": 3.074881,
"posZ": -16.7308865,
"rotX": 359.9168,
"rotY": 269.795837,
"rotZ": 0.0350825451,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Ineffable Truth (3)",
"Description": "",
"GMNotes": "{\n \"id\": \"60427\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Charge\",\n \"count\": 3\n }\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 538725,
"SidewaysCard": false,
"CustomDeck": {
"5387": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297472038/B38A78EF27EBE0BDE1B36958D297701505AB936A/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "215cec",
"Name": "Card",
"Transform": {
"posX": 9.171804,
"posY": 3.033147,
"posZ": -16.7310028,
"rotX": 359.916321,
"rotY": 269.795837,
"rotZ": 0.0377269424,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Cherished Keepsake",
"Description": "",
"GMNotes": "{\n \"id\": \"03114\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Item. Charm.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 368821,
"SidewaysCard": false,
"CustomDeck": {
"3688": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "eea4ef",
"Name": "Card",
"Transform": {
"posX": 9.171804,
"posY": 3.02833319,
"posZ": -16.7310028,
"rotX": 359.916321,
"rotY": 269.795837,
"rotZ": 0.0377269424,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Well Prepared (2)",
"Description": "",
"GMNotes": "{\n \"id\": \"04151\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Talent.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 226345,
"SidewaysCard": false,
"CustomDeck": {
"2263": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "272e6c",
"Name": "Card",
"Transform": {
"posX": 9.171804,
"posY": 3.023519,
"posZ": -16.7310028,
"rotX": 359.916321,
"rotY": 269.795837,
"rotZ": 0.0377269424,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Dark Ritual",
"Description": "",
"GMNotes": "{\n \"id\": \"07026\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Ritual. Cursed.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 554120,
"SidewaysCard": false,
"CustomDeck": {
"5541": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320664132663842/9B2F50595A754585A4DF12D6D48DC2561DC0E2C9/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "function onload()\n mode = \"Curse\"\n chaosbag = getChaosBag()\n manager = getObjectFromGUID(\"5933fb\")\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, true)\n for url,name in pairs(IMAGE_TOKEN_MAP) do\n if name == mode then\n self.addContextMenuItem(\"Seal \" .. mode, function(playerColor) sealToken(url, playerColor) end, true)\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)\n local guid = obj.getGUID()\n local tokensTaken = manager.getVar(\"tokensTaken\")\n table.insert(tokensTaken[mode], guid)\n manager.setVar(\"tokensTaken\", tokensTaken)\n manager.setVar(\"mode\", mode)\n printToAll(\"Sealing \" .. mode .. \" token \" .. manager.call(\"getTokenCount\"))\nend\n\nfunction releaseTokens(playerColor)\n if #sealedTokens == 0 then return end\n local token = sealedTokens[#sealedTokens]\n if token ~= nil then\n local guid = token.getGUID()\n chaosbag.putObject(token)\n local tokensTaken = manager.getVar(\"tokensTaken\")\n for i,v in ipairs(tokensTaken[mode]) do\n if v == guid then\n table.remove(tokensTaken[mode], i)\n break\n end\n end\n manager.setVar(\"tokensTaken\", tokensTaken)\n manager.setVar(\"mode\", mode)\n printToAll(\"Releasing \" .. mode .. \" token\" .. manager.call(\"getTokenCount\"))\n end\n\n table.remove(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": "da207b",
"Name": "Card",
"Transform": {
"posX": 9.172353,
"posY": 3.02855825,
"posZ": -16.73112,
"rotX": 359.915833,
"rotY": 269.795837,
"rotZ": 0.040368408,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Waylay",
"Description": "",
"GMNotes": "{\n \"id\": \"03237\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Tactic.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 368818,
"SidewaysCard": false,
"CustomDeck": {
"3688": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "8b46b2",
"Name": "Card",
"Transform": {
"posX": 9.172943,
"posY": 2.9603312,
"posZ": -16.7312431,
"rotX": 359.9193,
"rotY": 269.795837,
"rotZ": 0.0217986163,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Keep Faith",
"Description": "",
"GMNotes": "{\n \"id\": \"07034\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Fortune. Blessed.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 584328,
"SidewaysCard": false,
"CustomDeck": {
"5843": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320664132663842/9B2F50595A754585A4DF12D6D48DC2561DC0E2C9/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "394603",
"Name": "Card",
"Transform": {
"posX": 9.172943,
"posY": 2.955517,
"posZ": -16.7312431,
"rotX": 359.9193,
"rotY": 269.795837,
"rotZ": 0.0217986163,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Family Inheritance",
"Description": "",
"GMNotes": "{\n \"id\": \"05011\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Boon.\",\n \"permanent\": true,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 431557,
"SidewaysCard": false,
"CustomDeck": {
"4315": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "102fad",
"Name": "Card",
"Transform": {
"posX": 9.17353249,
"posY": 2.93413568,
"posZ": -16.7313671,
"rotX": 359.92276,
"rotY": 269.7958,
"rotZ": 0.003249419,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Reliable (1)",
"Description": "",
"GMNotes": "{\n \"id\": \"04020\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Upgrade.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 226336,
"SidewaysCard": false,
"CustomDeck": {
"2263": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "b4ad29",
"Name": "Card",
"Transform": {
"posX": 9.17353249,
"posY": 2.92932153,
"posZ": -16.7313671,
"rotX": 359.92276,
"rotY": 269.7958,
"rotZ": 0.003249419,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Contraband",
"Description": "",
"GMNotes": "{\n \"id\": \"02109\",\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"traits\": \"Supply. Illicit.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 368717,
"SidewaysCard": false,
"CustomDeck": {
"3687": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "4edb91",
"Name": "Card",
"Transform": {
"posX": 9.174141,
"posY": 2.91967249,
"posZ": -16.7314949,
"rotX": 359.920715,
"rotY": 269.7958,
"rotZ": 0.0143745448,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Roland's .38 Special",
"Description": "",
"GMNotes": "{\n \"id\": \"01006\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Weapon. Firearm.\",\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Ammo\",\n \"count\": 4\n }\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 586125,
"SidewaysCard": false,
"CustomDeck": {
"5861": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1697276627309509299/3B0E32939EB4599CCE3596975637C90FE4EE1DD6/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "5fae20",
"Name": "Card",
"Transform": {
"posX": 9.174141,
"posY": 2.91485834,
"posZ": -16.7314949,
"rotX": 359.920715,
"rotY": 269.7958,
"rotZ": 0.0143745448,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Grisly Totem (3)",
"Description": "Survivor",
"GMNotes": "{\n \"id\": \"05195\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Item. Charm. Blessed.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 293016,
"SidewaysCard": false,
"CustomDeck": {
"2930": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025946328/561232524C8EAA4B4371B28652F78969E6ED6FFB/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "ae3775",
"Name": "Card",
"Transform": {
"posX": 9.174141,
"posY": 2.91004443,
"posZ": -16.7314949,
"rotX": 359.920715,
"rotY": 269.7958,
"rotZ": 0.0143745448,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "The Black Book",
"Description": "Signed in Blood",
"GMNotes": "{\n \"id\": \"05150\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Tome. Relic.\",\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 275732,
"SidewaysCard": false,
"CustomDeck": {
"2757": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "275450",
"Name": "Card",
"Transform": {
"posX": 9.174748,
"posY": 2.94231844,
"posZ": -16.7316227,
"rotX": 359.918579,
"rotY": 269.7958,
"rotZ": 0.0254873075,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Heavy Furs",
"Description": "",
"GMNotes": "{\n \"id\": \"08126\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Armor.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 378913,
"SidewaysCard": false,
"CustomDeck": {
"3789": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1625226898126493809/0EE7F5B9B916B56425CAC1C46F7FCEF9DBF55112/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "0fc42c",
"Name": "Card",
"Transform": {
"posX": 9.174748,
"posY": 2.93750453,
"posZ": -16.7316227,
"rotX": 359.918579,
"rotY": 269.7958,
"rotZ": 0.0254873075,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Rod of Animalism (1)",
"Description": "",
"GMNotes": "{\n \"id\": \"08128\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Relic.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 378915,
"SidewaysCard": false,
"CustomDeck": {
"3789": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1625226898126493809/0EE7F5B9B916B56425CAC1C46F7FCEF9DBF55112/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "82d62c",
"Name": "Card",
"Transform": {
"posX": 9.175356,
"posY": 2.971334,
"posZ": -16.73175,
"rotX": 359.916534,
"rotY": 269.795776,
"rotZ": 0.0365877151,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Stick to the Plan (3)",
"Description": "",
"GMNotes": "{\n \"id\": \"03264\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Talent.\",\n \"level\": 3,\n \"permanent\": true,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 226350,
"SidewaysCard": false,
"CustomDeck": {
"2263": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "e72762",
"Name": "Card",
"Transform": {
"posX": 9.175356,
"posY": 2.96651983,
"posZ": -16.73175,
"rotX": 359.916534,
"rotY": 269.795776,
"rotZ": 0.0365877151,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Mind Wipe (3)",
"Description": "",
"GMNotes": "{\n \"id\": \"50008\",\n \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 230351,
"SidewaysCard": false,
"CustomDeck": {
"2303": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "adc8b6",
"Name": "Card",
"Transform": {
"posX": 9.175962,
"posY": 2.94719243,
"posZ": -16.7318783,
"rotX": 359.914429,
"rotY": 269.795776,
"rotZ": 0.0476758033,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Dauntless Spirit (1)",
"Description": "",
"GMNotes": "{\n \"id\": \"08078\",\n \"type\": \"Skill\",\n \"class\": \"Survivor\",\n \"traits\": \"Innate. Developed.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 378907,
"SidewaysCard": false,
"CustomDeck": {
"3789": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1625226898126493809/0EE7F5B9B916B56425CAC1C46F7FCEF9DBF55112/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "358387",
"Name": "Card",
"Transform": {
"posX": 9.175962,
"posY": 2.94237852,
"posZ": -16.7318783,
"rotX": 359.914429,
"rotY": 269.795776,
"rotZ": 0.0476758033,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Rise to the Occasion",
"Description": "",
"GMNotes": "{\n \"id\": \"02192\",\n \"type\": \"Skill\",\n \"class\": \"Survivor\",\n \"traits\": \"Innate.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 368801,
"SidewaysCard": false,
"CustomDeck": {
"3688": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "bdd102",
"Name": "Card",
"Transform": {
"posX": 9.175962,
"posY": 2.93756437,
"posZ": -16.7318783,
"rotX": 359.914429,
"rotY": 269.795776,
"rotZ": 0.0476758033,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "In the Thick of It",
"Description": "",
"GMNotes": "{\n \"id\": \"08125\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Curse.\",\n \"level\": 0,\n \"permanent\": true,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 378912,
"SidewaysCard": false,
"CustomDeck": {
"3789": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1625226898126493809/0EE7F5B9B916B56425CAC1C46F7FCEF9DBF55112/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "7a2fe9",
"Name": "Card",
"Transform": {
"posX": 9.176568,
"posY": 2.96498561,
"posZ": -16.7320061,
"rotX": 359.912323,
"rotY": 269.795776,
"rotZ": 0.05875158,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Plucky (3)",
"Description": "",
"GMNotes": "{\n \"id\": \"08081\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Talent. Composure.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 378910,
"SidewaysCard": false,
"CustomDeck": {
"3789": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1625226898126493809/0EE7F5B9B916B56425CAC1C46F7FCEF9DBF55112/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "852697",
"Name": "Card",
"Transform": {
"posX": 9.176568,
"posY": 2.96017146,
"posZ": -16.7320061,
"rotX": 359.912323,
"rotY": 269.795776,
"rotZ": 0.05875158,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Sled Dog",
"Description": "",
"GMNotes": "{\n \"id\": \"08127\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Creature.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 378914,
"SidewaysCard": false,
"CustomDeck": {
"3789": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1625226898126493809/0EE7F5B9B916B56425CAC1C46F7FCEF9DBF55112/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "e81f1e",
"Name": "Card",
"Transform": {
"posX": 9.177174,
"posY": 2.934443,
"posZ": -16.7321339,
"rotX": 359.910278,
"rotY": 269.795776,
"rotZ": 0.06981504,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Blood Will Have Blood (2)",
"Description": "",
"GMNotes": "{\n \"id\": \"08079\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Pact. Cursed.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 378908,
"SidewaysCard": false,
"CustomDeck": {
"3789": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1625226898126493809/0EE7F5B9B916B56425CAC1C46F7FCEF9DBF55112/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "fa994a",
"Name": "Card",
"Transform": {
"posX": 9.177174,
"posY": 2.929629,
"posZ": -16.7321339,
"rotX": 359.910278,
"rotY": 269.795776,
"rotZ": 0.06981504,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Crafty (3)",
"Description": "",
"GMNotes": "{\n \"id\": \"08123\",\n \"type\": \"Asset\",\n \"class\": \"Seeker|Rogue|Survivor\",\n \"traits\": \"Talent.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Resource\",\n \"count\": 2\n }\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 378961,
"SidewaysCard": false,
"CustomDeck": {
"3789": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1625226898126493809/0EE7F5B9B916B56425CAC1C46F7FCEF9DBF55112/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "a65852",
"Name": "Card",
"Transform": {
"posX": 9.177174,
"posY": 2.924815,
"posZ": -16.7321339,
"rotX": 359.910278,
"rotY": 269.795776,
"rotZ": 0.06981504,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Bangle of Jinxes (1)",
"Description": "",
"GMNotes": "{\n \"id\": \"08075\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Item. Charm. Cursed.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Charge\",\n \"count\": 1\n }\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 378904,
"SidewaysCard": false,
"CustomDeck": {
"3789": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1625226898126493809/0EE7F5B9B916B56425CAC1C46F7FCEF9DBF55112/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "fb019d",
"Name": "Card",
"Transform": {
"posX": 9.177778,
"posY": 2.94584179,
"posZ": -16.7322617,
"rotX": 359.9082,
"rotY": 269.795776,
"rotZ": 0.08086622,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Fire Extinguisher (3)",
"Description": "",
"GMNotes": "{\n \"id\": \"08080\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Item. Tool. Melee.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 378909,
"SidewaysCard": false,
"CustomDeck": {
"3789": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1625226898126493809/0EE7F5B9B916B56425CAC1C46F7FCEF9DBF55112/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "452db2",
"Name": "Card",
"Transform": {
"posX": 9.177778,
"posY": 2.94102788,
"posZ": -16.7322617,
"rotX": 359.9082,
"rotY": 269.795776,
"rotZ": 0.08086622,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Antiquary (3)",
"Description": "",
"GMNotes": "{\n \"id\": \"08124\",\n \"type\": \"Asset\",\n \"class\": \"Seeker|Rogue|Mystic\",\n \"traits\": \"Talent.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Resource\",\n \"count\": 2\n }\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 378962,
"SidewaysCard": false,
"CustomDeck": {
"3789": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1625226898126493809/0EE7F5B9B916B56425CAC1C46F7FCEF9DBF55112/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "29d06d",
"Name": "Card",
"Transform": {
"posX": 9.178382,
"posY": 2.90891266,
"posZ": -16.73239,
"rotX": 359.906128,
"rotY": 269.795776,
"rotZ": 0.0919051245,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Jury-Rig",
"Description": "",
"GMNotes": "{\n \"id\": \"08074\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Durability\",\n \"count\": 3\n }\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 378903,
"SidewaysCard": false,
"CustomDeck": {
"3789": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1625226898126493809/0EE7F5B9B916B56425CAC1C46F7FCEF9DBF55112/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "eedd0b",
"Name": "Card",
"Transform": {
"posX": 9.178382,
"posY": 2.90409851,
"posZ": -16.73239,
"rotX": 359.906128,
"rotY": 269.795776,
"rotZ": 0.0919051245,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Burn After Reading (1)",
"Description": "",
"GMNotes": "{\n \"id\": \"08076\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 378905,
"SidewaysCard": false,
"CustomDeck": {
"3789": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1625226898126493809/0EE7F5B9B916B56425CAC1C46F7FCEF9DBF55112/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "699a99",
"Name": "Card",
"Transform": {
"posX": 9.178382,
"posY": 2.8992846,
"posZ": -16.73239,
"rotX": 359.906128,
"rotY": 269.795776,
"rotZ": 0.0919051245,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Schoffner's Catalogue",
"Description": "",
"GMNotes": "{\n \"id\": \"08072\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Item. Tome.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Secret\",\n \"count\": 5\n }\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 378901,
"SidewaysCard": false,
"CustomDeck": {
"3789": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1625226898126493809/0EE7F5B9B916B56425CAC1C46F7FCEF9DBF55112/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "0e64cb",
"Name": "Card",
"Transform": {
"posX": 9.178986,
"posY": 2.91393137,
"posZ": -16.73252,
"rotX": 359.904053,
"rotY": 269.795746,
"rotZ": 0.102931723,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Prophetic (3)",
"Description": "",
"GMNotes": "{\n \"id\": \"08120\",\n \"type\": \"Asset\",\n \"class\": \"Guardian|Mystic|Survivor\",\n \"traits\": \"Talent.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Resource\",\n \"count\": 2\n }\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 378958,
"SidewaysCard": false,
"CustomDeck": {
"3789": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1625226898126493809/0EE7F5B9B916B56425CAC1C46F7FCEF9DBF55112/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "b460e1",
"Name": "Card",
"Transform": {
"posX": 9.178986,
"posY": 2.90911746,
"posZ": -16.73252,
"rotX": 359.904053,
"rotY": 269.795746,
"rotZ": 0.102931723,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Bandages",
"Description": "",
"GMNotes": "{\n \"id\": \"08073\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Item.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Supply\",\n \"count\": 3\n }\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 378902,
"SidewaysCard": false,
"CustomDeck": {
"3789": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1625226898126493809/0EE7F5B9B916B56425CAC1C46F7FCEF9DBF55112/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "f85d4e",
"Name": "Card",
"Transform": {
"posX": 9.178986,
"posY": 2.90430331,
"posZ": -16.73252,
"rotX": 359.904053,
"rotY": 269.795746,
"rotZ": 0.102931723,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Enchanted Bow (2)",
"Description": "",
"GMNotes": "{\n \"id\": \"08118\",\n \"type\": \"Asset\",\n \"class\": \"Mystic|Survivor\",\n \"traits\": \"Spell. Blessed. Weapon. Ranged.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Charge\",\n \"count\": 3\n }\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 378956,
"SidewaysCard": false,
"CustomDeck": {
"3789": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1625226898126493809/0EE7F5B9B916B56425CAC1C46F7FCEF9DBF55112/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "1bdb15",
"Name": "Card",
"Transform": {
"posX": 9.179588,
"posY": 2.91571641,
"posZ": -16.7326469,
"rotX": 359.901978,
"rotY": 269.795746,
"rotZ": 0.113946125,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Sleuth (3)",
"Description": "",
"GMNotes": "{\n \"id\": \"08121\",\n \"type\": \"Asset\",\n \"class\": \"Guardian|Seeker|Mystic\",\n \"traits\": \"Talent.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Resource\",\n \"count\": 2\n }\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 378959,
"SidewaysCard": false,
"CustomDeck": {
"3789": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1625226898126493809/0EE7F5B9B916B56425CAC1C46F7FCEF9DBF55112/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "8ec9cb",
"Name": "Card",
"Transform": {
"posX": 9.179588,
"posY": 2.9109025,
"posZ": -16.7326469,
"rotX": 359.901978,
"rotY": 269.795746,
"rotZ": 0.113946125,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Bruiser (3)",
"Description": "",
"GMNotes": "{\n \"id\": \"08122\",\n \"type\": \"Asset\",\n \"class\": \"Guardian|Rogue|Survivor\",\n \"traits\": \"Talent.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Resource\",\n \"count\": 2\n }\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 378960,
"SidewaysCard": false,
"CustomDeck": {
"3789": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1625226898126493809/0EE7F5B9B916B56425CAC1C46F7FCEF9DBF55112/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "1d6d47",
"Name": "Card",
"Transform": {
"posX": 9.179588,
"posY": 2.90608835,
"posZ": -16.7326469,
"rotX": 359.901978,
"rotY": 269.795746,
"rotZ": 0.113946125,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Earthly Serenity (1)",
"Description": "",
"GMNotes": "{\n \"id\": \"08117\",\n \"type\": \"Asset\",\n \"class\": \"Mystic|Survivor\",\n \"traits\": \"Spell.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Charge\",\n \"count\": 4\n }\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 378955,
"SidewaysCard": false,
"CustomDeck": {
"3789": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1625226898126493809/0EE7F5B9B916B56425CAC1C46F7FCEF9DBF55112/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "e5f541",
"Name": "Card",
"Transform": {
"posX": 9.18019,
"posY": 2.91427135,
"posZ": -16.7327728,
"rotX": 359.8999,
"rotY": 269.795715,
"rotZ": 0.124948226,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Short Supply",
"Description": "",
"GMNotes": "{\n \"id\": \"08071\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Talent.\",\n \"level\": 0,\n \"permanent\": true,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 378900,
"SidewaysCard": false,
"CustomDeck": {
"3789": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1625226898126493809/0EE7F5B9B916B56425CAC1C46F7FCEF9DBF55112/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "57f037",
"Name": "Card",
"Transform": {
"posX": 9.18019,
"posY": 2.90945721,
"posZ": -16.7327728,
"rotX": 359.8999,
"rotY": 269.795715,
"rotZ": 0.124948226,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Earthly Serenity (4)",
"Description": "",
"GMNotes": "{\n \"id\": \"08119\",\n \"type\": \"Asset\",\n \"class\": \"Mystic|Survivor\",\n \"traits\": \"Spell.\",\n \"level\": 4,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Charge\",\n \"count\": 6\n }\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 378957,
"SidewaysCard": false,
"CustomDeck": {
"3789": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1625226898126493809/0EE7F5B9B916B56425CAC1C46F7FCEF9DBF55112/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "70f9f7",
"Name": "Card",
"Transform": {
"posX": 9.180791,
"posY": 2.864512,
"posZ": -16.7328987,
"rotX": 359.897858,
"rotY": 269.795715,
"rotZ": 0.135938182,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Ice Pick (3)",
"Description": "",
"GMNotes": "{\n \"id\": \"08107\",\n \"type\": \"Asset\",\n \"class\": \"Seeker|Survivor\",\n \"traits\": \"Item. Tool. Melee.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 378945,
"SidewaysCard": false,
"CustomDeck": {
"3789": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1625226898126493809/0EE7F5B9B916B56425CAC1C46F7FCEF9DBF55112/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "358be4",
"Name": "Card",
"Transform": {
"posX": 9.180791,
"posY": 2.859698,
"posZ": -16.7328987,
"rotX": 359.897858,
"rotY": 269.795715,
"rotZ": 0.135938182,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Precious Memento (4)",
"Description": "From a Future Life",
"GMNotes": "{\n \"id\": \"08115\",\n \"type\": \"Asset\",\n \"class\": \"Rogue|Survivor\",\n \"traits\": \"Item. Charm. Cursed.\",\n \"level\": 4,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 378953,
"SidewaysCard": false,
"CustomDeck": {
"3789": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1625226898126493809/0EE7F5B9B916B56425CAC1C46F7FCEF9DBF55112/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "7b4b0c",
"Name": "Card",
"Transform": {
"posX": 9.180791,
"posY": 2.854884,
"posZ": -16.7328987,
"rotX": 359.897858,
"rotY": 269.795715,
"rotZ": 0.135938182,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Talisman of Protection",
"Description": "",
"GMNotes": "{\n \"id\": \"08116\",\n \"type\": \"Asset\",\n \"class\": \"Mystic|Survivor\",\n \"traits\": \"Item. Charm.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 378954,
"SidewaysCard": false,
"CustomDeck": {
"3789": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1625226898126493809/0EE7F5B9B916B56425CAC1C46F7FCEF9DBF55112/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "57b95d",
"Name": "Card",
"Transform": {
"posX": 9.181392,
"posY": 2.85671544,
"posZ": -16.7330246,
"rotX": 359.895782,
"rotY": 269.795715,
"rotZ": 0.146915883,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Unscrupulous Loan (3)",
"Description": "",
"GMNotes": "{\n \"id\": \"08113\",\n \"type\": \"Asset\",\n \"class\": \"Rogue|Survivor\",\n \"traits\": \"Pact.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 378951,
"SidewaysCard": false,
"CustomDeck": {
"3789": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1625226898126493809/0EE7F5B9B916B56425CAC1C46F7FCEF9DBF55112/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "1905cf",
"Name": "Card",
"Transform": {
"posX": 9.181392,
"posY": 2.85190129,
"posZ": -16.7330246,
"rotX": 359.895782,
"rotY": 269.795715,
"rotZ": 0.146915883,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Professor William Webb (2)",
"Description": "Finder of Hidden Connections",
"GMNotes": "{\n \"id\": \"08106\",\n \"type\": \"Asset\",\n \"class\": \"Seeker|Survivor\",\n \"traits\": \"Ally. Miskatonic.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 378944,
"SidewaysCard": false,
"CustomDeck": {
"3789": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1625226898126493809/0EE7F5B9B916B56425CAC1C46F7FCEF9DBF55112/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "6c5628",
"Name": "Card",
"Transform": {
"posX": 9.181992,
"posY": 2.800612,
"posZ": -16.73315,
"rotX": 359.8937,
"rotY": 269.795715,
"rotZ": 0.157881409,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Nkosi Mabati (3)",
"Description": "Enigmatic Warlock",
"GMNotes": "{\n \"id\": \"08091\",\n \"type\": \"Asset\",\n \"class\": \"Guardian|Mystic\",\n \"traits\": \"Ally. Sorcerer.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 378929,
"SidewaysCard": false,
"CustomDeck": {
"3789": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1625226898126493809/0EE7F5B9B916B56425CAC1C46F7FCEF9DBF55112/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "ae3ff5",
"Name": "Card",
"Transform": {
"posX": 9.181992,
"posY": 2.795798,
"posZ": -16.73315,
"rotX": 359.8937,
"rotY": 269.795715,
"rotZ": 0.157881409,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Sledgehammer (4)",
"Description": "",
"GMNotes": "{\n \"id\": \"08096\",\n \"type\": \"Asset\",\n \"class\": \"Guardian|Survivor\",\n \"traits\": \"Item. Tool. Weapon. Melee.\",\n \"level\": 4,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 378934,
"SidewaysCard": false,
"CustomDeck": {
"3789": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1625226898126493809/0EE7F5B9B916B56425CAC1C46F7FCEF9DBF55112/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "be4332",
"Name": "Card",
"Transform": {
"posX": 9.181992,
"posY": 2.790984,
"posZ": -16.73315,
"rotX": 359.8937,
"rotY": 269.795715,
"rotZ": 0.157881409,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Eon Chart (1)",
"Description": "",
"GMNotes": "{\n \"id\": \"08098\",\n \"type\": \"Asset\",\n \"class\": \"Seeker|Rogue\",\n \"traits\": \"Item. Relic.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Secret\",\n \"count\": 3\n }\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 378936,
"SidewaysCard": false,
"CustomDeck": {
"3789": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1625226898126493809/0EE7F5B9B916B56425CAC1C46F7FCEF9DBF55112/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "39cb5b",
"Name": "Card",
"Transform": {
"posX": 9.18259048,
"posY": 2.786476,
"posZ": -16.7332764,
"rotX": 359.891663,
"rotY": 269.7957,
"rotZ": 0.1688347,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Ethereal Slip (2)",
"Description": "",
"GMNotes": "{\n \"id\": \"08110\",\n \"type\": \"Event\",\n \"class\": \"Rogue|Mystic\",\n \"traits\": \"Spell. Trick.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 378948,
"SidewaysCard": false,
"CustomDeck": {
"3789": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1625226898126493809/0EE7F5B9B916B56425CAC1C46F7FCEF9DBF55112/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "f69d3f",
"Name": "Card",
"Transform": {
"posX": 9.18259048,
"posY": 2.78166175,
"posZ": -16.7332764,
"rotX": 359.891663,
"rotY": 269.7957,
"rotZ": 0.1688347,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Precious Memento (4)",
"Description": "From a Former Life",
"GMNotes": "{\n \"id\": \"08114\",\n \"type\": \"Asset\",\n \"class\": \"Rogue|Survivor\",\n \"traits\": \"Item. Charm. Blessed.\",\n \"level\": 4,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 378952,
"SidewaysCard": false,
"CustomDeck": {
"3789": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1625226898126493809/0EE7F5B9B916B56425CAC1C46F7FCEF9DBF55112/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "58f2af",
"Name": "Card",
"Transform": {
"posX": 9.183189,
"posY": 2.724036,
"posZ": -16.7334023,
"rotX": 359.8896,
"rotY": 269.7957,
"rotZ": 0.179775923,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Divination (4)",
"Description": "",
"GMNotes": "{\n \"id\": \"08103\",\n \"type\": \"Asset\",\n \"class\": \"Seeker|Mystic\",\n \"traits\": \"Spell. Augury.\",\n \"level\": 4,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Charge\",\n \"count\": 6\n }\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 378941,
"SidewaysCard": false,
"CustomDeck": {
"3789": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1625226898126493809/0EE7F5B9B916B56425CAC1C46F7FCEF9DBF55112/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "8b065c",
"Name": "Card",
"Transform": {
"posX": 9.183189,
"posY": 2.719222,
"posZ": -16.7334023,
"rotX": 359.8896,
"rotY": 269.7957,
"rotZ": 0.179775923,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Ice Pick (1)",
"Description": "",
"GMNotes": "{\n \"id\": \"08105\",\n \"type\": \"Asset\",\n \"class\": \"Seeker|Survivor\",\n \"traits\": \"Item. Tool. Melee.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 378943,
"SidewaysCard": false,
"CustomDeck": {
"3789": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1625226898126493809/0EE7F5B9B916B56425CAC1C46F7FCEF9DBF55112/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "cc8571",
"Name": "Card",
"Transform": {
"posX": 9.183189,
"posY": 2.714408,
"posZ": -16.7334023,
"rotX": 359.8896,
"rotY": 269.7957,
"rotZ": 0.179775923,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Professor William Webb",
"Description": "Finder of Hidden Connections",
"GMNotes": "{\n \"id\": \"08104\",\n \"type\": \"Asset\",\n \"class\": \"Seeker|Survivor\",\n \"traits\": \"Ally. Miskatonic.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 378942,
"SidewaysCard": false,
"CustomDeck": {
"3789": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1625226898126493809/0EE7F5B9B916B56425CAC1C46F7FCEF9DBF55112/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "31539a",
"Name": "Card",
"Transform": {
"posX": 9.183787,
"posY": 2.70356441,
"posZ": -16.7335281,
"rotX": 359.887543,
"rotY": 269.795654,
"rotZ": 0.190704927,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Ethereal Slip",
"Description": "",
"GMNotes": "{\n \"id\": \"08108\",\n \"type\": \"Event\",\n \"class\": \"Rogue|Mystic\",\n \"traits\": \"Spell. Trick.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 378946,
"SidewaysCard": false,
"CustomDeck": {
"3789": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1625226898126493809/0EE7F5B9B916B56425CAC1C46F7FCEF9DBF55112/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "255aa3",
"Name": "Card",
"Transform": {
"posX": 9.183787,
"posY": 2.6987505,
"posZ": -16.7335281,
"rotX": 359.887543,
"rotY": 269.795654,
"rotZ": 0.190704927,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Gené Beauregard (3)",
"Description": "Intrepid Explorer",
"GMNotes": "{\n \"id\": \"08099\",\n \"type\": \"Asset\",\n \"class\": \"Seeker|Rogue\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 378937,
"SidewaysCard": false,
"CustomDeck": {
"3789": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1625226898126493809/0EE7F5B9B916B56425CAC1C46F7FCEF9DBF55112/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "91204c",
"Name": "Card",
"Transform": {
"posX": 9.184384,
"posY": 2.634792,
"posZ": -16.733654,
"rotX": 359.8855,
"rotY": 269.795654,
"rotZ": 0.201621786,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Protecting the Anirniq (2)",
"Description": "",
"GMNotes": "{\n \"id\": \"08102\",\n \"type\": \"Event\",\n \"class\": \"Seeker|Mystic\",\n \"traits\": \"Ritual.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 378940,
"SidewaysCard": false,
"CustomDeck": {
"3789": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1625226898126493809/0EE7F5B9B916B56425CAC1C46F7FCEF9DBF55112/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "d3ad2d",
"Name": "Card",
"Transform": {
"posX": 9.184384,
"posY": 2.62997818,
"posZ": -16.733654,
"rotX": 359.8855,
"rotY": 269.795654,
"rotZ": 0.201621786,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Eon Chart (4)",
"Description": "",
"GMNotes": "{\n \"id\": \"08100\",\n \"type\": \"Asset\",\n \"class\": \"Seeker|Rogue\",\n \"traits\": \"Item. Relic.\",\n \"level\": 4,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Secret\",\n \"count\": 3\n }\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 378938,
"SidewaysCard": false,
"CustomDeck": {
"3789": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1625226898126493809/0EE7F5B9B916B56425CAC1C46F7FCEF9DBF55112/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "98eb87",
"Name": "Card",
"Transform": {
"posX": 9.184384,
"posY": 2.625164,
"posZ": -16.733654,
"rotX": 359.8855,
"rotY": 269.795654,
"rotZ": 0.201621786,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Pocket Telescope",
"Description": "",
"GMNotes": "{\n \"id\": \"08097\",\n \"type\": \"Asset\",\n \"class\": \"Seeker|Rogue\",\n \"traits\": \"Item. Tool.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 378935,
"SidewaysCard": false,
"CustomDeck": {
"3789": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1625226898126493809/0EE7F5B9B916B56425CAC1C46F7FCEF9DBF55112/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "79cbc6",
"Name": "Card",
"Transform": {
"posX": 9.184981,
"posY": 2.6079886,
"posZ": -16.73378,
"rotX": 359.883423,
"rotY": 269.7956,
"rotZ": 0.212526515,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Snipe (1)",
"Description": "",
"GMNotes": "{\n \"id\": \"08087\",\n \"type\": \"Event\",\n \"class\": \"Guardian|Rogue\",\n \"traits\": \"Tactic.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 378925,
"SidewaysCard": false,
"CustomDeck": {
"3789": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1625226898126493809/0EE7F5B9B916B56425CAC1C46F7FCEF9DBF55112/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "b94090",
"Name": "Card",
"Transform": {
"posX": 9.184981,
"posY": 2.60317469,
"posZ": -16.73378,
"rotX": 359.883423,
"rotY": 269.7956,
"rotZ": 0.212526515,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "On the Trail (3)",
"Description": "",
"GMNotes": "{\n \"id\": \"08085\",\n \"type\": \"Event\",\n \"class\": \"Guardian|Seeker\",\n \"traits\": \"Insight. Tactic.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 378923,
"SidewaysCard": false,
"CustomDeck": {
"3789": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1625226898126493809/0EE7F5B9B916B56425CAC1C46F7FCEF9DBF55112/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "0fff60",
"Name": "Card",
"Transform": {
"posX": 9.185577,
"posY": 2.53288746,
"posZ": -16.7339058,
"rotX": 359.881378,
"rotY": 269.7956,
"rotZ": 0.22341913,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Brand of Cthugha (1)",
"Description": "",
"GMNotes": "{\n \"id\": \"08090\",\n \"type\": \"Asset\",\n \"class\": \"Guardian|Mystic\",\n \"traits\": \"Spell.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Charge\",\n \"count\": 6\n }\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 378928,
"SidewaysCard": false,
"CustomDeck": {
"3789": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1625226898126493809/0EE7F5B9B916B56425CAC1C46F7FCEF9DBF55112/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "4df3b9",
"Name": "Card",
"Transform": {
"posX": 9.185577,
"posY": 2.52807355,
"posZ": -16.7339058,
"rotX": 359.881378,
"rotY": 269.7956,
"rotZ": 0.22341913,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Cyclopean Hammer (5)",
"Description": "",
"GMNotes": "{\n \"id\": \"08093\",\n \"type\": \"Asset\",\n \"class\": \"Guardian|Mystic\",\n \"traits\": \"Item. Relic. Weapon. Melee.\",\n \"level\": 5,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 378931,
"SidewaysCard": false,
"CustomDeck": {
"3789": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1625226898126493809/0EE7F5B9B916B56425CAC1C46F7FCEF9DBF55112/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "200b64",
"Name": "Card",
"Transform": {
"posX": 9.185577,
"posY": 2.5232594,
"posZ": -16.7339058,
"rotX": 359.881378,
"rotY": 269.7956,
"rotZ": 0.22341913,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Brand of Cthugha (4)",
"Description": "",
"GMNotes": "{\n \"id\": \"08092\",\n \"type\": \"Asset\",\n \"class\": \"Guardian|Mystic\",\n \"traits\": \"Spell.\",\n \"level\": 4,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Charge\",\n \"count\": 9\n }\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 378930,
"SidewaysCard": false,
"CustomDeck": {
"3789": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1625226898126493809/0EE7F5B9B916B56425CAC1C46F7FCEF9DBF55112/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "859736",
"Name": "Card",
"Transform": {
"posX": 9.18617249,
"posY": 2.49975538,
"posZ": -16.7340317,
"rotX": 359.879333,
"rotY": 269.7956,
"rotZ": 0.234299615,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Quickdraw Holster (4)",
"Description": "",
"GMNotes": "{\n \"id\": \"08089\",\n \"type\": \"Asset\",\n \"class\": \"Guardian|Rogue\",\n \"traits\": \"Item. Tool. Illicit.\",\n \"level\": 4,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 378927,
"SidewaysCard": false,
"CustomDeck": {
"3789": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1625226898126493809/0EE7F5B9B916B56425CAC1C46F7FCEF9DBF55112/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "78fdc7",
"Name": "Card",
"Transform": {
"posX": 9.18617249,
"posY": 2.49494147,
"posZ": -16.7340317,
"rotX": 359.879333,
"rotY": 269.7956,
"rotZ": 0.234299615,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Sledgehammer",
"Description": "",
"GMNotes": "{\n \"id\": \"08094\",\n \"type\": \"Asset\",\n \"class\": \"Guardian|Survivor\",\n \"traits\": \"Item. Tool. Weapon. Melee.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 378932,
"SidewaysCard": false,
"CustomDeck": {
"3789": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1625226898126493809/0EE7F5B9B916B56425CAC1C46F7FCEF9DBF55112/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "7eb1ec",
"Name": "Card",
"Transform": {
"posX": 9.186767,
"posY": 2.41832781,
"posZ": -16.7341576,
"rotX": 359.8773,
"rotY": 269.7956,
"rotZ": 0.245168045,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Old Shotgun (2)",
"Description": "",
"GMNotes": "{\n \"id\": \"08088\",\n \"type\": \"Asset\",\n \"class\": \"Guardian|Rogue\",\n \"traits\": \"Item. Weapon. Firearm.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Ammo\",\n \"count\": 0\n }\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 378926,
"SidewaysCard": false,
"CustomDeck": {
"3789": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1625226898126493809/0EE7F5B9B916B56425CAC1C46F7FCEF9DBF55112/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "4e4179",
"Name": "Card",
"Transform": {
"posX": 9.186767,
"posY": 2.413514,
"posZ": -16.7341576,
"rotX": 359.8773,
"rotY": 269.7956,
"rotZ": 0.245168045,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "On the Trail (1)",
"Description": "",
"GMNotes": "{\n \"id\": \"08084\",\n \"type\": \"Event\",\n \"class\": \"Guardian|Seeker\",\n \"traits\": \"Insight. Tactic.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 378922,
"SidewaysCard": false,
"CustomDeck": {
"3789": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1625226898126493809/0EE7F5B9B916B56425CAC1C46F7FCEF9DBF55112/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "93e52d",
"Name": "Card",
"Transform": {
"posX": 9.186767,
"posY": 2.4087,
"posZ": -16.7341576,
"rotX": 359.8773,
"rotY": 269.7956,
"rotZ": 0.245168045,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Panic",
"Description": "Basic Weakness",
"GMNotes": "{\n \"id\": \"08132\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Madness.\",\n \"permanent\": false,\n \"weakness\": true,\n \"basicWeaknessCount\": 1\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 378919,
"SidewaysCard": false,
"CustomDeck": {
"3789": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1625226898126493809/0EE7F5B9B916B56425CAC1C46F7FCEF9DBF55112/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "a42bcf",
"Name": "Card",
"Transform": {
"posX": 9.187361,
"posY": 2.37886977,
"posZ": -16.7342834,
"rotX": 359.875244,
"rotY": 269.7956,
"rotZ": 0.25602442,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Stupor",
"Description": "Basic Weakness",
"GMNotes": "{\n \"id\": \"08133\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Madness.\",\n \"permanent\": false,\n \"weakness\": true,\n \"basicWeaknessCount\": 1\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 378920,
"SidewaysCard": false,
"CustomDeck": {
"3789": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1625226898126493809/0EE7F5B9B916B56425CAC1C46F7FCEF9DBF55112/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "edb064",
"Name": "Card",
"Transform": {
"posX": 9.187361,
"posY": 2.37405562,
"posZ": -16.7342834,
"rotX": 359.875244,
"rotY": 269.7956,
"rotZ": 0.25602442,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Grounded (3)",
"Description": "",
"GMNotes": "{\n \"id\": \"08069\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Talent. Composure.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 379059,
"SidewaysCard": false,
"CustomDeck": {
"3790": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1625226898126491470/A7FAFA92C08268717F79B2B1C83F8C23DFA6C534/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "46b4a0",
"Name": "Card",
"Transform": {
"posX": 9.187361,
"posY": 2.36924171,
"posZ": -16.7342834,
"rotX": 359.875244,
"rotY": 269.7956,
"rotZ": 0.25602442,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Leg Injury",
"Description": "Basic Weakness",
"GMNotes": "{\n \"id\": \"08131\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Injury.\",\n \"permanent\": false,\n \"weakness\": true,\n \"basicWeaknessCount\": 1\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 378918,
"SidewaysCard": false,
"CustomDeck": {
"3789": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1625226898126493809/0EE7F5B9B916B56425CAC1C46F7FCEF9DBF55112/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "f2726b",
"Name": "Card",
"Transform": {
"posX": 9.187987,
"posY": 2.35549569,
"posZ": -16.7344151,
"rotX": 359.9112,
"rotY": 269.7956,
"rotZ": 0.06492921,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Healing Words (3)",
"Description": "",
"GMNotes": "{\n \"id\": \"08068\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Charge\",\n \"count\": 4\n }\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 379058,
"SidewaysCard": false,
"CustomDeck": {
"3790": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1625226898126491470/A7FAFA92C08268717F79B2B1C83F8C23DFA6C534/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "79870f",
"Name": "Card",
"Transform": {
"posX": 9.187987,
"posY": 2.35068154,
"posZ": -16.7344151,
"rotX": 359.9112,
"rotY": 269.7956,
"rotZ": 0.06492921,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "True Magick (5)",
"Description": "Reworking Reality",
"GMNotes": "{\n \"id\": \"08070\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Item. Relic. Tome.\",\n \"level\": 5,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 379060,
"SidewaysCard": false,
"CustomDeck": {
"3790": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1625226898126491470/A7FAFA92C08268717F79B2B1C83F8C23DFA6C534/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "8f1420",
"Name": "Card",
"Transform": {
"posX": 9.188667,
"posY": 2.32637477,
"posZ": -16.7345562,
"rotX": 359.9184,
"rotY": 269.7956,
"rotZ": 0.0267106984,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Arm Injury",
"Description": "Basic Weakness",
"GMNotes": "{\n \"id\": \"08130\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Injury.\",\n \"permanent\": false,\n \"weakness\": true,\n \"basicWeaknessCount\": 1\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 378917,
"SidewaysCard": false,
"CustomDeck": {
"3789": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1625226898126493809/0EE7F5B9B916B56425CAC1C46F7FCEF9DBF55112/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "49a338",
"Name": "Card",
"Transform": {
"posX": 9.188667,
"posY": 2.32156062,
"posZ": -16.7345562,
"rotX": 359.9184,
"rotY": 269.7956,
"rotZ": 0.0267106984,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Occult Theory (1)",
"Description": "",
"GMNotes": "{\n \"id\": \"08065\",\n \"type\": \"Skill\",\n \"class\": \"Mystic\",\n \"traits\": \"Practiced. Expert.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 379055,
"SidewaysCard": false,
"CustomDeck": {
"3790": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1625226898126491470/A7FAFA92C08268717F79B2B1C83F8C23DFA6C534/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "d02825",
"Name": "Card",
"Transform": {
"posX": 9.188667,
"posY": 2.31674671,
"posZ": -16.7345562,
"rotX": 359.9184,
"rotY": 269.7956,
"rotZ": 0.0267106984,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Close the Circle (1)",
"Description": "",
"GMNotes": "{\n \"id\": \"08062\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Ritual. Synergy.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Charge\",\n \"count\": 1\n }\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 379052,
"SidewaysCard": false,
"CustomDeck": {
"3790": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1625226898126491470/A7FAFA92C08268717F79B2B1C83F8C23DFA6C534/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "927d34",
"Name": "Card",
"Transform": {
"posX": 9.189347,
"posY": 2.33959079,
"posZ": -16.7347,
"rotX": 359.925568,
"rotY": 269.795532,
"rotZ": 359.988525,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Scout Ahead",
"Description": "",
"GMNotes": "{\n \"id\": \"08047\",\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"traits\": \"Insight. Trick.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 379037,
"SidewaysCard": false,
"CustomDeck": {
"3790": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1625226898126491470/A7FAFA92C08268717F79B2B1C83F8C23DFA6C534/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "f6d572",
"Name": "Card",
"Transform": {
"posX": 9.189347,
"posY": 2.33477688,
"posZ": -16.7347,
"rotX": 359.925568,
"rotY": 269.795532,
"rotZ": 359.988525,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Cheat the System (1)",
"Description": "",
"GMNotes": "{\n \"id\": \"08050\",\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"traits\": \"Trick. Synergy.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 379040,
"SidewaysCard": false,
"CustomDeck": {
"3790": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1625226898126491470/A7FAFA92C08268717F79B2B1C83F8C23DFA6C534/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "c09a15",
"Name": "Card",
"Transform": {
"posX": 9.190026,
"posY": 2.30546546,
"posZ": -16.7348423,
"rotX": 359.932739,
"rotY": 269.795471,
"rotZ": 359.9504,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Foresight (1)",
"Description": "",
"GMNotes": "{\n \"id\": \"08064\",\n \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"traits\": \"Augury.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 379054,
"SidewaysCard": false,
"CustomDeck": {
"3790": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1625226898126491470/A7FAFA92C08268717F79B2B1C83F8C23DFA6C534/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "583026",
"Name": "Card",
"Transform": {
"posX": 9.190026,
"posY": 2.30065155,
"posZ": -16.7348423,
"rotX": 359.932739,
"rotY": 269.795471,
"rotZ": 359.9504,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Parallel Fates (2)",
"Description": "",
"GMNotes": "{\n \"id\": \"08066\",\n \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"traits\": \"Augury.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 379056,
"SidewaysCard": false,
"CustomDeck": {
"3790": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1625226898126491470/A7FAFA92C08268717F79B2B1C83F8C23DFA6C534/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "6b3a27",
"Name": "Card",
"Transform": {
"posX": 9.190704,
"posY": 2.26816654,
"posZ": -16.7349854,
"rotX": 359.9399,
"rotY": 269.7954,
"rotZ": 359.912323,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Moxie (3)",
"Description": "",
"GMNotes": "{\n \"id\": \"08056\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Talent. Composure.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 379046,
"SidewaysCard": false,
"CustomDeck": {
"3790": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1625226898126491470/A7FAFA92C08268717F79B2B1C83F8C23DFA6C534/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "67eb69",
"Name": "Card",
"Transform": {
"posX": 9.191461,
"posY": 2.237725,
"posZ": -16.7351456,
"rotX": 359.924133,
"rotY": 269.79538,
"rotZ": -0.00381280971,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Money Talks (2)",
"Description": "",
"GMNotes": "{\n \"id\": \"08054\",\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"traits\": \"Favor. Gambit.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 379044,
"SidewaysCard": false,
"CustomDeck": {
"3790": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1625226898126491470/A7FAFA92C08268717F79B2B1C83F8C23DFA6C534/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "20da53",
"Name": "Card",
"Transform": {
"posX": 9.192243,
"posY": 2.2244277,
"posZ": -16.73531,
"rotX": 359.920929,
"rotY": 269.795319,
"rotZ": 0.0129628349,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Black Market (2)",
"Description": "",
"GMNotes": "{\n \"id\": \"08055\",\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"traits\": \"Favor.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 379045,
"SidewaysCard": false,
"CustomDeck": {
"3790": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1625226898126491470/A7FAFA92C08268717F79B2B1C83F8C23DFA6C534/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "814c79",
"Name": "Card",
"Transform": {
"posX": 9.193032,
"posY": 2.214094,
"posZ": -16.7354755,
"rotX": 359.920349,
"rotY": 269.795258,
"rotZ": 0.0163181927,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "The Red Clock (2)",
"Description": "Broken but Reliable",
"GMNotes": "{\n \"id\": \"08053\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Item. Relic.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 379043,
"SidewaysCard": false,
"CustomDeck": {
"3790": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1625226898126491470/A7FAFA92C08268717F79B2B1C83F8C23DFA6C534/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "bcdfde",
"Name": "Card",
"Transform": {
"posX": 9.193032,
"posY": 2.20927978,
"posZ": -16.7354755,
"rotX": 359.920349,
"rotY": 269.795258,
"rotZ": 0.0163181927,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Winds of Power (1)",
"Description": "",
"GMNotes": "{\n \"id\": \"08063\",\n \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"traits\": \"Spirit.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 379053,
"SidewaysCard": false,
"CustomDeck": {
"3790": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1625226898126491470/A7FAFA92C08268717F79B2B1C83F8C23DFA6C534/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "5e3aac",
"Name": "Card",
"Transform": {
"posX": 9.193821,
"posY": 2.24569058,
"posZ": -16.7356415,
"rotX": 359.9197,
"rotY": 269.7952,
"rotZ": 0.0196698382,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Savant (1)",
"Description": "",
"GMNotes": "{\n \"id\": \"08052\",\n \"type\": \"Skill\",\n \"class\": \"Rogue\",\n \"traits\": \"Innate. Developed.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 379042,
"SidewaysCard": false,
"CustomDeck": {
"3790": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1625226898126491470/A7FAFA92C08268717F79B2B1C83F8C23DFA6C534/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "696894",
"Name": "Card",
"Transform": {
"posX": 9.194609,
"posY": 2.22896552,
"posZ": -16.7358074,
"rotX": 359.919067,
"rotY": 269.795135,
"rotZ": 0.0230177268,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "The Red Clock (5)",
"Description": "Broken but Reliable",
"GMNotes": "{\n \"id\": \"08058\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Item. Relic.\",\n \"level\": 5,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 379048,
"SidewaysCard": false,
"CustomDeck": {
"3790": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1625226898126491470/A7FAFA92C08268717F79B2B1C83F8C23DFA6C534/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "b03e83",
"Name": "Card",
"Transform": {
"posX": 9.195396,
"posY": 2.20910788,
"posZ": -16.7359734,
"rotX": 359.918457,
"rotY": 269.795074,
"rotZ": 0.0263619237,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Hiking Boots (1)",
"Description": "",
"GMNotes": "{\n \"id\": \"08035\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Clothing. Footwear.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 379025,
"SidewaysCard": false,
"CustomDeck": {
"3790": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1625226898126491470/A7FAFA92C08268717F79B2B1C83F8C23DFA6C534/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "b925fc",
"Name": "Card",
"Transform": {
"posX": 9.196183,
"posY": 2.18612027,
"posZ": -16.73614,
"rotX": 359.917816,
"rotY": 269.795,
"rotZ": 0.029702412,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Down the Rabbit Hole",
"Description": "",
"GMNotes": "{\n \"id\": \"08059\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Talent.\",\n \"level\": 0,\n \"permanent\": true,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 379049,
"SidewaysCard": false,
"CustomDeck": {
"3790": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1625226898126491470/A7FAFA92C08268717F79B2B1C83F8C23DFA6C534/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "6aa5dc",
"Name": "Card",
"Transform": {
"posX": 9.196969,
"posY": 2.1595552,
"posZ": -16.7363052,
"rotX": 359.922852,
"rotY": 269.794952,
"rotZ": 0.00291156746,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Survey the Area (1)",
"Description": "",
"GMNotes": "{\n \"id\": \"08037\",\n \"type\": \"Skill\",\n \"class\": \"Seeker\",\n \"traits\": \"Practiced. Expert.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 379027,
"SidewaysCard": false,
"CustomDeck": {
"3790": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1625226898126491470/A7FAFA92C08268717F79B2B1C83F8C23DFA6C534/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "fa06f9",
"Name": "Card",
"Transform": {
"posX": 9.197777,
"posY": 2.14719653,
"posZ": -16.736475,
"rotX": 359.920715,
"rotY": 269.794861,
"rotZ": 0.0143080512,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Forced Learning",
"Description": "",
"GMNotes": "{\n \"id\": \"08031\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Talent. Ritual.\",\n \"level\": 0,\n \"permanent\": true,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 379021,
"SidewaysCard": false,
"CustomDeck": {
"3790": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1625226898126491470/A7FAFA92C08268717F79B2B1C83F8C23DFA6C534/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "3eafd5",
"Name": "Card",
"Transform": {
"posX": 9.197777,
"posY": 2.14238262,
"posZ": -16.736475,
"rotX": 359.920715,
"rotY": 269.794861,
"rotZ": 0.0143080512,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "The Black Fan (3)",
"Description": "Symbol of Power",
"GMNotes": "{\n \"id\": \"08057\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Item. Relic.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 379047,
"SidewaysCard": false,
"CustomDeck": {
"3790": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1625226898126491470/A7FAFA92C08268717F79B2B1C83F8C23DFA6C534/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "69289f",
"Name": "Card",
"Transform": {
"posX": 9.198584,
"posY": 2.17676258,
"posZ": -16.7366467,
"rotX": 359.918579,
"rotY": 269.79483,
"rotZ": 0.0256918743,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Untimely Transaction (1)",
"Description": "",
"GMNotes": "{\n \"id\": \"08051\",\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"traits\": \"Favor.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 379041,
"SidewaysCard": false,
"CustomDeck": {
"3790": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1625226898126491470/A7FAFA92C08268717F79B2B1C83F8C23DFA6C534/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "1fdf4c",
"Name": "Card",
"Transform": {
"posX": 9.199389,
"posY": 2.15800524,
"posZ": -16.7368164,
"rotX": 359.916443,
"rotY": 269.794769,
"rotZ": 0.0370630547,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Archive of Conduits (4)",
"Description": "Gateway to Tindalos",
"GMNotes": "{\n \"id\": \"08041\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Ritual.\",\n \"level\": 4,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 379031,
"SidewaysCard": false,
"CustomDeck": {
"3790": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1625226898126491470/A7FAFA92C08268717F79B2B1C83F8C23DFA6C534/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "fad52a",
"Name": "Card",
"Transform": {
"posX": 9.200194,
"posY": 2.136113,
"posZ": -16.7369862,
"rotX": 359.9143,
"rotY": 269.7947,
"rotZ": 0.0484216139,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Counterespionage (1)",
"Description": "",
"GMNotes": "{\n \"id\": \"08049\",\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"traits\": \"Favor. Service.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 379039,
"SidewaysCard": false,
"CustomDeck": {
"3790": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1625226898126491470/A7FAFA92C08268717F79B2B1C83F8C23DFA6C534/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "a336de",
"Name": "Card",
"Transform": {
"posX": 9.200194,
"posY": 2.131299,
"posZ": -16.7369862,
"rotX": 359.9143,
"rotY": 269.7947,
"rotZ": 0.0484216139,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "On the Hunt (3)",
"Description": "",
"GMNotes": "{\n \"id\": \"08028\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Tactic.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 379018,
"SidewaysCard": false,
"CustomDeck": {
"3790": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1625226898126491470/A7FAFA92C08268717F79B2B1C83F8C23DFA6C534/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "8190ac",
"Name": "Card",
"Transform": {
"posX": 9.200998,
"posY": 2.156151,
"posZ": -16.7371559,
"rotX": 359.91217,
"rotY": 269.794678,
"rotZ": 0.0597675368,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Underworld Support",
"Description": "",
"GMNotes": "{\n \"id\": \"08046\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Favor. Illicit.\",\n \"level\": 0,\n \"permanent\": true,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 379036,
"SidewaysCard": false,
"CustomDeck": {
"3790": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1625226898126491470/A7FAFA92C08268717F79B2B1C83F8C23DFA6C534/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "8023f5",
"Name": "Card",
"Transform": {
"posX": 9.201801,
"posY": 2.127874,
"posZ": -16.7373257,
"rotX": 359.910034,
"rotY": 269.7946,
"rotZ": 0.07110086,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Archive of Conduits",
"Description": "Unidentified",
"GMNotes": "{\n \"id\": \"08033\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Tome. Occult.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 379023,
"SidewaysCard": false,
"CustomDeck": {
"3790": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1625226898126491470/A7FAFA92C08268717F79B2B1C83F8C23DFA6C534/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "4b1b99",
"Name": "Card",
"Transform": {
"posX": 9.202606,
"posY": 2.06398129,
"posZ": -16.73728,
"rotX": 359.916,
"rotY": 269.7964,
"rotZ": 0.0316710956,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Archive of Conduits (4)",
"Description": "Gateway to Aldebaran",
"GMNotes": "{\n \"id\": \"08043\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Ritual.\",\n \"level\": 4,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 379033,
"SidewaysCard": false,
"CustomDeck": {
"3790": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1625226898126491470/A7FAFA92C08268717F79B2B1C83F8C23DFA6C534/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "5210c2",
"Name": "Card",
"Transform": {
"posX": 9.202525,
"posY": 2.07422543,
"posZ": -16.7370148,
"rotX": 359.925568,
"rotY": 269.796631,
"rotZ": 359.979675,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "21 or Bust",
"Description": "",
"GMNotes": "{\n \"id\": \"08048\",\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"traits\": \"Fortune. Gambit.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 379038,
"SidewaysCard": false,
"CustomDeck": {
"3790": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1625226898126491470/A7FAFA92C08268717F79B2B1C83F8C23DFA6C534/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "88ff66",
"Name": "Card",
"Transform": {
"posX": 9.202444,
"posY": 2.08250666,
"posZ": -16.7367516,
"rotX": 359.93512,
"rotY": 269.7968,
"rotZ": 359.927734,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Archive of Conduits (4)",
"Description": "Gateway to Acheron",
"GMNotes": "{\n \"id\": \"08042\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Ritual.\",\n \"level\": 4,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 379032,
"SidewaysCard": false,
"CustomDeck": {
"3790": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1625226898126491470/A7FAFA92C08268717F79B2B1C83F8C23DFA6C534/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "55999d",
"Name": "Card",
"Transform": {
"posX": 9.202444,
"posY": 2.07769275,
"posZ": -16.7367516,
"rotX": 359.93512,
"rotY": 269.7968,
"rotZ": 359.927734,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Prophesiae Profana (5)",
"Description": "Atlas of the Unknowable",
"GMNotes": "{\n \"id\": \"08045\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Relic. Tome.\",\n \"level\": 5,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 379035,
"SidewaysCard": false,
"CustomDeck": {
"3790": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1625226898126491470/A7FAFA92C08268717F79B2B1C83F8C23DFA6C534/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "098132",
"Name": "Card",
"Transform": {
"posX": 9.202444,
"posY": 2.0728786,
"posZ": -16.7367516,
"rotX": 359.93512,
"rotY": 269.7968,
"rotZ": 359.927734,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Archive of Conduits (4)",
"Description": "Gateway to Paradise",
"GMNotes": "{\n \"id\": \"08044\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Ritual.\",\n \"level\": 4,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 379034,
"SidewaysCard": false,
"CustomDeck": {
"3790": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1625226898126491470/A7FAFA92C08268717F79B2B1C83F8C23DFA6C534/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "98e5f5",
"Name": "Card",
"Transform": {
"posX": 9.202364,
"posY": 2.17773414,
"posZ": -16.7364883,
"rotX": 359.9447,
"rotY": 269.797058,
"rotZ": 359.875854,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Jeremiah Kirby",
"Description": "Arctic Archaeologist",
"GMNotes": "{\n \"id\": \"08032\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Ally. Miskatonic. Wayfarer.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 379022,
"SidewaysCard": false,
"CustomDeck": {
"3790": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1625226898126491470/A7FAFA92C08268717F79B2B1C83F8C23DFA6C534/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "0d3bfa",
"Name": "Card",
"Transform": {
"posX": 9.202364,
"posY": 2.17292023,
"posZ": -16.7364883,
"rotX": 359.9447,
"rotY": 269.797058,
"rotZ": 359.875854,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Medical Texts (2)",
"Description": "",
"GMNotes": "{\n \"id\": \"08038\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Tome.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 379028,
"SidewaysCard": false,
"CustomDeck": {
"3790": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1625226898126491470/A7FAFA92C08268717F79B2B1C83F8C23DFA6C534/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "9ab750",
"Name": "Card",
"Transform": {
"posX": 9.202364,
"posY": 2.168106,
"posZ": -16.7364883,
"rotX": 359.9447,
"rotY": 269.797058,
"rotZ": 359.875854,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Dodge (2)",
"Description": "",
"GMNotes": "{\n \"id\": \"08026\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Tactic.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 379016,
"SidewaysCard": false,
"CustomDeck": {
"3790": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1625226898126491470/A7FAFA92C08268717F79B2B1C83F8C23DFA6C534/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "36efa2",
"Name": "Card",
"Transform": {
"posX": 9.202284,
"posY": 2.26953387,
"posZ": -16.7362251,
"rotX": 359.954254,
"rotY": 269.797241,
"rotZ": 359.824036,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Combat Training (3)",
"Description": "",
"GMNotes": "{\n \"id\": \"08027\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Talent. Composure.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 379017,
"SidewaysCard": false,
"CustomDeck": {
"3790": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1625226898126491470/A7FAFA92C08268717F79B2B1C83F8C23DFA6C534/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "3a4edd",
"Name": "Card",
"Transform": {
"posX": 9.202284,
"posY": 2.26471972,
"posZ": -16.7362251,
"rotX": 359.954254,
"rotY": 269.797241,
"rotZ": 359.824036,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Unearth the Ancients (2)",
"Description": "",
"GMNotes": "{\n \"id\": \"08039\",\n \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"traits\": \"Insight.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 379029,
"SidewaysCard": false,
"CustomDeck": {
"3790": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1625226898126491470/A7FAFA92C08268717F79B2B1C83F8C23DFA6C534/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "0a312f",
"Name": "Card",
"Transform": {
"posX": 9.202284,
"posY": 2.25990582,
"posZ": -16.7362251,
"rotX": 359.954254,
"rotY": 269.797241,
"rotZ": 359.824036,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Butterfly Swords (5)",
"Description": "",
"GMNotes": "{\n \"id\": \"08030\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Item. Weapon. Melee.\",\n \"level\": 5,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 379020,
"SidewaysCard": false,
"CustomDeck": {
"3790": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1625226898126491470/A7FAFA92C08268717F79B2B1C83F8C23DFA6C534/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "62e4f4",
"Name": "Card",
"Transform": {
"posX": 9.202204,
"posY": 2.35790324,
"posZ": -16.7359638,
"rotX": 359.963776,
"rotY": 269.797424,
"rotZ": 359.772278,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Defensive Stance (1)",
"Description": "",
"GMNotes": "{\n \"id\": \"08024\",\n \"type\": \"Skill\",\n \"class\": \"Guardian\",\n \"traits\": \"Practiced. Expert.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 379014,
"SidewaysCard": false,
"CustomDeck": {
"3790": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1625226898126491470/A7FAFA92C08268717F79B2B1C83F8C23DFA6C534/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "09cc35",
"Name": "Card",
"Transform": {
"posX": 9.202204,
"posY": 2.353089,
"posZ": -16.7359638,
"rotX": 359.963776,
"rotY": 269.797424,
"rotZ": 359.772278,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Gang Up (1)",
"Description": "",
"GMNotes": "{\n \"id\": \"08022\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Spirit. Synergy.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 379012,
"SidewaysCard": false,
"CustomDeck": {
"3790": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1625226898126491470/A7FAFA92C08268717F79B2B1C83F8C23DFA6C534/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "76270e",
"Name": "Card",
"Transform": {
"posX": 9.202204,
"posY": 2.34827518,
"posZ": -16.7359638,
"rotX": 359.963776,
"rotY": 269.797424,
"rotZ": 359.772278,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "\"Get behind me!\"",
"Description": "",
"GMNotes": "{\n \"id\": \"08021\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Spirit. Tactic.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 379011,
"SidewaysCard": false,
"CustomDeck": {
"3790": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1625226898126491470/A7FAFA92C08268717F79B2B1C83F8C23DFA6C534/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "58288b",
"Name": "Card",
"Transform": {
"posX": 9.202124,
"posY": 2.44283986,
"posZ": -16.7357044,
"rotX": 359.973328,
"rotY": 269.797638,
"rotZ": 359.720581,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Toe to Toe",
"Description": "",
"GMNotes": "{\n \"id\": \"08020\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Spirit. Tactic.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 379010,
"SidewaysCard": false,
"CustomDeck": {
"3790": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1625226898126491470/A7FAFA92C08268717F79B2B1C83F8C23DFA6C534/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "081db4",
"Name": "Card",
"Transform": {
"posX": 9.202124,
"posY": 2.438026,
"posZ": -16.7357044,
"rotX": 359.973328,
"rotY": 269.797638,
"rotZ": 359.720581,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Discipline",
"Description": "Quiescence of Thought",
"GMNotes": "{\n \"id\": \"08012a\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Unbroken.\",\n \"permanent\": true,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 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": 379406,
"SidewaysCard": false,
"CustomDeck": {
"3794": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1625226898126522542/E29FEBE196344F3DEE457BE957E9AF18310C6F39/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1625226898126523297/2C981A8D79F76E3533ADD355F8AF406EA72B5162/",
"NumWidth": 5,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "0ca36f",
"Name": "Card",
"Transform": {
"posX": 9.202124,
"posY": 2.4332118,
"posZ": -16.7357044,
"rotX": 359.973328,
"rotY": 269.797638,
"rotZ": 359.720581,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Greed",
"Description": "Weakness",
"GMNotes": "{\n \"id\": \"08018\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Flaw.\",\n \"permanent\": false,\n \"weakness\": true\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 379000,
"SidewaysCard": false,
"CustomDeck": {
"3790": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1625226898126491470/A7FAFA92C08268717F79B2B1C83F8C23DFA6C534/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "5ff3bd",
"Name": "Card",
"Transform": {
"posX": 9.202044,
"posY": 2.524341,
"posZ": -16.7354412,
"rotX": 359.982849,
"rotY": 269.7978,
"rotZ": 359.668945,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Discipline",
"Description": "Alignment of Spirit",
"GMNotes": "{\n \"id\": \"08011a\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Unbroken.\",\n \"permanent\": true,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 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": 379405,
"SidewaysCard": false,
"CustomDeck": {
"3794": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1625226898126522542/E29FEBE196344F3DEE457BE957E9AF18310C6F39/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1625226898126523297/2C981A8D79F76E3533ADD355F8AF406EA72B5162/",
"NumWidth": 5,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "fc1506",
"Name": "Card",
"Transform": {
"posX": 9.202044,
"posY": 2.5195272,
"posZ": -16.7354412,
"rotX": 359.982849,
"rotY": 269.7978,
"rotZ": 359.668945,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Mob Goons",
"Description": "Weakness",
"GMNotes": "{\n \"id\": \"08003\",\n \"type\": \"Enemy\",\n \"class\": \"Neutral\",\n \"traits\": \"Humanoid. Criminal.\",\n \"permanent\": false,\n \"weakness\": true\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 379002,
"SidewaysCard": false,
"CustomDeck": {
"3790": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1625226898126491470/A7FAFA92C08268717F79B2B1C83F8C23DFA6C534/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "ca9a60",
"Name": "Card",
"Transform": {
"posX": 9.202044,
"posY": 2.51471329,
"posZ": -16.7354412,
"rotX": 359.982849,
"rotY": 269.7978,
"rotZ": 359.668945,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Trusty Bullwhip",
"Description": "",
"GMNotes": "{\n \"id\": \"08008\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Weapon. Melee.\",\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 379005,
"SidewaysCard": false,
"CustomDeck": {
"3790": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1625226898126491470/A7FAFA92C08268717F79B2B1C83F8C23DFA6C534/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "e8d38d",
"Name": "Card",
"Transform": {
"posX": 9.201963,
"posY": 2.60240388,
"posZ": -16.73518,
"rotX": 359.99234,
"rotY": 269.797974,
"rotZ": 359.61734,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Discipline",
"Description": "Prescience of Fate",
"GMNotes": "{\n \"id\": \"08013a\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Unbroken.\",\n \"permanent\": true,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 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": 379407,
"SidewaysCard": false,
"CustomDeck": {
"3794": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1625226898126522542/E29FEBE196344F3DEE457BE957E9AF18310C6F39/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1625226898126523297/2C981A8D79F76E3533ADD355F8AF406EA72B5162/",
"NumWidth": 5,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "45c19e",
"Name": "Card",
"Transform": {
"posX": 9.201963,
"posY": 2.59759,
"posZ": -16.73518,
"rotX": 359.99234,
"rotY": 269.797974,
"rotZ": 359.61734,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Burden of Destiny",
"Description": "Weakness",
"GMNotes": "{\n \"id\": \"08015\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Flaw.\",\n \"permanent\": false,\n \"weakness\": true\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 379007,
"SidewaysCard": false,
"CustomDeck": {
"3790": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1625226898126491470/A7FAFA92C08268717F79B2B1C83F8C23DFA6C534/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "3247da",
"Name": "Card",
"Transform": {
"posX": 9.201963,
"posY": 2.59277582,
"posZ": -16.73518,
"rotX": 359.99234,
"rotY": 269.797974,
"rotZ": 359.61734,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Discipline",
"Description": "Balance of Body",
"GMNotes": "{\n \"id\": \"08014a\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Unbroken.\",\n \"permanent\": true,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 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": 379408,
"SidewaysCard": false,
"CustomDeck": {
"3794": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1625226898126522542/E29FEBE196344F3DEE457BE957E9AF18310C6F39/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1625226898126523297/2C981A8D79F76E3533ADD355F8AF406EA72B5162/",
"NumWidth": 5,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "c70129",
"Name": "Card",
"Transform": {
"posX": 9.201883,
"posY": 2.67712331,
"posZ": -16.7349186,
"rotX": 0.00184661907,
"rotY": 269.798126,
"rotZ": 359.565826,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Shrewd Dealings",
"Description": "",
"GMNotes": "{\n \"id\": \"08017\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Talent.\",\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 379008,
"SidewaysCard": false,
"CustomDeck": {
"3790": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1625226898126491470/A7FAFA92C08268717F79B2B1C83F8C23DFA6C534/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "28080d",
"Name": "Card",
"Transform": {
"posX": 9.201883,
"posY": 2.6723094,
"posZ": -16.7349186,
"rotX": 0.00184661907,
"rotY": 269.798126,
"rotZ": 359.565826,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Buried Secrets",
"Description": "Weakness",
"GMNotes": "{\n \"id\": \"08009\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Mystery.\",\n \"permanent\": false,\n \"weakness\": true\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 379006,
"SidewaysCard": false,
"CustomDeck": {
"3790": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1625226898126491470/A7FAFA92C08268717F79B2B1C83F8C23DFA6C534/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "598ba0",
"Name": "Card",
"Transform": {
"posX": 9.201883,
"posY": 2.66749549,
"posZ": -16.7349186,
"rotX": 0.00184661907,
"rotY": 269.798126,
"rotZ": 359.565826,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Mechanic's Wrench",
"Description": "",
"GMNotes": "{\n \"id\": \"08002\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Tool. Melee.\",\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 379001,
"SidewaysCard": false,
"CustomDeck": {
"3790": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1625226898126491470/A7FAFA92C08268717F79B2B1C83F8C23DFA6C534/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "0c2449",
"Name": "Card",
"Transform": {
"posX": 9.201803,
"posY": 2.748806,
"posZ": -16.7346573,
"rotX": 0.0113352062,
"rotY": 269.798279,
"rotZ": 359.514343,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Fend Off (3)",
"Description": "",
"GMNotes": "{\n \"id\": \"08082\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Gambit. Trick.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 378911,
"SidewaysCard": false,
"CustomDeck": {
"3789": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1625226898126493809/0EE7F5B9B916B56425CAC1C46F7FCEF9DBF55112/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "6367dd",
"Name": "Card",
"Transform": {
"posX": 9.201803,
"posY": 2.743992,
"posZ": -16.7346573,
"rotX": 0.0113352062,
"rotY": 269.798279,
"rotZ": 359.514343,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Join the Caravan (1)",
"Description": "",
"GMNotes": "{\n \"id\": \"08036\",\n \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"traits\": \"Insight. Synergy.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 379026,
"SidewaysCard": false,
"CustomDeck": {
"3790": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1625226898126491470/A7FAFA92C08268717F79B2B1C83F8C23DFA6C534/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "e2dc13",
"Name": "Card",
"Transform": {
"posX": 9.201803,
"posY": 2.73917818,
"posZ": -16.7346573,
"rotX": 0.0113352062,
"rotY": 269.798279,
"rotZ": 359.514343,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Fang of Tyr'thrha (4)",
"Description": "",
"GMNotes": "{\n \"id\": \"08029\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Spell.\",\n \"level\": 4,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 379019,
"SidewaysCard": false,
"CustomDeck": {
"3790": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1625226898126491470/A7FAFA92C08268717F79B2B1C83F8C23DFA6C534/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "c6ac19",
"Name": "Card",
"Transform": {
"posX": 9.201723,
"posY": 2.81222486,
"posZ": -16.734396,
"rotX": 0.0208132677,
"rotY": 269.798431,
"rotZ": 359.462921,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Perception",
"Description": "",
"GMNotes": "{\n \"id\": \"01090\",\n \"type\": \"Skill\",\n \"class\": \"Neutral\",\n \"traits\": \"Practiced.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 368506,
"SidewaysCard": false,
"CustomDeck": {
"3685": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "83c86b",
"Name": "Card",
"Transform": {
"posX": 9.201723,
"posY": 2.80727768,
"posZ": -16.734396,
"rotX": 0.0208132677,
"rotY": 269.798431,
"rotZ": 359.462921,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Alter Fate (3)",
"Description": "",
"GMNotes": "{\n \"id\": \"04313\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Spell. Blessed.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 368856,
"SidewaysCard": false,
"CustomDeck": {
"3688": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "adf028",
"Name": "Card",
"Transform": {
"posX": 9.201643,
"posY": 2.88181782,
"posZ": -16.7341385,
"rotX": 0.0302811638,
"rotY": 269.798584,
"rotZ": 359.41156,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Pantalone",
"Description": "",
"GMNotes": "{\n \"id\": \"82025\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Mask.\",\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 295603,
"SidewaysCard": false,
"CustomDeck": {
"2956": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642329861/9768E9FE9C71E74721340D0D81607F534E54A3DE/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "b2e27e",
"Name": "Card",
"Transform": {
"posX": 9.201643,
"posY": 2.877004,
"posZ": -16.7341385,
"rotX": 0.0302811638,
"rotY": 269.798584,
"rotZ": 359.41156,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Fearless (2)",
"Description": "",
"GMNotes": "{\n \"id\": \"02268\",\n \"type\": \"Skill\",\n \"class\": \"Mystic\",\n \"traits\": \"Innate. Developed.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 230337,
"SidewaysCard": false,
"CustomDeck": {
"2303": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "0ab3f1",
"Name": "Card",
"Transform": {
"posX": 9.201643,
"posY": 2.87219024,
"posZ": -16.7341385,
"rotX": 0.0302811638,
"rotY": 269.798584,
"rotZ": 359.41156,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Knife",
"Description": "",
"GMNotes": "{\n \"id\": \"01086\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Weapon. Melee.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 368512,
"SidewaysCard": false,
"CustomDeck": {
"3685": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "a0c2da",
"Name": "Card",
"Transform": {
"posX": 9.201564,
"posY": 2.9431386,
"posZ": -16.73388,
"rotX": 0.0397385247,
"rotY": 269.798676,
"rotZ": 359.36026,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Veda Whitsley",
"Description": "Skilled Botanist",
"GMNotes": "{\n \"id\": \"53037\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Wayfarer.\",\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 231709,
"SidewaysCard": false,
"CustomDeck": {
"2317": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1487830656537091085/26A674065298A59068E1D6BA3804D03554C234A3/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "bb640d",
"Name": "Card",
"Transform": {
"posX": 9.201564,
"posY": 2.938325,
"posZ": -16.73388,
"rotX": 0.0397385247,
"rotY": 269.798676,
"rotZ": 359.36026,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Ever Vigilant (1)",
"Description": "",
"GMNotes": "{\n \"id\": \"03023\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Tactic.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 226334,
"SidewaysCard": false,
"CustomDeck": {
"2263": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "b4d67b",
"Name": "Card",
"Transform": {
"posX": 9.201564,
"posY": 2.933511,
"posZ": -16.73388,
"rotX": 0.0397385247,
"rotY": 269.798676,
"rotZ": 359.36026,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Sweeping Kick (1)",
"Description": "",
"GMNotes": "{\n \"id\": \"08023\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Spirit. Tactic. Trick.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 379013,
"SidewaysCard": false,
"CustomDeck": {
"3790": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1625226898126491470/A7FAFA92C08268717F79B2B1C83F8C23DFA6C534/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "54293e",
"Name": "Card",
"Transform": {
"posX": 9.201485,
"posY": 3.00099659,
"posZ": -16.73362,
"rotX": 0.049185507,
"rotY": 269.7988,
"rotZ": 359.309021,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Boxing Gloves (3)",
"Description": "",
"GMNotes": "{\n \"id\": \"60127\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Item. Weapon.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 545325,
"SidewaysCard": false,
"CustomDeck": {
"5453": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1546380927206250326/18BF6D2B2BBFDDBE5B021A46C310E4F45493EC26/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "77f92c",
"Name": "Card",
"Transform": {
"posX": 9.201485,
"posY": 2.996183,
"posZ": -16.73362,
"rotX": 0.049185507,
"rotY": 269.7988,
"rotZ": 359.309021,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Expose Weakness (3)",
"Description": "",
"GMNotes": "{\n \"id\": \"04195\",\n \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"traits\": \"Insight.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 262203,
"SidewaysCard": false,
"CustomDeck": {
"2622": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "028cf7",
"Name": "Card",
"Transform": {
"posX": 9.201485,
"posY": 2.99136925,
"posZ": -16.73362,
"rotX": 0.049185507,
"rotY": 269.7988,
"rotZ": 359.309021,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Geared Up",
"Description": "",
"GMNotes": "{\n \"id\": \"08019\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Talent.\",\n \"level\": 0,\n \"permanent\": true,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 379009,
"SidewaysCard": false,
"CustomDeck": {
"3790": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1625226898126491470/A7FAFA92C08268717F79B2B1C83F8C23DFA6C534/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "431c15",
"Name": "Card",
"Transform": {
"posX": 9.201406,
"posY": 3.055387,
"posZ": -16.73336,
"rotX": 0.05862198,
"rotY": 269.7989,
"rotZ": 359.2578,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "\"Hit me!\"",
"Description": "",
"GMNotes": "{\n \"id\": \"08112\",\n \"type\": \"Event\",\n \"class\": \"Rogue|Survivor\",\n \"traits\": \"Fortune. Gambit.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 378950,
"SidewaysCard": false,
"CustomDeck": {
"3789": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1625226898126493809/0EE7F5B9B916B56425CAC1C46F7FCEF9DBF55112/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "158450",
"Name": "Card",
"Transform": {
"posX": 9.201406,
"posY": 3.05057335,
"posZ": -16.73336,
"rotX": 0.05862198,
"rotY": 269.7989,
"rotZ": 359.2578,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Scientific Theory (3)",
"Description": "",
"GMNotes": "{\n \"id\": \"08040\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 379030,
"SidewaysCard": false,
"CustomDeck": {
"3790": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1625226898126491470/A7FAFA92C08268717F79B2B1C83F8C23DFA6C534/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "dfd48b",
"Name": "Card",
"Transform": {
"posX": 9.201406,
"posY": 3.04575968,
"posZ": -16.73336,
"rotX": 0.05862198,
"rotY": 269.7989,
"rotZ": 359.2578,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "The Painted World",
"Description": "",
"GMNotes": "{\n \"id\": \"03012\",\n \"type\": \"Event\",\n \"class\": \"Neutral\",\n \"traits\": \"Spell.\",\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 374014,
"SidewaysCard": false,
"CustomDeck": {
"3740": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "3bf831",
"Name": "Card",
"Transform": {
"posX": 9.201326,
"posY": 3.10630441,
"posZ": -16.7331,
"rotX": 0.06804823,
"rotY": 269.799,
"rotZ": 359.2067,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "False Awakening",
"Description": "Weakness",
"GMNotes": "{\n \"id\": \"06275\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Curse.\",\n \"permanent\": false,\n \"weakness\": true\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 448519,
"SidewaysCard": false,
"CustomDeck": {
"4485": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/780749631103449151/FFAADF06C9BF9D1F4F3FE22D45CEBBB15D9B58CF/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "9aee7f",
"Name": "Card",
"Transform": {
"posX": 9.201326,
"posY": 1.99420381,
"posZ": -16.7331,
"rotX": 0.0680482,
"rotY": 269.799,
"rotZ": 359.2067,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Improvisation",
"Description": "",
"GMNotes": "{\n \"id\": \"03018\",\n \"type\": \"Event\",\n \"class\": \"Neutral\",\n \"traits\": \"Insight.\",\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 374834,
"SidewaysCard": false,
"CustomDeck": {
"3748": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "e27a30",
"Name": "Card",
"Transform": {
"posX": 26.4143963,
"posY": 3.521973,
"posZ": -8.147798,
"rotX": 359.844971,
"rotY": 270.0122,
"rotZ": 1.043074,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Relic of Ages",
"Description": "…A Device, of Some Sort",
"GMNotes": "{\n \"id\": \"04061\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Relic.\",\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 235603,
"SidewaysCard": false,
"CustomDeck": {
"2356": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1467561769777497046/3003A76996378249E6AAA4A60D85AE7EE59C1B8B/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "d12359",
"Name": "Card",
"Transform": {
"posX": 25.43463,
"posY": 3.52646232,
"posZ": -7.465695,
"rotX": 0.6975701,
"rotY": 270.0026,
"rotZ": 0.399845749,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Detached from Reality",
"Description": "",
"GMNotes": "{\n \"id\": \"06014\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Madness.\",\n \"permanent\": false,\n \"weakness\": true\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 587508,
"SidewaysCard": false,
"CustomDeck": {
"5875": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1011562618093846571/13C76218853EE87123267F8F6BE99206DB40470B/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "fa4c1e",
"Name": "Card",
"Transform": {
"posX": 26.0367413,
"posY": 3.535871,
"posZ": -7.32181549,
"rotX": 0.445666641,
"rotY": 239.99585,
"rotZ": 359.779755,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Dream-Gate",
"Description": "",
"GMNotes": "{\n \"id\": \"06015a\",\n \"alternate_ids\": [ \"06015b\" ],\n \"type\": \"Location\",\n \"class\": \"Neutral\",\n \"traits\": \"Dreamlands.\",\n \"permanent\": false,\n \"bonded_to\": [\n {\n \"id\": \"06013\",\n \"count\": 1\n }\n ],\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 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": 541109,
"SidewaysCard": false,
"CustomDeck": {
"5411": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1011562618093846571/13C76218853EE87123267F8F6BE99206DB40470B/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/775107869050061525/A759DF697FFB26F0F5B75E116A923E33F88FCA7B/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "7dc42a",
"Name": "Card",
"Transform": {
"posX": 25.8611526,
"posY": 3.533337,
"posZ": -7.40776539,
"rotX": 0.5222486,
"rotY": 270.015564,
"rotZ": 0.450590879,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Safeguard (2)",
"Description": "",
"GMNotes": "{\n \"id\": \"06196\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Talent.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 447933,
"SidewaysCard": false,
"CustomDeck": {
"4479": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025943109/9C5481E6DFEACD450C5522F884E615482281DDB1/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "fd393b",
"Name": "Card",
"Transform": {
"posX": 26.10353,
"posY": 3.537618,
"posZ": -7.17039967,
"rotX": 0.224352136,
"rotY": 269.983032,
"rotZ": 359.759033,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "\"Look what I found!\" (2)",
"Description": "",
"GMNotes": "{\n \"id\": \"60524\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Fortune.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 550822,
"SidewaysCard": false,
"CustomDeck": {
"5508": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456298038335/2CA532D7F0EED2B2B40E47709AC56D85C4613A33/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "95272b",
"Name": "Card",
"Transform": {
"posX": 25.7204971,
"posY": 3.53126621,
"posZ": -7.108765,
"rotX": 0.635600448,
"rotY": 269.988678,
"rotZ": 359.662628,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Deduction (2)",
"Description": "",
"GMNotes": "{\n \"id\": \"02150\",\n \"type\": \"Skill\",\n \"class\": \"Seeker\",\n \"traits\": \"Practiced. Expert.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 430642,
"SidewaysCard": false,
"CustomDeck": {
"4306": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "194adb",
"Name": "Card",
"Transform": {
"posX": 26.01736,
"posY": 3.532781,
"posZ": -7.552662,
"rotX": 0.289978564,
"rotY": 269.990417,
"rotZ": 0.828423,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Rite of Seeking (4)",
"Description": "",
"GMNotes": "{\n \"id\": \"02233\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\",\n \"level\": 4,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Charge\",\n \"count\": 3\n }\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 230358,
"SidewaysCard": false,
"CustomDeck": {
"2303": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "11122f",
"Name": "Card",
"Transform": {
"posX": 18.4481678,
"posY": 2.06255221,
"posZ": -73.08708,
"rotX": 0.016779948,
"rotY": 179.999954,
"rotZ": 359.9792,
"scaleX": 1.1,
"scaleY": 1.0,
"scaleZ": 1.1
},
"Nickname": "Marie Lambeau",
"Description": "The Entertainer",
"GMNotes": "{\n \"id\": \"05006\",\n \"alternate_ids\": [ \"99001\" ],\n \"type\": \"Investigator\",\n \"class\": \"Mystic\",\n \"traits\": \"Performer. Sorcerer.\"\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 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": 272226,
"SidewaysCard": true,
"CustomDeck": {
"2722": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1011562618093845971/A678BD374EC4DE672206B5EF7EB57DC885BC839C/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1011562618093845464/80687C9319FA2015F3D9F7CBEB4C55FBF045B27D/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "ff1f6e",
"Name": "Card",
"Transform": {
"posX": 18.4481678,
"posY": 2.10454154,
"posZ": -73.08708,
"rotX": 0.016779948,
"rotY": 179.999954,
"rotZ": 359.9792,
"scaleX": 1.1,
"scaleY": 1.0,
"scaleZ": 1.1
},
"Nickname": "Roland Banks (promo version)",
"Description": "The Fed",
"GMNotes": "{\n \"id\": \"01001-promo\",\n \"type\": \"Investigator\",\n \"class\": \"Guardian\",\n \"traits\": \"Agency. Detective.\"\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 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": 273830,
"SidewaysCard": true,
"CustomDeck": {
"2738": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1011562618093845971/A678BD374EC4DE672206B5EF7EB57DC885BC839C/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1011562618093845464/80687C9319FA2015F3D9F7CBEB4C55FBF045B27D/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "502768",
"Name": "Card",
"Transform": {
"posX": 18.4481678,
"posY": 2.08387113,
"posZ": -73.08708,
"rotX": 0.016779948,
"rotY": 179.999954,
"rotZ": 359.9792,
"scaleX": 1.1,
"scaleY": 1.0,
"scaleZ": 1.1
},
"Nickname": "Roland Banks (Parallel)",
"Description": "The Fed",
"GMNotes": "{\n \"id\": \"01001-p\",\n \"type\": \"Investigator\",\n \"class\": \"Guardian\",\n \"traits\": \"Agency. Detective.\"\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 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": 536102,
"SidewaysCard": true,
"CustomDeck": {
"5361": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1697276706761477165/4BDF4AF6F55103AAA509DC67C952B660B5995707/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1697276706761477858/7CDB3552B0A37462AD965C5F67DF81A1EF9D4D60/",
"NumWidth": 3,
"NumHeight": 3,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "a03077",
"Name": "Card",
"Transform": {
"posX": 18.4481678,
"posY": 2.11640358,
"posZ": -73.08708,
"rotX": 0.016779948,
"rotY": 179.999954,
"rotZ": 359.9792,
"scaleX": 1.1,
"scaleY": 1.0,
"scaleZ": 1.1
},
"Nickname": "\"Skids\" O'Toole (Parallel Back)",
"Description": "The Ex-Con",
"GMNotes": "{\n \"id\": \"01003-pb\",\n \"type\": \"Investigator\",\n \"class\": \"Rogue\",\n \"traits\": \"Criminal.\"\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 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": 270204,
"SidewaysCard": true,
"CustomDeck": {
"2702": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1655599718154536333/92BABC93BFBC5E1DA2C2A7B5EA5E62151E0DE3D7/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1655599718154537387/9BBCF9ACFA26E3C0649434C832E5681AB731A77B/",
"NumWidth": 3,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "3f92cf",
"Name": "Card",
"Transform": {
"posX": 18.4481678,
"posY": 2.12684917,
"posZ": -73.08708,
"rotX": 0.016779948,
"rotY": 179.999954,
"rotZ": 359.9792,
"scaleX": 1.1,
"scaleY": 1.0,
"scaleZ": 1.1
},
"Nickname": "Silas Marsh",
"Description": "The Sailor",
"GMNotes": "{\n \"id\": \"07005\",\n \"alternate_ids\": [ \"98013\" ],\n \"type\": \"Investigator\",\n \"class\": \"Survivor\",\n \"traits\": \"Drifter.\"\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 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": 552804,
"SidewaysCard": true,
"CustomDeck": {
"5528": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320664132672550/E5E1C8EE53C7692025E048F0A04BE98D6FA17111/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1626320664132672810/20E21AC471D7E5E1545F0EAE635A093718D4C7CF/",
"NumWidth": 3,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "1da958",
"Name": "Card",
"Transform": {
"posX": 18.4481678,
"posY": 2.14995432,
"posZ": -73.08708,
"rotX": 0.016779948,
"rotY": 179.999954,
"rotZ": 359.9792,
"scaleX": 1.1,
"scaleY": 1.0,
"scaleZ": 1.1
},
"Nickname": "Silas Marsh (promo version)",
"Description": "The Sailor",
"GMNotes": "{\n \"id\": \"07005-promo\",\n \"type\": \"Investigator\",\n \"class\": \"Survivor\",\n \"traits\": \"Drifter.\"\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 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": 272429,
"SidewaysCard": true,
"CustomDeck": {
"2724": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1011562618093845971/A678BD374EC4DE672206B5EF7EB57DC885BC839C/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1011562618093845464/80687C9319FA2015F3D9F7CBEB4C55FBF045B27D/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "bb8296",
"Name": "Card",
"Transform": {
"posX": 18.4481678,
"posY": 2.14157438,
"posZ": -73.08708,
"rotX": 0.016779948,
"rotY": 179.999954,
"rotZ": 359.9792,
"scaleX": 1.1,
"scaleY": 1.0,
"scaleZ": 1.1
},
"Nickname": "Rita Young",
"Description": "The Athlete",
"GMNotes": "{\n \"id\": \"05005\",\n \"type\": \"Investigator\",\n \"class\": \"Survivor\",\n \"traits\": \"Miskatonic.\"\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 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": 272024,
"SidewaysCard": true,
"CustomDeck": {
"2720": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1011562618093845971/A678BD374EC4DE672206B5EF7EB57DC885BC839C/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1011562618093845464/80687C9319FA2015F3D9F7CBEB4C55FBF045B27D/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "dd40c0",
"Name": "Card",
"Transform": {
"posX": 18.4481678,
"posY": 2.15528154,
"posZ": -73.08708,
"rotX": 0.016779948,
"rotY": 179.999954,
"rotZ": 359.9792,
"scaleX": 1.1,
"scaleY": 1.0,
"scaleZ": 1.1
},
"Nickname": "Finn Edwards",
"Description": "The Bootlegger",
"GMNotes": "{\n \"id\": \"04003\",\n \"type\": \"Investigator\",\n \"class\": \"Rogue\",\n \"traits\": \"Criminal.\"\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 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": 271518,
"SidewaysCard": true,
"CustomDeck": {
"2715": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1011562618093845971/A678BD374EC4DE672206B5EF7EB57DC885BC839C/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1011562618093845464/80687C9319FA2015F3D9F7CBEB4C55FBF045B27D/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "571596",
"Name": "Card",
"Transform": {
"posX": 18.4481678,
"posY": 2.12813449,
"posZ": -73.08708,
"rotX": 0.016779948,
"rotY": 179.999954,
"rotZ": 359.9792,
"scaleX": 1.1,
"scaleY": 1.0,
"scaleZ": 1.1
},
"Nickname": "Gloria Goldberg",
"Description": "The Writer",
"GMNotes": "{\n \"id\": \"98019\",\n \"type\": \"Investigator\",\n \"class\": \"Mystic\",\n \"traits\": \"Clairvoyant.\"\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 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": 270200,
"SidewaysCard": true,
"CustomDeck": {
"2702": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1655599718154536333/92BABC93BFBC5E1DA2C2A7B5EA5E62151E0DE3D7/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1655599718154537387/9BBCF9ACFA26E3C0649434C832E5681AB731A77B/",
"NumWidth": 3,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "53a412",
"Name": "Card",
"Transform": {
"posX": 18.4481678,
"posY": 2.13247252,
"posZ": -73.08708,
"rotX": 0.016779948,
"rotY": 179.999954,
"rotZ": 359.9792,
"scaleX": 1.1,
"scaleY": 1.0,
"scaleZ": 1.1
},
"Nickname": "Tony Morgan",
"Description": "The Bounty Hunter",
"GMNotes": "{\n \"id\": \"06003\",\n \"type\": \"Investigator\",\n \"class\": \"Rogue\",\n \"traits\": \"Criminal. Hunter.\"\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 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": 536436,
"SidewaysCard": true,
"CustomDeck": {
"5364": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1011562618093845971/A678BD374EC4DE672206B5EF7EB57DC885BC839C/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1011562618093845464/80687C9319FA2015F3D9F7CBEB4C55FBF045B27D/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "46b145",
"Name": "Card",
"Transform": {
"posX": 18.4481678,
"posY": 2.08661628,
"posZ": -73.08708,
"rotX": 0.016779948,
"rotY": 179.999954,
"rotZ": 359.9792,
"scaleX": 1.1,
"scaleY": 1.0,
"scaleZ": 1.1
},
"Nickname": "Monterey Jack",
"Description": "The Archeologist",
"GMNotes": "{\n \"id\": \"08007-m\",\n \"type\": \"Minicard\"\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 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": 379502,
"SidewaysCard": true,
"CustomDeck": {
"3795": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1625226898126522542/E29FEBE196344F3DEE457BE957E9AF18310C6F39/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1625226898126523297/2C981A8D79F76E3533ADD355F8AF406EA72B5162/",
"NumWidth": 5,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "342311",
"Name": "Card",
"Transform": {
"posX": 18.4481678,
"posY": 2.08161426,
"posZ": -73.08708,
"rotX": 0.016779948,
"rotY": 179.999954,
"rotZ": 359.9792,
"scaleX": 1.1,
"scaleY": 1.0,
"scaleZ": 1.1
},
"Nickname": "Sefina Rousseau",
"Description": "The Painter",
"GMNotes": "{\n \"id\": \"03003\",\n \"type\": \"Investigator\",\n \"class\": \"Rogue\",\n \"traits\": \"Artist.\"\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 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": 270912,
"SidewaysCard": true,
"CustomDeck": {
"2709": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1011562618093845971/A678BD374EC4DE672206B5EF7EB57DC885BC839C/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1011562618093845464/80687C9319FA2015F3D9F7CBEB4C55FBF045B27D/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "f0533d",
"Name": "Card",
"Transform": {
"posX": 18.4481678,
"posY": 2.01710653,
"posZ": -73.08708,
"rotX": 0.016779948,
"rotY": 179.999954,
"rotZ": 359.9792,
"scaleX": 1.1,
"scaleY": 1.0,
"scaleZ": 1.1
},
"Nickname": "Carolyn Fern (promo version)",
"Description": "The Psychologist",
"GMNotes": "{\n \"id\": \"05001-promo\",\n \"type\": \"Investigator\",\n \"class\": \"Guardian\",\n \"traits\": \"Medic.\"\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 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": 273527,
"SidewaysCard": true,
"CustomDeck": {
"2735": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1011562618093845971/A678BD374EC4DE672206B5EF7EB57DC885BC839C/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1011562618093845464/80687C9319FA2015F3D9F7CBEB4C55FBF045B27D/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "333fe7",
"Name": "Card",
"Transform": {
"posX": 18.4481678,
"posY": 2.002793,
"posZ": -73.08708,
"rotX": 0.016779948,
"rotY": 179.999954,
"rotZ": 359.9792,
"scaleX": 1.1,
"scaleY": 1.0,
"scaleZ": 1.1
},
"Nickname": "Trish Scarborough",
"Description": "The Spy",
"GMNotes": "{\n \"id\": \"07003\",\n \"type\": \"Investigator\",\n \"class\": \"Rogue\",\n \"traits\": \"Agency. Detective.\"\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 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": 553402,
"SidewaysCard": true,
"CustomDeck": {
"5534": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320664132672550/E5E1C8EE53C7692025E048F0A04BE98D6FA17111/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1626320664132672810/20E21AC471D7E5E1545F0EAE635A093718D4C7CF/",
"NumWidth": 3,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "c59b75",
"Name": "Card",
"Transform": {
"posX": 18.44816,
"posY": 1.94312644,
"posZ": -73.08709,
"rotX": 0.0167730059,
"rotY": 179.999954,
"rotZ": 359.9792,
"scaleX": 1.1,
"scaleY": 1.0,
"scaleZ": 1.1
},
"Nickname": "Luke Robinson",
"Description": "The Dreamer",
"GMNotes": "{\n \"id\": \"06004\",\n \"type\": \"Investigator\",\n \"class\": \"Mystic\",\n \"traits\": \"Dreamer. Drifter. Wayfarer.\"\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 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": 536234,
"SidewaysCard": true,
"CustomDeck": {
"5362": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1011562618093845971/A678BD374EC4DE672206B5EF7EB57DC885BC839C/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1011562618093845464/80687C9319FA2015F3D9F7CBEB4C55FBF045B27D/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "eb96e6",
"Name": "Card",
"Transform": {
"posX": 18.4481525,
"posY": 1.9429394,
"posZ": -73.0871,
"rotX": 0.01676607,
"rotY": 179.999954,
"rotZ": 359.9792,
"scaleX": 1.1,
"scaleY": 1.0,
"scaleZ": 1.1
},
"Nickname": "Father Mateo",
"Description": "The Priest",
"GMNotes": "{\n \"id\": \"04004\",\n \"type\": \"Investigator\",\n \"class\": \"Mystic\",\n \"traits\": \"Believer. Warden.\"\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 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": 449601,
"SidewaysCard": true,
"CustomDeck": {
"4496": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1656727981627737050/3CFF9E3825033909543AD1CF843361D9243538EE/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1656727981627737648/F371339538812F68E38AAC0D520C525250DAC5C0/",
"NumWidth": 4,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "419b0c",
"Name": "Card",
"Transform": {
"posX": 18.4481525,
"posY": 1.91857553,
"posZ": -73.0871,
"rotX": 0.01681346,
"rotY": 179.999954,
"rotZ": 359.979156,
"scaleX": 1.1,
"scaleY": 1.0,
"scaleZ": 1.1
},
"Nickname": "Bob Jenkins",
"Description": "The Salesman",
"GMNotes": "{\n \"id\": \"08016\",\n \"type\": \"Investigator\",\n \"class\": \"Survivor\",\n \"traits\": \"Entrepreneur.\"\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 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": 379504,
"SidewaysCard": true,
"CustomDeck": {
"3795": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1625226898126522542/E29FEBE196344F3DEE457BE957E9AF18310C6F39/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1625226898126523297/2C981A8D79F76E3533ADD355F8AF406EA72B5162/",
"NumWidth": 5,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "7e4c56",
"Name": "Card",
"Transform": {
"posX": 18.44816,
"posY": 1.93955421,
"posZ": -73.08709,
"rotX": 0.01682618,
"rotY": 179.999954,
"rotZ": 359.979156,
"scaleX": 1.1,
"scaleY": 1.0,
"scaleZ": 1.1
},
"Nickname": "William Yorick",
"Description": "The Gravedigger",
"GMNotes": "{\n \"id\": \"03005\",\n \"type\": \"Investigator\",\n \"class\": \"Survivor\",\n \"traits\": \"Warden.\"\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 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": 271114,
"SidewaysCard": true,
"CustomDeck": {
"2711": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1011562618093845971/A678BD374EC4DE672206B5EF7EB57DC885BC839C/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1011562618093845464/80687C9319FA2015F3D9F7CBEB4C55FBF045B27D/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "25e2db",
"Name": "Card",
"Transform": {
"posX": 18.4481754,
"posY": 1.92691422,
"posZ": -73.0870743,
"rotX": 0.0168515779,
"rotY": 179.999939,
"rotZ": 359.979156,
"scaleX": 1.1,
"scaleY": 1.0,
"scaleZ": 1.1
},
"Nickname": "Agnes Baker",
"Description": "The Waitress",
"GMNotes": "{\n \"id\": \"01004\",\n \"type\": \"Investigator\",\n \"class\": \"Mystic\",\n \"traits\": \"Sorcerer.\"\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 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": 535603,
"SidewaysCard": true,
"CustomDeck": {
"5356": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1011562618093845971/A678BD374EC4DE672206B5EF7EB57DC885BC839C/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1011562618093845464/80687C9319FA2015F3D9F7CBEB4C55FBF045B27D/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "b02a1e",
"Name": "Card",
"Transform": {
"posX": 18.4481831,
"posY": 1.93848777,
"posZ": -73.08707,
"rotX": 0.0168642551,
"rotY": 179.999939,
"rotZ": 359.979156,
"scaleX": 1.1,
"scaleY": 1.0,
"scaleZ": 1.1
},
"Nickname": "Calvin Wright",
"Description": "The Haunted",
"GMNotes": "{\n \"id\": \"04005\",\n \"type\": \"Investigator\",\n \"class\": \"Survivor\",\n \"traits\": \"Cursed. Drifter.\"\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 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": 271720,
"SidewaysCard": true,
"CustomDeck": {
"2717": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1011562618093845971/A678BD374EC4DE672206B5EF7EB57DC885BC839C/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1011562618093845464/80687C9319FA2015F3D9F7CBEB4C55FBF045B27D/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "a7b79f",
"Name": "Card",
"Transform": {
"posX": 18.4481983,
"posY": 1.90706658,
"posZ": -73.08705,
"rotX": 0.01688957,
"rotY": 179.999939,
"rotZ": 359.979156,
"scaleX": 1.1,
"scaleY": 1.0,
"scaleZ": 1.1
},
"Nickname": "Patrice Hathaway",
"Description": "The Violinist",
"GMNotes": "{\n \"id\": \"06005\",\n \"type\": \"Investigator\",\n \"class\": \"Survivor\",\n \"traits\": \"Performer. Cursed.\"\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 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": 536635,
"SidewaysCard": true,
"CustomDeck": {
"5366": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1011562618093845971/A678BD374EC4DE672206B5EF7EB57DC885BC839C/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1011562618093845464/80687C9319FA2015F3D9F7CBEB4C55FBF045B27D/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "cc21e0",
"Name": "Card",
"Transform": {
"posX": 18.44821,
"posY": 1.87399364,
"posZ": -73.08704,
"rotX": 0.0167974569,
"rotY": 179.999939,
"rotZ": 359.9792,
"scaleX": 1.1,
"scaleY": 1.0,
"scaleZ": 1.1
},
"Nickname": "Lily Chen",
"Description": "The Martial Artist",
"GMNotes": "{\n \"id\": \"08010\",\n \"type\": \"Investigator\",\n \"class\": \"Mystic\",\n \"traits\": \"Chosen. Warden.\"\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 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": 379503,
"SidewaysCard": true,
"CustomDeck": {
"3795": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1625226898126522542/E29FEBE196344F3DEE457BE957E9AF18310C6F39/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1625226898126523297/2C981A8D79F76E3533ADD355F8AF406EA72B5162/",
"NumWidth": 5,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "452ed8",
"Name": "Card",
"Transform": {
"posX": 18.4482136,
"posY": 1.88073957,
"posZ": -73.08704,
"rotX": 0.0166928247,
"rotY": 179.999939,
"rotZ": 359.979218,
"scaleX": 1.1,
"scaleY": 1.0,
"scaleZ": 1.1
},
"Nickname": "Akachi Onyele",
"Description": "The Shaman",
"GMNotes": "{\n \"id\": \"03004\",\n \"type\": \"Investigator\",\n \"class\": \"Mystic\",\n \"traits\": \"Sorcerer.\"\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 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": 271013,
"SidewaysCard": true,
"CustomDeck": {
"2710": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1011562618093845971/A678BD374EC4DE672206B5EF7EB57DC885BC839C/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1011562618093845464/80687C9319FA2015F3D9F7CBEB4C55FBF045B27D/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "05b950",
"Name": "Card",
"Transform": {
"posX": 18.4482288,
"posY": 1.853601,
"posZ": -73.0870361,
"rotX": 0.0167530309,
"rotY": 179.999939,
"rotZ": 359.9792,
"scaleX": 1.1,
"scaleY": 1.0,
"scaleZ": 1.1
},
"Nickname": "Amanda Sharpe",
"Description": "The Student",
"GMNotes": "{\n \"id\": \"07002\",\n \"type\": \"Investigator\",\n \"class\": \"Seeker\",\n \"traits\": \"Miskatonic. Scholar.\"\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 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": 449600,
"SidewaysCard": true,
"CustomDeck": {
"4496": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1656727981627737050/3CFF9E3825033909543AD1CF843361D9243538EE/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1656727981627737648/F371339538812F68E38AAC0D520C525250DAC5C0/",
"NumWidth": 4,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "b03b12",
"Name": "Card",
"Transform": {
"posX": 18.44824,
"posY": 1.86489177,
"posZ": -73.08703,
"rotX": 0.0169004351,
"rotY": 179.999924,
"rotZ": 359.979156,
"scaleX": 1.1,
"scaleY": 1.0,
"scaleZ": 1.1
},
"Nickname": "Carolyn Fern",
"Description": "The Psychologist",
"GMNotes": "{\n \"id\": \"05001\",\n \"alternate_ids\": [ \"98010\" ],\n \"type\": \"Investigator\",\n \"class\": \"Guardian\",\n \"traits\": \"Medic.\"\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 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": 273521,
"SidewaysCard": true,
"CustomDeck": {
"2735": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1011562618093845971/A678BD374EC4DE672206B5EF7EB57DC885BC839C/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1011562618093845464/80687C9319FA2015F3D9F7CBEB4C55FBF045B27D/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "6c4c58",
"Name": "Card",
"Transform": {
"posX": 18.4482613,
"posY": 1.83593285,
"posZ": -73.08701,
"rotX": 0.0168265216,
"rotY": 179.999924,
"rotZ": 359.9792,
"scaleX": 1.1,
"scaleY": 1.0,
"scaleZ": 1.1
},
"Nickname": "Minh Thi Phan",
"Description": "The Secretary",
"GMNotes": "{\n \"id\": \"03002\",\n \"type\": \"Investigator\",\n \"class\": \"Seeker\",\n \"traits\": \"Assistant.\"\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 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": 270811,
"SidewaysCard": true,
"CustomDeck": {
"2708": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1011562618093845971/A678BD374EC4DE672206B5EF7EB57DC885BC839C/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1011562618093845464/80687C9319FA2015F3D9F7CBEB4C55FBF045B27D/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "57d586",
"Name": "Card",
"Transform": {
"posX": 18.44827,
"posY": 1.84087193,
"posZ": -73.0870056,
"rotX": 0.0166056249,
"rotY": 179.999924,
"rotZ": 359.979218,
"scaleX": 1.1,
"scaleY": 1.0,
"scaleZ": 1.1
},
"Nickname": "Mandy Thompson",
"Description": "The Researcher",
"GMNotes": "{\n \"id\": \"06002\",\n \"type\": \"Investigator\",\n \"class\": \"Seeker\",\n \"traits\": \"Assistant. Scholar.\"\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 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": 536333,
"SidewaysCard": true,
"CustomDeck": {
"5363": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1011562618093845971/A678BD374EC4DE672206B5EF7EB57DC885BC839C/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1011562618093845464/80687C9319FA2015F3D9F7CBEB4C55FBF045B27D/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "07c37d",
"Name": "Card",
"Transform": {
"posX": 18.44829,
"posY": 1.81445539,
"posZ": -73.08699,
"rotX": 0.0167029276,
"rotY": 179.999924,
"rotZ": 359.979218,
"scaleX": 1.1,
"scaleY": 1.0,
"scaleZ": 1.1
},
"Nickname": "Ursula Downs",
"Description": "The Explorer",
"GMNotes": "{\n \"id\": \"04002\",\n \"type\": \"Investigator\",\n \"class\": \"Seeker\",\n \"traits\": \"Wayfarer.\"\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 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": 271417,
"SidewaysCard": true,
"CustomDeck": {
"2714": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1011562618093845971/A678BD374EC4DE672206B5EF7EB57DC885BC839C/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1011562618093845464/80687C9319FA2015F3D9F7CBEB4C55FBF045B27D/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "00e18e",
"Name": "Card",
"Transform": {
"posX": 18.4483,
"posY": 1.828271,
"posZ": -73.08698,
"rotX": 0.017012218,
"rotY": 179.999924,
"rotZ": 359.9791,
"scaleX": 1.1,
"scaleY": 1.0,
"scaleZ": 1.1
},
"Nickname": "Stella Clark",
"Description": "The Letter Carrier",
"GMNotes": "{\n \"id\": \"60501\",\n \"type\": \"Investigator\",\n \"class\": \"Survivor\",\n \"traits\": \"Chosen. Civic.\"\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 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": 234904,
"SidewaysCard": true,
"CustomDeck": {
"2349": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065907887640918/BF3A963B745EF2047ABDFC524AEE4EA0145A04F4/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1016065907887642390/2CC878F26205C80F4B8D69DE3A4433804A31AABF/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "617aeb",
"Name": "Card",
"Transform": {
"posX": 18.4483185,
"posY": 1.80131459,
"posZ": -73.08697,
"rotX": 0.01762977,
"rotY": 179.999924,
"rotZ": 359.978973,
"scaleX": 1.1,
"scaleY": 1.0,
"scaleZ": 1.1
},
"Nickname": "Sister Mary",
"Description": "The Nun",
"GMNotes": "{\n \"id\": \"07001\",\n \"type\": \"Investigator\",\n \"class\": \"Guardian\",\n \"traits\": \"Believer. Blessed.\"\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 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": 553400,
"SidewaysCard": true,
"CustomDeck": {
"5534": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320664132672550/E5E1C8EE53C7692025E048F0A04BE98D6FA17111/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1626320664132672810/20E21AC471D7E5E1545F0EAE635A093718D4C7CF/",
"NumWidth": 3,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "5294c3",
"Name": "Card",
"Transform": {
"posX": 18.448328,
"posY": 1.80573463,
"posZ": -73.08696,
"rotX": 0.0179380327,
"rotY": 179.999924,
"rotZ": 359.9789,
"scaleX": 1.1,
"scaleY": 1.0,
"scaleZ": 1.1
},
"Nickname": "\"Ashcan\" Pete",
"Description": "The Drifter",
"GMNotes": "{\n \"id\": \"02005\",\n \"type\": \"Investigator\",\n \"class\": \"Survivor\",\n \"traits\": \"Drifter.\"\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 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": 449806,
"SidewaysCard": true,
"CustomDeck": {
"4498": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1656727981627737050/3CFF9E3825033909543AD1CF843361D9243538EE/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1656727981627737648/F371339538812F68E38AAC0D520C525250DAC5C0/",
"NumWidth": 4,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "01ac1b",
"Name": "Card",
"Transform": {
"posX": 18.448349,
"posY": 1.77651393,
"posZ": -73.08694,
"rotX": 0.01708189,
"rotY": 179.999924,
"rotZ": 359.9791,
"scaleX": 1.1,
"scaleY": 1.0,
"scaleZ": 1.1
},
"Nickname": "Mark Harrigan",
"Description": "The Soldier",
"GMNotes": "{\n \"id\": \"03001\",\n \"type\": \"Investigator\",\n \"class\": \"Guardian\",\n \"traits\": \"Veteran.\"\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 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": 270710,
"SidewaysCard": true,
"CustomDeck": {
"2707": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1011562618093845971/A678BD374EC4DE672206B5EF7EB57DC885BC839C/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1011562618093845464/80687C9319FA2015F3D9F7CBEB4C55FBF045B27D/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "e637cd",
"Name": "Card",
"Transform": {
"posX": 18.44836,
"posY": 1.78804624,
"posZ": -73.08692,
"rotX": 0.0159038119,
"rotY": 179.999924,
"rotZ": 359.9794,
"scaleX": 1.1,
"scaleY": 1.0,
"scaleZ": 1.1
},
"Nickname": "Tommy Muldoon",
"Description": "The Rookie Cop",
"GMNotes": "{\n \"id\": \"06001\",\n \"type\": \"Investigator\",\n \"class\": \"Guardian\",\n \"traits\": \"Police. Warden.\"\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 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": 536532,
"SidewaysCard": true,
"CustomDeck": {
"5365": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1011562618093845971/A678BD374EC4DE672206B5EF7EB57DC885BC839C/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1011562618093845464/80687C9319FA2015F3D9F7CBEB4C55FBF045B27D/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "444830",
"Name": "Card",
"Transform": {
"posX": 18.4483833,
"posY": 1.75899124,
"posZ": -73.08689,
"rotX": 0.0163623542,
"rotY": 179.999908,
"rotZ": 359.979279,
"scaleX": 1.1,
"scaleY": 1.0,
"scaleZ": 1.1
},
"Nickname": "Daniela Reyes",
"Description": "The Mechanic",
"GMNotes": "{\n \"id\": \"08001\",\n \"type\": \"Investigator\",\n \"class\": \"Guardian\",\n \"traits\": \"Entrepreneur.\"\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 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": 379500,
"SidewaysCard": true,
"CustomDeck": {
"3795": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1625226898126522542/E29FEBE196344F3DEE457BE957E9AF18310C6F39/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1625226898126523297/2C981A8D79F76E3533ADD355F8AF406EA72B5162/",
"NumWidth": 5,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "126932",
"Name": "Card",
"Transform": {
"posX": 18.4483948,
"posY": 1.76359332,
"posZ": -73.0868759,
"rotX": 0.0179958474,
"rotY": 179.999908,
"rotZ": 359.978882,
"scaleX": 1.1,
"scaleY": 1.0,
"scaleZ": 1.1
},
"Nickname": "Leo Anderson",
"Description": "The Expedition Leader",
"GMNotes": "{\n \"id\": \"04001\",\n \"type\": \"Investigator\",\n \"class\": \"Guardian\",\n \"traits\": \"Veteran. Wayfarer.\"\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 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": 271316,
"SidewaysCard": true,
"CustomDeck": {
"2713": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1011562618093845971/A678BD374EC4DE672206B5EF7EB57DC885BC839C/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1011562618093845464/80687C9319FA2015F3D9F7CBEB4C55FBF045B27D/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "a2cd75",
"Name": "Card",
"Transform": {
"posX": 18.4484177,
"posY": 1.7373116,
"posZ": -73.0868454,
"rotX": 0.0173541941,
"rotY": 179.999908,
"rotZ": 359.979034,
"scaleX": 1.1,
"scaleY": 1.0,
"scaleZ": 1.1
},
"Nickname": "Jacqueline Fine",
"Description": "The Psychic",
"GMNotes": "{\n \"id\": \"60401\",\n \"type\": \"Investigator\",\n \"class\": \"Mystic\",\n \"traits\": \"Clairvoyant.\"\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 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": 234903,
"SidewaysCard": true,
"CustomDeck": {
"2349": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065907887640918/BF3A963B745EF2047ABDFC524AEE4EA0145A04F4/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1016065907887642390/2CC878F26205C80F4B8D69DE3A4433804A31AABF/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "8116a6",
"Name": "Card",
"Transform": {
"posX": 18.44843,
"posY": 1.75159788,
"posZ": -73.08683,
"rotX": 0.0150720812,
"rotY": 179.999908,
"rotZ": 359.9796,
"scaleX": 1.1,
"scaleY": 1.0,
"scaleZ": 1.1
},
"Nickname": "\"Skids\" O'Toole (Parallel Front)",
"Description": "The Ex-Con",
"GMNotes": "{\n \"id\": \"01003-pf\",\n \"type\": \"Investigator\",\n \"class\": \"Rogue\",\n \"traits\": \"Criminal.\"\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 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": 270203,
"SidewaysCard": true,
"CustomDeck": {
"2702": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1655599718154536333/92BABC93BFBC5E1DA2C2A7B5EA5E62151E0DE3D7/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1655599718154537387/9BBCF9ACFA26E3C0649434C832E5681AB731A77B/",
"NumWidth": 3,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "22ebb2",
"Name": "Card",
"Transform": {
"posX": 18.448452,
"posY": 1.72557,
"posZ": -73.0868,
"rotX": 0.0105154486,
"rotY": 179.999908,
"rotZ": 359.980743,
"scaleX": 1.1,
"scaleY": 1.0,
"scaleZ": 1.1
},
"Nickname": "\"Skids\" O'Toole (Parallel)",
"Description": "The Ex-Con",
"GMNotes": "{\n \"id\": \"01003-p\",\n \"type\": \"Investigator\",\n \"class\": \"Rogue\",\n \"traits\": \"Criminal.\"\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 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": 270202,
"SidewaysCard": true,
"CustomDeck": {
"2702": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1655599718154536333/92BABC93BFBC5E1DA2C2A7B5EA5E62151E0DE3D7/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1655599718154537387/9BBCF9ACFA26E3C0649434C832E5681AB731A77B/",
"NumWidth": 3,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "9015b4",
"Name": "Card",
"Transform": {
"posX": 18.4484634,
"posY": 1.73044753,
"posZ": -73.0867844,
"rotX": 0.008240932,
"rotY": 179.999908,
"rotZ": 359.9813,
"scaleX": 1.1,
"scaleY": 1.0,
"scaleZ": 1.1
},
"Nickname": "\"Skids\" O'Toole",
"Description": "The Ex-Con",
"GMNotes": "{\n \"id\": \"01003\",\n \"type\": \"Investigator\",\n \"class\": \"Rogue\",\n \"traits\": \"Criminal.\"\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 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": 535502,
"SidewaysCard": true,
"CustomDeck": {
"5355": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1011562618093845971/A678BD374EC4DE672206B5EF7EB57DC885BC839C/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1011562618093845464/80687C9319FA2015F3D9F7CBEB4C55FBF045B27D/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "282857",
"Name": "Card",
"Transform": {
"posX": 18.4484825,
"posY": 1.6999265,
"posZ": -73.0867538,
"rotX": 0.014610827,
"rotY": 179.999908,
"rotZ": 359.979736,
"scaleX": 1.1,
"scaleY": 1.0,
"scaleZ": 1.1
},
"Nickname": "Daisy Walker (Parallel)",
"Description": "The Librarian",
"GMNotes": "{\n \"id\": \"01002-p\",\n \"type\": \"Investigator\",\n \"class\": \"Seeker\",\n \"traits\": \"Miskatonic.\"\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 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": 270201,
"SidewaysCard": true,
"CustomDeck": {
"2702": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1655599718154536333/92BABC93BFBC5E1DA2C2A7B5EA5E62151E0DE3D7/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1655599718154537387/9BBCF9ACFA26E3C0649434C832E5681AB731A77B/",
"NumWidth": 3,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "e8cafc",
"Name": "Card",
"Transform": {
"posX": 18.44849,
"posY": 1.7097038,
"posZ": -73.08674,
"rotX": 0.0232431069,
"rotY": 179.999908,
"rotZ": 359.9776,
"scaleX": 1.1,
"scaleY": 1.0,
"scaleZ": 1.1
},
"Nickname": "Daisy Walker (Parallel Front)",
"Description": "The Librarian",
"GMNotes": "{\n \"id\": \"01002-pf\",\n \"type\": \"Investigator\",\n \"class\": \"Seeker\",\n \"traits\": \"Miskatonic.\"\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 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": 535101,
"SidewaysCard": true,
"CustomDeck": {
"5351": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1017195287736572954/79FAF352FE90F08BE9247753F39798A878925EAA/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1011562618093845464/80687C9319FA2015F3D9F7CBEB4C55FBF045B27D/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "6938eb",
"Name": "Card",
"Transform": {
"posX": 18.4485016,
"posY": 1.68135142,
"posZ": -73.0867157,
"rotX": 0.01979018,
"rotY": 179.999908,
"rotZ": 359.978455,
"scaleX": 1.1,
"scaleY": 1.0,
"scaleZ": 1.1
},
"Nickname": "Daisy Walker",
"Description": "The Librarian",
"GMNotes": "{\n \"id\": \"01002\",\n \"type\": \"Investigator\",\n \"class\": \"Seeker\",\n \"traits\": \"Miskatonic.\"\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 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": 269901,
"SidewaysCard": true,
"CustomDeck": {
"2699": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1011562618093845971/A678BD374EC4DE672206B5EF7EB57DC885BC839C/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1011562618093845464/80687C9319FA2015F3D9F7CBEB4C55FBF045B27D/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "2f2e0d",
"Name": "Card",
"Transform": {
"posX": 18.4485054,
"posY": 1.688406,
"posZ": -73.08671,
"rotX": 0.0077279415,
"rotY": 179.999908,
"rotZ": 359.9814,
"scaleX": 1.1,
"scaleY": 1.0,
"scaleZ": 1.1
},
"Nickname": "Daisy Walker (Parallel Back)",
"Description": "The Librarian",
"GMNotes": "{\n \"id\": \"01002-pb\",\n \"type\": \"Investigator\",\n \"class\": \"Seeker\",\n \"traits\": \"Miskatonic.\"\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 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": 273901,
"SidewaysCard": true,
"CustomDeck": {
"2739": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1011562618093845971/A678BD374EC4DE672206B5EF7EB57DC885BC839C/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1017195287736569204/9F5F294127B638FECFF0BC88A0F93387AF994431/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "560cef",
"Name": "Card",
"Transform": {
"posX": 18.4485111,
"posY": 1.66114116,
"posZ": -73.08675,
"rotX": 0.01251723,
"rotY": 179.999847,
"rotZ": 359.980255,
"scaleX": 1.1,
"scaleY": 1.0,
"scaleZ": 1.1
},
"Nickname": "Roland Banks (Parallel Back)",
"Description": "The Fed",
"GMNotes": "{\n \"id\": \"01001-pb\",\n \"type\": \"Investigator\",\n \"class\": \"Guardian\",\n \"traits\": \"Agency. Detective.\"\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 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": 536100,
"SidewaysCard": true,
"CustomDeck": {
"5361": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1697276706761477165/4BDF4AF6F55103AAA509DC67C952B660B5995707/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1697276706761477858/7CDB3552B0A37462AD965C5F67DF81A1EF9D4D60/",
"NumWidth": 3,
"NumHeight": 3,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "f7361e",
"Name": "Card",
"Transform": {
"posX": 18.4485111,
"posY": 1.67200017,
"posZ": -73.08679,
"rotX": 0.0293723419,
"rotY": 179.9998,
"rotZ": 359.976135,
"scaleX": 1.1,
"scaleY": 1.0,
"scaleZ": 1.1
},
"Nickname": "Roland Banks (Parallel Front)",
"Description": "The Fed",
"GMNotes": "{\n \"id\": \"01001-pf\",\n \"type\": \"Investigator\",\n \"class\": \"Guardian\",\n \"traits\": \"Agency. Detective.\"\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 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": 536101,
"SidewaysCard": true,
"CustomDeck": {
"5361": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1697276706761477165/4BDF4AF6F55103AAA509DC67C952B660B5995707/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1697276706761477858/7CDB3552B0A37462AD965C5F67DF81A1EF9D4D60/",
"NumWidth": 3,
"NumHeight": 3,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "9e9e98",
"Name": "Card",
"Transform": {
"posX": 18.44851,
"posY": 1.64321625,
"posZ": -73.08688,
"rotX": 0.02265872,
"rotY": 179.999741,
"rotZ": 359.977753,
"scaleX": 1.1,
"scaleY": 1.0,
"scaleZ": 1.1
},
"Nickname": "Roland Banks",
"Description": "The Fed",
"GMNotes": "{\n \"id\": \"01001\",\n \"alternate_ids\": [ \"98004\" ],\n \"type\": \"Investigator\",\n \"class\": \"Guardian\",\n \"traits\": \"Agency. Detective.\"\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 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": 273800,
"SidewaysCard": true,
"CustomDeck": {
"2738": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1011562618093845971/A678BD374EC4DE672206B5EF7EB57DC885BC839C/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1011562618093845464/80687C9319FA2015F3D9F7CBEB4C55FBF045B27D/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "f8d3f7",
"Name": "Card",
"Transform": {
"posX": 18.4485073,
"posY": 1.64881146,
"posZ": -73.08693,
"rotX": -0.0008651455,
"rotY": 179.999725,
"rotZ": 359.9835,
"scaleX": 1.1,
"scaleY": 1.0,
"scaleZ": 1.1
},
"Nickname": "Jenny Barnes (promo version)",
"Description": "The Dilettante",
"GMNotes": "{\n \"id\": \"02003-promo\",\n \"type\": \"Investigator\",\n \"class\": \"Rogue\",\n \"traits\": \"Drifter.\"\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 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": 273631,
"SidewaysCard": true,
"CustomDeck": {
"2736": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1011562618093845971/A678BD374EC4DE672206B5EF7EB57DC885BC839C/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1011562618093845464/80687C9319FA2015F3D9F7CBEB4C55FBF045B27D/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "9058d3",
"Name": "Card",
"Transform": {
"posX": 18.4484921,
"posY": 1.62210107,
"posZ": -73.08706,
"rotX": 0.008523375,
"rotY": 179.99971,
"rotZ": 359.981171,
"scaleX": 1.1,
"scaleY": 1.0,
"scaleZ": 1.1
},
"Nickname": "Jenny Barnes",
"Description": "The Dilettante",
"GMNotes": "{\n \"id\": \"02003\",\n \"alternate_ids\": [ \"98001\" ],\n \"type\": \"Investigator\",\n \"class\": \"Rogue\",\n \"traits\": \"Drifter.\"\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 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": 450104,
"SidewaysCard": true,
"CustomDeck": {
"4501": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1656727981627737050/3CFF9E3825033909543AD1CF843361D9243538EE/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1656727981627737648/F371339538812F68E38AAC0D520C525250DAC5C0/",
"NumWidth": 4,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "cd4028",
"Name": "Card",
"Transform": {
"posX": 18.44848,
"posY": 1.63507068,
"posZ": -73.08714,
"rotX": 0.04139469,
"rotY": 179.9997,
"rotZ": 359.973145,
"scaleX": 1.1,
"scaleY": 1.0,
"scaleZ": 1.1
},
"Nickname": "Winifred Habbamock",
"Description": "The Aviatrix",
"GMNotes": "{\n \"id\": \"60301\",\n \"type\": \"Investigator\",\n \"class\": \"Rogue\",\n \"traits\": \"Criminal.\"\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 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": 234902,
"SidewaysCard": true,
"CustomDeck": {
"2349": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065907887640918/BF3A963B745EF2047ABDFC524AEE4EA0145A04F4/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1016065907887642390/2CC878F26205C80F4B8D69DE3A4433804A31AABF/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "1fa944",
"Name": "Card",
"Transform": {
"posX": 18.4484577,
"posY": 1.60544109,
"posZ": -73.08731,
"rotX": 0.02826287,
"rotY": 179.9997,
"rotZ": 359.976379,
"scaleX": 1.1,
"scaleY": 1.0,
"scaleZ": 1.1
},
"Nickname": "Harvey Walters",
"Description": "The Professor",
"GMNotes": "{\n \"id\": \"60201\",\n \"type\": \"Investigator\",\n \"class\": \"Seeker\",\n \"traits\": \"Miskatonic.\"\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 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": 234901,
"SidewaysCard": true,
"CustomDeck": {
"2349": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065907887640918/BF3A963B745EF2047ABDFC524AEE4EA0145A04F4/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1016065907887642390/2CC878F26205C80F4B8D69DE3A4433804A31AABF/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "65588a",
"Name": "Card",
"Transform": {
"posX": 18.4484463,
"posY": 1.60907292,
"posZ": -73.0873947,
"rotX": 359.982361,
"rotY": 179.99971,
"rotZ": 359.98764,
"scaleX": 1.1,
"scaleY": 1.0,
"scaleZ": 1.1
},
"Nickname": "Nathaniel Cho",
"Description": "The Boxer",
"GMNotes": "{\n \"id\": \"60101\",\n \"type\": \"Investigator\",\n \"class\": \"Guardian\",\n \"traits\": \"Criminal. Warden.\"\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 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": 234900,
"SidewaysCard": true,
"CustomDeck": {
"2349": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065907887640918/BF3A963B745EF2047ABDFC524AEE4EA0145A04F4/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1016065907887642390/2CC878F26205C80F4B8D69DE3A4433804A31AABF/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "5e6298",
"Name": "Card",
"Transform": {
"posX": 18.4484043,
"posY": 1.58255565,
"posZ": -73.08762,
"rotX": 0.0006825869,
"rotY": 179.999741,
"rotZ": 359.9831,
"scaleX": 1.1,
"scaleY": 1.0,
"scaleZ": 1.1
},
"Nickname": "Preston Fairmont",
"Description": "The Millionaire",
"GMNotes": "{\n \"id\": \"05003\",\n \"type\": \"Investigator\",\n \"class\": \"Rogue\",\n \"traits\": \"Silver Twilight. Socialite.\"\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 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": 271923,
"SidewaysCard": true,
"CustomDeck": {
"2719": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1011562618093845971/A678BD374EC4DE672206B5EF7EB57DC885BC839C/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1011562618093845464/80687C9319FA2015F3D9F7CBEB4C55FBF045B27D/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "4271cb",
"Name": "Card",
"Transform": {
"posX": 18.4483757,
"posY": 1.599648,
"posZ": -73.08777,
"rotX": 0.06484259,
"rotY": 179.999725,
"rotZ": 359.967377,
"scaleX": 1.1,
"scaleY": 1.0,
"scaleZ": 1.1
},
"Nickname": "Rex Murphy",
"Description": "The Reporter",
"GMNotes": "{\n \"id\": \"02002\",\n \"type\": \"Investigator\",\n \"class\": \"Seeker\",\n \"traits\": \"Reporter.\"\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 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": 450003,
"SidewaysCard": true,
"CustomDeck": {
"4500": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1656727981627737050/3CFF9E3825033909543AD1CF843361D9243538EE/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1656727981627737648/F371339538812F68E38AAC0D520C525250DAC5C0/",
"NumWidth": 4,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "32b091",
"Name": "Card",
"Transform": {
"posX": 18.4483185,
"posY": 1.57919586,
"posZ": -73.08806,
"rotX": 0.192948833,
"rotY": 179.999619,
"rotZ": 359.935974,
"scaleX": 1.1,
"scaleY": 1.0,
"scaleZ": 1.1
},
"Nickname": "Diana Stanley",
"Description": "The Redeemed Cultist",
"GMNotes": "{\n \"id\": \"05004\",\n \"type\": \"Investigator\",\n \"class\": \"Mystic\",\n \"traits\": \"Cultist. Silver Twilight.\"\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 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": 272125,
"SidewaysCard": true,
"CustomDeck": {
"2721": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1011562618093845971/A678BD374EC4DE672206B5EF7EB57DC885BC839C/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1011562618093845464/80687C9319FA2015F3D9F7CBEB4C55FBF045B27D/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "98a0e1",
"Name": "Card",
"Transform": {
"posX": 18.4482918,
"posY": 1.58684325,
"posZ": -73.0882,
"rotX": 0.256895125,
"rotY": 179.999527,
"rotZ": 359.920319,
"scaleX": 1.1,
"scaleY": 1.0,
"scaleZ": 1.1
},
"Nickname": "Zoey Samaras",
"Description": "The Chef",
"GMNotes": "{\n \"id\": \"02001\",\n \"type\": \"Investigator\",\n \"class\": \"Guardian\",\n \"traits\": \"Believer. Hunter.\"\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 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": 449902,
"SidewaysCard": true,
"CustomDeck": {
"4499": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1656727981627737050/3CFF9E3825033909543AD1CF843361D9243538EE/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1656727981627737648/F371339538812F68E38AAC0D520C525250DAC5C0/",
"NumWidth": 4,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "e015f8",
"Name": "Card",
"Transform": {
"posX": 18.448431,
"posY": 1.5485239,
"posZ": -73.0878143,
"rotX": 0.077800855,
"rotY": 180.000458,
"rotZ": 359.964355,
"scaleX": 1.1,
"scaleY": 1.0,
"scaleZ": 1.1
},
"Nickname": "Dexter Drake",
"Description": "The Magician",
"GMNotes": "{\n \"id\": \"07004\",\n \"alternate_ids\": [ \"98016\" ],\n \"type\": \"Investigator\",\n \"class\": \"Mystic\",\n \"traits\": \"Sorcerer. Veteran.\"\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 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": 553103,
"SidewaysCard": true,
"CustomDeck": {
"5531": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320664132672550/E5E1C8EE53C7692025E048F0A04BE98D6FA17111/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1626320664132672810/20E21AC471D7E5E1545F0EAE635A093718D4C7CF/",
"NumWidth": 3,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "ca079b",
"Name": "Card",
"Transform": {
"posX": 18.4485836,
"posY": 1.5584538,
"posZ": -73.08727,
"rotX": 359.834869,
"rotY": 180.000763,
"rotZ": 0.0239523556,
"scaleX": 1.1,
"scaleY": 1.0,
"scaleZ": 1.1
},
"Nickname": "Jim Culver",
"Description": "The Musician",
"GMNotes": "{\n \"id\": \"02004\",\n \"type\": \"Investigator\",\n \"class\": \"Mystic\",\n \"traits\": \"Performer.\"\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 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": 449705,
"SidewaysCard": true,
"CustomDeck": {
"4497": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1656727981627737050/3CFF9E3825033909543AD1CF843361D9243538EE/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1656727981627737648/F371339538812F68E38AAC0D520C525250DAC5C0/",
"NumWidth": 4,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "6dc626",
"Name": "Card",
"Transform": {
"posX": 18.44865,
"posY": 1.52763152,
"posZ": -73.08741,
"rotX": 359.93158,
"rotY": 179.9992,
"rotZ": 0.0004456356,
"scaleX": 1.1,
"scaleY": 1.0,
"scaleZ": 1.1
},
"Nickname": "Joe Diamond",
"Description": "The Private Investigator",
"GMNotes": "{\n \"id\": \"05002\",\n \"type\": \"Investigator\",\n \"class\": \"Seeker\",\n \"traits\": \"Detective.\"\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 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": 271822,
"SidewaysCard": true,
"CustomDeck": {
"2718": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1011562618093845971/A678BD374EC4DE672206B5EF7EB57DC885BC839C/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1011562618093845464/80687C9319FA2015F3D9F7CBEB4C55FBF045B27D/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "389792",
"Name": "Card",
"Transform": {
"posX": 18.4485188,
"posY": 1.54539645,
"posZ": -73.08809,
"rotX": 0.270874739,
"rotY": 179.99826,
"rotZ": 359.917175,
"scaleX": 1.1,
"scaleY": 1.0,
"scaleZ": 1.1
},
"Nickname": "Dexter Drake (promo version)",
"Description": "The Magician",
"GMNotes": "{\n \"id\": \"07004-promo\",\n \"type\": \"Investigator\",\n \"class\": \"Mystic\",\n \"traits\": \"Sorcerer. Veteran.\"\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 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": 274137,
"SidewaysCard": true,
"CustomDeck": {
"2741": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1011562618093845971/A678BD374EC4DE672206B5EF7EB57DC885BC839C/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1011562618093845464/80687C9319FA2015F3D9F7CBEB4C55FBF045B27D/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "e0a155",
"Name": "Card",
"Transform": {
"posX": 18.4486446,
"posY": 1.51539183,
"posZ": -73.08798,
"rotX": 0.189061433,
"rotY": 179.9986,
"rotZ": 359.950165,
"scaleX": 1.1,
"scaleY": 1.0,
"scaleZ": 1.1
},
"Nickname": "Norman Withers",
"Description": "The Astronomer",
"GMNotes": "{\n \"id\": \"08004\",\n \"type\": \"Investigator\",\n \"class\": \"Seeker\",\n \"traits\": \"Miskatonic.\"\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 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": 379501,
"SidewaysCard": true,
"CustomDeck": {
"3795": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1625226898126522542/E29FEBE196344F3DEE457BE957E9AF18310C6F39/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1625226898126523297/2C981A8D79F76E3533ADD355F8AF406EA72B5162/",
"NumWidth": 5,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "909f30",
"Name": "Card",
"Transform": {
"posX": 18.4488888,
"posY": 1.52517974,
"posZ": -73.08718,
"rotX": 359.768524,
"rotY": 179.999054,
"rotZ": 0.06625839,
"scaleX": 1.1,
"scaleY": 1.0,
"scaleZ": 1.1
},
"Nickname": "Agnes Baker (Parallel Back)",
"Description": "The Waitress",
"GMNotes": "{\n \"id\": \"01004-pb\",\n \"type\": \"Investigator\",\n \"class\": \"Mystic\",\n \"traits\": \"Sorcerer.\"\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 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": 535906,
"SidewaysCard": true,
"CustomDeck": {
"5359": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1655599785038868372/5C2FC3F391C6D3B287C38B875F83629110163282/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1655599785038868958/4F366892FB57AF3841513790E41E15D85E9DC211/",
"NumWidth": 4,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "70d488",
"Name": "Card",
"Transform": {
"posX": 18.4489746,
"posY": 1.49235034,
"posZ": -73.08729,
"rotX": 359.869781,
"rotY": 179.996552,
"rotZ": 0.0207084343,
"scaleX": 1.1,
"scaleY": 1.0,
"scaleZ": 1.1
},
"Nickname": "Norman Withers (promo version)",
"Description": "The Astronomer",
"GMNotes": "{\n \"id\": \"08004-promo\",\n \"type\": \"Investigator\",\n \"class\": \"Seeker\",\n \"traits\": \"Miskatonic.\"\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 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": 440900,
"SidewaysCard": true,
"CustomDeck": {
"4409": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1697277388086987329/F381129808CB4D0ECD8508777784ECD8B7C1691F/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1697277388086987553/817496FCFFBF0B8ADCE3B09A9671D6F549BE5881/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "9724b7",
"Name": "Card",
"Transform": {
"posX": 18.4487457,
"posY": 1.51017272,
"posZ": -73.08818,
"rotX": 0.38136512,
"rotY": 179.995,
"rotZ": 359.8716,
"scaleX": 1.1,
"scaleY": 1.0,
"scaleZ": 1.1
},
"Nickname": "Rex Murphy (Taboo)",
"Description": "The Reporter",
"GMNotes": "{\n \"id\": \"02002-t\",\n \"type\": \"Investigator\",\n \"class\": \"Seeker\",\n \"traits\": \"Reporter.\"\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 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": 592900,
"SidewaysCard": true,
"CustomDeck": {
"5929": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065907888685007/A30CCF98600F1E9FA0F3EE674FE35BCD86CB6ECB/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1656727981627733218/4FBA1E1F82086229D9475F640AD6FF969624BE79/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "d37332",
"Name": "Card",
"Transform": {
"posX": 18.448801,
"posY": 1.47755039,
"posZ": -73.0881653,
"rotX": 0.228655413,
"rotY": 179.9959,
"rotZ": 359.9421,
"scaleX": 1.1,
"scaleY": 1.0,
"scaleZ": 1.1
},
"Nickname": "Lola Hayes",
"Description": "The Actress",
"GMNotes": "{\n \"id\": \"03006\",\n \"type\": \"Investigator\",\n \"class\": \"Neutral\",\n \"traits\": \"Performer.\"\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 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": 271215,
"SidewaysCard": true,
"CustomDeck": {
"2712": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1011562618093845971/A678BD374EC4DE672206B5EF7EB57DC885BC839C/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1011562618093845464/80687C9319FA2015F3D9F7CBEB4C55FBF045B27D/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "fc1d17",
"Name": "Card",
"Transform": {
"posX": 18.4490566,
"posY": 1.49266231,
"posZ": -73.08723,
"rotX": 359.6159,
"rotY": 179.99649,
"rotZ": 0.09067445,
"scaleX": 1.1,
"scaleY": 1.0,
"scaleZ": 1.1
},
"Nickname": "Wendy Adams",
"Description": "The Urchin",
"GMNotes": "{\n \"id\": \"01005\",\n \"type\": \"Investigator\",\n \"class\": \"Survivor\",\n \"traits\": \"Drifter.\"\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 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": 535704,
"SidewaysCard": true,
"CustomDeck": {
"5357": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1011562618093845971/A678BD374EC4DE672206B5EF7EB57DC885BC839C/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1011562618093845464/80687C9319FA2015F3D9F7CBEB4C55FBF045B27D/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "02db0a",
"Name": "Card",
"Transform": {
"posX": 18.449213,
"posY": 1.46859455,
"posZ": -73.08708,
"rotX": 359.5991,
"rotY": 179.994888,
"rotZ": 0.0167548265,
"scaleX": 1.1,
"scaleY": 1.0,
"scaleZ": 1.1
},
"Nickname": "Agnes Baker (Parallel Front)",
"Description": "The Waitress",
"GMNotes": "{\n \"id\": \"01004-pf\",\n \"type\": \"Investigator\",\n \"class\": \"Mystic\",\n \"traits\": \"Sorcerer.\"\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 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": 535905,
"SidewaysCard": true,
"CustomDeck": {
"5359": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1655599785038868372/5C2FC3F391C6D3B287C38B875F83629110163282/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1655599785038868958/4F366892FB57AF3841513790E41E15D85E9DC211/",
"NumWidth": 4,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "01b6ef",
"Name": "Card",
"Transform": {
"posX": 18.449213,
"posY": 1.288284,
"posZ": -73.0871353,
"rotX": 0.016732635,
"rotY": 179.994446,
"rotZ": 359.979248,
"scaleX": 1.1,
"scaleY": 1.0,
"scaleZ": 1.1
},
"Nickname": "Agnes Baker (Parallel)",
"Description": "The Waitress",
"GMNotes": "{\n \"id\": \"01004-p\",\n \"type\": \"Investigator\",\n \"class\": \"Mystic\",\n \"traits\": \"Sorcerer.\"\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 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": 535904,
"SidewaysCard": true,
"CustomDeck": {
"5359": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1655599785038868372/5C2FC3F391C6D3B287C38B875F83629110163282/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1655599785038868958/4F366892FB57AF3841513790E41E15D85E9DC211/",
"NumWidth": 4,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "31fe5e",
"Name": "Card",
"Transform": {
"posX": 21.2327175,
"posY": 2.109795,
"posZ": -18.1510124,
"rotX": 359.9201,
"rotY": 269.947083,
"rotZ": 0.01699225,
"scaleX": 0.6,
"scaleY": 1.0,
"scaleZ": 0.6
},
"Nickname": "Norman Withers (promo version)",
"Description": "",
"GMNotes": "{\n \"id\": \"08004-promo-m\",\n \"alternate_ids\": [ \"98007-promo-m\" ],\n \"type\": \"Minicard\"\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"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": false,
"Hands": true,
"CardID": 272607,
"SidewaysCard": false,
"CustomDeck": {
"2726": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/775107869050066760/0DE2BD4589CC8C2F3D26C2900A17ED7A6483062F/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1011562618093846975/4726098952C64103F2C211D202FFDD40D9D988BB/",
"NumWidth": 7,
"NumHeight": 3,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "df8ec4",
"Name": "Card",
"Transform": {
"posX": 21.2327175,
"posY": 2.151777,
"posZ": -18.1510124,
"rotX": 359.9201,
"rotY": 269.947083,
"rotZ": 0.01699225,
"scaleX": 0.6,
"scaleY": 1.0,
"scaleZ": 0.6
},
"Nickname": "Daniela Reyes",
"Description": "",
"GMNotes": "{\n \"id\": \"08001-m\",\n \"type\": \"Minicard\"\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"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": false,
"Hands": true,
"CardID": 379201,
"SidewaysCard": false,
"CustomDeck": {
"3792": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1625226898126507575/2EC3C9DD9A82135F5C0D3460C93B4B873EA5E0E0/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1625226898126507801/776246D0ED5DFF897896D229B6F7E801898CA4F6/",
"NumWidth": 3,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "4d0128",
"Name": "Card",
"Transform": {
"posX": 21.2327175,
"posY": 2.13107753,
"posZ": -18.1510124,
"rotX": 359.9201,
"rotY": 269.947083,
"rotZ": 0.01699225,
"scaleX": 0.6,
"scaleY": 1.0,
"scaleZ": 0.6
},
"Nickname": "Lily Chen",
"Description": "",
"GMNotes": "{\n \"id\": \"08010-m\",\n \"type\": \"Minicard\"\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"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": false,
"Hands": true,
"CardID": 379202,
"SidewaysCard": false,
"CustomDeck": {
"3792": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1625226898126507575/2EC3C9DD9A82135F5C0D3460C93B4B873EA5E0E0/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1625226898126507801/776246D0ED5DFF897896D229B6F7E801898CA4F6/",
"NumWidth": 3,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "aa1c23",
"Name": "Card",
"Transform": {
"posX": 21.2327175,
"posY": 2.163593,
"posZ": -18.1510124,
"rotX": 359.9201,
"rotY": 269.947083,
"rotZ": 0.01699225,
"scaleX": 0.6,
"scaleY": 1.0,
"scaleZ": 0.6
},
"Nickname": "Bob Jenkins",
"Description": "",
"GMNotes": "{\n \"id\": \"08016-m\",\n \"type\": \"Minicard\"\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"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": false,
"Hands": true,
"CardID": 379200,
"SidewaysCard": false,
"CustomDeck": {
"3792": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1625226898126507575/2EC3C9DD9A82135F5C0D3460C93B4B873EA5E0E0/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1625226898126507801/776246D0ED5DFF897896D229B6F7E801898CA4F6/",
"NumWidth": 3,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "b8fd86",
"Name": "Card",
"Transform": {
"posX": 21.2327175,
"posY": 2.17397976,
"posZ": -18.1510124,
"rotX": 359.9201,
"rotY": 269.947083,
"rotZ": 0.01699225,
"scaleX": 0.6,
"scaleY": 1.0,
"scaleZ": 0.6
},
"Nickname": "\"Ashcan\" Pete",
"Description": "",
"GMNotes": "{\n \"id\": \"02005-m\",\n \"type\": \"Minicard\"\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"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": false,
"Hands": false,
"CardID": 258909,
"SidewaysCard": false,
"CustomDeck": {
"2589": {
"FaceURL": "https://i.imgur.com/WPYBga4.jpg",
"BackURL": "https://i.imgur.com/vB84qMp.jpg",
"NumWidth": 7,
"NumHeight": 3,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "e53693",
"Name": "Card",
"Transform": {
"posX": 21.2327175,
"posY": 2.19704819,
"posZ": -18.1510124,
"rotX": 359.9201,
"rotY": 269.947083,
"rotZ": 0.01699225,
"scaleX": 0.6,
"scaleY": 1.0,
"scaleZ": 0.6
},
"Nickname": "Agnes Baker",
"Description": "",
"GMNotes": "{\n \"id\": \"01004-m\",\n \"type\": \"Minicard\"\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"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": false,
"Hands": false,
"CardID": 258803,
"SidewaysCard": false,
"CustomDeck": {
"2588": {
"FaceURL": "https://i.imgur.com/WPYBga4.jpg",
"BackURL": "https://i.imgur.com/vB84qMp.jpg",
"NumWidth": 7,
"NumHeight": 3,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "b57bab",
"Name": "Card",
"Transform": {
"posX": 21.2327175,
"posY": 2.1885798,
"posZ": -18.1510124,
"rotX": 359.9201,
"rotY": 269.947083,
"rotZ": 0.01699225,
"scaleX": 0.6,
"scaleY": 1.0,
"scaleZ": 0.6
},
"Nickname": "Carolyn Fern",
"Description": "Promo version",
"GMNotes": "{\n \"id\": \"05001-promo-m\",\n \"type\": \"Minicard\"\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"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": false,
"Hands": true,
"CardID": 273306,
"SidewaysCard": false,
"CustomDeck": {
"2733": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/775107869050066760/0DE2BD4589CC8C2F3D26C2900A17ED7A6483062F/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1011562618093846975/4726098952C64103F2C211D202FFDD40D9D988BB/",
"NumWidth": 7,
"NumHeight": 3,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "2d6db0",
"Name": "Card",
"Transform": {
"posX": 21.2327175,
"posY": 2.202235,
"posZ": -18.1510124,
"rotX": 359.9201,
"rotY": 269.947083,
"rotZ": 0.01699225,
"scaleX": 0.6,
"scaleY": 1.0,
"scaleZ": 0.6
},
"Nickname": "Harvey Walters",
"Description": "",
"GMNotes": "{\n \"id\": \"60201-m\",\n \"type\": \"Minicard\"\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"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": false,
"Hands": true,
"CardID": 274217,
"SidewaysCard": false,
"CustomDeck": {
"2742": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1011562618093847742/6DF29C75A96B1D04C068D3AACAE25F9D2363BE9A/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1011562618093846975/4726098952C64103F2C211D202FFDD40D9D988BB/",
"NumWidth": 7,
"NumHeight": 3,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "888fcc",
"Name": "Card",
"Transform": {
"posX": 21.2327175,
"posY": 2.17496872,
"posZ": -18.1510124,
"rotX": 359.9201,
"rotY": 269.947083,
"rotZ": 0.01699225,
"scaleX": 0.6,
"scaleY": 1.0,
"scaleZ": 0.6
},
"Nickname": "Silas Marsh",
"Description": "Promo version",
"GMNotes": "{\n \"id\": \"07005-promo-m\",\n \"type\": \"Minicard\"\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"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": false,
"Hands": true,
"CardID": 272508,
"SidewaysCard": false,
"CustomDeck": {
"2725": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/775107869050066760/0DE2BD4589CC8C2F3D26C2900A17ED7A6483062F/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1011562618093846975/4726098952C64103F2C211D202FFDD40D9D988BB/",
"NumWidth": 7,
"NumHeight": 3,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "d35705",
"Name": "Card",
"Transform": {
"posX": 21.2327175,
"posY": 2.17923951,
"posZ": -18.1510124,
"rotX": 359.9201,
"rotY": 269.947083,
"rotZ": 0.01699225,
"scaleX": 0.6,
"scaleY": 1.0,
"scaleZ": 0.6
},
"Nickname": "Sefina Rousseau",
"Description": "",
"GMNotes": "{\n \"id\": \"03003-m\",\n \"type\": \"Minicard\"\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"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": false,
"Hands": false,
"CardID": 259512,
"SidewaysCard": false,
"CustomDeck": {
"2595": {
"FaceURL": "https://i.imgur.com/WPYBga4.jpg",
"BackURL": "https://i.imgur.com/vB84qMp.jpg",
"NumWidth": 7,
"NumHeight": 3,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "98d974",
"Name": "Card",
"Transform": {
"posX": 21.2327175,
"posY": 2.133233,
"posZ": -18.1510124,
"rotX": 359.9201,
"rotY": 269.947083,
"rotZ": 0.01699225,
"scaleX": 0.6,
"scaleY": 1.0,
"scaleZ": 0.6
},
"Nickname": "William Yorick",
"Description": "",
"GMNotes": "{\n \"id\": \"03005-m\",\n \"type\": \"Minicard\"\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"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": false,
"Hands": false,
"CardID": 259414,
"SidewaysCard": false,
"CustomDeck": {
"2594": {
"FaceURL": "https://i.imgur.com/WPYBga4.jpg",
"BackURL": "https://i.imgur.com/vB84qMp.jpg",
"NumWidth": 7,
"NumHeight": 3,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "12d3de",
"Name": "Card",
"Transform": {
"posX": 21.2327175,
"posY": 2.128148,
"posZ": -18.1510124,
"rotX": 359.9201,
"rotY": 269.947083,
"rotZ": 0.01699225,
"scaleX": 0.6,
"scaleY": 1.0,
"scaleZ": 0.6
},
"Nickname": "Mandy Thompson",
"Description": "",
"GMNotes": "{\n \"id\": \"06002-m\",\n \"type\": \"Minicard\"\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"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": false,
"Hands": true,
"CardID": 274012,
"SidewaysCard": false,
"CustomDeck": {
"2740": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/775107869050066760/0DE2BD4589CC8C2F3D26C2900A17ED7A6483062F/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1011562618093846975/4726098952C64103F2C211D202FFDD40D9D988BB/",
"NumWidth": 7,
"NumHeight": 3,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "9b0378",
"Name": "Card",
"Transform": {
"posX": 21.2327175,
"posY": 2.06345844,
"posZ": -18.1510124,
"rotX": 359.9201,
"rotY": 269.947083,
"rotZ": 0.01699225,
"scaleX": 0.6,
"scaleY": 1.0,
"scaleZ": 0.6
},
"Nickname": "Jacqueline Fine",
"Description": "",
"GMNotes": "{\n \"id\": \"60401-m\",\n \"type\": \"Minicard\"\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"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": false,
"Hands": true,
"CardID": 274219,
"SidewaysCard": false,
"CustomDeck": {
"2742": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1011562618093847742/6DF29C75A96B1D04C068D3AACAE25F9D2363BE9A/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1011562618093846975/4726098952C64103F2C211D202FFDD40D9D988BB/",
"NumWidth": 7,
"NumHeight": 3,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "bdef4d",
"Name": "Card",
"Transform": {
"posX": 21.2327175,
"posY": 2.049046,
"posZ": -18.1510124,
"rotX": 359.9201,
"rotY": 269.947083,
"rotZ": 0.01699225,
"scaleX": 0.6,
"scaleY": 1.0,
"scaleZ": 0.6
},
"Nickname": "Rita Young",
"Description": "",
"GMNotes": "{\n \"id\": \"05005-m\",\n \"type\": \"Minicard\"\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"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": false,
"Hands": true,
"CardID": 591100,
"SidewaysCard": false,
"CustomDeck": {
"5911": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/775107869050066760/0DE2BD4589CC8C2F3D26C2900A17ED7A6483062F/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1011562618093846975/4726098952C64103F2C211D202FFDD40D9D988BB/",
"NumWidth": 7,
"NumHeight": 3,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "d55364",
"Name": "Card",
"Transform": {
"posX": 21.2327518,
"posY": 1.99014866,
"posZ": -18.15102,
"rotX": 359.920135,
"rotY": 269.947083,
"rotZ": 0.0169545878,
"scaleX": 0.6,
"scaleY": 1.0,
"scaleZ": 0.6
},
"Nickname": "Joe Diamond",
"Description": "",
"GMNotes": "{\n \"id\": \"05002-m\",\n \"type\": \"Minicard\"\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"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": false,
"Hands": true,
"CardID": 272903,
"SidewaysCard": false,
"CustomDeck": {
"2729": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/775107869050066760/0DE2BD4589CC8C2F3D26C2900A17ED7A6483062F/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1011562618093846975/4726098952C64103F2C211D202FFDD40D9D988BB/",
"NumWidth": 7,
"NumHeight": 3,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "a5d9bb",
"Name": "Card",
"Transform": {
"posX": 21.2327862,
"posY": 1.99083793,
"posZ": -18.1510277,
"rotX": 359.920166,
"rotY": 269.947083,
"rotZ": 0.0169168878,
"scaleX": 0.6,
"scaleY": 1.0,
"scaleZ": 0.6
},
"Nickname": "Norman Withers",
"Description": "",
"GMNotes": "{\n \"id\": \"08004-m\",\n \"type\": \"Minicard\"\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"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": false,
"Hands": true,
"CardID": 379204,
"SidewaysCard": false,
"CustomDeck": {
"3792": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1625226898126507575/2EC3C9DD9A82135F5C0D3460C93B4B873EA5E0E0/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1625226898126507801/776246D0ED5DFF897896D229B6F7E801898CA4F6/",
"NumWidth": 3,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "b7a676",
"Name": "Card",
"Transform": {
"posX": 21.2327957,
"posY": 1.96613455,
"posZ": -18.1510429,
"rotX": 359.91983,
"rotY": 269.9469,
"rotZ": 0.01760662,
"scaleX": 0.6,
"scaleY": 1.0,
"scaleZ": 0.6
},
"Nickname": "Jim Culver",
"Description": "",
"GMNotes": "{\n \"id\": \"02004-m\",\n \"type\": \"Minicard\"\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"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": false,
"Hands": false,
"CardID": 259308,
"SidewaysCard": false,
"CustomDeck": {
"2593": {
"FaceURL": "https://i.imgur.com/WPYBga4.jpg",
"BackURL": "https://i.imgur.com/vB84qMp.jpg",
"NumWidth": 7,
"NumHeight": 3,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "038599",
"Name": "Card",
"Transform": {
"posX": 21.2327652,
"posY": 1.98589587,
"posZ": -18.15104,
"rotX": 359.9198,
"rotY": 269.946838,
"rotZ": 0.0177972522,
"scaleX": 0.6,
"scaleY": 1.0,
"scaleZ": 0.6
},
"Nickname": "Winifred Habbamock",
"Description": "",
"GMNotes": "{\n \"id\": \"60301-m\",\n \"type\": \"Minicard\"\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"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": false,
"Hands": true,
"CardID": 274218,
"SidewaysCard": false,
"CustomDeck": {
"2742": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1011562618093847742/6DF29C75A96B1D04C068D3AACAE25F9D2363BE9A/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1011562618093846975/4726098952C64103F2C211D202FFDD40D9D988BB/",
"NumWidth": 7,
"NumHeight": 3,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "48b174",
"Name": "Card",
"Transform": {
"posX": 21.2327042,
"posY": 1.97080791,
"posZ": -18.1510315,
"rotX": 359.919769,
"rotY": 269.946747,
"rotZ": 0.0181778725,
"scaleX": 0.6,
"scaleY": 1.0,
"scaleZ": 0.6
},
"Nickname": "Jenny Barnes",
"Description": "",
"GMNotes": "{\n \"id\": \"02003-m\",\n \"alternate_ids\": [ \"98001-m\" ],\n \"type\": \"Minicard\"\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"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": false,
"Hands": false,
"CardID": 259007,
"SidewaysCard": false,
"CustomDeck": {
"2590": {
"FaceURL": "https://i.imgur.com/WPYBga4.jpg",
"BackURL": "https://i.imgur.com/vB84qMp.jpg",
"NumWidth": 7,
"NumHeight": 3,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "877f4d",
"Name": "Card",
"Transform": {
"posX": 21.2326736,
"posY": 1.981151,
"posZ": -18.1510277,
"rotX": 359.919769,
"rotY": 269.946716,
"rotZ": 0.0183678772,
"scaleX": 0.6,
"scaleY": 1.0,
"scaleZ": 0.6
},
"Nickname": "Patrice Hathaway",
"Description": "",
"GMNotes": "{\n \"id\": \"06005-m\",\n \"type\": \"Minicard\"\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"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": false,
"Hands": true,
"CardID": 274014,
"SidewaysCard": false,
"CustomDeck": {
"2740": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/775107869050066760/0DE2BD4589CC8C2F3D26C2900A17ED7A6483062F/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1011562618093846975/4726098952C64103F2C211D202FFDD40D9D988BB/",
"NumWidth": 7,
"NumHeight": 3,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "f4e909",
"Name": "Card",
"Transform": {
"posX": 21.2326126,
"posY": 1.94725013,
"posZ": -18.15102,
"rotX": 359.919739,
"rotY": 269.9466,
"rotZ": 0.0187472384,
"scaleX": 0.6,
"scaleY": 1.0,
"scaleZ": 0.6
},
"Nickname": "Jenny Barnes",
"Description": "Promo version",
"GMNotes": "{\n \"id\": \"02003-promo-m\",\n \"type\": \"Minicard\"\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"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": false,
"Hands": true,
"CardID": 273410,
"SidewaysCard": false,
"CustomDeck": {
"2734": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/775107869050066760/0DE2BD4589CC8C2F3D26C2900A17ED7A6483062F/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1011562618093846975/4726098952C64103F2C211D202FFDD40D9D988BB/",
"NumWidth": 7,
"NumHeight": 3,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "fc5d62",
"Name": "Card",
"Transform": {
"posX": 21.2325821,
"posY": 1.94820857,
"posZ": -18.1510162,
"rotX": 359.9197,
"rotY": 269.946564,
"rotZ": 0.01893661,
"scaleX": 0.6,
"scaleY": 1.0,
"scaleZ": 0.6
},
"Nickname": "Trish Scarborough",
"Description": "",
"GMNotes": "{\n \"id\": \"07003-m\",\n \"type\": \"Minicard\"\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"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": false,
"Hands": true,
"CardID": 553202,
"SidewaysCard": false,
"CustomDeck": {
"5532": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320664132708743/A33DE2B12DE941B1CF2E4C8A458A18E48CB5CEEF/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1626320664132709196/85DFA06CD6EC0C36B07F86E5CDECCB6AFF531152/",
"NumWidth": 3,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "fe6430",
"Name": "Card",
"Transform": {
"posX": 21.232542,
"posY": 1.911435,
"posZ": -18.1510124,
"rotX": 359.920044,
"rotY": 269.946472,
"rotZ": 0.017382171,
"scaleX": 0.6,
"scaleY": 1.0,
"scaleZ": 0.6
},
"Nickname": "Minh Thi Phan",
"Description": "",
"GMNotes": "{\n \"id\": \"03002-m\",\n \"type\": \"Minicard\"\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"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": false,
"Hands": false,
"CardID": 259711,
"SidewaysCard": false,
"CustomDeck": {
"2597": {
"FaceURL": "https://i.imgur.com/WPYBga4.jpg",
"BackURL": "https://i.imgur.com/vB84qMp.jpg",
"NumWidth": 7,
"NumHeight": 3,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "4f0f4a",
"Name": "Card",
"Transform": {
"posX": 21.2325325,
"posY": 1.91888249,
"posZ": -18.1510124,
"rotX": 359.9204,
"rotY": 269.9464,
"rotZ": 0.0156405251,
"scaleX": 0.6,
"scaleY": 1.0,
"scaleZ": 0.6
},
"Nickname": "Tony Morgan",
"Description": "",
"GMNotes": "{\n \"id\": \"06003-m\",\n \"type\": \"Minicard\"\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"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": false,
"Hands": true,
"CardID": 274015,
"SidewaysCard": false,
"CustomDeck": {
"2740": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/775107869050066760/0DE2BD4589CC8C2F3D26C2900A17ED7A6483062F/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1011562618093846975/4726098952C64103F2C211D202FFDD40D9D988BB/",
"NumWidth": 7,
"NumHeight": 3,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "b127ab",
"Name": "Card",
"Transform": {
"posX": 21.2324867,
"posY": 1.89146221,
"posZ": -18.1510181,
"rotX": 359.920135,
"rotY": 269.9463,
"rotZ": 0.0165748652,
"scaleX": 0.6,
"scaleY": 1.0,
"scaleZ": 0.6
},
"Nickname": "Lola Hayes",
"Description": "",
"GMNotes": "{\n \"id\": \"03006-m\",\n \"type\": \"Minicard\"\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"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": false,
"Hands": false,
"CardID": 259915,
"SidewaysCard": false,
"CustomDeck": {
"2599": {
"FaceURL": "https://i.imgur.com/WPYBga4.jpg",
"BackURL": "https://i.imgur.com/vB84qMp.jpg",
"NumWidth": 7,
"NumHeight": 3,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "aa6282",
"Name": "CardCustom",
"Transform": {
"posX": 21.2324448,
"posY": 1.901778,
"posZ": -18.1510181,
"rotX": 359.919617,
"rotY": 269.9463,
"rotZ": 0.0190856941,
"scaleX": 0.6,
"scaleY": 1.0,
"scaleZ": 0.6
},
"Nickname": "Gloria Goldberg",
"Description": "",
"GMNotes": "{\n \"id\": \"98019-m\",\n \"type\": \"Minicard\"\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"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": false,
"Hands": true,
"CardID": 591500,
"SidewaysCard": false,
"CustomDeck": {
"5915": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1684870715280927433/BAC4CB96D8CB18760D53AF7B8096C09FACDADC97/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1684870715280927665/2B5BEB0B97C302165C773E291FE06863816EC59F/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "82dc80",
"Name": "Card",
"Transform": {
"posX": 21.2323685,
"posY": 1.873203,
"posZ": -18.15102,
"rotX": 359.919952,
"rotY": 269.946228,
"rotZ": 0.017875893,
"scaleX": 0.6,
"scaleY": 1.0,
"scaleZ": 0.6
},
"Nickname": "Finn Edwards",
"Description": "",
"GMNotes": "{\n \"id\": \"04003-m\",\n \"type\": \"Minicard\"\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"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": false,
"Hands": false,
"CardID": 261918,
"SidewaysCard": false,
"CustomDeck": {
"2619": {
"FaceURL": "https://i.imgur.com/WPYBga4.jpg",
"BackURL": "https://i.imgur.com/vB84qMp.jpg",
"NumWidth": 7,
"NumHeight": 3,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "1c78ea",
"Name": "Card",
"Transform": {
"posX": 21.2323341,
"posY": 1.87951314,
"posZ": -18.151022,
"rotX": 359.920746,
"rotY": 269.9462,
"rotZ": 0.0141621726,
"scaleX": 0.6,
"scaleY": 1.0,
"scaleZ": 0.6
},
"Nickname": "Sister Mary",
"Description": "",
"GMNotes": "{\n \"id\": \"07001-m\",\n \"type\": \"Minicard\"\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"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": false,
"Hands": true,
"CardID": 553200,
"SidewaysCard": false,
"CustomDeck": {
"5532": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320664132708743/A33DE2B12DE941B1CF2E4C8A458A18E48CB5CEEF/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1626320664132709196/85DFA06CD6EC0C36B07F86E5CDECCB6AFF531152/",
"NumWidth": 3,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "cc354d",
"Name": "Card",
"Transform": {
"posX": 21.2322674,
"posY": 1.85255158,
"posZ": -18.1510353,
"rotX": 359.920349,
"rotY": 269.9461,
"rotZ": 0.015710745,
"scaleX": 0.6,
"scaleY": 1.0,
"scaleZ": 0.6
},
"Nickname": "Mark Harrigan",
"Description": "",
"GMNotes": "{\n \"id\": \"03001-m\",\n \"type\": \"Minicard\"\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"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": false,
"Hands": false,
"CardID": 259610,
"SidewaysCard": false,
"CustomDeck": {
"2596": {
"FaceURL": "https://i.imgur.com/WPYBga4.jpg",
"BackURL": "https://i.imgur.com/vB84qMp.jpg",
"NumWidth": 7,
"NumHeight": 3,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "6b00ec",
"Name": "Card",
"Transform": {
"posX": 21.23223,
"posY": 1.86445892,
"posZ": -18.1510448,
"rotX": 359.91922,
"rotY": 269.9461,
"rotZ": 0.0209536925,
"scaleX": 0.6,
"scaleY": 1.0,
"scaleZ": 0.6
},
"Nickname": "\"Skids\" O'Toole",
"Description": "",
"GMNotes": "{\n \"id\": \"01003-m\",\n \"type\": \"Minicard\"\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"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": false,
"Hands": false,
"CardID": 258502,
"SidewaysCard": false,
"CustomDeck": {
"2585": {
"FaceURL": "https://i.imgur.com/WPYBga4.jpg",
"BackURL": "https://i.imgur.com/vB84qMp.jpg",
"NumWidth": 7,
"NumHeight": 3,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "88c4f4",
"Name": "Card",
"Transform": {
"posX": 21.2321548,
"posY": 1.83525276,
"posZ": -18.1510639,
"rotX": 359.919739,
"rotY": 269.946075,
"rotZ": 0.0187956,
"scaleX": 0.6,
"scaleY": 1.0,
"scaleZ": 0.6
},
"Nickname": "Luke Robinson",
"Description": "",
"GMNotes": "{\n \"id\": \"06004-m\",\n \"type\": \"Minicard\"\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"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": false,
"Hands": true,
"CardID": 274013,
"SidewaysCard": false,
"CustomDeck": {
"2740": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/775107869050066760/0DE2BD4589CC8C2F3D26C2900A17ED7A6483062F/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1011562618093846975/4726098952C64103F2C211D202FFDD40D9D988BB/",
"NumWidth": 7,
"NumHeight": 3,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "359ef4",
"Name": "Card",
"Transform": {
"posX": 21.2321186,
"posY": 1.83932984,
"posZ": -18.1510735,
"rotX": 359.921356,
"rotY": 269.946075,
"rotZ": 0.0114085749,
"scaleX": 0.6,
"scaleY": 1.0,
"scaleZ": 0.6
},
"Nickname": "Diana Stanley",
"Description": "",
"GMNotes": "{\n \"id\": \"05004-m\",\n \"type\": \"Minicard\"\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"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": false,
"Hands": true,
"CardID": 591001,
"SidewaysCard": false,
"CustomDeck": {
"5910": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/775107869050066760/0DE2BD4589CC8C2F3D26C2900A17ED7A6483062F/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1011562618093846975/4726098952C64103F2C211D202FFDD40D9D988BB/",
"NumWidth": 7,
"NumHeight": 3,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "df852c",
"Name": "Card",
"Transform": {
"posX": 21.2320576,
"posY": 1.81325936,
"posZ": -18.1511078,
"rotX": 359.920654,
"rotY": 269.946,
"rotZ": 0.0143958312,
"scaleX": 0.6,
"scaleY": 1.0,
"scaleZ": 0.6
},
"Nickname": "Father Mateo",
"Description": "",
"GMNotes": "{\n \"id\": \"04004-m\",\n \"type\": \"Minicard\"\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"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": false,
"Hands": false,
"CardID": 262119,
"SidewaysCard": false,
"CustomDeck": {
"2621": {
"FaceURL": "https://i.imgur.com/WPYBga4.jpg",
"BackURL": "https://i.imgur.com/vB84qMp.jpg",
"NumWidth": 7,
"NumHeight": 3,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "1806e5",
"Name": "Card",
"Transform": {
"posX": 21.23199,
"posY": 1.80316627,
"posZ": -18.1511135,
"rotX": 359.919861,
"rotY": 269.9458,
"rotZ": 0.0188095532,
"scaleX": 0.6,
"scaleY": 1.0,
"scaleZ": 0.6
},
"Nickname": "Nathaniel Cho",
"Description": "",
"GMNotes": "{\n \"id\": \"60101-m\",\n \"type\": \"Minicard\"\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"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": false,
"Hands": true,
"CardID": 274216,
"SidewaysCard": false,
"CustomDeck": {
"2742": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1011562618093847742/6DF29C75A96B1D04C068D3AACAE25F9D2363BE9A/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1011562618093846975/4726098952C64103F2C211D202FFDD40D9D988BB/",
"NumWidth": 7,
"NumHeight": 3,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "1b8e88",
"Name": "Card",
"Transform": {
"posX": 21.2319527,
"posY": 1.82003868,
"posZ": -18.1510887,
"rotX": 359.921265,
"rotY": 269.9458,
"rotZ": 0.0126044843,
"scaleX": 0.6,
"scaleY": 1.0,
"scaleZ": 0.6
},
"Nickname": "Roland Banks",
"Description": "Promo version",
"GMNotes": "{\n \"id\": \"01001-promo-m\",\n \"type\": \"Minicard\"\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"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": false,
"Hands": true,
"CardID": 535809,
"SidewaysCard": false,
"CustomDeck": {
"5358": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/775107869050066760/0DE2BD4589CC8C2F3D26C2900A17ED7A6483062F/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1011562618093846975/4726098952C64103F2C211D202FFDD40D9D988BB/",
"NumWidth": 7,
"NumHeight": 3,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "87576b",
"Name": "Card",
"Transform": {
"posX": 21.2319145,
"posY": 1.83371449,
"posZ": -18.1510639,
"rotX": 359.922668,
"rotY": 269.94577,
"rotZ": 0.006406322,
"scaleX": 0.6,
"scaleY": 1.0,
"scaleZ": 0.6
},
"Nickname": "Daisy Walker",
"Description": "",
"GMNotes": "{\n \"id\": \"01002-m\",\n \"type\": \"Minicard\"\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"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": false,
"Hands": false,
"CardID": 258701,
"SidewaysCard": false,
"CustomDeck": {
"2587": {
"FaceURL": "https://i.imgur.com/WPYBga4.jpg",
"BackURL": "https://i.imgur.com/vB84qMp.jpg",
"NumWidth": 7,
"NumHeight": 3,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "8925b0",
"Name": "Card",
"Transform": {
"posX": 21.2318115,
"posY": 1.769541,
"posZ": -18.15107,
"rotX": 359.92038,
"rotY": 269.94574,
"rotZ": 0.0161373485,
"scaleX": 0.6,
"scaleY": 1.0,
"scaleZ": 0.6
},
"Nickname": "Leo Anderson",
"Description": "",
"GMNotes": "{\n \"id\": \"04001-m\",\n \"type\": \"Minicard\"\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"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": false,
"Hands": false,
"CardID": 262016,
"SidewaysCard": false,
"CustomDeck": {
"2620": {
"FaceURL": "https://i.imgur.com/WPYBga4.jpg",
"BackURL": "https://i.imgur.com/vB84qMp.jpg",
"NumWidth": 7,
"NumHeight": 3,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "c91482",
"Name": "Card",
"Transform": {
"posX": 21.2318039,
"posY": 1.80535185,
"posZ": -18.1510773,
"rotX": 359.919617,
"rotY": 269.9457,
"rotZ": 0.0200647339,
"scaleX": 0.6,
"scaleY": 1.0,
"scaleZ": 0.6
},
"Nickname": "Ursula Downs",
"Description": "",
"GMNotes": "{\n \"id\": \"04002-m\",\n \"type\": \"Minicard\"\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"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": false,
"Hands": false,
"CardID": 260317,
"SidewaysCard": false,
"CustomDeck": {
"2603": {
"FaceURL": "https://i.imgur.com/WPYBga4.jpg",
"BackURL": "https://i.imgur.com/vB84qMp.jpg",
"NumWidth": 7,
"NumHeight": 3,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "30614e",
"Name": "Card",
"Transform": {
"posX": 21.2318039,
"posY": 1.80053782,
"posZ": -18.1510773,
"rotX": 359.919617,
"rotY": 269.9457,
"rotZ": 0.0200647339,
"scaleX": 0.6,
"scaleY": 1.0,
"scaleZ": 0.6
},
"Nickname": "Carolyn Fern",
"Description": "",
"GMNotes": "{\n \"id\": \"05001-m\",\n \"alternate_ids\": [ \"98010-m\" ],\n \"type\": \"Minicard\"\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"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": false,
"Hands": true,
"CardID": 273302,
"SidewaysCard": false,
"CustomDeck": {
"2733": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/775107869050066760/0DE2BD4589CC8C2F3D26C2900A17ED7A6483062F/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1011562618093846975/4726098952C64103F2C211D202FFDD40D9D988BB/",
"NumWidth": 7,
"NumHeight": 3,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "fc63ca",
"Name": "Card",
"Transform": {
"posX": 21.2317963,
"posY": 1.88297963,
"posZ": -18.1510849,
"rotX": 359.918884,
"rotY": 269.945679,
"rotZ": 0.0239877459,
"scaleX": 0.6,
"scaleY": 1.0,
"scaleZ": 0.6
},
"Nickname": "Dexter Drake",
"Description": "Promo version",
"GMNotes": "{\n \"id\": \"07004-promo-m\",\n \"type\": \"Minicard\"\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"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": false,
"Hands": true,
"CardID": 274300,
"SidewaysCard": false,
"CustomDeck": {
"2743": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1011562618093850037/05B303D11D87919B0388BF646EB2792033620EE0/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1011562618093849750/0A603123EE623768F23DC105F629D33E9CAF8333/",
"NumWidth": 7,
"NumHeight": 3,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "b05c03",
"Name": "Card",
"Transform": {
"posX": 21.231781,
"posY": 1.893167,
"posZ": -18.1511,
"rotX": 359.917358,
"rotY": 269.945648,
"rotZ": 0.0318207145,
"scaleX": 0.6,
"scaleY": 1.0,
"scaleZ": 0.6
},
"Nickname": "Marie Lambeau",
"Description": "",
"GMNotes": "{\n \"id\": \"05006-m\",\n \"alternate_ids\": [ \"99001-m\" ],\n \"type\": \"Minicard\"\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"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": false,
"Hands": true,
"CardID": 272705,
"SidewaysCard": false,
"CustomDeck": {
"2727": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/775107869050066760/0DE2BD4589CC8C2F3D26C2900A17ED7A6483062F/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1011562618093846975/4726098952C64103F2C211D202FFDD40D9D988BB/",
"NumWidth": 7,
"NumHeight": 3,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "155746",
"Name": "Card",
"Transform": {
"posX": 21.2317657,
"posY": 1.890824,
"posZ": -18.1511154,
"rotX": 359.915863,
"rotY": 269.945557,
"rotZ": 0.0396362878,
"scaleX": 0.6,
"scaleY": 1.0,
"scaleZ": 0.6
},
"Nickname": "Amanda Sharpe",
"Description": "",
"GMNotes": "{\n \"id\": \"07002-m\",\n \"type\": \"Minicard\"\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"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": false,
"Hands": true,
"CardID": 553201,
"SidewaysCard": false,
"CustomDeck": {
"5532": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320664132708743/A33DE2B12DE941B1CF2E4C8A458A18E48CB5CEEF/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1626320664132709196/85DFA06CD6EC0C36B07F86E5CDECCB6AFF531152/",
"NumWidth": 3,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "15e40d",
"Name": "Card",
"Transform": {
"posX": 21.2317581,
"posY": 1.90750563,
"posZ": -18.151123,
"rotX": 359.9151,
"rotY": 269.945557,
"rotZ": 0.0435375534,
"scaleX": 0.6,
"scaleY": 1.0,
"scaleZ": 0.6
},
"Nickname": "Wendy Adams",
"Description": "",
"GMNotes": "{\n \"id\": \"01005-m\",\n \"type\": \"Minicard\"\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"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": false,
"Hands": false,
"CardID": 258404,
"SidewaysCard": false,
"CustomDeck": {
"2584": {
"FaceURL": "https://i.imgur.com/WPYBga4.jpg",
"BackURL": "https://i.imgur.com/vB84qMp.jpg",
"NumWidth": 7,
"NumHeight": 3,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "78c512",
"Name": "Card",
"Transform": {
"posX": 21.2317429,
"posY": 1.88621414,
"posZ": -18.1511383,
"rotX": 359.9136,
"rotY": 269.945526,
"rotZ": 0.05132709,
"scaleX": 0.6,
"scaleY": 1.0,
"scaleZ": 0.6
},
"Nickname": "Preston Fairmont",
"Description": "",
"GMNotes": "{\n \"id\": \"05003-m\",\n \"type\": \"Minicard\"\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"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": false,
"Hands": true,
"CardID": 272804,
"SidewaysCard": false,
"CustomDeck": {
"2728": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/775107869050066760/0DE2BD4589CC8C2F3D26C2900A17ED7A6483062F/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1011562618093846975/4726098952C64103F2C211D202FFDD40D9D988BB/",
"NumWidth": 7,
"NumHeight": 3,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "f74398",
"Name": "Card",
"Transform": {
"posX": 21.2317352,
"posY": 1.89346123,
"posZ": -18.1511459,
"rotX": 359.912842,
"rotY": 269.9455,
"rotZ": 0.0552154,
"scaleX": 0.6,
"scaleY": 1.0,
"scaleZ": 0.6
},
"Nickname": "Monterey Jack",
"Description": "",
"GMNotes": "{\n \"id\": \"08007-m\",\n \"type\": \"Minicard\"\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"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": false,
"Hands": true,
"CardID": 379203,
"SidewaysCard": false,
"CustomDeck": {
"3792": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1625226898126507575/2EC3C9DD9A82135F5C0D3460C93B4B873EA5E0E0/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1625226898126507801/776246D0ED5DFF897896D229B6F7E801898CA4F6/",
"NumWidth": 3,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "dd3dbd",
"Name": "Card",
"Transform": {
"posX": 21.23172,
"posY": 1.8533138,
"posZ": -18.1511612,
"rotX": 359.911377,
"rotY": 269.945465,
"rotZ": 0.06297901,
"scaleX": 0.6,
"scaleY": 1.0,
"scaleZ": 0.6
},
"Nickname": "Stella Clark",
"Description": "",
"GMNotes": "{\n \"id\": \"60501-m\",\n \"type\": \"Minicard\"\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"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": false,
"Hands": true,
"CardID": 274220,
"SidewaysCard": false,
"CustomDeck": {
"2742": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1011562618093847742/6DF29C75A96B1D04C068D3AACAE25F9D2363BE9A/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1011562618093846975/4726098952C64103F2C211D202FFDD40D9D988BB/",
"NumWidth": 7,
"NumHeight": 3,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "ef75e7",
"Name": "Card",
"Transform": {
"posX": 21.2317123,
"posY": 1.85112536,
"posZ": -18.1511688,
"rotX": 359.910645,
"rotY": 269.945435,
"rotZ": 0.0668543,
"scaleX": 0.6,
"scaleY": 1.0,
"scaleZ": 0.6
},
"Nickname": "Zoey Samaras",
"Description": "",
"GMNotes": "{\n \"id\": \"02001-m\",\n \"type\": \"Minicard\"\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"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": false,
"Hands": false,
"CardID": 259105,
"SidewaysCard": false,
"CustomDeck": {
"2591": {
"FaceURL": "https://i.imgur.com/WPYBga4.jpg",
"BackURL": "https://i.imgur.com/vB84qMp.jpg",
"NumWidth": 7,
"NumHeight": 3,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "9ad56e",
"Name": "Card",
"Transform": {
"posX": 21.2316971,
"posY": 1.792163,
"posZ": -18.1511841,
"rotX": 359.909149,
"rotY": 269.945435,
"rotZ": 0.07459206,
"scaleX": 0.6,
"scaleY": 1.0,
"scaleZ": 0.6
},
"Nickname": "Roland Banks",
"Description": "",
"GMNotes": "{\n \"id\": \"01001-m\",\n \"alternate_ids\": [ \"98004-m\" ],\n \"type\": \"Minicard\"\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"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": false,
"Hands": false,
"CardID": 258600,
"SidewaysCard": false,
"CustomDeck": {
"2586": {
"FaceURL": "https://i.imgur.com/WPYBga4.jpg",
"BackURL": "https://i.imgur.com/vB84qMp.jpg",
"NumWidth": 7,
"NumHeight": 3,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "5e73c6",
"Name": "Card",
"Transform": {
"posX": 21.23169,
"posY": 1.78055906,
"posZ": -18.1511917,
"rotX": 359.9084,
"rotY": 269.945374,
"rotZ": 0.0784545,
"scaleX": 0.6,
"scaleY": 1.0,
"scaleZ": 0.6
},
"Nickname": "Tommy Muldoon",
"Description": "",
"GMNotes": "{\n \"id\": \"06001-m\",\n \"type\": \"Minicard\"\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"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": false,
"Hands": true,
"CardID": 274011,
"SidewaysCard": false,
"CustomDeck": {
"2740": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/775107869050066760/0DE2BD4589CC8C2F3D26C2900A17ED7A6483062F/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1011562618093846975/4726098952C64103F2C211D202FFDD40D9D988BB/",
"NumWidth": 7,
"NumHeight": 3,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "57668a",
"Name": "Card",
"Transform": {
"posX": 21.2316742,
"posY": 1.70285809,
"posZ": -18.151207,
"rotX": 359.906921,
"rotY": 269.9453,
"rotZ": 0.08616655,
"scaleX": 0.6,
"scaleY": 1.0,
"scaleZ": 0.6
},
"Nickname": "Dexter Drake",
"Description": "",
"GMNotes": "{\n \"id\": \"07004-m\",\n \"alternate_ids\": [ \"98016-m\" ],\n \"type\": \"Minicard\"\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"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": false,
"Hands": true,
"CardID": 553203,
"SidewaysCard": false,
"CustomDeck": {
"5532": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320664132708743/A33DE2B12DE941B1CF2E4C8A458A18E48CB5CEEF/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1626320664132709196/85DFA06CD6EC0C36B07F86E5CDECCB6AFF531152/",
"NumWidth": 3,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "6a9578",
"Name": "Card",
"Transform": {
"posX": 21.2316666,
"posY": 1.68188441,
"posZ": -18.1512146,
"rotX": 359.9062,
"rotY": 269.9453,
"rotZ": 0.09001608,
"scaleX": 0.6,
"scaleY": 1.0,
"scaleZ": 0.6
},
"Nickname": "Akachi Onyele",
"Description": "",
"GMNotes": "{\n \"id\": \"03004-m\",\n \"type\": \"Minicard\"\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"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": false,
"Hands": false,
"CardID": 259813,
"SidewaysCard": false,
"CustomDeck": {
"2598": {
"FaceURL": "https://i.imgur.com/WPYBga4.jpg",
"BackURL": "https://i.imgur.com/vB84qMp.jpg",
"NumWidth": 7,
"NumHeight": 3,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "574b59",
"Name": "Card",
"Transform": {
"posX": 21.2316074,
"posY": 1.63042653,
"posZ": -18.1511517,
"rotX": 359.917236,
"rotY": 269.944763,
"rotZ": 0.03280776,
"scaleX": 0.6,
"scaleY": 1.0,
"scaleZ": 0.6
},
"Nickname": "Silas Marsh",
"Description": "",
"GMNotes": "{\n \"id\": \"07005-m\",\n \"alternate_ids\": [ \"98013-m\" ],\n \"type\": \"Minicard\"\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"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": false,
"Hands": true,
"CardID": 553204,
"SidewaysCard": false,
"CustomDeck": {
"5532": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320664132708743/A33DE2B12DE941B1CF2E4C8A458A18E48CB5CEEF/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1626320664132709196/85DFA06CD6EC0C36B07F86E5CDECCB6AFF531152/",
"NumWidth": 3,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "510d45",
"Name": "Card",
"Transform": {
"posX": 21.231554,
"posY": 1.64562869,
"posZ": -18.1510658,
"rotX": 359.929,
"rotY": 269.944763,
"rotZ": 359.971375,
"scaleX": 0.6,
"scaleY": 1.0,
"scaleZ": 0.6
},
"Nickname": "Calvin Wright",
"Description": "",
"GMNotes": "{\n \"id\": \"04005-m\",\n \"type\": \"Minicard\"\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"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": false,
"Hands": false,
"CardID": 261820,
"SidewaysCard": false,
"CustomDeck": {
"2618": {
"FaceURL": "https://i.imgur.com/WPYBga4.jpg",
"BackURL": "https://i.imgur.com/vB84qMp.jpg",
"NumWidth": 7,
"NumHeight": 3,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "9ba3f0",
"Name": "Card",
"Transform": {
"posX": 78.88174,
"posY": 3.31746435,
"posZ": 7.15760136,
"rotX": 359.674469,
"rotY": 269.98703,
"rotZ": 1.25852585,
"scaleX": 0.6,
"scaleY": 1.0,
"scaleZ": 0.6
},
"Nickname": "Rex Murphy",
"Description": "",
"GMNotes": "{\n \"id\": \"02002-m\",\n \"type\": \"Minicard\"\n}",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"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": false,
"Hands": false,
"CardID": 259206,
"SidewaysCard": false,
"CustomDeck": {
"2592": {
"FaceURL": "https://i.imgur.com/WPYBga4.jpg",
"BackURL": "https://i.imgur.com/vB84qMp.jpg",
"NumWidth": 7,
"NumHeight": 3,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "a28140",
"Name": "Custom_Tile",
"Transform": {
"posX": -60.0333176,
"posY": 1.28330672,
"posZ": -70.7524643,
"rotX": 0.0208164528,
"rotY": 269.9721,
"rotZ": 0.0167611185,
"scaleX": 6.59,
"scaleY": 1.0,
"scaleZ": 6.586387
},
"Nickname": "ArkhamDB Deck Importer",
"Description": "v4",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": true,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": false,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/wDp1Woo.jpg",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "---\r\n--- Generated by EmmyLua(https://github.com/EmmyLua)\r\n--- Created by Whimsical.\r\n--- DateTime: 2021-08-19 6:38 a.m.\r\n---\r\n\r\n---@type ArkhamImportConfiguration\r\n\r\n-- Begin LoaderUi included file\r\nlocal INPUT_FIELD_HEIGHT = 340\r\nlocal INPUT_FIELD_WIDTH = 1500\r\n\r\nlocal FIELD_COLOR = {0.9,0.7,0.5}\r\n\r\nlocal PRIVATE_TOGGLE_LABELS = { }\r\nPRIVATE_TOGGLE_LABELS[true] = \"Private\"\r\nPRIVATE_TOGGLE_LABELS[false] = \"Published\"\r\nlocal UPGRADED_TOGGLE_LABELS = { }\r\nUPGRADED_TOGGLE_LABELS[true] = \"Upgraded\"\r\nUPGRADED_TOGGLE_LABELS[false] = \"Specific\"\r\nlocal LOAD_INVESTIGATOR_TOGGLE_LABELS = { }\r\nLOAD_INVESTIGATOR_TOGGLE_LABELS[true] = \"Yes\"\r\nLOAD_INVESTIGATOR_TOGGLE_LABELS[false] = \"No\"\r\n\r\nlocal redDeckId = \"\"\r\nlocal orangeDeckId = \"\"\r\nlocal whiteDeckId = \"\"\r\nlocal greenDeckId = \"\"\r\nlocal privateDeck = true\r\nlocal loadNewestDeck = true\r\nlocal loadInvestigators = false\r\nlocal loadingColor = \"\"\r\n\r\n-- Returns a table with the full state of the UI, including options and deck\r\n-- IDs. This can be used to persist via onSave(), or provide values for a load\r\n-- operation\r\n-- Table values:\r\n-- redDeck: Deck ID to load for the red player\r\n-- orangeDeck: Deck ID to load for the orange player\r\n-- whiteDeck: Deck ID to load for the white player\r\n-- greenDeck: Deck ID to load for the green player\r\n-- private: True to load a private deck, false to load a public deck\r\n-- loadNewest: True if the most upgraded version of the deck should be loaded\r\n-- investigators: True if investigator cards should be spawned\r\nfunction getUiState()\r\n return {\r\n redDeck = redDeckId,\r\n orangeDeck = orangeDeckId,\r\n whiteDeck = whiteDeckId,\r\n greenDeck = greenDeckId,\r\n private = privateDeck,\r\n loadNewest = loadNewestDeck,\r\n investigators = loadInvestigators,\r\n }\r\nend\r\n\r\n-- Sets up the UI for the deck loader, populating fields from the given save\r\n-- state table decoded from onLoad()\r\nfunction initializeUi(savedUiState)\r\n if (savedUiState ~= nil) then\r\n redDeckId = savedUiState.redDeck\r\n orangeDeckId = savedUiState.orangeDeck\r\n whiteDeckId = savedUiState.whiteDeck\r\n greenDeckId = savedUiState.greenDeck\r\n privateDeck = savedUiState.private\r\n loadNewestDeck = savedUiState.loadNewest\r\n loadInvestigators = savedUiState.investigators\r\n else\r\n redDeckId = \"\"\r\n orangeDeckId = \"\"\r\n whiteDeckId = \"\"\r\n greenDeckId = \"\"\r\n privateDeck = true\r\n loadNewestDeck = true\r\n loadInvestigators = true\r\n end\r\n\r\n makeOptionToggles()\r\n makeDeckIdFields()\r\n makeBuildButton()\r\nend\r\n\r\nfunction makeOptionToggles()\r\n -- Creates the three option toggle buttons. Each toggle assumes its index as\r\n -- part of the toggle logic. IF YOU CHANGE THE ORDER OF THESE FIELDS YOU MUST\r\n -- CHANGE THE EVENT HANDLERS\r\n makePublicPrivateToggle()\r\n makeLoadUpgradedToggle()\r\n makeLoadInvestigatorsToggle()\r\nend\r\n\r\nfunction makePublicPrivateToggle()\r\n local checkbox_parameters = {}\r\n checkbox_parameters.click_function = \"publicPrivateChanged\"\r\n checkbox_parameters.function_owner = self\r\n checkbox_parameters.position = {0.25,0.1,-0.102}\r\n checkbox_parameters.width = INPUT_FIELD_WIDTH\r\n checkbox_parameters.height = INPUT_FIELD_HEIGHT\r\n checkbox_parameters.tooltip = \"Published or private deck.\\n\\n*****PLEASE USE A PRIVATE DECK IF JUST FOR TTS TO AVOID FLOODING ARKHAMDB PUBLISHED DECK LISTS!\"\r\n checkbox_parameters.label = PRIVATE_TOGGLE_LABELS[privateDeck]\r\n checkbox_parameters.font_size = 240\r\n checkbox_parameters.scale = {0.1,0.1,0.1}\r\n checkbox_parameters.color = FIELD_COLOR\r\n checkbox_parameters.hover_color = {0.4,0.6,0.8}\r\n self.createButton(checkbox_parameters)\r\nend\r\n\r\nfunction makeLoadUpgradedToggle()\r\n local checkbox_parameters = {}\r\n checkbox_parameters.click_function = \"loadUpgradedChanged\"\r\n checkbox_parameters.function_owner = self\r\n checkbox_parameters.position = {0.25,0.1,-0.01}\r\n checkbox_parameters.width = INPUT_FIELD_WIDTH\r\n checkbox_parameters.height = INPUT_FIELD_HEIGHT\r\n checkbox_parameters.tooltip = \"Load newest upgrade, or exact deck\"\r\n checkbox_parameters.label = UPGRADED_TOGGLE_LABELS[loadNewestDeck]\r\n checkbox_parameters.font_size = 240\r\n checkbox_parameters.scale = {0.1,0.1,0.1}\r\n checkbox_parameters.color = FIELD_COLOR\r\n checkbox_parameters.hover_color = {0.4,0.6,0.8}\r\n self.createButton(checkbox_parameters)\r\nend\r\n\r\nfunction makeLoadInvestigatorsToggle()\r\n local checkbox_parameters = {}\r\n checkbox_parameters.click_function = \"loadInvestigatorsChanged\"\r\n checkbox_parameters.function_owner = self\r\n checkbox_parameters.position = {0.25,0.1,0.081}\r\n checkbox_parameters.width = INPUT_FIELD_WIDTH\r\n checkbox_parameters.height = INPUT_FIELD_HEIGHT\r\n checkbox_parameters.tooltip = \"Spawn investigator cards?\"\r\n checkbox_parameters.label = LOAD_INVESTIGATOR_TOGGLE_LABELS[loadInvestigators]\r\n checkbox_parameters.font_size = 240\r\n checkbox_parameters.scale = {0.1,0.1,0.1}\r\n checkbox_parameters.color = FIELD_COLOR\r\n checkbox_parameters.hover_color = {0.4,0.6,0.8}\r\n self.createButton(checkbox_parameters)\r\nend\r\n\r\n-- Create the four deck ID entry fields\r\nfunction makeDeckIdFields()\r\n local input_parameters = {}\r\n -- Parameters common to all entry fields\r\n input_parameters.function_owner = self\r\n input_parameters.scale = {0.1,0.1,0.1}\r\n input_parameters.width = INPUT_FIELD_WIDTH\r\n input_parameters.height = INPUT_FIELD_HEIGHT\r\n input_parameters.font_size = 320\r\n input_parameters.tooltip = \"Deck ID from ArkhamDB URL of the deck\\nPublic URL: 'https://arkhamdb.com/decklist/view/101/knowledge-overwhelming-solo-deck-1.0' = '101'\\nPrivate URL: 'https://arkhamdb.com/deck/view/102' = '102'\"\r\n input_parameters.alignment = 3 -- Center\r\n input_parameters.color = FIELD_COLOR\r\n input_parameters.font_color = {0, 0, 0}\r\n input_parameters.validation = 2 -- Integer\r\n\r\n -- Green\r\n input_parameters.input_function = \"greenDeckChanged\"\r\n input_parameters.position = {-0.166,0.1,0.385}\r\n input_parameters.value=greenDeckId\r\n self.createInput(input_parameters)\r\n -- Red\r\n input_parameters.input_function = \"redDeckChanged\"\r\n input_parameters.position = {0.171,0.1,0.385}\r\n input_parameters.value=redDeckId\r\n self.createInput(input_parameters)\r\n -- White\r\n input_parameters.input_function = \"whiteDeckChanged\"\r\n input_parameters.position = {-0.166,0.1,0.474}\r\n input_parameters.value=whiteDeckId\r\n self.createInput(input_parameters)\r\n -- Orange\r\n input_parameters.input_function = \"orangeDeckChanged\"\r\n input_parameters.position = {0.171,0.1,0.474}\r\n input_parameters.value=orangeDeckId\r\n self.createInput(input_parameters)\r\nend\r\n\r\n-- Create the Build All button. This is a transparent button which covers the\r\n-- Build All portion of the background graphic\r\nfunction makeBuildButton()\r\n local button_parameters = {}\r\n button_parameters.click_function = \"loadDecks\"\r\n button_parameters.function_owner = self\r\n button_parameters.position = {0,0.1,0.71}\r\n button_parameters.width = 320\r\n button_parameters.height = 30\r\n button_parameters.color = {0, 0, 0, 0}\r\n button_parameters.tooltip = \"Click to build all four decks!\"\r\n self.createButton(button_parameters)\r\nend\r\n\r\n-- Event handler for the Public/Private toggle. Changes the local value and the\r\n-- labels to toggle the button\r\nfunction publicPrivateChanged()\r\n -- editButton uses parameters.index which is 0-indexed\r\n privateDeck = not privateDeck\r\n self.editButton {\r\n index = 0,\r\n label = PRIVATE_TOGGLE_LABELS[privateDeck],\r\n }\r\nend\r\n\r\n-- Event handler for the Upgraded toggle. Changes the local value and the\r\n-- labels to toggle the button\r\nfunction loadUpgradedChanged()\r\n -- editButton uses parameters.index which is 0-indexed\r\n loadNewestDeck = not loadNewestDeck\r\n self.editButton {\r\n index = 1,\r\n label = UPGRADED_TOGGLE_LABELS[loadNewestDeck],\r\n }\r\nend\r\n\r\n-- Event handler for the load investigator cards toggle. Changes the local\r\n-- value and the labels to toggle the button\r\nfunction loadInvestigatorsChanged()\r\n -- editButton uses parameters.index which is 0-indexed\r\n loadInvestigators = not loadInvestigators\r\n self.editButton {\r\n index = 2,\r\n label = LOAD_INVESTIGATOR_TOGGLE_LABELS[loadInvestigators],\r\n }\r\nend\r\n\r\n-- Event handler for deck ID change\r\nfunction redDeckChanged(objectInputTyped, playerColorTyped, inputValue, selected)\r\n redDeckId = inputValue\r\nend\r\n\r\n-- Event handler for deck ID change\r\nfunction orangeDeckChanged(objectInputTyped, playerColorTyped, inputValue, selected)\r\n orangeDeckId = inputValue\r\nend\r\n\r\n-- Event handler for deck ID change\r\nfunction whiteDeckChanged(objectInputTyped, playerColorTyped, inputValue, selected)\r\n whiteDeckId = inputValue\r\nend\r\n\r\n-- Event handler for deck ID change\r\nfunction greenDeckChanged(objectInputTyped, playerColorTyped, inputValue, selected)\r\n greenDeckId = inputValue\r\nend\r\n\r\nfunction loadDecks()\r\n -- testLoadLotsOfDecks()\r\n -- Method in DeckImporterMain, visible due to inclusion\r\n\r\n -- TODO: Make this use the configuration ID for the all cards bag\r\n local allCardsBag = getObjectFromGUID(\"15bb07\")\r\n local indexReady = allCardsBag.call(\"isIndexReady\")\r\n if (not indexReady) then\r\n broadcastToAll(\"Still loading player cards, please try again in a few seconds\", {0.9, 0.2, 0.2})\r\n return\r\n end\r\n if (redDeckId ~= nil and redDeckId ~= \"\") then\r\n buildDeck(\"Red\", redDeckId)\r\n end\r\n if (orangeDeckId ~= nil and orangeDeckId ~= \"\") then\r\n buildDeck(\"Orange\", orangeDeckId)\r\n end\r\n if (whiteDeckId ~= nil and whiteDeckId ~= \"\") then\r\n buildDeck(\"White\", whiteDeckId)\r\n end\r\n if (greenDeckId ~= nil and greenDeckId ~= \"\") then\r\n buildDeck(\"Green\", greenDeckId)\r\n end\r\nend\r\n-- End LoaderUi included file\r\n\r\n-- Begin Zones included file (with minor modifications)\r\n\r\n-- Sets up and returns coordinates for all possible spawn zones. Because Lua\r\n-- assigns tables by reference and there is no built-in function to copy a\r\n-- table this is relatively brute force.\r\n--\r\n-- Positions are all relative to the player mat, and most are consistent. The\r\n-- exception are the SetAside# zones, which are placed to the left of the mat\r\n-- for White/Green, and the right of the mat for Orange/Red.\r\n--\r\n-- Valid Zones:\r\n-- Investigator: Investigator card area.\r\n-- Minicard: Placement for the investigator's minicard. This is just above the\r\n-- player mat, vertically in line with the investigator card area.\r\n-- Deck, Discard: Standard locations for the deck and discard piles.\r\n-- BlankTop, Tarot, Hand1, Hand2, Ally, BlankBottom, Accessory, Arcane1,\r\n-- Arcane2, Body: Asset slot positions on the player mat.\r\n-- Threat[1-4]: Threat area slots. Threat[1-3] correspond to the named threat\r\n-- area slots, and Threat4 is the blank threat area slot.\r\n-- SetAside[1-6]: Areas outside the player mat, to the right for Red/Orange and\r\n-- the left for White/Green. SetAside[1-3] are a column closest to the\r\n-- player mat, with 1 at the top of the mat and 3 at the bottom.\r\n-- SetAside[4-6] are a column farther away from the mat, with 4 at the top\r\n-- and 6 at the bottom.\r\nlocal playerMatGuids = { }\r\nplayerMatGuids[\"Red\"] = \"0840d5\"\r\nplayerMatGuids[\"Orange\"] = \"bd0ff4\"\r\nplayerMatGuids[\"White\"] = \"8b081b\"\r\nplayerMatGuids[\"Green\"] = \"383d8b\"\r\n\r\nlocal Zones = { }\r\n\r\nlocal commonZones = { }\r\ncommonZones[\"Investigator\"] = {-0.7833852, 0, 0.0001343352}\r\ncommonZones[\"Minicard\"] = {-0.7833852, 0, -1.187242}\r\ncommonZones[\"Deck\"] = {-1.414127, 0, -0.006668129}\r\ncommonZones[\"Discard\"] = {-1.422189,0,0.643440}\r\ncommonZones[\"Ally\"] = {-0.236577,0,0.023543}\r\ncommonZones[\"Body\"] = {-0.257249,0,0.553170}\r\ncommonZones[\"Hand1\"] = {0.600493,0,0.037291}\r\ncommonZones[\"Hand2\"] = {0.206867,0,0.025540}\r\ncommonZones[\"Arcane1\"] = {0.585817,0,0.567969}\r\ncommonZones[\"Arcane2\"] = {0.197267,0,0.562296}\r\ncommonZones[\"Tarot\"] = {0.980616,0,0.047756}\r\ncommonZones[\"Accessory\"] = {0.976689,0,0.569344}\r\ncommonZones[\"BlankTop\"] = {1.364696,0,0.062552}\r\ncommonZones[\"BlankBottom\"] = {1.349999,0,0.585419}\r\ncommonZones[\"Threat1\"] = {-0.835423,0,-0.633271}\r\ncommonZones[\"Threat2\"] = {-0.384615,0,-0.633493}\r\ncommonZones[\"Threat3\"] = {0.071090,0,-0.633717}\r\ncommonZones[\"Threat4\"] = {0.520816,0,-0.633936}\r\n\r\nZones[\"White\"] = { }\r\nZones[\"White\"][\"Investigator\"] = commonZones[\"Investigator\"]\r\nZones[\"White\"][\"Minicard\"] = commonZones[\"Minicard\"]\r\nZones[\"White\"][\"Deck\"] = commonZones[\"Deck\"]\r\nZones[\"White\"][\"Discard\"] = commonZones[\"Discard\"]\r\nZones[\"White\"][\"Ally\"] = commonZones[\"Ally\"]\r\nZones[\"White\"][\"Body\"] = commonZones[\"Body\"]\r\nZones[\"White\"][\"Hand1\"] = commonZones[\"Hand1\"]\r\nZones[\"White\"][\"Hand2\"] = commonZones[\"Hand2\"]\r\nZones[\"White\"][\"Arcane1\"] = commonZones[\"Arcane1\"]\r\nZones[\"White\"][\"Arcane2\"] = commonZones[\"Arcane2\"]\r\nZones[\"White\"][\"Tarot\"] = commonZones[\"Tarot\"]\r\nZones[\"White\"][\"Accessory\"] = commonZones[\"Accessory\"]\r\nZones[\"White\"][\"BlankTop\"] = commonZones[\"BlankTop\"]\r\nZones[\"White\"][\"BlankBottom\"] = commonZones[\"BlankBottom\"]\r\nZones[\"White\"][\"Threat1\"] = commonZones[\"Threat1\"]\r\nZones[\"White\"][\"Threat2\"] = commonZones[\"Threat2\"]\r\nZones[\"White\"][\"Threat3\"] = commonZones[\"Threat3\"]\r\nZones[\"White\"][\"Threat4\"] = commonZones[\"Threat4\"]\r\nZones[\"White\"][\"SetAside1\"] = {2.004500,0,-0.520315}\r\nZones[\"White\"][\"SetAside2\"] = {2.004500,0,0.042552}\r\nZones[\"White\"][\"SetAside3\"] = {2.004500,0,0.605419}\r\nZones[\"White\"][\"UnderSetAside3\"] = {2.154500,0,0.805419}\r\nZones[\"White\"][\"SetAside4\"] = {2.434500,0,-0.520315}\r\nZones[\"White\"][\"SetAside5\"] = {2.434500,0,0.042552}\r\nZones[\"White\"][\"SetAside6\"] = {2.434500,0,0.605419}\r\nZones[\"White\"][\"UnderSetAside6\"] = {2.584500,0,0.805419}\r\nZones[\"Orange\"] = { }\r\nZones[\"Orange\"][\"Investigator\"] = commonZones[\"Investigator\"]\r\nZones[\"Orange\"][\"Minicard\"] = commonZones[\"Minicard\"]\r\nZones[\"Orange\"][\"Deck\"] = commonZones[\"Deck\"]\r\nZones[\"Orange\"][\"Discard\"] = commonZones[\"Discard\"]\r\nZones[\"Orange\"][\"Ally\"] = commonZones[\"Ally\"]\r\nZones[\"Orange\"][\"Body\"] = commonZones[\"Body\"]\r\nZones[\"Orange\"][\"Hand1\"] = commonZones[\"Hand1\"]\r\nZones[\"Orange\"][\"Hand2\"] = commonZones[\"Hand2\"]\r\nZones[\"Orange\"][\"Arcane1\"] = commonZones[\"Arcane1\"]\r\nZones[\"Orange\"][\"Arcane2\"] = commonZones[\"Arcane2\"]\r\nZones[\"Orange\"][\"Tarot\"] = commonZones[\"Tarot\"]\r\nZones[\"Orange\"][\"Accessory\"] = commonZones[\"Accessory\"]\r\nZones[\"Orange\"][\"BlankTop\"] = commonZones[\"BlankTop\"]\r\nZones[\"Orange\"][\"BlankBottom\"] = commonZones[\"BlankBottom\"]\r\nZones[\"Orange\"][\"Threat1\"] = commonZones[\"Threat1\"]\r\nZones[\"Orange\"][\"Threat2\"] = commonZones[\"Threat2\"]\r\nZones[\"Orange\"][\"Threat3\"] = commonZones[\"Threat3\"]\r\nZones[\"Orange\"][\"Threat4\"] = commonZones[\"Threat4\"]\r\nZones[\"Orange\"][\"SetAside1\"] = {-2.004500,0,-0.520315}\r\nZones[\"Orange\"][\"SetAside2\"] = {-2.004500,0,0.042552}\r\nZones[\"Orange\"][\"SetAside3\"] = {-2.004500,0,0.605419}\r\nZones[\"Orange\"][\"UnderSetAside3\"] = {-2.154500,0,0.80419}\r\nZones[\"Orange\"][\"SetAside4\"] = {-2.434500,0,-0.520315}\r\nZones[\"Orange\"][\"SetAside5\"] = {-2.434500,0,0.042552}\r\nZones[\"Orange\"][\"SetAside6\"] = {-2.434500,0,0.605419}\r\nZones[\"Orange\"][\"UnderSetAside6\"] = {-2.584500,0,0.80419}\r\n\r\n-- Green positions are the same as White, and Red the same as orange, so we\r\n-- can just point these at the White/Orange definitions\r\nZones[\"Red\"] = Zones[\"Orange\"]\r\nZones[\"Green\"] = Zones[\"White\"]\r\n\r\n-- Returns the zone name where the specified card should be placed, based on\r\n-- its metadata.\r\n-- Param cardMetadata: Table of card metadata. Metadata fields type and\r\n-- permanent are required; all others are optional.\r\n-- Return: Zone name such as \"Deck\", \"SetAside1\", etc. See Zones object\r\n-- documentation for a list of valid zones.\r\nfunction Zones.getDefaultCardZone(cardMetadata)\r\n if (cardMetadata.type == \"Investigator\") then\r\n return \"Investigator\"\r\n elseif (cardMetadata.type == \"Minicard\") then\r\n return \"Minicard\"\r\n elseif (cardMetadata.permanent) then\r\n return \"SetAside1\"\r\n elseif (cardMetadata.bonded_to ~= nil) then\r\n return \"SetAside2\"\r\n else\r\n return \"Deck\"\r\n end\r\nend\r\n\r\n-- Gets the global position for the given zone on the specified player mat.\r\n-- Param playerColor: Color name of the player mat to get the zone position\r\n-- for (e.g. \"Red\")\r\n-- Param zoneName: Name of the zone to get the position for. See Zones object\r\n-- documentation for a list of valid zones.\r\n-- Return: Global position table, or nil if an invalid player color or zone\r\n-- is specified\r\nfunction Zones.getZonePosition(playerColor, zoneName)\r\n if (playerColor ~= \"Red\"\r\n and playerColor ~= \"Orange\"\r\n and playerColor ~= \"White\"\r\n and playerColor ~= \"Green\") then\r\n return nil\r\n end\r\n return getObjectFromGUID(playerMatGuids[playerColor]).positionToWorld(Zones[playerColor][zoneName])\r\nend\r\n\r\n-- Return the global rotation for a card on the given player mat, based on its\r\n-- metadata.\r\n-- Param playerColor: Color name of the player mat to get the rotation\r\n-- for (e.g. \"Red\")\r\n-- Param cardMetadata: Table of card metadata. Metadata fields type and\r\n-- permanent are required; all others are optional.\r\n-- Return: Global rotation vector for the given card. This will include the\r\n-- Y rotation to orient the card on the given player mat as well as a\r\n-- Z rotation to place the card face up or face down.\r\nfunction Zones.getDefaultCardRotation(playerColor, zone)\r\n local deckRotation = getObjectFromGUID(playerMatGuids[playerColor]).getRotation()\r\n\r\n if (zone == \"Investigator\") then\r\n deckRotation = deckRotation + Vector(0, 270, 0)\r\n elseif (zone == \"Deck\") then\r\n deckRotation = deckRotation + Vector(0, 0, 180)\r\n end\r\n\r\n return deckRotation\r\nend\r\n\r\nlocal RANDOM_WEAKNESS_ID = \"01000\"\r\n\r\nlocal tags = { configuration = \"import_configuration_provider\" }\r\n\r\nlocal Priority = {\r\n ERROR = 0,\r\n WARNING = 1,\r\n INFO = 2,\r\n DEBUG = 3\r\n}\r\n\r\n---@type fun(text: string)\r\nlocal printFunction = printToAll\r\nlocal printPriority = Priority.INFO\r\n\r\n---@param priority number\r\n---@return string\r\nfunction Priority.getLabel(priority)\r\n if priority==0 then return \"ERROR\"\r\n elseif priority==1 then return \"WARNING\"\r\n elseif priority==2 then return \"INFO\"\r\n elseif priority==3 then return \"DEBUG\"\r\n else error(table.concat({\"Priority\", priority, \"not found\"}, \" \")) return \"\"\r\n end\r\nend\r\n\r\n---@param message string\r\n---@param priority number\r\nlocal function debugPrint(message, priority, color)\r\n if (color == nil) then\r\n color = { 0.5, 0.5, 0.5 }\r\n end\r\n if (printPriority >= priority) then\r\n printFunction(\"[\" .. Priority.getLabel(priority) .. \"] \" .. message, color)\r\n end\r\nend\r\n\r\n---@param str string\r\n---@return string\r\nlocal function fixUtf16String(str)\r\n return str:gsub(\"\\\\u(%w%w%w%w)\", function (match)\r\n return string.char(tonumber(match,16))\r\n end)\r\nend\r\n\r\n--Forward declaration\r\n---@type Request\r\nlocal Request = {}\r\n\r\n---@type table\r\nlocal tabooList = {}\r\n\r\n---@return ArkhamImportConfiguration\r\nlocal function getConfiguration()\r\n local configuration = getObjectsWithTag(tags.configuration)[1]:getTable(\"configuration\")\r\n printPriority = configuration.priority\r\n return configuration\r\nend\r\n\r\nfunction onLoad(script_state)\r\n local state = JSON.decode(script_state)\r\n initializeUi(state)\r\n math.randomseed(os.time())\r\n\r\n local configuration = getConfiguration()\r\n Request.start({configuration.api_uri, configuration.taboo}, function (status)\r\n local json = JSON.decode(fixUtf16String(status.text))\r\n for _, taboo in pairs(json) do\r\n ---@type \r\n local cards = {}\r\n\r\n for _, card in pairs(JSON.decode(taboo.cards)) do\r\n cards[card.code] = true\r\n end\r\n\r\n tabooList[taboo.id] = {\r\n date = taboo.date_start,\r\n cards = cards\r\n }\r\n end\r\n return true, nil\r\n end)\r\nend\r\n\r\nfunction onSave()\r\n return JSON.encode(getUiState())\r\nend\r\n\r\n-- Callback when the deck information is received from ArkhamDB. Parses the\r\n-- response then applies standard transformations to the deck such as adding\r\n-- random weaknesses and checking for taboos. Once the deck is processed,\r\n-- passes to loadCards to actually spawn the defined deck.\r\n---@param deck ArkhamImportDeck\r\n---@param playerColor String Color name of the player mat to place this deck\r\n-- on (e.g. \"Red\")\r\n---@param configuration ArkhamImportConfiguration\r\nlocal function onDeckResult(deck, playerColor, configuration)\r\n -- Load the next deck in the upgrade path if the option is enabled\r\n if (getUiState().loadNewest and deck.next_deck ~= nil and deck.next_deck ~= \"\") then\r\n buildDeck(playerColor, deck.next_deck)\r\n return\r\n end\r\n\r\n debugPrint(table.concat({ \"Found decklist: \", deck.name}), Priority.INFO, playerColor)\r\n\r\n debugPrint(table.concat({\"-\", deck.name, \"-\"}), Priority.DEBUG)\r\n for k,v in pairs(deck) do\r\n if type(v)==\"table\" then\r\n debugPrint(table.concat {k, \": \"}, Priority.DEBUG)\r\n else\r\n debugPrint(table.concat {k, \": \", tostring(v)}, Priority.DEBUG)\r\n end\r\n end\r\n debugPrint(\"\", Priority.DEBUG)\r\n\r\n -- Initialize deck slot table and perform common transformations. The order\r\n -- of these should not be changed, as later steps may act on cards added in\r\n -- each. For example, a random weakness or investigator may have bonded\r\n -- cards or taboo entries, and should be present\r\n local slots = deck.slots\r\n maybeDrawRandomWeakness(slots, playerColor, configuration)\r\n maybeAddInvestigatorCards(deck, slots)\r\n extractBondedCards(slots, configuration)\r\n checkTaboos(deck.taboo_id, slots, playerColor, configuration)\r\n\r\n local commandManager = getObjectFromGUID(configuration.command_manager_guid)\r\n\r\n ---@type ArkhamImport_CommandManager_InitializationArguments\r\n local parameters = {\r\n configuration = configuration,\r\n description = deck.description_md,\r\n }\r\n\r\n ---@type ArkhamImport_CommandManager_InitializationResults\r\n local results = commandManager:call(\"initialize\", parameters)\r\n\r\n if not results.is_successful then\r\n debugPrint(results.error_message, Priority.ERROR)\r\n return\r\n end\r\n\r\n loadCards(slots, deck.investigator_code, playerColor, commandManager, configuration, results.configuration)\r\nend\r\n\r\n-- Checks to see if the slot list includes the random weakness ID. If it does,\r\n-- removes it from the deck and replaces it with the ID of a random basic\r\n-- weakness provided by the all cards bag\r\n-- Param slots: The slot list for cards in this deck. Table key is the cardId,\r\n-- value is the number of those cards which will be spawned\r\n-- Param playerColor: Color name of the player this deck is being loaded for.\r\n-- Used for broadcast if a weakness is added.\r\n-- Param configuration: The API configuration object\r\nfunction maybeDrawRandomWeakness(slots, playerColor, configuration)\r\n local allCardsBag = getObjectFromGUID(configuration.card_bag_guid)\r\n local hasRandomWeakness = false\r\n for cardId, cardCount in pairs(slots) do\r\n if (cardId == RANDOM_WEAKNESS_ID) then\r\n hasRandomWeakness = true\r\n break\r\n end\r\n end\r\n if (hasRandomWeakness) then\r\n local weaknessId = allCardsBag.call(\"getRandomWeaknessId\")\r\n slots[weaknessId] = 1\r\n slots[RANDOM_WEAKNESS_ID] = nil\r\n debugPrint(\"Random basic weakness added to deck\", Priority.INFO, playerColor)\r\n end\r\n\r\nend\r\n\r\n-- If the UI indicates that investigator cards should be loaded, add both the\r\n-- investigator (XXXXX) and minicard (XXXXX-m) slots with one copy each\r\n-- Param deck: The processed ArkhamDB deck response\r\n-- Param slots: The slot list for cards in this deck. Table key is the cardId,\r\n-- value is the number of those cards which will be spawned\r\nfunction maybeAddInvestigatorCards(deck, slots)\r\n if (getUiState().investigators) then\r\n local investigatorId = deck.investigator_code\r\n slots[investigatorId..\"-m\"] = 1\r\n local deckMeta = JSON.decode(deck.meta)\r\n local parallelFront = deckMeta ~= nil and deckMeta.alternate_front ~= nil and deckMeta.alternate_front ~= \"\"\r\n local parallelBack = deckMeta ~= nil and deckMeta.alternate_back ~= nil and deckMeta.alternate_back ~= \"\"\r\n if (parallelFront and parallelBack) then\r\n investigatorId = investigatorId..\"-p\"\r\n elseif (parallelFront) then\r\n investigatorId = investigatorId..\"-pf\"\r\n elseif (parallelBack) then\r\n investigatorId = investigatorId..\"-pb\"\r\n end\r\n slots[investigatorId] = 1\r\n end\r\nend\r\n\r\n-- Process the slot list and looks for any cards which are bonded to those in\r\n-- the deck. Adds those cards to the slot list.\r\n-- Param slots: The slot list for cards in this deck. Table key is the cardId,\r\n-- value is the number of those cards which will be spawned\r\n-- Param configuration: The API configuration object\r\nfunction extractBondedCards(slots, configuration)\r\n local allCardsBag = getObjectFromGUID(configuration.card_bag_guid)\r\n -- Create a list of bonded cards first so we don't modify slots while iterating\r\n local bondedCards = { }\r\n for cardId, cardCount in pairs(slots) do\r\n local card = allCardsBag.call(\"getCardById\", { id = cardId })\r\n if (card ~= nil and card.metadata.bonded ~= nil) then\r\n for _, bond in ipairs(card.metadata.bonded) do\r\n bondedCards[bond.id] = bond.count\r\n end\r\n end\r\n end\r\n -- Add any bonded cards to the main slots list\r\n for bondedId, bondedCount in pairs(bondedCards) do\r\n slots[bondedId] = bondedCount\r\n end\r\nend\r\n\r\n-- Check the deck for any cards on its taboo list. If they're found, replace\r\n-- the entry in the slot with the Taboo id (i.e. \"XXXX\" becomes \"XXXX-t\")\r\n-- Param tabooId: The deck's taboo ID, taken from the deck response taboo_id\r\n-- field. May be nil, indicating that no taboo list should be used\r\n-- Param slots: The slot list for cards in this deck. Table key is the cardId,\r\n-- value is the number of those cards which will be spawned\r\nfunction checkTaboos(tabooId, slots, playerColor, configuration)\r\n if (tabooId) then\r\n local allCardsBag = getObjectFromGUID(configuration.card_bag_guid)\r\n for cardId, _ in pairs(tabooList[tabooId].cards) do\r\n if (slots[cardId] ~= nil) then\r\n -- Make sure there's a taboo version of the card before we replace it\r\n -- SCED only maintains the most recent taboo cards. If a deck is using\r\n -- an older taboo list it's possible the card isn't a taboo any more\r\n local tabooCard = allCardsBag.call(\"getCardById\", { id = cardId..\"-t\" })\r\n if (tabooCard == nil) then\r\n local basicCard = allCardsBag.call(\"getCardById\", { id = cardId })\r\n debugPrint(\"Taboo version for \"..basicCard.data.Nickname..\r\n \" is not available. Using standard version\", Priority.WARNING, playerColor)\r\n else\r\n slots[cardId..\"-t\"] = slots[cardId]\r\n slots[cardId] = nil\r\n end\r\n end\r\n end\r\n end\r\nend\r\n\r\n-- Process the slot list, which defines the card Ids and counts of cards to\r\n-- load. Spawn those cards at the appropriate zones, and report an error to the\r\n-- user if any could not be loaded.\r\n--\r\n-- This method uses an encapsulated coroutine with yields to make the card\r\n-- spawning cleaner.\r\n--\r\n-- Param slots: Key-Value table of cardId:count. cardId is the ArkhamDB ID of\r\n-- the card to spawn, and count is the number which should be spawned\r\n-- Param investigatorId: String ArkhamDB ID (code) for this deck's investigator.\r\n-- Investigator cards should already be added to the slots list if they\r\n-- should be spawned, but this value is separate to check for special\r\n-- handling for certain investigators\r\n-- Param playerColor String Color name of the player mat to place this deck\r\n-- on (e.g. \"Red\")\r\n-- Param commandManager\r\n-- Param configuration: Loader configuration object\r\n-- Param command_config:\r\nfunction loadCards(slots, investigatorId, playerColor, commandManager, configuration, command_config)\r\n function coinside()\r\n local allCardsBag = getObjectFromGUID(configuration.card_bag_guid)\r\n local yPos = { }\r\n local cardsToSpawn = { }\r\n for cardId, cardCount in pairs(slots) do\r\n local card = allCardsBag.call(\"getCardById\", { id = cardId })\r\n if (card ~= nil) then\r\n local cardZone = Zones.getDefaultCardZone(card.metadata)\r\n for i = 1, cardCount do\r\n table.insert(cardsToSpawn, { data = card.data, metadata = card.metadata, zone = cardZone })\r\n end\r\n slots[cardId] = 0\r\n end\r\n end\r\n\r\n -- TODO: Re-enable this later, as a command\r\n --handleAltInvestigatorCard(cardsToSpawn, \"promo\", configuration)\r\n\r\n table.sort(cardsToSpawn, cardComparator)\r\n\r\n -- TODO: Process commands for the cardsToSpawn list\r\n\r\n -- These should probably be commands, once the command handler is updated\r\n handleStartsInPlay(cardsToSpawn)\r\n handleAncestralKnowledge(cardsToSpawn)\r\n\thandleHunchDeck(investigatorId, cardsToSpawn, playerColor)\r\n\r\n -- Count the number of cards in each zone so we know if it's a deck or card.\r\n -- TTS's Card vs. Deck distinction requires this since we can't spawn a deck\r\n -- with only one card\r\n local zoneCounts = getZoneCounts(cardsToSpawn)\r\n local zoneDecks = { }\r\n for zone, count in pairs(zoneCounts) do\r\n if (count > 1) then\r\n zoneDecks[zone] = buildDeckDataTemplate()\r\n end\r\n end\r\n -- For each card in a deck zone, add it to that deck. Otherwise, spawn it\r\n -- directly\r\n for _, spawnCard in ipairs(cardsToSpawn) do\r\n if (zoneDecks[spawnCard.zone] ~= nil) then\r\n addCardToDeck(zoneDecks[spawnCard.zone], spawnCard.data)\r\n else\r\n local cardPos = Zones.getZonePosition(playerColor, spawnCard.zone)\r\n cardPos.y = 2\r\n spawnObjectData({\r\n data = spawnCard.data,\r\n position = cardPos,\r\n rotation = Zones.getDefaultCardRotation(playerColor, spawnCard.zone)})\r\n end\r\n end\r\n -- Spawn each of the decks\r\n for zone, deck in pairs(zoneDecks) do\r\n local deckPos = Zones.getZonePosition(playerColor, zone)\r\n deckPos.y = 3\r\n spawnObjectData({\r\n data = deck,\r\n position = deckPos,\r\n rotation = Zones.getDefaultCardRotation(playerColor, zone)})\r\n coroutine.yield(0)\r\n end\r\n\r\n -- Look for any cards which haven't been loaded\r\n local hadError = false\r\n for cardId, remainingCount in pairs(slots) do\r\n if (remainingCount > 0) then\r\n hadError = true\r\n local request = Request.start({\r\n configuration.api_uri,\r\n configuration.cards,\r\n cardId},\r\n function(result)\r\n local adbCardInfo = JSON.decode(fixUtf16String(result.text))\r\n local cardName = adbCardInfo.real_name\r\n if (cardName ~= nil) then\r\n if (adbCardInfo.xp ~= nil and adbCardInfo.xp > 0) then\r\n cardName = cardName..\" (\"..adbCardInfo.xp..\")\"\r\n end\r\n debugPrint(\"Card not found: \"..cardName..\", ArkhamDB ID \"..cardId, Priority.ERROR, playerColor)\r\n else\r\n debugPrint(\"Card not found in ArkhamDB, ID \"..cardId, Priority.ERROR, playerColor)\r\n end\r\n end)\r\n end\r\n end\r\n if (not hadError) then\r\n debugPrint(\"Deck loaded successfully!\", Priority.INFO, playerColor)\r\n end\r\n return 1\r\n end\r\n startLuaCoroutine(self, \"coinside\")\r\nend\r\n\r\n-- Inserts a card into the given deck. This does three things:\r\n-- 1. Add the card's data to ContainedObjects\r\n-- 2. Add the card's ID (the TTS CardID, not the Arkham ID) to the deck's\r\n-- ID list. Note that the deck's ID list is \"DeckIDs\" even though it\r\n-- contains a list of card Ids\r\n-- 3. Extract the card's CustomDeck table and add it to the deck. The deck's\r\n-- \"CustomDeck\" field is a list of all CustomDecks used by cards within the\r\n-- deck, keyed by the DeckID and referencing the custom deck table\r\n-- Param deck: TTS deck data structure to add to\r\n-- Param card: Data for the card to be inserted\r\nfunction addCardToDeck(deck, cardData)\r\n table.insert(deck.ContainedObjects, cardData)\r\n table.insert(deck.DeckIDs, cardData.CardID)\r\n for customDeckId, customDeckData in pairs(cardData.CustomDeck) do\r\n deck.CustomDeck[customDeckId] = customDeckData\r\n end\r\nend\r\n\r\n-- Count the number of cards in each zone\r\n-- Param cards: Table of {cardData, cardMetadata, zone}\r\n-- Return: Table of {zoneName=zoneCount}\r\nfunction getZoneCounts(cards)\r\n local counts = { }\r\n for _, card in ipairs(cards) do\r\n if (counts[card.zone] == nil) then\r\n counts[card.zone] = 1\r\n else\r\n counts[card.zone] = counts[card.zone] + 1\r\n end\r\n end\r\n\r\n return counts\r\nend\r\n\r\n-- Create an empty deck data table which can have cards added to it. This\r\n-- creates a new table on each call without using metatables or previous\r\n-- definitions because we can't be sure that TTS doesn't modify the structure\r\n-- Return: Table containing the minimal TTS deck data structure\r\nfunction buildDeckDataTemplate()\r\n local deck = { }\r\n deck.Name = \"Deck\"\r\n\r\n -- Card data. DeckIDs and CustomDeck entries will be built from the cards\r\n deck.ContainedObjects = { }\r\n deck.DeckIDs = { }\r\n deck.CustomDeck = { }\r\n\r\n -- Transform is required, Position and Rotation will be overridden by the\r\n -- spawn call so can be omitted here\r\n deck.Transform = {\r\n scaleX = 1,\r\n scaleY = 1,\r\n scaleZ = 1, }\r\n\r\n return deck\r\nend\r\n\r\n-- Get the PBN (Permanent/Bonded/Normal) value from the given metadata.\r\n-- Return: 1 for Permanent, 2 for Bonded, or 3 for Normal. The actual values\r\n-- are irrelevant as they provide only grouping and the order between them\r\n-- doesn't matter.\r\nfunction getPbn(metadata)\r\n if (metadata.permanent) then\r\n return 1\r\n elseif (metadata.bonded_to ~= nil) then\r\n return 2\r\n else -- Normal card\r\n return 3\r\n end\r\nend\r\n\r\n-- Comparison function used to sort the cards in a deck. Groups bonded or\r\n-- permanent cards first, then sorts within theose types by name/subname.\r\n-- Normal cards will sort in standard alphabetical order, while permanent/bonded\r\n-- will be in reverse alphabetical order.\r\n--\r\n-- Since cards spawn in the order provided by this comparator, with the first\r\n-- cards ending up at the bottom of a pile, this ordering will spawn in reverse\r\n-- alphabetical order. This presents the cards in order for non-face-down\r\n-- areas, and presents them in order when Searching the face-down deck.\r\nfunction cardComparator(card1, card2)\r\n local pbn1 = getPbn(card1.metadata)\r\n local pbn2 = getPbn(card2.metadata)\r\n if (pbn1 ~= pbn2) then\r\n return pbn1 > pbn2\r\n end\r\n if (pbn1 == 3) then\r\n if (card1.data.Nickname ~= card2.data.Nickname) then\r\n return card1.data.Nickname < card2.data.Nickname\r\n end\r\n return card1.data.Description < card2.data.Description\r\n else\r\n if (card1.data.Nickname ~= card2.data.Nickname) then\r\n return card1.data.Nickname > card2.data.Nickname\r\n end\r\n return card1.data.Description > card2.data.Description\r\n end\r\nend\r\n\r\n-- Replace the investigator card and minicard with an alternate version. This\r\n-- will find the relevant cards and look for IDs with -, and\r\n-- --m, and update the entries in cardList with the new card\r\n-- data.\r\n--\r\n-- Param cardList: Deck list being created\r\n-- Param altVersionTag: The tag for the different version, currently the only\r\n-- alt versions are \"promo\", but will soon inclide \"revised\"\r\n-- Param configuration: ArkhamDB configuration defniition, used for the card bag\r\nfunction handleAltInvestigatorCard(cardList, altVersionTag, configuration)\r\n local allCardsBag = getObjectFromGUID(configuration.card_bag_guid)\r\n for _, card in ipairs(cardList) do\r\n if (card.metadata.type == \"Investigator\") then\r\n local altInvestigator = allCardsBag.call(\"getCardById\", { id = card.metadata.id..\"-\"..altVersionTag})\r\n if (altInvestigator ~= nil) then\r\n card.data = altInvestigator.data\r\n card.metadata = altInvestigator.metadata\r\n end\r\n end\r\n if (card.metadata.type == \"Minicard\") then\r\n -- -promo comes before -m in the ID, so needs a little massaging\r\n local investigatorId = string.sub(card.metadata.id, 1, 5)\r\n local altMinicard = allCardsBag.call(\"getCardById\", { id = investigatorId..\"-\"..altVersionTag..\"-m\"})\r\n if (altMinicard ~= nil) then\r\n card.data = altMinicard.data\r\n card.metadata = altMinicard.metadata\r\n end\r\n end\r\n end\r\nend\r\n\r\n-- Place cards which start in play (Duke, Sophie) in the play area\r\nfunction handleStartsInPlay(cardList)\r\n for _, card in ipairs(cardList) do\r\n -- 02014 = Duke (Ashcan Pete)\r\n -- 03009 = Sophie (Mark Harrigan)\r\n if (card.metadata.id == \"02014\" or card.metadata.id == \"03009\") then\r\n card.zone = \"BlankTop\"\r\n end\r\n end\r\nend\r\n\r\n-- Check to see if the deck list has Ancestral Knowledge. If it does, move 5\r\n-- random skills to SetAside3\r\nfunction handleAncestralKnowledge(cardList)\r\n local hasAncestralKnowledge = false\r\n local skillList = { }\r\n -- Have to process the entire list to check for Ancestral Knowledge and get\r\n -- all possible skills, so do both in one pass\r\n for i, card in ipairs(cardList) do\r\n if (card.metadata.id == \"07303\") then\r\n -- Ancestral Knowledge found\r\n hasAncestralKnowledge = true\r\n card.zone = \"SetAside3\"\r\n elseif (card.metadata.type == \"Skill\"\r\n and card.metadata.bonded_to == nil\r\n and not card.metadata.weakness) then\r\n table.insert(skillList, i)\r\n end\r\n end\r\n if (hasAncestralKnowledge) then\r\n for i = 1,5 do\r\n -- Move 5 random skills to SetAside3\r\n local skillListIndex = math.random(#skillList)\r\n cardList[skillList[skillListIndex]].zone = \"UnderSetAside3\"\r\n table.remove(skillList, skillListIndex)\r\n end\r\n end\r\nend\r\n\r\n-- If the investigator is Joe Diamond, extract all Insight events to SetAside5\r\n-- to build the Hunch Deck.\r\n-- Param investigatorId: ID for the deck's investigator card. Passed separately\r\n-- because the investigator may not be included in the cardList\r\n-- Param cardList: Deck list being created\r\n-- Param playerColor: Color this deck is being loaded for\r\nfunction handleHunchDeck(investigatorId, cardList, playerColor)\r\n if (investigatorId == \"05002\") then -- Joe Diamond\r\n local insightList = { }\r\n for i, card in ipairs(cardList) do\r\n if (card.metadata.type == \"Event\"\r\n and string.match(card.metadata.traits, \"Insight\")\r\n and card.metadata.bonded_to == nil) then\r\n table.insert(insightList, i)\r\n end\r\n end\r\n -- Process insights to move them to the hunch deck. This is done in reverse\r\n -- order because the sorting needs to be reversed (deck sorts for face down)\r\n -- Performance here may be an issue, as table.remove() is an O(n) operation\r\n -- which makes the full shift O(n^2). But keep it simple unless it becomes\r\n -- a problem\r\n for i = #insightList, 1, -1 do\r\n local moving = cardList[insightList[i]]\r\n moving.zone = \"SetAside5\"\r\n table.remove(cardList, insightList[i])\r\n table.insert(cardList, moving)\r\n end\r\n if (#insightList < 11) then\r\n debugPrint(\"Joe's hunch deck must have 11 cards but the deck only has \"..#insightList..\" Insight events\", Priority.INFO, playerColor)\r\n elseif (#insightList > 11) then\r\n debugPrint(\"Moved all \"..#insightList..\" Insight events to the hunch deck, reduce it to 11\", Priority.INFO, playerColor)\r\n else\r\n debugPrint(\"Built Joe's hunch deck\", Priority.INFO, playerColor)\r\n end\r\n end\r\nend\r\n\r\n-- Test method. Loads all decks which were submitted to ArkhamDB on a given\r\n-- date window.\r\nfunction testLoadLotsOfDecks()\r\n local configuration = getConfiguration()\r\n local numDays = 7\r\n local day = os.time{year=2021, month=7, day=15} -- Start date here\r\n for i=1,numDays do\r\n local dateString = os.date(\"%Y-%m-%d\", day)\r\n local deckList = Request.start({\r\n configuration.api_uri,\r\n \"decklists/by_date\",\r\n dateString,\r\n },\r\n function(result)\r\n local json = JSON.decode(result.text)\r\n for i, deckData in ipairs(json) do\r\n buildDeck(getColorForTest(i), deckData.id)\r\n end\r\n end)\r\n day = day + (60 * 60 * 24) -- Move forward by one day\r\n end\r\nend\r\n\r\n-- Rotates the player mat based on index, to spread the card stacks during\r\n-- a mass load\r\nfunction getColorForTest(index)\r\n if (index % 4 == 0) then\r\n return \"Red\"\r\n elseif (index % 4 == 1) then\r\n return \"Orange\"\r\n elseif (index % 4 == 2) then\r\n return \"White\"\r\n elseif (index % 4 == 3) then\r\n return \"Green\"\r\n end\r\nend\r\n\r\n-- Start the deck build process for the given player color and deck ID. This\r\n-- will retrieve the deck from ArkhamDB, and pass to a callback for processing.\r\n-- Param playerColor String Color name of the player mat to place this deck\r\n-- on (e.g. \"Red\")\r\n-- Param deckId: ArkhamDB deck id to be loaded\r\nfunction buildDeck(playerColor, deckId)\r\n local configuration = getConfiguration()\r\n -- Get a simple card to see if the bag indexes are complete. If not, abort\r\n -- the deck load. The called method will handle player notification.\r\n local allCardsBag = getObjectFromGUID(configuration.card_bag_guid)\r\n local checkCard = allCardsBag.call(\"getCardById\", { id = \"01001\"})\r\n if (checkCard ~= nil and checkCard.data == nil) then\r\n return\r\n end\r\n\r\n local deckUri = { configuration.api_uri, getUiState().private and configuration.private_deck or configuration.public_deck, deckId }\r\n\r\n local deck = Request.start(deckUri, function (status)\r\n if string.find(status.text, \"\") then\r\n debugPrint(\"Private deck ID \"..deckId..\" is not shared\", Priority.ERROR, playerColor)\r\n return false, table.concat({ \"Private deck \", deckId, \" is not shared\"})\r\n end\r\n local json = JSON.decode(status.text)\r\n\r\n if not json then\r\n debugPrint(\"Deck ID \"..deckId..\" not found\", Priority.ERROR, playerColor)\r\n return false, \"Deck not found!\"\r\n end\r\n\r\n return true, JSON.decode(status.text)\r\n end)\r\n\r\n deck:with(onDeckResult, playerColor, configuration)\r\nend\r\n\r\n---@type Request\r\nRequest = {\r\n is_done = false,\r\n is_successful = false\r\n}\r\n\r\n--- Creates a new instance of a Request. Should not be directly called. Instead use Request.start and Request.deferred.\r\n---@param uri string\r\n---@param configure fun(request: Request, status: WebRequestStatus)\r\n---@return Request\r\nfunction Request:new(uri, configure)\r\n local this = {}\r\n\r\n setmetatable(this, self)\r\n self.__index = self\r\n\r\n if type(uri)==\"table\" then\r\n uri = table.concat(uri, \"/\")\r\n end\r\n\r\n this.uri = uri\r\n\r\n WebRequest.get(uri, function(status)\r\n configure(this, status)\r\n end)\r\n\r\n return this\r\nend\r\n\r\n--- Creates a new request. on_success should set the request's is_done, is_successful, and content variables.\r\n--- Deferred should be used when you don't want to set is_done immediately (such as if you want to wait for another request to finish)\r\n---@param uri string\r\n---@param on_success fun(request: Request, status: WebRequestStatus, vararg any)\r\n---@param on_error fun(status: WebRequestStatus)|nil\r\n---@vararg any[]\r\n---@return Request\r\nfunction Request.deferred(uri, on_success, on_error, ...)\r\n local parameters = table.pack(...)\r\n return Request:new(uri, function (request, status)\r\n if (status.is_done) then\r\n if (status.is_error) then\r\n request.error_message = on_error and on_error(status, table.unpack(parameters)) or status.error\r\n request.is_successful = false\r\n request.is_done = true\r\n else\r\n on_success(request, status)\r\n end\r\n end\r\n end)\r\nend\r\n\r\n--- Creates a new request. on_success should return weather the resultant data is as expected, and the processed content of the request.\r\n---@param uri string\r\n---@param on_success fun(status: WebRequestStatus, vararg any): boolean, any\r\n---@param on_error nil|fun(status: WebRequestStatus, vararg any): string\r\n---@vararg any[]\r\n---@return Request\r\nfunction Request.start(uri, on_success, on_error, ...)\r\n local parameters = table.pack(...)\r\n return Request.deferred(uri, function(request, status)\r\n local result, message = on_success(status, table.unpack(parameters))\r\n if not result then request.error_message = message else request.content = message end\r\n request.is_successful = result\r\n request.is_done = true\r\n end, on_error, table.unpack(parameters))\r\nend\r\n\r\n---@param requests Request[]\r\n---@param on_success fun(content: any[], vararg any[])\r\n---@param on_error fun(requests: Request[], vararg any[])|nil\r\n---@vararg any\r\nfunction Request.with_all(requests, on_success, on_error, ...)\r\n local parameters = table.pack(...)\r\n\r\n Wait.condition(function ()\r\n ---@type any[]\r\n local results = {}\r\n\r\n ---@type Request[]\r\n local errors = {}\r\n\r\n for _, request in ipairs(requests) do\r\n if request.is_successful then\r\n table.insert(results, request.content)\r\n else\r\n table.insert(errors, request)\r\n end\r\n end\r\n\r\n if (#errors<=0) then\r\n on_success(results, table.unpack(parameters))\r\n elseif on_error ==nil then\r\n for _, request in ipairs(errors) do\r\n debugPrint(table.concat({ \"[ERROR]\", request.uri, \":\", request.error_message }), Priority.ERROR)\r\n end\r\n else\r\n on_error(requests, table.unpack(parameters))\r\n end\r\n end, function ()\r\n for _, request in ipairs(requests) do\r\n if not request.is_done then return false end\r\n end\r\n return true\r\n end)\r\nend\r\n\r\n---@param callback fun(content: any, vararg any)\r\nfunction Request:with(callback, ...)\r\n local arguments = table.pack(...)\r\n Wait.condition(function ()\r\n if self.is_successful then\r\n callback(self.content, table.unpack(arguments))\r\n end\r\n end, function () return self.is_done\r\n end)\r\nend",
"LuaScriptState": "{\"greenDeck\":\"\",\"investigators\":true,\"loadNewest\":true,\"orangeDeck\":\"\",\"private\":true,\"redDeck\":\"\",\"whiteDeck\":\"\"}",
"XmlUI": ""
},
{
"GUID": "526d39",
"Name": "Custom_Model",
"Transform": {
"posX": 66.3220139,
"posY": 1.4147315,
"posZ": -63.9796257,
"rotX": 0.0208050776,
"rotY": 270.018555,
"rotZ": 0.0167771634,
"scaleX": 1.2,
"scaleY": 1.2,
"scaleZ": 1.2
},
"Nickname": "Guardian",
"Description": "Upgrades",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": true,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomMesh": {
"MeshURL": "https://pastebin.com/raw/ALrYhQGb",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/952965722516201848/72B3B9E2B59F25FEC82412AC22245D03655A4558/",
"NormalURL": "",
"ColliderURL": "",
"Convex": true,
"MaterialIndex": 3,
"TypeIndex": 0,
"CustomShader": {
"SpecularColor": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"SpecularIntensity": 0.0,
"SpecularSharpness": 2.0,
"FresnelStrength": 0.0
},
"CastShadows": true
},
"LuaScript": "-- Class card bag implementation. Mimics the behavior of the previous SCED\r\n-- card memory bags, but spawns cards from the All Cards Bag instead.\r\n--\r\n-- The All Cards Bag handles indexing of the player cards by class and level, as\r\n-- well as sorting those lists. See that object for more information.\r\n\r\nlocal allCardsBagGuid = \"15bb07\"\r\n\r\n-- Lines which define the card layout area. The X threshold is shared, basic\r\n-- cards have Z > 47 while upgrades have Z < -46\r\n-- Note that the SCED table is rotated, making X the vertical (up the table)\r\n-- axis and Z the side-to-side axis\r\nlocal CARD_AREA_X_THRESHOLD = 22\r\nlocal CARD_AREA_BASIC_Z_THRESHOLD = 47\r\nlocal CARD_AREA_UPGRADED_Z_THRESHOLD = -46\r\n\r\nlocal skillCount = 0\r\nlocal eventCount = 0\r\nlocal assetCount = 0\r\n\r\n-- Coordinates to begin laying out cards to match the reserved areas of the\r\n-- table. Cards will lay out horizontally, then create additional rows\r\nlocal startPositions = {\r\n upgrades = {\r\n skill = Vector(58.09966, 1.36, -47.42),\r\n event = Vector(52.94421, 1.36, -47.42),\r\n asset = Vector(40.29005, 1.36, -47.42),\r\n },\r\n level0 = {\r\n skill = Vector(58.38383, 1.36, 92.39036),\r\n event = Vector(53.22857, 1.36, 92.44123),\r\n asset = Vector(40.9602, 1.36, 92.44869),\r\n },\r\n}\r\n\r\n-- Amount to shift for the next card (zShift) or next row of cards (xShift)\r\n-- Note that the table rotation is weird, and the X axis is vertical while the\r\n-- Z axis is horizontal\r\nlocal zShift = -2.29998\r\nlocal xShift = -3.66572\r\nlocal yRotation = 270\r\nlocal cardsPerRow = 20\r\n\r\n-- Tracks cards which are placed by this \"bag\" so they can be recalled\r\nlocal placedCardGuids = { }\r\nlocal placedCardsCount = 0\r\n\r\n-- In order to mimic the behavior of the previous memory buttons we use a\r\n-- a temporary bag when recalling objects. This bag is tiny and transparent,\r\n-- and will be placed at the same location as this object. Once all placed\r\n-- cards are recalled bag to this bag, it will be destroyed\r\nlocal recallBag = {\r\n Name = \"Bag\",\r\n Transform = {\r\n scaleX = 0.01,\r\n scaleY = 0.01,\r\n scaleZ = 0.01,\r\n },\r\n ColorDiffuse = {\r\n r = 0,\r\n g = 0,\r\n b = 0,\r\n a = 0,\r\n },\r\n Locked = true,\r\n Grid = true,\r\n Snap = false,\r\n Tooltip = false,\r\n}\r\n\r\nfunction onLoad(savedData)\r\n createPlaceRecallButtons()\r\n placedCardGuids = { }\r\n placedCardCount = 0\r\n if (savedData ~= nil) then\r\n local saveState = JSON.decode(savedData)\r\n if (saveState.placedCards ~= nil) then\r\n placedCardGuids = saveState.placedCards\r\n end\r\n end\r\nend\r\n\r\nfunction onSave()\r\n local saveState = {\r\n placedCards = placedCardGuids,\r\n }\r\n\r\n return JSON.encode(saveState)\r\nend\r\n\r\n--Creates recall and place buttons\r\nfunction createPlaceRecallButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={1,0.1,2.1}, rotation={0,0,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={-1,0.1,2.1}, rotation={0,0,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n-- Spawns the set of cards identified by this objects Name (which should hold\r\n-- the class) and description (whether to spawn basic cards or upgraded)\r\nfunction buttonClick_place()\r\n -- Cards already on the table, don't spawn more\r\n if (placedCardCount > 0) then\r\n return\r\n end\r\n local cardClass = self.getName()\r\n local isUpgraded = false\r\n if (self.getDescription() == \"Upgrades\") then\r\n isUpgraded = true\r\n end\r\n skillCount = 0\r\n eventCount = 0\r\n assetCount = 0\r\n local allCardsBag = getObjectFromGUID(allCardsBagGuid)\r\n local cardList = allCardsBag.call(\"getCardsByClassAndLevel\", {class = cardClass, upgraded = isUpgraded})\r\n placeCards(cardList)\r\nend\r\n\r\n-- Spawn all cards from the returned index\r\nfunction placeCards(cardIdList)\r\n local allCardsBag = getObjectFromGUID(allCardsBagGuid)\r\n local indexReady = allCardsBag.call(\"isIndexReady\")\r\n if (not indexReady) then\r\n broadcastToAll(\"Still loading player cards, please try again in a few seconds\", {0.9, 0.2, 0.2})\r\n return\r\n end\r\n\r\n for _, cardId in ipairs(cardIdList) do\r\n local card = allCardsBag.call(\"getCardById\", { id = cardId })\r\n placeCard(card.data, card.metadata)\r\n end\r\nend\r\n\r\nfunction placeCard(cardData, cardMetadata)\r\n local destinationPos\r\n if (cardMetadata.type == \"Skill\") then\r\n destinationPos = getSkillPosition(cardMetadata.level > 0)\r\n elseif (cardMetadata.type == \"Event\") then\r\n destinationPos = getEventPosition(cardMetadata.level > 0)\r\n elseif (cardMetadata.type == \"Asset\") then\r\n destinationPos = getAssetPosition(cardMetadata.level > 0)\r\n end\r\n -- Clear the GUID from the card's data so it will get a new GUID on spawn.\r\n -- This solves the issue of duplicate GUIDs being spawned and causing problems\r\n -- with recall\r\n cardData.GUID = nil\r\n local spawnedCard = spawnObjectData({\r\n data = cardData,\r\n position = destinationPos,\r\n rotation = {0, yRotation, 0},\r\n callback_function = recordPlacedCard})\r\nend\r\n\r\n-- Returns the table position where the next skill should be placed\r\n-- Param isUpgraded: True if it's an upgraded card (right side of the table),\r\n-- false for a Level 0 card (left side of table)\r\nfunction getSkillPosition(isUpgraded)\r\n local skillPos\r\n if (isUpgraded) then\r\n skillPos = startPositions.upgrades.skill:copy()\r\n else\r\n skillPos = startPositions.level0.skill:copy()\r\n end\r\n local shift = Vector(div(skillCount, cardsPerRow) * xShift, 0, (skillCount % cardsPerRow) * zShift)\r\n skillPos:add(shift)\r\n skillCount = skillCount + 1\r\n\r\n return skillPos\r\nend\r\n\r\n-- Returns the table position where the next event should be placed\r\n-- Param isUpgraded: True if it's an upgraded card (right side of the table),\r\n-- false for a Level 0 card (left side of table)\r\nfunction getEventPosition(isUpgraded)\r\n local eventPos\r\n if (isUpgraded) then\r\n eventPos = startPositions.upgrades.event:copy()\r\n else\r\n eventPos = startPositions.level0.event:copy()\r\n end\r\n local shift = Vector(div(eventCount, cardsPerRow) * xShift, 0, (eventCount % cardsPerRow) * zShift)\r\n eventPos:add(shift)\r\n eventCount = eventCount + 1\r\n\r\n return eventPos\r\nend\r\n\r\n-- Returns the table position where the next asset should be placed\r\n-- Param isUpgraded: True if it's an upgraded card (right side of the table),\r\n-- false for a Level 0 card (left side of table)\r\nfunction getAssetPosition(isUpgraded)\r\n local assetPos\r\n if (isUpgraded) then\r\n assetPos = startPositions.upgrades.asset:copy()\r\n else\r\n assetPos = startPositions.level0.asset:copy()\r\n end\r\n local shift = Vector(div(assetCount, cardsPerRow) * xShift, 0, (assetCount % cardsPerRow) * zShift)\r\n assetPos:add(shift)\r\n assetCount = assetCount + 1\r\n\r\n return assetPos\r\nend\r\n\r\n-- Callback function which adds a spawned card to the tracking list\r\nfunction recordPlacedCard(spawnedCard)\r\n if (spawnedCard.getName() == \"Protecting the Anirniq (2)\") then\r\n log(\"Spawned PtA \"..spawnedCard.getGUID())\r\n end\r\n placedCardGuids[spawnedCard.getGUID()] = true\r\n placedCardCount = placedCardCount + 1\r\nend\r\n\r\n-- Recalls all spawned cards to the bag, and clears the placedCardGuids list\r\nfunction buttonClick_recall()\r\n local trash = spawnObjectData({data = recallBag, position = self.getPosition()})\r\n for cardGuid, _ in pairs(placedCardGuids) do\r\n local card = getObjectFromGUID(cardGuid)\r\n if (card ~= nil) then\r\n trash.putObject(card)\r\n placedCardGuids[cardGuid] = nil\r\n placedCardCount = placedCardCount - 1\r\n end\r\n end\r\n\r\n if (placedCardCount > 0) then\r\n -- Couldn't recall all the cards, check and pull them from decks\r\n local decksInArea = { }\r\n local allObjects = getAllObjects()\r\n for _, object in ipairs(allObjects) do\r\n if (object.name == \"Deck\" and isInArea(object)) then\r\n table.insert(decksInArea, object)\r\n end\r\n end\r\n for _, deck in ipairs(decksInArea) do\r\n local cardsInDeck = deck.getObjects()\r\n for i, card in ipairs(cardsInDeck) do\r\n if (placedCardGuids[card.guid]) then\r\n trash.putObject(deck.takeObject({ guid = card.guid }))\r\n break\r\n end\r\n end\r\n end\r\n end\r\n\r\n trash.destruct()\r\n -- We've recalled everything we can, some cards may have been moved out of the\r\n -- card area. Just reset at this point.\r\n placedCardGuids = { }\r\n placedCardCount = 0\r\nend\r\n\r\nfunction isInArea(object)\r\n if (object == nil) then\r\n return false\r\n end\r\n local position = object.getPosition()\r\n return position.x > CARD_AREA_X_THRESHOLD\r\n and (position.z > CARD_AREA_BASIC_Z_THRESHOLD\r\n or position.z < CARD_AREA_UPGRADED_Z_THRESHOLD)\r\nend\r\n\r\nfunction div(a,b)\r\n return (a - a % b) / b\r\nend",
"LuaScriptState": "{\"placedCards\":[]}",
"XmlUI": ""
},
{
"GUID": "dc36b4",
"Name": "Custom_Model",
"Transform": {
"posX": -53.3193245,
"posY": 1.353764,
"posZ": -77.51895,
"rotX": 0.0207986534,
"rotY": 270.0183,
"rotZ": 0.0167771243,
"scaleX": 0.7000001,
"scaleY": 0.7000001,
"scaleZ": 0.7000001
},
"Nickname": "Weakness Generator",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.2499947,
"g": 0.2499947,
"b": 0.2499947
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": true,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomMesh": {
"MeshURL": "https://pastebin.com/raw/ALrYhQGb",
"DiffuseURL": "https://i.imgur.com/pl9VjHc.pnghttps://i.imgur.com/pl9VjHc.png",
"NormalURL": "",
"ColliderURL": "",
"Convex": true,
"MaterialIndex": 3,
"TypeIndex": 0,
"CustomShader": {
"SpecularColor": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"SpecularIntensity": 0.0,
"SpecularSharpness": 2.0,
"FresnelStrength": 0.0
},
"CastShadows": true
},
"LuaScript": "local allCardsBagGuid = \"15bb07\"\r\n\r\nfunction onLoad(saved_data)\r\n createDrawButton()\r\nend\r\n\r\nfunction createDrawButton()\r\n self.createButton({\r\n label=\"Draw Random\\nWeakness\", click_function=\"buttonClick_draw\", function_owner=self,\r\n position={0,0.1,2.1}, rotation={0,0,0}, height=600, width=1800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n-- Draw a random weakness and spawn it below the object\r\nfunction buttonClick_draw()\r\n local allCardsBag = getObjectFromGUID(allCardsBagGuid)\r\n local weaknessId = allCardsBag.call(\"getRandomWeaknessId\")\r\n local card = allCardsBag.call(\"getCardById\", { id = weaknessId })\r\n spawnObjectData({\r\n data = card.data,\r\n position = self.positionToWorld({0, 1, 5.5}),\r\n rotation = self.getRotation()})\r\nend",
"LuaScriptState": "{\"ml\":{\"017e1f\":{\"lock\":false,\"pos\":{\"x\":58.099666595459,\"y\":1.30950915813446,\"z\":-49.7709617614746},\"rot\":{\"x\":0.0208088327199221,\"y\":269.999145507813,\"z\":0.0167709868401289}},\"037b2e\":{\"lock\":false,\"pos\":{\"x\":52.9282646179199,\"y\":1.29552865028381,\"z\":-91.1161499023438},\"rot\":{\"x\":0.0208091996610165,\"y\":269.997436523438,\"z\":0.0167701207101345}},\"043971\":{\"lock\":false,\"pos\":{\"x\":36.6243591308594,\"y\":1.296342253685,\"z\":-68.108283996582},\"rot\":{\"x\":0.0208090376108885,\"y\":269.998962402344,\"z\":0.0167708080261946}},\"066c18\":{\"lock\":false,\"pos\":{\"x\":36.6086692810059,\"y\":1.29028058052063,\"z\":-88.7977294921875},\"rot\":{\"x\":0.0208124909549952,\"y\":269.986236572266,\"z\":0.016766244545579}},\"06abe0\":{\"lock\":false,\"pos\":{\"x\":40.289966583252,\"y\":1.29295742511749,\"z\":-84.2198791503906},\"rot\":{\"x\":0.0208096876740456,\"y\":269.99658203125,\"z\":0.01677006483078}},\"0c278c\":{\"lock\":false,\"pos\":{\"x\":49.278491973877,\"y\":1.3049772977829,\"z\":-54.3087844848633},\"rot\":{\"x\":0.0208090376108885,\"y\":269.998687744141,\"z\":0.0167708620429039}},\"0c2f37\":{\"lock\":false,\"pos\":{\"x\":52.9472045898438,\"y\":1.30024063587189,\"z\":-75.0420989990234},\"rot\":{\"x\":0.0209243912249804,\"y\":269.602203369141,\"z\":0.0166263524442911}},\"1408ad\":{\"lock\":false,\"pos\":{\"x\":52.9442024230957,\"y\":1.30293893814087,\"z\":-65.8202209472656},\"rot\":{\"x\":0.0208151284605265,\"y\":269.977447509766,\"z\":0.0167630277574062}},\"14424c\":{\"lock\":false,\"pos\":{\"x\":49.2784881591797,\"y\":1.30699694156647,\"z\":-47.4087867736816},\"rot\":{\"x\":0.0208088047802448,\"y\":269.998962402344,\"z\":0.016770688816905}},\"14dcc4\":{\"lock\":false,\"pos\":{\"x\":49.278491973877,\"y\":1.30430400371552,\"z\":-56.6087875366211},\"rot\":{\"x\":0.0208089929074049,\"y\":269.998718261719,\"z\":0.0167707018554211}},\"15fa11\":{\"lock\":false,\"pos\":{\"x\":40.2900505065918,\"y\":1.30036306381226,\"z\":-58.9200057983398},\"rot\":{\"x\":0.0208085179328918,\"y\":269.999755859375,\"z\":0.0167710650712252}},\"17f807\":{\"lock\":false,\"pos\":{\"x\":40.2899856567383,\"y\":1.30103969573975,\"z\":-56.6086387634277},\"rot\":{\"x\":0.0208087880164385,\"y\":269.999176025391,\"z\":0.0167709849774837}},\"187591\":{\"lock\":false,\"pos\":{\"x\":52.9442024230957,\"y\":1.30159246921539,\"z\":-70.4202194213867},\"rot\":{\"x\":0.0208152439445257,\"y\":269.977325439453,\"z\":0.0167628694325686}},\"1c0bcd\":{\"lock\":false,\"pos\":{\"x\":36.6243591308594,\"y\":1.29095637798309,\"z\":-86.5082778930664},\"rot\":{\"x\":0.0208126250654459,\"y\":269.986145019531,\"z\":0.0167661271989346}},\"1e7f9a\":{\"lock\":false,\"pos\":{\"x\":40.2900466918945,\"y\":1.29834342002869,\"z\":-65.8198699951172},\"rot\":{\"x\":0.0208086725324392,\"y\":269.999542236328,\"z\":0.0167711973190308}},\"1fc1f4\":{\"lock\":false,\"pos\":{\"x\":40.2742652893066,\"y\":1.29160833358765,\"z\":-88.8093566894531},\"rot\":{\"x\":0.0208158846944571,\"y\":269.974670410156,\"z\":0.0167619213461876}},\"218e04\":{\"lock\":false,\"pos\":{\"x\":40.2900657653809,\"y\":1.30170965194702,\"z\":-54.3199005126953},\"rot\":{\"x\":0.0208080187439919,\"y\":270.001770019531,\"z\":0.016771761700511}},\"22256f\":{\"lock\":false,\"pos\":{\"x\":36.6243591308594,\"y\":1.29836201667786,\"z\":-61.2084312438965},\"rot\":{\"x\":0.0208036061376333,\"y\":270.016235351563,\"z\":0.016777154058218}},\"2723c2\":{\"lock\":false,\"pos\":{\"x\":36.624340057373,\"y\":1.29701554775238,\"z\":-65.8083038330078},\"rot\":{\"x\":0.0208085011690855,\"y\":269.999938964844,\"z\":0.0167711246758699}},\"28289a\":{\"lock\":false,\"pos\":{\"x\":36.6082916259766,\"y\":1.28960514068604,\"z\":-91.1042556762695},\"rot\":{\"x\":0.0208084583282471,\"y\":269.999847412109,\"z\":0.0167710706591606}},\"2901ee\":{\"lock\":false,\"pos\":{\"x\":40.2900466918945,\"y\":1.29497730731964,\"z\":-77.3199005126953},\"rot\":{\"x\":0.0208084136247635,\"y\":270.000091552734,\"z\":0.0167714487761259}},\"2b76c6\":{\"lock\":false,\"pos\":{\"x\":52.9442024230957,\"y\":1.29889953136444,\"z\":-79.6202545166016},\"rot\":{\"x\":0.0208091381937265,\"y\":269.997863769531,\"z\":0.0167703293263912}},\"2badf6\":{\"lock\":false,\"pos\":{\"x\":49.2785148620605,\"y\":1.30093789100647,\"z\":-68.1086349487305},\"rot\":{\"x\":0.0208088122308254,\"y\":269.998748779297,\"z\":0.0167707651853561}},\"2d2246\":{\"lock\":false,\"pos\":{\"x\":40.2900505065918,\"y\":1.29632365703583,\"z\":-72.719970703125},\"rot\":{\"x\":0.0208097081631422,\"y\":269.996643066406,\"z\":0.0167700089514256}},\"2d94ed\":{\"lock\":false,\"pos\":{\"x\":40.2900581359863,\"y\":1.30103635787964,\"z\":-56.6199951171875},\"rot\":{\"x\":0.020807933062315,\"y\":270.001678466797,\"z\":0.0167717356234789}},\"32b458\":{\"lock\":false,\"pos\":{\"x\":40.2900505065918,\"y\":1.30372929573059,\"z\":-47.4200057983398},\"rot\":{\"x\":0.0208087787032127,\"y\":269.999206542969,\"z\":0.0167710185050964}},\"33455f\":{\"lock\":false,\"pos\":{\"x\":49.2784957885742,\"y\":1.30363070964813,\"z\":-58.9087867736816},\"rot\":{\"x\":0.020806385204196,\"y\":270.007507324219,\"z\":0.0167737938463688}},\"33fb3a\":{\"lock\":false,\"pos\":{\"x\":52.9441947937012,\"y\":1.30091917514801,\"z\":-72.720344543457},\"rot\":{\"x\":0.0208096783608198,\"y\":269.997863769531,\"z\":0.0167707931250334}},\"36ffa9\":{\"lock\":false,\"pos\":{\"x\":52.944206237793,\"y\":1.30832493305206,\"z\":-47.420352935791},\"rot\":{\"x\":0.0208149887621403,\"y\":269.977416992188,\"z\":0.0167629793286324}},\"390a86\":{\"lock\":false,\"pos\":{\"x\":49.2784881591797,\"y\":1.30565047264099,\"z\":-52.0087776184082},\"rot\":{\"x\":0.0208108201622963,\"y\":269.992736816406,\"z\":0.0167682971805334}},\"3a622d\":{\"lock\":false,\"pos\":{\"x\":36.6243591308594,\"y\":1.29297602176666,\"z\":-79.608268737793},\"rot\":{\"x\":0.0208087656646967,\"y\":269.999145507813,\"z\":0.016770925372839}},\"3a726b\":{\"lock\":false,\"pos\":{\"x\":52.9442100524902,\"y\":1.30226576328278,\"z\":-68.1202011108398},\"rot\":{\"x\":0.0208085160702467,\"y\":269.999877929688,\"z\":0.0167711824178696}},\"3accaf\":{\"lock\":false,\"pos\":{\"x\":49.2785148620605,\"y\":1.30228424072266,\"z\":-63.5087776184082},\"rot\":{\"x\":0.0208090618252754,\"y\":269.998687744141,\"z\":0.0167707372456789}},\"3b042e\":{\"lock\":false,\"pos\":{\"x\":36.6243591308594,\"y\":1.29230272769928,\"z\":-81.9084930419922},\"rot\":{\"x\":0.0208085924386978,\"y\":269.999267578125,\"z\":0.0167709589004517}},\"3df5fb\":{\"lock\":false,\"pos\":{\"x\":52.9442176818848,\"y\":1.3063051700592,\"z\":-54.3203392028809},\"rot\":{\"x\":0.0208087060600519,\"y\":270,\"z\":0.0167710427194834}},\"415ca2\":{\"lock\":false,\"pos\":{\"x\":52.9441146850586,\"y\":1.29755306243896,\"z\":-84.2202453613281},\"rot\":{\"x\":0.0208089090883732,\"y\":269.998962402344,\"z\":0.016770962625742}},\"43b3a5\":{\"lock\":false,\"pos\":{\"x\":49.278491973877,\"y\":1.30161106586456,\"z\":-65.8086547851563},\"rot\":{\"x\":0.0208033956587315,\"y\":270.020324707031,\"z\":0.0167789477854967}},\"467460\":{\"lock\":false,\"pos\":{\"x\":52.9189834594727,\"y\":1.29620051383972,\"z\":-88.809700012207},\"rot\":{\"x\":0.0208094883710146,\"y\":269.997192382813,\"z\":0.016770800575614}},\"491c09\":{\"lock\":false,\"pos\":{\"x\":52.9478187561035,\"y\":1.30091607570648,\"z\":-72.7354354858398},\"rot\":{\"x\":0.0208511259406805,\"y\":269.853637695313,\"z\":0.0167180430144072}},\"537351\":{\"lock\":false,\"pos\":{\"x\":49.278491973877,\"y\":1.30565047264099,\"z\":-52.0087738037109},\"rot\":{\"x\":0.0208089724183083,\"y\":269.998687744141,\"z\":0.0167708694934845}},\"54293e\":{\"lock\":false,\"pos\":{\"x\":36.6243324279785,\"y\":1.3017281293869,\"z\":-49.7084617614746},\"rot\":{\"x\":0.0208090450614691,\"y\":269.998657226563,\"z\":0.0167706180363894}},\"5659d1\":{\"lock\":false,\"pos\":{\"x\":36.6243591308594,\"y\":1.29432249069214,\"z\":-75.0083999633789},\"rot\":{\"x\":0.0208085123449564,\"y\":269.999938964844,\"z\":0.0167711097747087}},\"5761c7\":{\"lock\":false,\"pos\":{\"x\":52.9442100524902,\"y\":1.30563187599182,\"z\":-56.6203498840332},\"rot\":{\"x\":0.0208152960985899,\"y\":269.977386474609,\"z\":0.0167630948126316}},\"596620\":{\"lock\":false,\"pos\":{\"x\":52.944206237793,\"y\":1.30495870113373,\"z\":-58.920352935791},\"rot\":{\"x\":0.0208151545375586,\"y\":269.977416992188,\"z\":0.0167628787457943}},\"59bdfb\":{\"lock\":false,\"pos\":{\"x\":49.278491973877,\"y\":1.30430400371552,\"z\":-56.6087875366211},\"rot\":{\"x\":0.0208091381937265,\"y\":269.998748779297,\"z\":0.0167705006897449}},\"5a4bb5\":{\"lock\":false,\"pos\":{\"x\":49.2785148620605,\"y\":1.30026459693909,\"z\":-70.4086380004883},\"rot\":{\"x\":0.0208087284117937,\"y\":269.999664306641,\"z\":0.0167710278183222}},\"5a7137\":{\"lock\":false,\"pos\":{\"x\":40.2900505065918,\"y\":1.3030561208725,\"z\":-49.7199935913086},\"rot\":{\"x\":0.0208086986094713,\"y\":269.999206542969,\"z\":0.0167708713561296}},\"5cfb72\":{\"lock\":false,\"pos\":{\"x\":36.6243362426758,\"y\":1.30105495452881,\"z\":-52.0084266662598},\"rot\":{\"x\":0.0208037793636322,\"y\":270.016296386719,\"z\":0.0167770236730576}},\"5efc92\":{\"lock\":false,\"pos\":{\"x\":52.944206237793,\"y\":1.30765163898468,\"z\":-49.7203407287598},\"rot\":{\"x\":0.0208150744438171,\"y\":269.977416992188,\"z\":0.0167629327625036}},\"62392c\":{\"lock\":false,\"pos\":{\"x\":40.2900428771973,\"y\":1.29565036296844,\"z\":-75.0199966430664},\"rot\":{\"x\":0.0208088643848896,\"y\":269.999328613281,\"z\":0.0167711060494184}},\"639a09\":{\"lock\":false,\"pos\":{\"x\":32.9853096008301,\"y\":1.30107951164246,\"z\":-47.4095458984375},\"rot\":{\"x\":0.0208125300705433,\"y\":269.986206054688,\"z\":0.0167661923915148}},\"650903\":{\"lock\":false,\"pos\":{\"x\":40.2741050720215,\"y\":1.29093313217163,\"z\":-91.1157989501953},\"rot\":{\"x\":0.0208037104457617,\"y\":270.016296386719,\"z\":0.0167771261185408}},\"661c3f\":{\"lock\":false,\"pos\":{\"x\":49.2785148620605,\"y\":1.2995913028717,\"z\":-72.7087249755859},\"rot\":{\"x\":0.0208090022206306,\"y\":269.998962402344,\"z\":0.0167707856744528}},\"66c93b\":{\"lock\":false,\"pos\":{\"x\":36.624340057373,\"y\":1.2956690788269,\"z\":-70.4083099365234},\"rot\":{\"x\":0.0208067763596773,\"y\":270.007507324219,\"z\":0.0167743489146233}},\"6b130d\":{\"lock\":false,\"pos\":{\"x\":52.9442100524902,\"y\":1.3063051700592,\"z\":-54.3203468322754},\"rot\":{\"x\":0.0208151154220104,\"y\":269.977416992188,\"z\":0.0167628526687622}},\"6c6340\":{\"lock\":false,\"pos\":{\"x\":36.6243591308594,\"y\":1.2956690788269,\"z\":-70.4082870483398},\"rot\":{\"x\":0.0208088494837284,\"y\":269.998992919922,\"z\":0.0167707297950983}},\"7ab680\":{\"lock\":false,\"pos\":{\"x\":32.9853057861328,\"y\":1.30040621757507,\"z\":-49.709545135498},\"rot\":{\"x\":0.0208125896751881,\"y\":269.986389160156,\"z\":0.0167660806328058}},\"7dc42a\":{\"lock\":false,\"pos\":{\"x\":40.2920837402344,\"y\":1.29363131523132,\"z\":-81.9201202392578},\"rot\":{\"x\":0.0208003539592028,\"y\":270.027648925781,\"z\":0.0167811661958694}},\"80d5e3\":{\"lock\":false,\"pos\":{\"x\":36.6243362426758,\"y\":1.30038166046143,\"z\":-54.3084373474121},\"rot\":{\"x\":0.0208037085831165,\"y\":270.016387939453,\"z\":0.0167771726846695}},\"80fafa\":{\"lock\":false,\"pos\":{\"x\":58.0996551513672,\"y\":1.31018245220184,\"z\":-47.4709815979004},\"rot\":{\"x\":0.0208082888275385,\"y\":270.001251220703,\"z\":0.0167716182768345}},\"85fe46\":{\"lock\":false,\"pos\":{\"x\":49.2785148620605,\"y\":1.30161118507385,\"z\":-65.8086318969727},\"rot\":{\"x\":0.0208088494837284,\"y\":269.998779296875,\"z\":0.0167707279324532}},\"87226d\":{\"lock\":false,\"pos\":{\"x\":40.2900466918945,\"y\":1.29430389404297,\"z\":-79.6199035644531},\"rot\":{\"x\":0.0208087600767612,\"y\":269.998931884766,\"z\":0.01677081361413}},\"88d2ba\":{\"lock\":false,\"pos\":{\"x\":52.9441986083984,\"y\":1.30361223220825,\"z\":-63.5203590393066},\"rot\":{\"x\":0.0208151768893003,\"y\":269.977447509766,\"z\":0.0167629364877939}},\"88fdeb\":{\"lock\":false,\"pos\":{\"x\":40.2900505065918,\"y\":1.30238282680511,\"z\":-52.0199966430664},\"rot\":{\"x\":0.0208088643848896,\"y\":269.999206542969,\"z\":0.0167710669338703}},\"8f5533\":{\"lock\":false,\"pos\":{\"x\":58.0996551513672,\"y\":1.30883586406708,\"z\":-52.070972442627},\"rot\":{\"x\":0.0208085123449564,\"y\":270.000335693359,\"z\":0.0167713910341263}},\"8ffa44\":{\"lock\":false,\"pos\":{\"x\":49.2785148620605,\"y\":1.29891812801361,\"z\":-75.0087509155273},\"rot\":{\"x\":0.0208089128136635,\"y\":269.998657226563,\"z\":0.0167704522609711}},\"9164a5\":{\"lock\":false,\"pos\":{\"x\":55.4925498962402,\"y\":1.51360321044922,\"z\":-40.1462669372559},\"rot\":{\"x\":3.51952949131373E-05,\"y\":270.000030517578,\"z\":-8.71363226906396E-05}},\"92436b\":{\"lock\":false,\"pos\":{\"x\":52.9441833496094,\"y\":1.29957211017609,\"z\":-77.322395324707},\"rot\":{\"x\":0.0208977125585079,\"y\":269.693969726563,\"z\":0.0166598316282034}},\"92c295\":{\"lock\":false,\"pos\":{\"x\":52.9441947937012,\"y\":1.30226576328278,\"z\":-68.1202239990234},\"rot\":{\"x\":0.0208084918558598,\"y\":269.999969482422,\"z\":0.016771025955677}},\"93381d\":{\"lock\":false,\"pos\":{\"x\":52.9442443847656,\"y\":1.29687976837158,\"z\":-86.520263671875},\"rot\":{\"x\":0.0208092834800482,\"y\":269.997619628906,\"z\":0.0167703330516815}},\"9509e3\":{\"lock\":false,\"pos\":{\"x\":40.2900505065918,\"y\":1.29699695110321,\"z\":-70.4197616577148},\"rot\":{\"x\":0.0208084024488926,\"y\":270.000335693359,\"z\":0.016771512106061}},\"9e7f6a\":{\"lock\":false,\"pos\":{\"x\":52.9442024230957,\"y\":1.30428552627563,\"z\":-61.2203521728516},\"rot\":{\"x\":0.0208083875477314,\"y\":270,\"z\":0.0167710985988379}},\"9fa87b\":{\"lock\":false,\"pos\":{\"x\":36.624340057373,\"y\":1.29903519153595,\"z\":-58.9084396362305},\"rot\":{\"x\":0.0208085048943758,\"y\":269.999969482422,\"z\":0.0167710166424513}},\"a0e05d\":{\"lock\":false,\"pos\":{\"x\":52.9441986083984,\"y\":1.30428540706635,\"z\":-61.2203559875488},\"rot\":{\"x\":0.0208150893449783,\"y\":269.977416992188,\"z\":0.0167628861963749}},\"a18819\":{\"lock\":false,\"pos\":{\"x\":40.2900505065918,\"y\":1.29699695110321,\"z\":-70.4198532104492},\"rot\":{\"x\":0.0208080224692822,\"y\":270,\"z\":0.0167708825320005}},\"a26425\":{\"lock\":false,\"pos\":{\"x\":36.6243591308594,\"y\":1.29768872261047,\"z\":-63.5084342956543},\"rot\":{\"x\":0.0208037234842777,\"y\":270.016235351563,\"z\":0.0167769882827997}},\"a27955\":{\"lock\":false,\"pos\":{\"x\":36.6243324279785,\"y\":1.30240142345428,\"z\":-47.4084358215332},\"rot\":{\"x\":0.0208084955811501,\"y\":270,\"z\":0.0167712848633528}},\"ab51ce\":{\"lock\":false,\"pos\":{\"x\":36.6243591308594,\"y\":1.29364931583405,\"z\":-77.3083114624023},\"rot\":{\"x\":0.0208087861537933,\"y\":269.998901367188,\"z\":0.0167708154767752}},\"ab620e\":{\"lock\":false,\"pos\":{\"x\":52.944206237793,\"y\":1.3069783449173,\"z\":-52.0203437805176},\"rot\":{\"x\":0.0208151172846556,\"y\":269.977416992188,\"z\":0.0167629532516003}},\"afef79\":{\"lock\":false,\"pos\":{\"x\":36.6243591308594,\"y\":1.29499578475952,\"z\":-72.7083740234375},\"rot\":{\"x\":0.0208088904619217,\"y\":269.998992919922,\"z\":0.0167706999927759}},\"b39b78\":{\"lock\":false,\"pos\":{\"x\":36.6243362426758,\"y\":1.29970848560333,\"z\":-56.6084403991699},\"rot\":{\"x\":0.0208087563514709,\"y\":269.998901367188,\"z\":0.016770837828517}},\"b7c4cb\":{\"lock\":false,\"pos\":{\"x\":52.9441986083984,\"y\":1.30737829208374,\"z\":-54.3203010559082},\"rot\":{\"x\":0.0208084303885698,\"y\":270.000091552734,\"z\":0.016771150752902}},\"bdffae\":{\"lock\":false,\"pos\":{\"x\":40.2900428771973,\"y\":1.29901659488678,\"z\":-63.5200119018555},\"rot\":{\"x\":0.0208087898790836,\"y\":269.999633789063,\"z\":0.0167709402740002}},\"c1d796\":{\"lock\":false,\"pos\":{\"x\":40.2900848388672,\"y\":1.2922842502594,\"z\":-86.5199127197266},\"rot\":{\"x\":0.0208086837083101,\"y\":269.999725341797,\"z\":0.0167710073292255}},\"c4018c\":{\"lock\":false,\"pos\":{\"x\":52.9462394714355,\"y\":1.2982269525528,\"z\":-81.9204711914063},\"rot\":{\"x\":0.0208091754466295,\"y\":269.997650146484,\"z\":0.0167702585458755}},\"c5aa89\":{\"lock\":false,\"pos\":{\"x\":52.9284706115723,\"y\":1.29687416553497,\"z\":-86.5200881958008},\"rot\":{\"x\":0.0208092648535967,\"y\":269.99755859375,\"z\":0.0167701691389084}},\"cdb540\":{\"lock\":false,\"pos\":{\"x\":40.2899551391602,\"y\":1.29295742511749,\"z\":-84.2199020385742},\"rot\":{\"x\":0.0208042934536934,\"y\":270.016510009766,\"z\":0.0167777873575687}},\"d93397\":{\"lock\":false,\"pos\":{\"x\":49.278491973877,\"y\":1.30632376670837,\"z\":-49.7088088989258},\"rot\":{\"x\":0.02080930583179,\"y\":269.997375488281,\"z\":0.0167700331658125}},\"ddc9f8\":{\"lock\":false,\"pos\":{\"x\":40.2741050720215,\"y\":1.29093313217163,\"z\":-91.1158065795898},\"rot\":{\"x\":0.0208043809980154,\"y\":270.016479492188,\"z\":0.0167777389287949}},\"dddd59\":{\"lock\":false,\"pos\":{\"x\":44.2289009094238,\"y\":1.30152595043182,\"z\":-63.5009002685547},\"rot\":{\"x\":0.0208084173500538,\"y\":270,\"z\":0.016771262511611}},\"de2d0a\":{\"lock\":false,\"pos\":{\"x\":58.0996551513672,\"y\":1.30950915813446,\"z\":-49.7709693908691},\"rot\":{\"x\":0.0208082906901836,\"y\":270.001678466797,\"z\":0.0167713053524494}},\"e1748c\":{\"lock\":false,\"pos\":{\"x\":36.6243324279785,\"y\":1.29903519153595,\"z\":-58.908447265625},\"rot\":{\"x\":0.0208088457584381,\"y\":269.998962402344,\"z\":0.0167707521468401}},\"e1ef43\":{\"lock\":false,\"pos\":{\"x\":40.2900428771973,\"y\":1.29968988895416,\"z\":-61.2200088500977},\"rot\":{\"x\":0.0208087302744389,\"y\":269.999664306641,\"z\":0.0167709514498711}},\"e3ae5c\":{\"lock\":false,\"pos\":{\"x\":52.9284248352051,\"y\":1.29620385169983,\"z\":-88.8097076416016},\"rot\":{\"x\":0.0208093635737896,\"y\":269.997375488281,\"z\":0.0167704038321972}},\"e40802\":{\"lock\":false,\"pos\":{\"x\":49.2784957885742,\"y\":1.30295753479004,\"z\":-61.2087898254395},\"rot\":{\"x\":0.0208084415644407,\"y\":270,\"z\":0.0167710781097412}},\"e55fe0\":{\"lock\":false,\"pos\":{\"x\":52.9441986083984,\"y\":1.29889953136444,\"z\":-79.6202621459961},\"rot\":{\"x\":0.0208096522837877,\"y\":269.997619628906,\"z\":0.0167706999927759}},\"e56d1d\":{\"lock\":false,\"pos\":{\"x\":40.2900466918945,\"y\":1.29767024517059,\"z\":-68.119873046875},\"rot\":{\"x\":0.0208086743950844,\"y\":269.999420166016,\"z\":0.0167709589004517}},\"f54b74\":{\"lock\":false,\"pos\":{\"x\":36.6243591308594,\"y\":1.29162955284119,\"z\":-84.2082748413086},\"rot\":{\"x\":0.0208125505596399,\"y\":269.986267089844,\"z\":0.0167660992592573}}}}",
"XmlUI": ""
},
{
"GUID": "7b7648",
"Name": "Custom_Model",
"Transform": {
"posX": 66.29916,
"posY": 1.41314912,
"posZ": -69.35669,
"rotX": 0.02080523,
"rotY": 270.018524,
"rotZ": 0.0167769883,
"scaleX": 1.2,
"scaleY": 1.2,
"scaleZ": 1.2
},
"Nickname": "Seeker",
"Description": "Upgrades",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": true,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomMesh": {
"MeshURL": "https://pastebin.com/raw/ALrYhQGb",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/952965722516265983/F50A6212D30C442429ED22B8CC8FD24D4CB76A2A/",
"NormalURL": "",
"ColliderURL": "",
"Convex": true,
"MaterialIndex": 3,
"TypeIndex": 0,
"CustomShader": {
"SpecularColor": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"SpecularIntensity": 0.0,
"SpecularSharpness": 2.0,
"FresnelStrength": 0.0
},
"CastShadows": true
},
"LuaScript": "-- Class card bag implementation. Mimics the behavior of the previous SCED\r\n-- card memory bags, but spawns cards from the All Cards Bag instead.\r\n--\r\n-- The All Cards Bag handles indexing of the player cards by class and level, as\r\n-- well as sorting those lists. See that object for more information.\r\n\r\nlocal allCardsBagGuid = \"15bb07\"\r\n\r\n-- Lines which define the card layout area. The X threshold is shared, basic\r\n-- cards have Z > 47 while upgrades have Z < -46\r\n-- Note that the SCED table is rotated, making X the vertical (up the table)\r\n-- axis and Z the side-to-side axis\r\nlocal CARD_AREA_X_THRESHOLD = 22\r\nlocal CARD_AREA_BASIC_Z_THRESHOLD = 47\r\nlocal CARD_AREA_UPGRADED_Z_THRESHOLD = -46\r\n\r\nlocal skillCount = 0\r\nlocal eventCount = 0\r\nlocal assetCount = 0\r\n\r\n-- Coordinates to begin laying out cards to match the reserved areas of the\r\n-- table. Cards will lay out horizontally, then create additional rows\r\nlocal startPositions = {\r\n upgrades = {\r\n skill = Vector(58.09966, 1.36, -47.42),\r\n event = Vector(52.94421, 1.36, -47.42),\r\n asset = Vector(40.29005, 1.36, -47.42),\r\n },\r\n level0 = {\r\n skill = Vector(58.38383, 1.36, 92.39036),\r\n event = Vector(53.22857, 1.36, 92.44123),\r\n asset = Vector(40.9602, 1.36, 92.44869),\r\n },\r\n}\r\n\r\n-- Amount to shift for the next card (zShift) or next row of cards (xShift)\r\n-- Note that the table rotation is weird, and the X axis is vertical while the\r\n-- Z axis is horizontal\r\nlocal zShift = -2.29998\r\nlocal xShift = -3.66572\r\nlocal yRotation = 270\r\nlocal cardsPerRow = 20\r\n\r\n-- Tracks cards which are placed by this \"bag\" so they can be recalled\r\nlocal placedCardGuids = { }\r\nlocal placedCardsCount = 0\r\n\r\n-- In order to mimic the behavior of the previous memory buttons we use a\r\n-- a temporary bag when recalling objects. This bag is tiny and transparent,\r\n-- and will be placed at the same location as this object. Once all placed\r\n-- cards are recalled bag to this bag, it will be destroyed\r\nlocal recallBag = {\r\n Name = \"Bag\",\r\n Transform = {\r\n scaleX = 0.01,\r\n scaleY = 0.01,\r\n scaleZ = 0.01,\r\n },\r\n ColorDiffuse = {\r\n r = 0,\r\n g = 0,\r\n b = 0,\r\n a = 0,\r\n },\r\n Locked = true,\r\n Grid = true,\r\n Snap = false,\r\n Tooltip = false,\r\n}\r\n\r\nfunction onLoad(savedData)\r\n createPlaceRecallButtons()\r\n placedCardGuids = { }\r\n placedCardCount = 0\r\n if (savedData ~= nil) then\r\n local saveState = JSON.decode(savedData)\r\n if (saveState.placedCards ~= nil) then\r\n placedCardGuids = saveState.placedCards\r\n end\r\n end\r\nend\r\n\r\nfunction onSave()\r\n local saveState = {\r\n placedCards = placedCardGuids,\r\n }\r\n\r\n return JSON.encode(saveState)\r\nend\r\n\r\n--Creates recall and place buttons\r\nfunction createPlaceRecallButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={1,0.1,2.1}, rotation={0,0,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={-1,0.1,2.1}, rotation={0,0,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n-- Spawns the set of cards identified by this objects Name (which should hold\r\n-- the class) and description (whether to spawn basic cards or upgraded)\r\nfunction buttonClick_place()\r\n -- Cards already on the table, don't spawn more\r\n if (placedCardCount > 0) then\r\n return\r\n end\r\n local cardClass = self.getName()\r\n local isUpgraded = false\r\n if (self.getDescription() == \"Upgrades\") then\r\n isUpgraded = true\r\n end\r\n skillCount = 0\r\n eventCount = 0\r\n assetCount = 0\r\n local allCardsBag = getObjectFromGUID(allCardsBagGuid)\r\n local cardList = allCardsBag.call(\"getCardsByClassAndLevel\", {class = cardClass, upgraded = isUpgraded})\r\n placeCards(cardList)\r\nend\r\n\r\n-- Spawn all cards from the returned index\r\nfunction placeCards(cardIdList)\r\n local allCardsBag = getObjectFromGUID(allCardsBagGuid)\r\n local indexReady = allCardsBag.call(\"isIndexReady\")\r\n if (not indexReady) then\r\n broadcastToAll(\"Still loading player cards, please try again in a few seconds\", {0.9, 0.2, 0.2})\r\n return\r\n end\r\n\r\n for _, cardId in ipairs(cardIdList) do\r\n local card = allCardsBag.call(\"getCardById\", { id = cardId })\r\n placeCard(card.data, card.metadata)\r\n end\r\nend\r\n\r\nfunction placeCard(cardData, cardMetadata)\r\n local destinationPos\r\n if (cardMetadata.type == \"Skill\") then\r\n destinationPos = getSkillPosition(cardMetadata.level > 0)\r\n elseif (cardMetadata.type == \"Event\") then\r\n destinationPos = getEventPosition(cardMetadata.level > 0)\r\n elseif (cardMetadata.type == \"Asset\") then\r\n destinationPos = getAssetPosition(cardMetadata.level > 0)\r\n end\r\n -- Clear the GUID from the card's data so it will get a new GUID on spawn.\r\n -- This solves the issue of duplicate GUIDs being spawned and causing problems\r\n -- with recall\r\n cardData.GUID = nil\r\n local spawnedCard = spawnObjectData({\r\n data = cardData,\r\n position = destinationPos,\r\n rotation = {0, yRotation, 0},\r\n callback_function = recordPlacedCard})\r\nend\r\n\r\n-- Returns the table position where the next skill should be placed\r\n-- Param isUpgraded: True if it's an upgraded card (right side of the table),\r\n-- false for a Level 0 card (left side of table)\r\nfunction getSkillPosition(isUpgraded)\r\n local skillPos\r\n if (isUpgraded) then\r\n skillPos = startPositions.upgrades.skill:copy()\r\n else\r\n skillPos = startPositions.level0.skill:copy()\r\n end\r\n local shift = Vector(div(skillCount, cardsPerRow) * xShift, 0, (skillCount % cardsPerRow) * zShift)\r\n skillPos:add(shift)\r\n skillCount = skillCount + 1\r\n\r\n return skillPos\r\nend\r\n\r\n-- Returns the table position where the next event should be placed\r\n-- Param isUpgraded: True if it's an upgraded card (right side of the table),\r\n-- false for a Level 0 card (left side of table)\r\nfunction getEventPosition(isUpgraded)\r\n local eventPos\r\n if (isUpgraded) then\r\n eventPos = startPositions.upgrades.event:copy()\r\n else\r\n eventPos = startPositions.level0.event:copy()\r\n end\r\n local shift = Vector(div(eventCount, cardsPerRow) * xShift, 0, (eventCount % cardsPerRow) * zShift)\r\n eventPos:add(shift)\r\n eventCount = eventCount + 1\r\n\r\n return eventPos\r\nend\r\n\r\n-- Returns the table position where the next asset should be placed\r\n-- Param isUpgraded: True if it's an upgraded card (right side of the table),\r\n-- false for a Level 0 card (left side of table)\r\nfunction getAssetPosition(isUpgraded)\r\n local assetPos\r\n if (isUpgraded) then\r\n assetPos = startPositions.upgrades.asset:copy()\r\n else\r\n assetPos = startPositions.level0.asset:copy()\r\n end\r\n local shift = Vector(div(assetCount, cardsPerRow) * xShift, 0, (assetCount % cardsPerRow) * zShift)\r\n assetPos:add(shift)\r\n assetCount = assetCount + 1\r\n\r\n return assetPos\r\nend\r\n\r\n-- Callback function which adds a spawned card to the tracking list\r\nfunction recordPlacedCard(spawnedCard)\r\n if (spawnedCard.getName() == \"Protecting the Anirniq (2)\") then\r\n log(\"Spawned PtA \"..spawnedCard.getGUID())\r\n end\r\n placedCardGuids[spawnedCard.getGUID()] = true\r\n placedCardCount = placedCardCount + 1\r\nend\r\n\r\n-- Recalls all spawned cards to the bag, and clears the placedCardGuids list\r\nfunction buttonClick_recall()\r\n local trash = spawnObjectData({data = recallBag, position = self.getPosition()})\r\n for cardGuid, _ in pairs(placedCardGuids) do\r\n local card = getObjectFromGUID(cardGuid)\r\n if (card ~= nil) then\r\n trash.putObject(card)\r\n placedCardGuids[cardGuid] = nil\r\n placedCardCount = placedCardCount - 1\r\n end\r\n end\r\n\r\n if (placedCardCount > 0) then\r\n -- Couldn't recall all the cards, check and pull them from decks\r\n local decksInArea = { }\r\n local allObjects = getAllObjects()\r\n for _, object in ipairs(allObjects) do\r\n if (object.name == \"Deck\" and isInArea(object)) then\r\n table.insert(decksInArea, object)\r\n end\r\n end\r\n for _, deck in ipairs(decksInArea) do\r\n local cardsInDeck = deck.getObjects()\r\n for i, card in ipairs(cardsInDeck) do\r\n if (placedCardGuids[card.guid]) then\r\n trash.putObject(deck.takeObject({ guid = card.guid }))\r\n break\r\n end\r\n end\r\n end\r\n end\r\n\r\n trash.destruct()\r\n -- We've recalled everything we can, some cards may have been moved out of the\r\n -- card area. Just reset at this point.\r\n placedCardGuids = { }\r\n placedCardCount = 0\r\nend\r\n\r\nfunction isInArea(object)\r\n if (object == nil) then\r\n return false\r\n end\r\n local position = object.getPosition()\r\n return position.x > CARD_AREA_X_THRESHOLD\r\n and (position.z > CARD_AREA_BASIC_Z_THRESHOLD\r\n or position.z < CARD_AREA_UPGRADED_Z_THRESHOLD)\r\nend\r\n\r\nfunction div(a,b)\r\n return (a - a % b) / b\r\nend",
"LuaScriptState": "{\"placedCards\":[]}",
"XmlUI": ""
},
{
"GUID": "449091",
"Name": "Custom_Model",
"Transform": {
"posX": 66.3143539,
"posY": 1.41156435,
"posZ": -74.78967,
"rotX": 0.0208052918,
"rotY": 270.018524,
"rotZ": 0.0167770945,
"scaleX": 1.2,
"scaleY": 1.2,
"scaleZ": 1.2
},
"Nickname": "Rogue",
"Description": "Upgrades",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": true,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomMesh": {
"MeshURL": "https://pastebin.com/raw/ALrYhQGb",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/952965722515898740/E92441671B056D4CDF99DF9E6C88BE6598AAB50F/",
"NormalURL": "",
"ColliderURL": "",
"Convex": true,
"MaterialIndex": 3,
"TypeIndex": 0,
"CustomShader": {
"SpecularColor": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"SpecularIntensity": 0.0,
"SpecularSharpness": 2.0,
"FresnelStrength": 0.0
},
"CastShadows": true
},
"LuaScript": "-- Class card bag implementation. Mimics the behavior of the previous SCED\r\n-- card memory bags, but spawns cards from the All Cards Bag instead.\r\n--\r\n-- The All Cards Bag handles indexing of the player cards by class and level, as\r\n-- well as sorting those lists. See that object for more information.\r\n\r\nlocal allCardsBagGuid = \"15bb07\"\r\n\r\n-- Lines which define the card layout area. The X threshold is shared, basic\r\n-- cards have Z > 47 while upgrades have Z < -46\r\n-- Note that the SCED table is rotated, making X the vertical (up the table)\r\n-- axis and Z the side-to-side axis\r\nlocal CARD_AREA_X_THRESHOLD = 22\r\nlocal CARD_AREA_BASIC_Z_THRESHOLD = 47\r\nlocal CARD_AREA_UPGRADED_Z_THRESHOLD = -46\r\n\r\nlocal skillCount = 0\r\nlocal eventCount = 0\r\nlocal assetCount = 0\r\n\r\n-- Coordinates to begin laying out cards to match the reserved areas of the\r\n-- table. Cards will lay out horizontally, then create additional rows\r\nlocal startPositions = {\r\n upgrades = {\r\n skill = Vector(58.09966, 1.36, -47.42),\r\n event = Vector(52.94421, 1.36, -47.42),\r\n asset = Vector(40.29005, 1.36, -47.42),\r\n },\r\n level0 = {\r\n skill = Vector(58.38383, 1.36, 92.39036),\r\n event = Vector(53.22857, 1.36, 92.44123),\r\n asset = Vector(40.9602, 1.36, 92.44869),\r\n },\r\n}\r\n\r\n-- Amount to shift for the next card (zShift) or next row of cards (xShift)\r\n-- Note that the table rotation is weird, and the X axis is vertical while the\r\n-- Z axis is horizontal\r\nlocal zShift = -2.29998\r\nlocal xShift = -3.66572\r\nlocal yRotation = 270\r\nlocal cardsPerRow = 20\r\n\r\n-- Tracks cards which are placed by this \"bag\" so they can be recalled\r\nlocal placedCardGuids = { }\r\nlocal placedCardsCount = 0\r\n\r\n-- In order to mimic the behavior of the previous memory buttons we use a\r\n-- a temporary bag when recalling objects. This bag is tiny and transparent,\r\n-- and will be placed at the same location as this object. Once all placed\r\n-- cards are recalled bag to this bag, it will be destroyed\r\nlocal recallBag = {\r\n Name = \"Bag\",\r\n Transform = {\r\n scaleX = 0.01,\r\n scaleY = 0.01,\r\n scaleZ = 0.01,\r\n },\r\n ColorDiffuse = {\r\n r = 0,\r\n g = 0,\r\n b = 0,\r\n a = 0,\r\n },\r\n Locked = true,\r\n Grid = true,\r\n Snap = false,\r\n Tooltip = false,\r\n}\r\n\r\nfunction onLoad(savedData)\r\n createPlaceRecallButtons()\r\n placedCardGuids = { }\r\n placedCardCount = 0\r\n if (savedData ~= nil) then\r\n local saveState = JSON.decode(savedData)\r\n if (saveState.placedCards ~= nil) then\r\n placedCardGuids = saveState.placedCards\r\n end\r\n end\r\nend\r\n\r\nfunction onSave()\r\n local saveState = {\r\n placedCards = placedCardGuids,\r\n }\r\n\r\n return JSON.encode(saveState)\r\nend\r\n\r\n--Creates recall and place buttons\r\nfunction createPlaceRecallButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={1,0.1,2.1}, rotation={0,0,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={-1,0.1,2.1}, rotation={0,0,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n-- Spawns the set of cards identified by this objects Name (which should hold\r\n-- the class) and description (whether to spawn basic cards or upgraded)\r\nfunction buttonClick_place()\r\n -- Cards already on the table, don't spawn more\r\n if (placedCardCount > 0) then\r\n return\r\n end\r\n local cardClass = self.getName()\r\n local isUpgraded = false\r\n if (self.getDescription() == \"Upgrades\") then\r\n isUpgraded = true\r\n end\r\n skillCount = 0\r\n eventCount = 0\r\n assetCount = 0\r\n local allCardsBag = getObjectFromGUID(allCardsBagGuid)\r\n local cardList = allCardsBag.call(\"getCardsByClassAndLevel\", {class = cardClass, upgraded = isUpgraded})\r\n placeCards(cardList)\r\nend\r\n\r\n-- Spawn all cards from the returned index\r\nfunction placeCards(cardIdList)\r\n local allCardsBag = getObjectFromGUID(allCardsBagGuid)\r\n local indexReady = allCardsBag.call(\"isIndexReady\")\r\n if (not indexReady) then\r\n broadcastToAll(\"Still loading player cards, please try again in a few seconds\", {0.9, 0.2, 0.2})\r\n return\r\n end\r\n\r\n for _, cardId in ipairs(cardIdList) do\r\n local card = allCardsBag.call(\"getCardById\", { id = cardId })\r\n placeCard(card.data, card.metadata)\r\n end\r\nend\r\n\r\nfunction placeCard(cardData, cardMetadata)\r\n local destinationPos\r\n if (cardMetadata.type == \"Skill\") then\r\n destinationPos = getSkillPosition(cardMetadata.level > 0)\r\n elseif (cardMetadata.type == \"Event\") then\r\n destinationPos = getEventPosition(cardMetadata.level > 0)\r\n elseif (cardMetadata.type == \"Asset\") then\r\n destinationPos = getAssetPosition(cardMetadata.level > 0)\r\n end\r\n -- Clear the GUID from the card's data so it will get a new GUID on spawn.\r\n -- This solves the issue of duplicate GUIDs being spawned and causing problems\r\n -- with recall\r\n cardData.GUID = nil\r\n local spawnedCard = spawnObjectData({\r\n data = cardData,\r\n position = destinationPos,\r\n rotation = {0, yRotation, 0},\r\n callback_function = recordPlacedCard})\r\nend\r\n\r\n-- Returns the table position where the next skill should be placed\r\n-- Param isUpgraded: True if it's an upgraded card (right side of the table),\r\n-- false for a Level 0 card (left side of table)\r\nfunction getSkillPosition(isUpgraded)\r\n local skillPos\r\n if (isUpgraded) then\r\n skillPos = startPositions.upgrades.skill:copy()\r\n else\r\n skillPos = startPositions.level0.skill:copy()\r\n end\r\n local shift = Vector(div(skillCount, cardsPerRow) * xShift, 0, (skillCount % cardsPerRow) * zShift)\r\n skillPos:add(shift)\r\n skillCount = skillCount + 1\r\n\r\n return skillPos\r\nend\r\n\r\n-- Returns the table position where the next event should be placed\r\n-- Param isUpgraded: True if it's an upgraded card (right side of the table),\r\n-- false for a Level 0 card (left side of table)\r\nfunction getEventPosition(isUpgraded)\r\n local eventPos\r\n if (isUpgraded) then\r\n eventPos = startPositions.upgrades.event:copy()\r\n else\r\n eventPos = startPositions.level0.event:copy()\r\n end\r\n local shift = Vector(div(eventCount, cardsPerRow) * xShift, 0, (eventCount % cardsPerRow) * zShift)\r\n eventPos:add(shift)\r\n eventCount = eventCount + 1\r\n\r\n return eventPos\r\nend\r\n\r\n-- Returns the table position where the next asset should be placed\r\n-- Param isUpgraded: True if it's an upgraded card (right side of the table),\r\n-- false for a Level 0 card (left side of table)\r\nfunction getAssetPosition(isUpgraded)\r\n local assetPos\r\n if (isUpgraded) then\r\n assetPos = startPositions.upgrades.asset:copy()\r\n else\r\n assetPos = startPositions.level0.asset:copy()\r\n end\r\n local shift = Vector(div(assetCount, cardsPerRow) * xShift, 0, (assetCount % cardsPerRow) * zShift)\r\n assetPos:add(shift)\r\n assetCount = assetCount + 1\r\n\r\n return assetPos\r\nend\r\n\r\n-- Callback function which adds a spawned card to the tracking list\r\nfunction recordPlacedCard(spawnedCard)\r\n if (spawnedCard.getName() == \"Protecting the Anirniq (2)\") then\r\n log(\"Spawned PtA \"..spawnedCard.getGUID())\r\n end\r\n placedCardGuids[spawnedCard.getGUID()] = true\r\n placedCardCount = placedCardCount + 1\r\nend\r\n\r\n-- Recalls all spawned cards to the bag, and clears the placedCardGuids list\r\nfunction buttonClick_recall()\r\n local trash = spawnObjectData({data = recallBag, position = self.getPosition()})\r\n for cardGuid, _ in pairs(placedCardGuids) do\r\n local card = getObjectFromGUID(cardGuid)\r\n if (card ~= nil) then\r\n trash.putObject(card)\r\n placedCardGuids[cardGuid] = nil\r\n placedCardCount = placedCardCount - 1\r\n end\r\n end\r\n\r\n if (placedCardCount > 0) then\r\n -- Couldn't recall all the cards, check and pull them from decks\r\n local decksInArea = { }\r\n local allObjects = getAllObjects()\r\n for _, object in ipairs(allObjects) do\r\n if (object.name == \"Deck\" and isInArea(object)) then\r\n table.insert(decksInArea, object)\r\n end\r\n end\r\n for _, deck in ipairs(decksInArea) do\r\n local cardsInDeck = deck.getObjects()\r\n for i, card in ipairs(cardsInDeck) do\r\n if (placedCardGuids[card.guid]) then\r\n trash.putObject(deck.takeObject({ guid = card.guid }))\r\n break\r\n end\r\n end\r\n end\r\n end\r\n\r\n trash.destruct()\r\n -- We've recalled everything we can, some cards may have been moved out of the\r\n -- card area. Just reset at this point.\r\n placedCardGuids = { }\r\n placedCardCount = 0\r\nend\r\n\r\nfunction isInArea(object)\r\n if (object == nil) then\r\n return false\r\n end\r\n local position = object.getPosition()\r\n return position.x > CARD_AREA_X_THRESHOLD\r\n and (position.z > CARD_AREA_BASIC_Z_THRESHOLD\r\n or position.z < CARD_AREA_UPGRADED_Z_THRESHOLD)\r\nend\r\n\r\nfunction div(a,b)\r\n return (a - a % b) / b\r\nend",
"LuaScriptState": "{\"placedCards\":[]}",
"XmlUI": ""
},
{
"GUID": "8109fb",
"Name": "Custom_Model",
"Transform": {
"posX": 66.299614,
"posY": 1.40997982,
"posZ": -80.18446,
"rotX": 0.0208052043,
"rotY": 270.018524,
"rotZ": 0.01677701,
"scaleX": 1.2,
"scaleY": 1.2,
"scaleZ": 1.2
},
"Nickname": "Mystic",
"Description": "Upgrades",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": true,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomMesh": {
"MeshURL": "https://pastebin.com/raw/ALrYhQGb",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/952965722516557267/757887224F6C37104CDFFE241FAD09B57117D670/",
"NormalURL": "",
"ColliderURL": "",
"Convex": true,
"MaterialIndex": 3,
"TypeIndex": 0,
"CustomShader": {
"SpecularColor": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"SpecularIntensity": 0.0,
"SpecularSharpness": 2.0,
"FresnelStrength": 0.0
},
"CastShadows": true
},
"LuaScript": "-- Class card bag implementation. Mimics the behavior of the previous SCED\r\n-- card memory bags, but spawns cards from the All Cards Bag instead.\r\n--\r\n-- The All Cards Bag handles indexing of the player cards by class and level, as\r\n-- well as sorting those lists. See that object for more information.\r\n\r\nlocal allCardsBagGuid = \"15bb07\"\r\n\r\n-- Lines which define the card layout area. The X threshold is shared, basic\r\n-- cards have Z > 47 while upgrades have Z < -46\r\n-- Note that the SCED table is rotated, making X the vertical (up the table)\r\n-- axis and Z the side-to-side axis\r\nlocal CARD_AREA_X_THRESHOLD = 22\r\nlocal CARD_AREA_BASIC_Z_THRESHOLD = 47\r\nlocal CARD_AREA_UPGRADED_Z_THRESHOLD = -46\r\n\r\nlocal skillCount = 0\r\nlocal eventCount = 0\r\nlocal assetCount = 0\r\n\r\n-- Coordinates to begin laying out cards to match the reserved areas of the\r\n-- table. Cards will lay out horizontally, then create additional rows\r\nlocal startPositions = {\r\n upgrades = {\r\n skill = Vector(58.09966, 1.36, -47.42),\r\n event = Vector(52.94421, 1.36, -47.42),\r\n asset = Vector(40.29005, 1.36, -47.42),\r\n },\r\n level0 = {\r\n skill = Vector(58.38383, 1.36, 92.39036),\r\n event = Vector(53.22857, 1.36, 92.44123),\r\n asset = Vector(40.9602, 1.36, 92.44869),\r\n },\r\n}\r\n\r\n-- Amount to shift for the next card (zShift) or next row of cards (xShift)\r\n-- Note that the table rotation is weird, and the X axis is vertical while the\r\n-- Z axis is horizontal\r\nlocal zShift = -2.29998\r\nlocal xShift = -3.66572\r\nlocal yRotation = 270\r\nlocal cardsPerRow = 20\r\n\r\n-- Tracks cards which are placed by this \"bag\" so they can be recalled\r\nlocal placedCardGuids = { }\r\nlocal placedCardsCount = 0\r\n\r\n-- In order to mimic the behavior of the previous memory buttons we use a\r\n-- a temporary bag when recalling objects. This bag is tiny and transparent,\r\n-- and will be placed at the same location as this object. Once all placed\r\n-- cards are recalled bag to this bag, it will be destroyed\r\nlocal recallBag = {\r\n Name = \"Bag\",\r\n Transform = {\r\n scaleX = 0.01,\r\n scaleY = 0.01,\r\n scaleZ = 0.01,\r\n },\r\n ColorDiffuse = {\r\n r = 0,\r\n g = 0,\r\n b = 0,\r\n a = 0,\r\n },\r\n Locked = true,\r\n Grid = true,\r\n Snap = false,\r\n Tooltip = false,\r\n}\r\n\r\nfunction onLoad(savedData)\r\n createPlaceRecallButtons()\r\n placedCardGuids = { }\r\n placedCardCount = 0\r\n if (savedData ~= nil) then\r\n local saveState = JSON.decode(savedData)\r\n if (saveState.placedCards ~= nil) then\r\n placedCardGuids = saveState.placedCards\r\n end\r\n end\r\nend\r\n\r\nfunction onSave()\r\n local saveState = {\r\n placedCards = placedCardGuids,\r\n }\r\n\r\n return JSON.encode(saveState)\r\nend\r\n\r\n--Creates recall and place buttons\r\nfunction createPlaceRecallButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={1,0.1,2.1}, rotation={0,0,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={-1,0.1,2.1}, rotation={0,0,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n-- Spawns the set of cards identified by this objects Name (which should hold\r\n-- the class) and description (whether to spawn basic cards or upgraded)\r\nfunction buttonClick_place()\r\n -- Cards already on the table, don't spawn more\r\n if (placedCardCount > 0) then\r\n return\r\n end\r\n local cardClass = self.getName()\r\n local isUpgraded = false\r\n if (self.getDescription() == \"Upgrades\") then\r\n isUpgraded = true\r\n end\r\n skillCount = 0\r\n eventCount = 0\r\n assetCount = 0\r\n local allCardsBag = getObjectFromGUID(allCardsBagGuid)\r\n local cardList = allCardsBag.call(\"getCardsByClassAndLevel\", {class = cardClass, upgraded = isUpgraded})\r\n placeCards(cardList)\r\nend\r\n\r\n-- Spawn all cards from the returned index\r\nfunction placeCards(cardIdList)\r\n local allCardsBag = getObjectFromGUID(allCardsBagGuid)\r\n local indexReady = allCardsBag.call(\"isIndexReady\")\r\n if (not indexReady) then\r\n broadcastToAll(\"Still loading player cards, please try again in a few seconds\", {0.9, 0.2, 0.2})\r\n return\r\n end\r\n\r\n for _, cardId in ipairs(cardIdList) do\r\n local card = allCardsBag.call(\"getCardById\", { id = cardId })\r\n placeCard(card.data, card.metadata)\r\n end\r\nend\r\n\r\nfunction placeCard(cardData, cardMetadata)\r\n local destinationPos\r\n if (cardMetadata.type == \"Skill\") then\r\n destinationPos = getSkillPosition(cardMetadata.level > 0)\r\n elseif (cardMetadata.type == \"Event\") then\r\n destinationPos = getEventPosition(cardMetadata.level > 0)\r\n elseif (cardMetadata.type == \"Asset\") then\r\n destinationPos = getAssetPosition(cardMetadata.level > 0)\r\n end\r\n -- Clear the GUID from the card's data so it will get a new GUID on spawn.\r\n -- This solves the issue of duplicate GUIDs being spawned and causing problems\r\n -- with recall\r\n cardData.GUID = nil\r\n local spawnedCard = spawnObjectData({\r\n data = cardData,\r\n position = destinationPos,\r\n rotation = {0, yRotation, 0},\r\n callback_function = recordPlacedCard})\r\nend\r\n\r\n-- Returns the table position where the next skill should be placed\r\n-- Param isUpgraded: True if it's an upgraded card (right side of the table),\r\n-- false for a Level 0 card (left side of table)\r\nfunction getSkillPosition(isUpgraded)\r\n local skillPos\r\n if (isUpgraded) then\r\n skillPos = startPositions.upgrades.skill:copy()\r\n else\r\n skillPos = startPositions.level0.skill:copy()\r\n end\r\n local shift = Vector(div(skillCount, cardsPerRow) * xShift, 0, (skillCount % cardsPerRow) * zShift)\r\n skillPos:add(shift)\r\n skillCount = skillCount + 1\r\n\r\n return skillPos\r\nend\r\n\r\n-- Returns the table position where the next event should be placed\r\n-- Param isUpgraded: True if it's an upgraded card (right side of the table),\r\n-- false for a Level 0 card (left side of table)\r\nfunction getEventPosition(isUpgraded)\r\n local eventPos\r\n if (isUpgraded) then\r\n eventPos = startPositions.upgrades.event:copy()\r\n else\r\n eventPos = startPositions.level0.event:copy()\r\n end\r\n local shift = Vector(div(eventCount, cardsPerRow) * xShift, 0, (eventCount % cardsPerRow) * zShift)\r\n eventPos:add(shift)\r\n eventCount = eventCount + 1\r\n\r\n return eventPos\r\nend\r\n\r\n-- Returns the table position where the next asset should be placed\r\n-- Param isUpgraded: True if it's an upgraded card (right side of the table),\r\n-- false for a Level 0 card (left side of table)\r\nfunction getAssetPosition(isUpgraded)\r\n local assetPos\r\n if (isUpgraded) then\r\n assetPos = startPositions.upgrades.asset:copy()\r\n else\r\n assetPos = startPositions.level0.asset:copy()\r\n end\r\n local shift = Vector(div(assetCount, cardsPerRow) * xShift, 0, (assetCount % cardsPerRow) * zShift)\r\n assetPos:add(shift)\r\n assetCount = assetCount + 1\r\n\r\n return assetPos\r\nend\r\n\r\n-- Callback function which adds a spawned card to the tracking list\r\nfunction recordPlacedCard(spawnedCard)\r\n if (spawnedCard.getName() == \"Protecting the Anirniq (2)\") then\r\n log(\"Spawned PtA \"..spawnedCard.getGUID())\r\n end\r\n placedCardGuids[spawnedCard.getGUID()] = true\r\n placedCardCount = placedCardCount + 1\r\nend\r\n\r\n-- Recalls all spawned cards to the bag, and clears the placedCardGuids list\r\nfunction buttonClick_recall()\r\n local trash = spawnObjectData({data = recallBag, position = self.getPosition()})\r\n for cardGuid, _ in pairs(placedCardGuids) do\r\n local card = getObjectFromGUID(cardGuid)\r\n if (card ~= nil) then\r\n trash.putObject(card)\r\n placedCardGuids[cardGuid] = nil\r\n placedCardCount = placedCardCount - 1\r\n end\r\n end\r\n\r\n if (placedCardCount > 0) then\r\n -- Couldn't recall all the cards, check and pull them from decks\r\n local decksInArea = { }\r\n local allObjects = getAllObjects()\r\n for _, object in ipairs(allObjects) do\r\n if (object.name == \"Deck\" and isInArea(object)) then\r\n table.insert(decksInArea, object)\r\n end\r\n end\r\n for _, deck in ipairs(decksInArea) do\r\n local cardsInDeck = deck.getObjects()\r\n for i, card in ipairs(cardsInDeck) do\r\n if (placedCardGuids[card.guid]) then\r\n trash.putObject(deck.takeObject({ guid = card.guid }))\r\n break\r\n end\r\n end\r\n end\r\n end\r\n\r\n trash.destruct()\r\n -- We've recalled everything we can, some cards may have been moved out of the\r\n -- card area. Just reset at this point.\r\n placedCardGuids = { }\r\n placedCardCount = 0\r\nend\r\n\r\nfunction isInArea(object)\r\n if (object == nil) then\r\n return false\r\n end\r\n local position = object.getPosition()\r\n return position.x > CARD_AREA_X_THRESHOLD\r\n and (position.z > CARD_AREA_BASIC_Z_THRESHOLD\r\n or position.z < CARD_AREA_UPGRADED_Z_THRESHOLD)\r\nend\r\n\r\nfunction div(a,b)\r\n return (a - a % b) / b\r\nend",
"LuaScriptState": "{\"placedCards\":[]}",
"XmlUI": ""
},
{
"GUID": "52253b",
"Name": "Custom_Model",
"Transform": {
"posX": 66.29667,
"posY": 1.40841877,
"posZ": -85.513916,
"rotX": 0.020805547,
"rotY": 270.018524,
"rotZ": 0.0167768616,
"scaleX": 1.2,
"scaleY": 1.2,
"scaleZ": 1.2
},
"Nickname": "Survivor",
"Description": "Upgrades",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": true,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomMesh": {
"MeshURL": "https://pastebin.com/raw/ALrYhQGb",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/952965722515960460/F43F63452854B10B416FDF3BF9EF3068E6E68F26/",
"NormalURL": "",
"ColliderURL": "",
"Convex": true,
"MaterialIndex": 3,
"TypeIndex": 0,
"CustomShader": {
"SpecularColor": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"SpecularIntensity": 0.0,
"SpecularSharpness": 2.0,
"FresnelStrength": 0.0
},
"CastShadows": true
},
"LuaScript": "-- Class card bag implementation. Mimics the behavior of the previous SCED\r\n-- card memory bags, but spawns cards from the All Cards Bag instead.\r\n--\r\n-- The All Cards Bag handles indexing of the player cards by class and level, as\r\n-- well as sorting those lists. See that object for more information.\r\n\r\nlocal allCardsBagGuid = \"15bb07\"\r\n\r\n-- Lines which define the card layout area. The X threshold is shared, basic\r\n-- cards have Z > 47 while upgrades have Z < -46\r\n-- Note that the SCED table is rotated, making X the vertical (up the table)\r\n-- axis and Z the side-to-side axis\r\nlocal CARD_AREA_X_THRESHOLD = 22\r\nlocal CARD_AREA_BASIC_Z_THRESHOLD = 47\r\nlocal CARD_AREA_UPGRADED_Z_THRESHOLD = -46\r\n\r\nlocal skillCount = 0\r\nlocal eventCount = 0\r\nlocal assetCount = 0\r\n\r\n-- Coordinates to begin laying out cards to match the reserved areas of the\r\n-- table. Cards will lay out horizontally, then create additional rows\r\nlocal startPositions = {\r\n upgrades = {\r\n skill = Vector(58.09966, 1.36, -47.42),\r\n event = Vector(52.94421, 1.36, -47.42),\r\n asset = Vector(40.29005, 1.36, -47.42),\r\n },\r\n level0 = {\r\n skill = Vector(58.38383, 1.36, 92.39036),\r\n event = Vector(53.22857, 1.36, 92.44123),\r\n asset = Vector(40.9602, 1.36, 92.44869),\r\n },\r\n}\r\n\r\n-- Amount to shift for the next card (zShift) or next row of cards (xShift)\r\n-- Note that the table rotation is weird, and the X axis is vertical while the\r\n-- Z axis is horizontal\r\nlocal zShift = -2.29998\r\nlocal xShift = -3.66572\r\nlocal yRotation = 270\r\nlocal cardsPerRow = 20\r\n\r\n-- Tracks cards which are placed by this \"bag\" so they can be recalled\r\nlocal placedCardGuids = { }\r\nlocal placedCardsCount = 0\r\n\r\n-- In order to mimic the behavior of the previous memory buttons we use a\r\n-- a temporary bag when recalling objects. This bag is tiny and transparent,\r\n-- and will be placed at the same location as this object. Once all placed\r\n-- cards are recalled bag to this bag, it will be destroyed\r\nlocal recallBag = {\r\n Name = \"Bag\",\r\n Transform = {\r\n scaleX = 0.01,\r\n scaleY = 0.01,\r\n scaleZ = 0.01,\r\n },\r\n ColorDiffuse = {\r\n r = 0,\r\n g = 0,\r\n b = 0,\r\n a = 0,\r\n },\r\n Locked = true,\r\n Grid = true,\r\n Snap = false,\r\n Tooltip = false,\r\n}\r\n\r\nfunction onLoad(savedData)\r\n createPlaceRecallButtons()\r\n placedCardGuids = { }\r\n placedCardCount = 0\r\n if (savedData ~= nil) then\r\n local saveState = JSON.decode(savedData)\r\n if (saveState.placedCards ~= nil) then\r\n placedCardGuids = saveState.placedCards\r\n end\r\n end\r\nend\r\n\r\nfunction onSave()\r\n local saveState = {\r\n placedCards = placedCardGuids,\r\n }\r\n\r\n return JSON.encode(saveState)\r\nend\r\n\r\n--Creates recall and place buttons\r\nfunction createPlaceRecallButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={1,0.1,2.1}, rotation={0,0,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={-1,0.1,2.1}, rotation={0,0,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n-- Spawns the set of cards identified by this objects Name (which should hold\r\n-- the class) and description (whether to spawn basic cards or upgraded)\r\nfunction buttonClick_place()\r\n -- Cards already on the table, don't spawn more\r\n if (placedCardCount > 0) then\r\n return\r\n end\r\n local cardClass = self.getName()\r\n local isUpgraded = false\r\n if (self.getDescription() == \"Upgrades\") then\r\n isUpgraded = true\r\n end\r\n skillCount = 0\r\n eventCount = 0\r\n assetCount = 0\r\n local allCardsBag = getObjectFromGUID(allCardsBagGuid)\r\n local cardList = allCardsBag.call(\"getCardsByClassAndLevel\", {class = cardClass, upgraded = isUpgraded})\r\n placeCards(cardList)\r\nend\r\n\r\n-- Spawn all cards from the returned index\r\nfunction placeCards(cardIdList)\r\n local allCardsBag = getObjectFromGUID(allCardsBagGuid)\r\n local indexReady = allCardsBag.call(\"isIndexReady\")\r\n if (not indexReady) then\r\n broadcastToAll(\"Still loading player cards, please try again in a few seconds\", {0.9, 0.2, 0.2})\r\n return\r\n end\r\n\r\n for _, cardId in ipairs(cardIdList) do\r\n local card = allCardsBag.call(\"getCardById\", { id = cardId })\r\n placeCard(card.data, card.metadata)\r\n end\r\nend\r\n\r\nfunction placeCard(cardData, cardMetadata)\r\n local destinationPos\r\n if (cardMetadata.type == \"Skill\") then\r\n destinationPos = getSkillPosition(cardMetadata.level > 0)\r\n elseif (cardMetadata.type == \"Event\") then\r\n destinationPos = getEventPosition(cardMetadata.level > 0)\r\n elseif (cardMetadata.type == \"Asset\") then\r\n destinationPos = getAssetPosition(cardMetadata.level > 0)\r\n end\r\n -- Clear the GUID from the card's data so it will get a new GUID on spawn.\r\n -- This solves the issue of duplicate GUIDs being spawned and causing problems\r\n -- with recall\r\n cardData.GUID = nil\r\n local spawnedCard = spawnObjectData({\r\n data = cardData,\r\n position = destinationPos,\r\n rotation = {0, yRotation, 0},\r\n callback_function = recordPlacedCard})\r\nend\r\n\r\n-- Returns the table position where the next skill should be placed\r\n-- Param isUpgraded: True if it's an upgraded card (right side of the table),\r\n-- false for a Level 0 card (left side of table)\r\nfunction getSkillPosition(isUpgraded)\r\n local skillPos\r\n if (isUpgraded) then\r\n skillPos = startPositions.upgrades.skill:copy()\r\n else\r\n skillPos = startPositions.level0.skill:copy()\r\n end\r\n local shift = Vector(div(skillCount, cardsPerRow) * xShift, 0, (skillCount % cardsPerRow) * zShift)\r\n skillPos:add(shift)\r\n skillCount = skillCount + 1\r\n\r\n return skillPos\r\nend\r\n\r\n-- Returns the table position where the next event should be placed\r\n-- Param isUpgraded: True if it's an upgraded card (right side of the table),\r\n-- false for a Level 0 card (left side of table)\r\nfunction getEventPosition(isUpgraded)\r\n local eventPos\r\n if (isUpgraded) then\r\n eventPos = startPositions.upgrades.event:copy()\r\n else\r\n eventPos = startPositions.level0.event:copy()\r\n end\r\n local shift = Vector(div(eventCount, cardsPerRow) * xShift, 0, (eventCount % cardsPerRow) * zShift)\r\n eventPos:add(shift)\r\n eventCount = eventCount + 1\r\n\r\n return eventPos\r\nend\r\n\r\n-- Returns the table position where the next asset should be placed\r\n-- Param isUpgraded: True if it's an upgraded card (right side of the table),\r\n-- false for a Level 0 card (left side of table)\r\nfunction getAssetPosition(isUpgraded)\r\n local assetPos\r\n if (isUpgraded) then\r\n assetPos = startPositions.upgrades.asset:copy()\r\n else\r\n assetPos = startPositions.level0.asset:copy()\r\n end\r\n local shift = Vector(div(assetCount, cardsPerRow) * xShift, 0, (assetCount % cardsPerRow) * zShift)\r\n assetPos:add(shift)\r\n assetCount = assetCount + 1\r\n\r\n return assetPos\r\nend\r\n\r\n-- Callback function which adds a spawned card to the tracking list\r\nfunction recordPlacedCard(spawnedCard)\r\n if (spawnedCard.getName() == \"Protecting the Anirniq (2)\") then\r\n log(\"Spawned PtA \"..spawnedCard.getGUID())\r\n end\r\n placedCardGuids[spawnedCard.getGUID()] = true\r\n placedCardCount = placedCardCount + 1\r\nend\r\n\r\n-- Recalls all spawned cards to the bag, and clears the placedCardGuids list\r\nfunction buttonClick_recall()\r\n local trash = spawnObjectData({data = recallBag, position = self.getPosition()})\r\n for cardGuid, _ in pairs(placedCardGuids) do\r\n local card = getObjectFromGUID(cardGuid)\r\n if (card ~= nil) then\r\n trash.putObject(card)\r\n placedCardGuids[cardGuid] = nil\r\n placedCardCount = placedCardCount - 1\r\n end\r\n end\r\n\r\n if (placedCardCount > 0) then\r\n -- Couldn't recall all the cards, check and pull them from decks\r\n local decksInArea = { }\r\n local allObjects = getAllObjects()\r\n for _, object in ipairs(allObjects) do\r\n if (object.name == \"Deck\" and isInArea(object)) then\r\n table.insert(decksInArea, object)\r\n end\r\n end\r\n for _, deck in ipairs(decksInArea) do\r\n local cardsInDeck = deck.getObjects()\r\n for i, card in ipairs(cardsInDeck) do\r\n if (placedCardGuids[card.guid]) then\r\n trash.putObject(deck.takeObject({ guid = card.guid }))\r\n break\r\n end\r\n end\r\n end\r\n end\r\n\r\n trash.destruct()\r\n -- We've recalled everything we can, some cards may have been moved out of the\r\n -- card area. Just reset at this point.\r\n placedCardGuids = { }\r\n placedCardCount = 0\r\nend\r\n\r\nfunction isInArea(object)\r\n if (object == nil) then\r\n return false\r\n end\r\n local position = object.getPosition()\r\n return position.x > CARD_AREA_X_THRESHOLD\r\n and (position.z > CARD_AREA_BASIC_Z_THRESHOLD\r\n or position.z < CARD_AREA_UPGRADED_Z_THRESHOLD)\r\nend\r\n\r\nfunction div(a,b)\r\n return (a - a % b) / b\r\nend",
"LuaScriptState": "{\"placedCards\":[]}",
"XmlUI": ""
},
{
"GUID": "9559e6",
"Name": "Custom_Model",
"Transform": {
"posX": 66.3128,
"posY": 1.40686631,
"posZ": -90.83758,
"rotX": 0.02080516,
"rotY": 270.018524,
"rotZ": 0.01677691,
"scaleX": 1.2,
"scaleY": 1.2,
"scaleZ": 1.2
},
"Nickname": "Neutral",
"Description": "Upgrades",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": true,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomMesh": {
"MeshURL": "https://pastebin.com/raw/ALrYhQGb",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/952965722515017130/AD0A2EDADD663473879A6A391FACD32966983B17/",
"NormalURL": "",
"ColliderURL": "",
"Convex": true,
"MaterialIndex": 3,
"TypeIndex": 0,
"CustomShader": {
"SpecularColor": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"SpecularIntensity": 0.0,
"SpecularSharpness": 2.0,
"FresnelStrength": 0.0
},
"CastShadows": true
},
"LuaScript": "-- Class card bag implementation. Mimics the behavior of the previous SCED\r\n-- card memory bags, but spawns cards from the All Cards Bag instead.\r\n--\r\n-- The All Cards Bag handles indexing of the player cards by class and level, as\r\n-- well as sorting those lists. See that object for more information.\r\n\r\nlocal allCardsBagGuid = \"15bb07\"\r\n\r\n-- Lines which define the card layout area. The X threshold is shared, basic\r\n-- cards have Z > 47 while upgrades have Z < -46\r\n-- Note that the SCED table is rotated, making X the vertical (up the table)\r\n-- axis and Z the side-to-side axis\r\nlocal CARD_AREA_X_THRESHOLD = 22\r\nlocal CARD_AREA_BASIC_Z_THRESHOLD = 47\r\nlocal CARD_AREA_UPGRADED_Z_THRESHOLD = -46\r\n\r\nlocal skillCount = 0\r\nlocal eventCount = 0\r\nlocal assetCount = 0\r\n\r\n-- Coordinates to begin laying out cards to match the reserved areas of the\r\n-- table. Cards will lay out horizontally, then create additional rows\r\nlocal startPositions = {\r\n upgrades = {\r\n skill = Vector(58.09966, 1.36, -47.42),\r\n event = Vector(52.94421, 1.36, -47.42),\r\n asset = Vector(40.29005, 1.36, -47.42),\r\n },\r\n level0 = {\r\n skill = Vector(58.38383, 1.36, 92.39036),\r\n event = Vector(53.22857, 1.36, 92.44123),\r\n asset = Vector(40.9602, 1.36, 92.44869),\r\n },\r\n}\r\n\r\n-- Amount to shift for the next card (zShift) or next row of cards (xShift)\r\n-- Note that the table rotation is weird, and the X axis is vertical while the\r\n-- Z axis is horizontal\r\nlocal zShift = -2.29998\r\nlocal xShift = -3.66572\r\nlocal yRotation = 270\r\nlocal cardsPerRow = 20\r\n\r\n-- Tracks cards which are placed by this \"bag\" so they can be recalled\r\nlocal placedCardGuids = { }\r\nlocal placedCardsCount = 0\r\n\r\n-- In order to mimic the behavior of the previous memory buttons we use a\r\n-- a temporary bag when recalling objects. This bag is tiny and transparent,\r\n-- and will be placed at the same location as this object. Once all placed\r\n-- cards are recalled bag to this bag, it will be destroyed\r\nlocal recallBag = {\r\n Name = \"Bag\",\r\n Transform = {\r\n scaleX = 0.01,\r\n scaleY = 0.01,\r\n scaleZ = 0.01,\r\n },\r\n ColorDiffuse = {\r\n r = 0,\r\n g = 0,\r\n b = 0,\r\n a = 0,\r\n },\r\n Locked = true,\r\n Grid = true,\r\n Snap = false,\r\n Tooltip = false,\r\n}\r\n\r\nfunction onLoad(savedData)\r\n createPlaceRecallButtons()\r\n placedCardGuids = { }\r\n placedCardCount = 0\r\n if (savedData ~= nil) then\r\n local saveState = JSON.decode(savedData)\r\n if (saveState.placedCards ~= nil) then\r\n placedCardGuids = saveState.placedCards\r\n end\r\n end\r\nend\r\n\r\nfunction onSave()\r\n local saveState = {\r\n placedCards = placedCardGuids,\r\n }\r\n\r\n return JSON.encode(saveState)\r\nend\r\n\r\n--Creates recall and place buttons\r\nfunction createPlaceRecallButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={1,0.1,2.1}, rotation={0,0,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={-1,0.1,2.1}, rotation={0,0,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n-- Spawns the set of cards identified by this objects Name (which should hold\r\n-- the class) and description (whether to spawn basic cards or upgraded)\r\nfunction buttonClick_place()\r\n -- Cards already on the table, don't spawn more\r\n if (placedCardCount > 0) then\r\n return\r\n end\r\n local cardClass = self.getName()\r\n local isUpgraded = false\r\n if (self.getDescription() == \"Upgrades\") then\r\n isUpgraded = true\r\n end\r\n skillCount = 0\r\n eventCount = 0\r\n assetCount = 0\r\n local allCardsBag = getObjectFromGUID(allCardsBagGuid)\r\n local cardList = allCardsBag.call(\"getCardsByClassAndLevel\", {class = cardClass, upgraded = isUpgraded})\r\n placeCards(cardList)\r\nend\r\n\r\n-- Spawn all cards from the returned index\r\nfunction placeCards(cardIdList)\r\n local allCardsBag = getObjectFromGUID(allCardsBagGuid)\r\n local indexReady = allCardsBag.call(\"isIndexReady\")\r\n if (not indexReady) then\r\n broadcastToAll(\"Still loading player cards, please try again in a few seconds\", {0.9, 0.2, 0.2})\r\n return\r\n end\r\n\r\n for _, cardId in ipairs(cardIdList) do\r\n local card = allCardsBag.call(\"getCardById\", { id = cardId })\r\n placeCard(card.data, card.metadata)\r\n end\r\nend\r\n\r\nfunction placeCard(cardData, cardMetadata)\r\n local destinationPos\r\n if (cardMetadata.type == \"Skill\") then\r\n destinationPos = getSkillPosition(cardMetadata.level > 0)\r\n elseif (cardMetadata.type == \"Event\") then\r\n destinationPos = getEventPosition(cardMetadata.level > 0)\r\n elseif (cardMetadata.type == \"Asset\") then\r\n destinationPos = getAssetPosition(cardMetadata.level > 0)\r\n end\r\n -- Clear the GUID from the card's data so it will get a new GUID on spawn.\r\n -- This solves the issue of duplicate GUIDs being spawned and causing problems\r\n -- with recall\r\n cardData.GUID = nil\r\n local spawnedCard = spawnObjectData({\r\n data = cardData,\r\n position = destinationPos,\r\n rotation = {0, yRotation, 0},\r\n callback_function = recordPlacedCard})\r\nend\r\n\r\n-- Returns the table position where the next skill should be placed\r\n-- Param isUpgraded: True if it's an upgraded card (right side of the table),\r\n-- false for a Level 0 card (left side of table)\r\nfunction getSkillPosition(isUpgraded)\r\n local skillPos\r\n if (isUpgraded) then\r\n skillPos = startPositions.upgrades.skill:copy()\r\n else\r\n skillPos = startPositions.level0.skill:copy()\r\n end\r\n local shift = Vector(div(skillCount, cardsPerRow) * xShift, 0, (skillCount % cardsPerRow) * zShift)\r\n skillPos:add(shift)\r\n skillCount = skillCount + 1\r\n\r\n return skillPos\r\nend\r\n\r\n-- Returns the table position where the next event should be placed\r\n-- Param isUpgraded: True if it's an upgraded card (right side of the table),\r\n-- false for a Level 0 card (left side of table)\r\nfunction getEventPosition(isUpgraded)\r\n local eventPos\r\n if (isUpgraded) then\r\n eventPos = startPositions.upgrades.event:copy()\r\n else\r\n eventPos = startPositions.level0.event:copy()\r\n end\r\n local shift = Vector(div(eventCount, cardsPerRow) * xShift, 0, (eventCount % cardsPerRow) * zShift)\r\n eventPos:add(shift)\r\n eventCount = eventCount + 1\r\n\r\n return eventPos\r\nend\r\n\r\n-- Returns the table position where the next asset should be placed\r\n-- Param isUpgraded: True if it's an upgraded card (right side of the table),\r\n-- false for a Level 0 card (left side of table)\r\nfunction getAssetPosition(isUpgraded)\r\n local assetPos\r\n if (isUpgraded) then\r\n assetPos = startPositions.upgrades.asset:copy()\r\n else\r\n assetPos = startPositions.level0.asset:copy()\r\n end\r\n local shift = Vector(div(assetCount, cardsPerRow) * xShift, 0, (assetCount % cardsPerRow) * zShift)\r\n assetPos:add(shift)\r\n assetCount = assetCount + 1\r\n\r\n return assetPos\r\nend\r\n\r\n-- Callback function which adds a spawned card to the tracking list\r\nfunction recordPlacedCard(spawnedCard)\r\n if (spawnedCard.getName() == \"Protecting the Anirniq (2)\") then\r\n log(\"Spawned PtA \"..spawnedCard.getGUID())\r\n end\r\n placedCardGuids[spawnedCard.getGUID()] = true\r\n placedCardCount = placedCardCount + 1\r\nend\r\n\r\n-- Recalls all spawned cards to the bag, and clears the placedCardGuids list\r\nfunction buttonClick_recall()\r\n local trash = spawnObjectData({data = recallBag, position = self.getPosition()})\r\n for cardGuid, _ in pairs(placedCardGuids) do\r\n local card = getObjectFromGUID(cardGuid)\r\n if (card ~= nil) then\r\n trash.putObject(card)\r\n placedCardGuids[cardGuid] = nil\r\n placedCardCount = placedCardCount - 1\r\n end\r\n end\r\n\r\n if (placedCardCount > 0) then\r\n -- Couldn't recall all the cards, check and pull them from decks\r\n local decksInArea = { }\r\n local allObjects = getAllObjects()\r\n for _, object in ipairs(allObjects) do\r\n if (object.name == \"Deck\" and isInArea(object)) then\r\n table.insert(decksInArea, object)\r\n end\r\n end\r\n for _, deck in ipairs(decksInArea) do\r\n local cardsInDeck = deck.getObjects()\r\n for i, card in ipairs(cardsInDeck) do\r\n if (placedCardGuids[card.guid]) then\r\n trash.putObject(deck.takeObject({ guid = card.guid }))\r\n break\r\n end\r\n end\r\n end\r\n end\r\n\r\n trash.destruct()\r\n -- We've recalled everything we can, some cards may have been moved out of the\r\n -- card area. Just reset at this point.\r\n placedCardGuids = { }\r\n placedCardCount = 0\r\nend\r\n\r\nfunction isInArea(object)\r\n if (object == nil) then\r\n return false\r\n end\r\n local position = object.getPosition()\r\n return position.x > CARD_AREA_X_THRESHOLD\r\n and (position.z > CARD_AREA_BASIC_Z_THRESHOLD\r\n or position.z < CARD_AREA_UPGRADED_Z_THRESHOLD)\r\nend\r\n\r\nfunction div(a,b)\r\n return (a - a % b) / b\r\nend",
"LuaScriptState": "{\"placedCards\":[]}",
"XmlUI": ""
},
{
"GUID": "363ab6",
"Name": "Custom_Model",
"Transform": {
"posX": 66.6139145,
"posY": 1.41465318,
"posZ": 75.8793,
"rotX": 0.0208051838,
"rotY": 270.018524,
"rotZ": 0.0167769864,
"scaleX": 1.2,
"scaleY": 1.2,
"scaleZ": 1.2
},
"Nickname": "Guardian",
"Description": "Level 0",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": true,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomMesh": {
"MeshURL": "https://pastebin.com/raw/ALrYhQGb",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/952965722516201848/72B3B9E2B59F25FEC82412AC22245D03655A4558/",
"NormalURL": "",
"ColliderURL": "",
"Convex": true,
"MaterialIndex": 3,
"TypeIndex": 0,
"CustomShader": {
"SpecularColor": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"SpecularIntensity": 0.0,
"SpecularSharpness": 2.0,
"FresnelStrength": 0.0
},
"CastShadows": true
},
"LuaScript": "-- Class card bag implementation. Mimics the behavior of the previous SCED\r\n-- card memory bags, but spawns cards from the All Cards Bag instead.\r\n--\r\n-- The All Cards Bag handles indexing of the player cards by class and level, as\r\n-- well as sorting those lists. See that object for more information.\r\n\r\nlocal allCardsBagGuid = \"15bb07\"\r\n\r\n-- Lines which define the card layout area. The X threshold is shared, basic\r\n-- cards have Z > 47 while upgrades have Z < -46\r\n-- Note that the SCED table is rotated, making X the vertical (up the table)\r\n-- axis and Z the side-to-side axis\r\nlocal CARD_AREA_X_THRESHOLD = 22\r\nlocal CARD_AREA_BASIC_Z_THRESHOLD = 47\r\nlocal CARD_AREA_UPGRADED_Z_THRESHOLD = -46\r\n\r\nlocal skillCount = 0\r\nlocal eventCount = 0\r\nlocal assetCount = 0\r\n\r\n-- Coordinates to begin laying out cards to match the reserved areas of the\r\n-- table. Cards will lay out horizontally, then create additional rows\r\nlocal startPositions = {\r\n upgrades = {\r\n skill = Vector(58.09966, 1.36, -47.42),\r\n event = Vector(52.94421, 1.36, -47.42),\r\n asset = Vector(40.29005, 1.36, -47.42),\r\n },\r\n level0 = {\r\n skill = Vector(58.38383, 1.36, 92.39036),\r\n event = Vector(53.22857, 1.36, 92.44123),\r\n asset = Vector(40.9602, 1.36, 92.44869),\r\n },\r\n}\r\n\r\n-- Amount to shift for the next card (zShift) or next row of cards (xShift)\r\n-- Note that the table rotation is weird, and the X axis is vertical while the\r\n-- Z axis is horizontal\r\nlocal zShift = -2.29998\r\nlocal xShift = -3.66572\r\nlocal yRotation = 270\r\nlocal cardsPerRow = 20\r\n\r\n-- Tracks cards which are placed by this \"bag\" so they can be recalled\r\nlocal placedCardGuids = { }\r\nlocal placedCardsCount = 0\r\n\r\n-- In order to mimic the behavior of the previous memory buttons we use a\r\n-- a temporary bag when recalling objects. This bag is tiny and transparent,\r\n-- and will be placed at the same location as this object. Once all placed\r\n-- cards are recalled bag to this bag, it will be destroyed\r\nlocal recallBag = {\r\n Name = \"Bag\",\r\n Transform = {\r\n scaleX = 0.01,\r\n scaleY = 0.01,\r\n scaleZ = 0.01,\r\n },\r\n ColorDiffuse = {\r\n r = 0,\r\n g = 0,\r\n b = 0,\r\n a = 0,\r\n },\r\n Locked = true,\r\n Grid = true,\r\n Snap = false,\r\n Tooltip = false,\r\n}\r\n\r\nfunction onLoad(savedData)\r\n createPlaceRecallButtons()\r\n placedCardGuids = { }\r\n placedCardCount = 0\r\n if (savedData ~= nil) then\r\n local saveState = JSON.decode(savedData)\r\n if (saveState.placedCards ~= nil) then\r\n placedCardGuids = saveState.placedCards\r\n end\r\n end\r\nend\r\n\r\nfunction onSave()\r\n local saveState = {\r\n placedCards = placedCardGuids,\r\n }\r\n\r\n return JSON.encode(saveState)\r\nend\r\n\r\n--Creates recall and place buttons\r\nfunction createPlaceRecallButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={1,0.1,2.1}, rotation={0,0,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={-1,0.1,2.1}, rotation={0,0,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n-- Spawns the set of cards identified by this objects Name (which should hold\r\n-- the class) and description (whether to spawn basic cards or upgraded)\r\nfunction buttonClick_place()\r\n -- Cards already on the table, don't spawn more\r\n if (placedCardCount > 0) then\r\n return\r\n end\r\n local cardClass = self.getName()\r\n local isUpgraded = false\r\n if (self.getDescription() == \"Upgrades\") then\r\n isUpgraded = true\r\n end\r\n skillCount = 0\r\n eventCount = 0\r\n assetCount = 0\r\n local allCardsBag = getObjectFromGUID(allCardsBagGuid)\r\n local cardList = allCardsBag.call(\"getCardsByClassAndLevel\", {class = cardClass, upgraded = isUpgraded})\r\n placeCards(cardList)\r\nend\r\n\r\n-- Spawn all cards from the returned index\r\nfunction placeCards(cardIdList)\r\n local allCardsBag = getObjectFromGUID(allCardsBagGuid)\r\n local indexReady = allCardsBag.call(\"isIndexReady\")\r\n if (not indexReady) then\r\n broadcastToAll(\"Still loading player cards, please try again in a few seconds\", {0.9, 0.2, 0.2})\r\n return\r\n end\r\n\r\n for _, cardId in ipairs(cardIdList) do\r\n local card = allCardsBag.call(\"getCardById\", { id = cardId })\r\n placeCard(card.data, card.metadata)\r\n end\r\nend\r\n\r\nfunction placeCard(cardData, cardMetadata)\r\n local destinationPos\r\n if (cardMetadata.type == \"Skill\") then\r\n destinationPos = getSkillPosition(cardMetadata.level > 0)\r\n elseif (cardMetadata.type == \"Event\") then\r\n destinationPos = getEventPosition(cardMetadata.level > 0)\r\n elseif (cardMetadata.type == \"Asset\") then\r\n destinationPos = getAssetPosition(cardMetadata.level > 0)\r\n end\r\n -- Clear the GUID from the card's data so it will get a new GUID on spawn.\r\n -- This solves the issue of duplicate GUIDs being spawned and causing problems\r\n -- with recall\r\n cardData.GUID = nil\r\n local spawnedCard = spawnObjectData({\r\n data = cardData,\r\n position = destinationPos,\r\n rotation = {0, yRotation, 0},\r\n callback_function = recordPlacedCard})\r\nend\r\n\r\n-- Returns the table position where the next skill should be placed\r\n-- Param isUpgraded: True if it's an upgraded card (right side of the table),\r\n-- false for a Level 0 card (left side of table)\r\nfunction getSkillPosition(isUpgraded)\r\n local skillPos\r\n if (isUpgraded) then\r\n skillPos = startPositions.upgrades.skill:copy()\r\n else\r\n skillPos = startPositions.level0.skill:copy()\r\n end\r\n local shift = Vector(div(skillCount, cardsPerRow) * xShift, 0, (skillCount % cardsPerRow) * zShift)\r\n skillPos:add(shift)\r\n skillCount = skillCount + 1\r\n\r\n return skillPos\r\nend\r\n\r\n-- Returns the table position where the next event should be placed\r\n-- Param isUpgraded: True if it's an upgraded card (right side of the table),\r\n-- false for a Level 0 card (left side of table)\r\nfunction getEventPosition(isUpgraded)\r\n local eventPos\r\n if (isUpgraded) then\r\n eventPos = startPositions.upgrades.event:copy()\r\n else\r\n eventPos = startPositions.level0.event:copy()\r\n end\r\n local shift = Vector(div(eventCount, cardsPerRow) * xShift, 0, (eventCount % cardsPerRow) * zShift)\r\n eventPos:add(shift)\r\n eventCount = eventCount + 1\r\n\r\n return eventPos\r\nend\r\n\r\n-- Returns the table position where the next asset should be placed\r\n-- Param isUpgraded: True if it's an upgraded card (right side of the table),\r\n-- false for a Level 0 card (left side of table)\r\nfunction getAssetPosition(isUpgraded)\r\n local assetPos\r\n if (isUpgraded) then\r\n assetPos = startPositions.upgrades.asset:copy()\r\n else\r\n assetPos = startPositions.level0.asset:copy()\r\n end\r\n local shift = Vector(div(assetCount, cardsPerRow) * xShift, 0, (assetCount % cardsPerRow) * zShift)\r\n assetPos:add(shift)\r\n assetCount = assetCount + 1\r\n\r\n return assetPos\r\nend\r\n\r\n-- Callback function which adds a spawned card to the tracking list\r\nfunction recordPlacedCard(spawnedCard)\r\n if (spawnedCard.getName() == \"Protecting the Anirniq (2)\") then\r\n log(\"Spawned PtA \"..spawnedCard.getGUID())\r\n end\r\n placedCardGuids[spawnedCard.getGUID()] = true\r\n placedCardCount = placedCardCount + 1\r\nend\r\n\r\n-- Recalls all spawned cards to the bag, and clears the placedCardGuids list\r\nfunction buttonClick_recall()\r\n local trash = spawnObjectData({data = recallBag, position = self.getPosition()})\r\n for cardGuid, _ in pairs(placedCardGuids) do\r\n local card = getObjectFromGUID(cardGuid)\r\n if (card ~= nil) then\r\n trash.putObject(card)\r\n placedCardGuids[cardGuid] = nil\r\n placedCardCount = placedCardCount - 1\r\n end\r\n end\r\n\r\n if (placedCardCount > 0) then\r\n -- Couldn't recall all the cards, check and pull them from decks\r\n local decksInArea = { }\r\n local allObjects = getAllObjects()\r\n for _, object in ipairs(allObjects) do\r\n if (object.name == \"Deck\" and isInArea(object)) then\r\n table.insert(decksInArea, object)\r\n end\r\n end\r\n for _, deck in ipairs(decksInArea) do\r\n local cardsInDeck = deck.getObjects()\r\n for i, card in ipairs(cardsInDeck) do\r\n if (placedCardGuids[card.guid]) then\r\n trash.putObject(deck.takeObject({ guid = card.guid }))\r\n break\r\n end\r\n end\r\n end\r\n end\r\n\r\n trash.destruct()\r\n -- We've recalled everything we can, some cards may have been moved out of the\r\n -- card area. Just reset at this point.\r\n placedCardGuids = { }\r\n placedCardCount = 0\r\nend\r\n\r\nfunction isInArea(object)\r\n if (object == nil) then\r\n return false\r\n end\r\n local position = object.getPosition()\r\n return position.x > CARD_AREA_X_THRESHOLD\r\n and (position.z > CARD_AREA_BASIC_Z_THRESHOLD\r\n or position.z < CARD_AREA_UPGRADED_Z_THRESHOLD)\r\nend\r\n\r\nfunction div(a,b)\r\n return (a - a % b) / b\r\nend",
"LuaScriptState": "{\"placedCards\":[]}",
"XmlUI": ""
},
{
"GUID": "b2f753",
"Name": "Custom_Model",
"Transform": {
"posX": 66.5779953,
"posY": 1.4130677,
"posZ": 70.5075455,
"rotX": 0.0208051819,
"rotY": 270.018524,
"rotZ": 0.0167770069,
"scaleX": 1.2,
"scaleY": 1.2,
"scaleZ": 1.2
},
"Nickname": "Seeker",
"Description": "Level 0",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": true,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomMesh": {
"MeshURL": "https://pastebin.com/raw/ALrYhQGb",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/952965722516265983/F50A6212D30C442429ED22B8CC8FD24D4CB76A2A/",
"NormalURL": "",
"ColliderURL": "",
"Convex": true,
"MaterialIndex": 3,
"TypeIndex": 0,
"CustomShader": {
"SpecularColor": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"SpecularIntensity": 0.0,
"SpecularSharpness": 2.0,
"FresnelStrength": 0.0
},
"CastShadows": true
},
"LuaScript": "-- Class card bag implementation. Mimics the behavior of the previous SCED\r\n-- card memory bags, but spawns cards from the All Cards Bag instead.\r\n--\r\n-- The All Cards Bag handles indexing of the player cards by class and level, as\r\n-- well as sorting those lists. See that object for more information.\r\n\r\nlocal allCardsBagGuid = \"15bb07\"\r\n\r\n-- Lines which define the card layout area. The X threshold is shared, basic\r\n-- cards have Z > 47 while upgrades have Z < -46\r\n-- Note that the SCED table is rotated, making X the vertical (up the table)\r\n-- axis and Z the side-to-side axis\r\nlocal CARD_AREA_X_THRESHOLD = 22\r\nlocal CARD_AREA_BASIC_Z_THRESHOLD = 47\r\nlocal CARD_AREA_UPGRADED_Z_THRESHOLD = -46\r\n\r\nlocal skillCount = 0\r\nlocal eventCount = 0\r\nlocal assetCount = 0\r\n\r\n-- Coordinates to begin laying out cards to match the reserved areas of the\r\n-- table. Cards will lay out horizontally, then create additional rows\r\nlocal startPositions = {\r\n upgrades = {\r\n skill = Vector(58.09966, 1.36, -47.42),\r\n event = Vector(52.94421, 1.36, -47.42),\r\n asset = Vector(40.29005, 1.36, -47.42),\r\n },\r\n level0 = {\r\n skill = Vector(58.38383, 1.36, 92.39036),\r\n event = Vector(53.22857, 1.36, 92.44123),\r\n asset = Vector(40.9602, 1.36, 92.44869),\r\n },\r\n}\r\n\r\n-- Amount to shift for the next card (zShift) or next row of cards (xShift)\r\n-- Note that the table rotation is weird, and the X axis is vertical while the\r\n-- Z axis is horizontal\r\nlocal zShift = -2.29998\r\nlocal xShift = -3.66572\r\nlocal yRotation = 270\r\nlocal cardsPerRow = 20\r\n\r\n-- Tracks cards which are placed by this \"bag\" so they can be recalled\r\nlocal placedCardGuids = { }\r\nlocal placedCardsCount = 0\r\n\r\n-- In order to mimic the behavior of the previous memory buttons we use a\r\n-- a temporary bag when recalling objects. This bag is tiny and transparent,\r\n-- and will be placed at the same location as this object. Once all placed\r\n-- cards are recalled bag to this bag, it will be destroyed\r\nlocal recallBag = {\r\n Name = \"Bag\",\r\n Transform = {\r\n scaleX = 0.01,\r\n scaleY = 0.01,\r\n scaleZ = 0.01,\r\n },\r\n ColorDiffuse = {\r\n r = 0,\r\n g = 0,\r\n b = 0,\r\n a = 0,\r\n },\r\n Locked = true,\r\n Grid = true,\r\n Snap = false,\r\n Tooltip = false,\r\n}\r\n\r\nfunction onLoad(savedData)\r\n createPlaceRecallButtons()\r\n placedCardGuids = { }\r\n placedCardCount = 0\r\n if (savedData ~= nil) then\r\n local saveState = JSON.decode(savedData)\r\n if (saveState.placedCards ~= nil) then\r\n placedCardGuids = saveState.placedCards\r\n end\r\n end\r\nend\r\n\r\nfunction onSave()\r\n local saveState = {\r\n placedCards = placedCardGuids,\r\n }\r\n\r\n return JSON.encode(saveState)\r\nend\r\n\r\n--Creates recall and place buttons\r\nfunction createPlaceRecallButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={1,0.1,2.1}, rotation={0,0,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={-1,0.1,2.1}, rotation={0,0,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n-- Spawns the set of cards identified by this objects Name (which should hold\r\n-- the class) and description (whether to spawn basic cards or upgraded)\r\nfunction buttonClick_place()\r\n -- Cards already on the table, don't spawn more\r\n if (placedCardCount > 0) then\r\n return\r\n end\r\n local cardClass = self.getName()\r\n local isUpgraded = false\r\n if (self.getDescription() == \"Upgrades\") then\r\n isUpgraded = true\r\n end\r\n skillCount = 0\r\n eventCount = 0\r\n assetCount = 0\r\n local allCardsBag = getObjectFromGUID(allCardsBagGuid)\r\n local cardList = allCardsBag.call(\"getCardsByClassAndLevel\", {class = cardClass, upgraded = isUpgraded})\r\n placeCards(cardList)\r\nend\r\n\r\n-- Spawn all cards from the returned index\r\nfunction placeCards(cardIdList)\r\n local allCardsBag = getObjectFromGUID(allCardsBagGuid)\r\n local indexReady = allCardsBag.call(\"isIndexReady\")\r\n if (not indexReady) then\r\n broadcastToAll(\"Still loading player cards, please try again in a few seconds\", {0.9, 0.2, 0.2})\r\n return\r\n end\r\n\r\n for _, cardId in ipairs(cardIdList) do\r\n local card = allCardsBag.call(\"getCardById\", { id = cardId })\r\n placeCard(card.data, card.metadata)\r\n end\r\nend\r\n\r\nfunction placeCard(cardData, cardMetadata)\r\n local destinationPos\r\n if (cardMetadata.type == \"Skill\") then\r\n destinationPos = getSkillPosition(cardMetadata.level > 0)\r\n elseif (cardMetadata.type == \"Event\") then\r\n destinationPos = getEventPosition(cardMetadata.level > 0)\r\n elseif (cardMetadata.type == \"Asset\") then\r\n destinationPos = getAssetPosition(cardMetadata.level > 0)\r\n end\r\n -- Clear the GUID from the card's data so it will get a new GUID on spawn.\r\n -- This solves the issue of duplicate GUIDs being spawned and causing problems\r\n -- with recall\r\n cardData.GUID = nil\r\n local spawnedCard = spawnObjectData({\r\n data = cardData,\r\n position = destinationPos,\r\n rotation = {0, yRotation, 0},\r\n callback_function = recordPlacedCard})\r\nend\r\n\r\n-- Returns the table position where the next skill should be placed\r\n-- Param isUpgraded: True if it's an upgraded card (right side of the table),\r\n-- false for a Level 0 card (left side of table)\r\nfunction getSkillPosition(isUpgraded)\r\n local skillPos\r\n if (isUpgraded) then\r\n skillPos = startPositions.upgrades.skill:copy()\r\n else\r\n skillPos = startPositions.level0.skill:copy()\r\n end\r\n local shift = Vector(div(skillCount, cardsPerRow) * xShift, 0, (skillCount % cardsPerRow) * zShift)\r\n skillPos:add(shift)\r\n skillCount = skillCount + 1\r\n\r\n return skillPos\r\nend\r\n\r\n-- Returns the table position where the next event should be placed\r\n-- Param isUpgraded: True if it's an upgraded card (right side of the table),\r\n-- false for a Level 0 card (left side of table)\r\nfunction getEventPosition(isUpgraded)\r\n local eventPos\r\n if (isUpgraded) then\r\n eventPos = startPositions.upgrades.event:copy()\r\n else\r\n eventPos = startPositions.level0.event:copy()\r\n end\r\n local shift = Vector(div(eventCount, cardsPerRow) * xShift, 0, (eventCount % cardsPerRow) * zShift)\r\n eventPos:add(shift)\r\n eventCount = eventCount + 1\r\n\r\n return eventPos\r\nend\r\n\r\n-- Returns the table position where the next asset should be placed\r\n-- Param isUpgraded: True if it's an upgraded card (right side of the table),\r\n-- false for a Level 0 card (left side of table)\r\nfunction getAssetPosition(isUpgraded)\r\n local assetPos\r\n if (isUpgraded) then\r\n assetPos = startPositions.upgrades.asset:copy()\r\n else\r\n assetPos = startPositions.level0.asset:copy()\r\n end\r\n local shift = Vector(div(assetCount, cardsPerRow) * xShift, 0, (assetCount % cardsPerRow) * zShift)\r\n assetPos:add(shift)\r\n assetCount = assetCount + 1\r\n\r\n return assetPos\r\nend\r\n\r\n-- Callback function which adds a spawned card to the tracking list\r\nfunction recordPlacedCard(spawnedCard)\r\n if (spawnedCard.getName() == \"Protecting the Anirniq (2)\") then\r\n log(\"Spawned PtA \"..spawnedCard.getGUID())\r\n end\r\n placedCardGuids[spawnedCard.getGUID()] = true\r\n placedCardCount = placedCardCount + 1\r\nend\r\n\r\n-- Recalls all spawned cards to the bag, and clears the placedCardGuids list\r\nfunction buttonClick_recall()\r\n local trash = spawnObjectData({data = recallBag, position = self.getPosition()})\r\n for cardGuid, _ in pairs(placedCardGuids) do\r\n local card = getObjectFromGUID(cardGuid)\r\n if (card ~= nil) then\r\n trash.putObject(card)\r\n placedCardGuids[cardGuid] = nil\r\n placedCardCount = placedCardCount - 1\r\n end\r\n end\r\n\r\n if (placedCardCount > 0) then\r\n -- Couldn't recall all the cards, check and pull them from decks\r\n local decksInArea = { }\r\n local allObjects = getAllObjects()\r\n for _, object in ipairs(allObjects) do\r\n if (object.name == \"Deck\" and isInArea(object)) then\r\n table.insert(decksInArea, object)\r\n end\r\n end\r\n for _, deck in ipairs(decksInArea) do\r\n local cardsInDeck = deck.getObjects()\r\n for i, card in ipairs(cardsInDeck) do\r\n if (placedCardGuids[card.guid]) then\r\n trash.putObject(deck.takeObject({ guid = card.guid }))\r\n break\r\n end\r\n end\r\n end\r\n end\r\n\r\n trash.destruct()\r\n -- We've recalled everything we can, some cards may have been moved out of the\r\n -- card area. Just reset at this point.\r\n placedCardGuids = { }\r\n placedCardCount = 0\r\nend\r\n\r\nfunction isInArea(object)\r\n if (object == nil) then\r\n return false\r\n end\r\n local position = object.getPosition()\r\n return position.x > CARD_AREA_X_THRESHOLD\r\n and (position.z > CARD_AREA_BASIC_Z_THRESHOLD\r\n or position.z < CARD_AREA_UPGRADED_Z_THRESHOLD)\r\nend\r\n\r\nfunction div(a,b)\r\n return (a - a % b) / b\r\nend",
"LuaScriptState": "{\"placedCards\":[]}",
"XmlUI": ""
},
{
"GUID": "7e47e1",
"Name": "Custom_Model",
"Transform": {
"posX": 66.5937347,
"posY": 1.41148317,
"posZ": 65.07523,
"rotX": 0.020805195,
"rotY": 270.018524,
"rotZ": 0.0167770777,
"scaleX": 1.2,
"scaleY": 1.2,
"scaleZ": 1.2
},
"Nickname": "Rogue",
"Description": "Level 0",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": true,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomMesh": {
"MeshURL": "https://pastebin.com/raw/ALrYhQGb",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/952965722515898740/E92441671B056D4CDF99DF9E6C88BE6598AAB50F/",
"NormalURL": "",
"ColliderURL": "",
"Convex": true,
"MaterialIndex": 3,
"TypeIndex": 0,
"CustomShader": {
"SpecularColor": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"SpecularIntensity": 0.0,
"SpecularSharpness": 2.0,
"FresnelStrength": 0.0
},
"CastShadows": true
},
"LuaScript": "-- Class card bag implementation. Mimics the behavior of the previous SCED\r\n-- card memory bags, but spawns cards from the All Cards Bag instead.\r\n--\r\n-- The All Cards Bag handles indexing of the player cards by class and level, as\r\n-- well as sorting those lists. See that object for more information.\r\n\r\nlocal allCardsBagGuid = \"15bb07\"\r\n\r\n-- Lines which define the card layout area. The X threshold is shared, basic\r\n-- cards have Z > 47 while upgrades have Z < -46\r\n-- Note that the SCED table is rotated, making X the vertical (up the table)\r\n-- axis and Z the side-to-side axis\r\nlocal CARD_AREA_X_THRESHOLD = 22\r\nlocal CARD_AREA_BASIC_Z_THRESHOLD = 47\r\nlocal CARD_AREA_UPGRADED_Z_THRESHOLD = -46\r\n\r\nlocal skillCount = 0\r\nlocal eventCount = 0\r\nlocal assetCount = 0\r\n\r\n-- Coordinates to begin laying out cards to match the reserved areas of the\r\n-- table. Cards will lay out horizontally, then create additional rows\r\nlocal startPositions = {\r\n upgrades = {\r\n skill = Vector(58.09966, 1.36, -47.42),\r\n event = Vector(52.94421, 1.36, -47.42),\r\n asset = Vector(40.29005, 1.36, -47.42),\r\n },\r\n level0 = {\r\n skill = Vector(58.38383, 1.36, 92.39036),\r\n event = Vector(53.22857, 1.36, 92.44123),\r\n asset = Vector(40.9602, 1.36, 92.44869),\r\n },\r\n}\r\n\r\n-- Amount to shift for the next card (zShift) or next row of cards (xShift)\r\n-- Note that the table rotation is weird, and the X axis is vertical while the\r\n-- Z axis is horizontal\r\nlocal zShift = -2.29998\r\nlocal xShift = -3.66572\r\nlocal yRotation = 270\r\nlocal cardsPerRow = 20\r\n\r\n-- Tracks cards which are placed by this \"bag\" so they can be recalled\r\nlocal placedCardGuids = { }\r\nlocal placedCardsCount = 0\r\n\r\n-- In order to mimic the behavior of the previous memory buttons we use a\r\n-- a temporary bag when recalling objects. This bag is tiny and transparent,\r\n-- and will be placed at the same location as this object. Once all placed\r\n-- cards are recalled bag to this bag, it will be destroyed\r\nlocal recallBag = {\r\n Name = \"Bag\",\r\n Transform = {\r\n scaleX = 0.01,\r\n scaleY = 0.01,\r\n scaleZ = 0.01,\r\n },\r\n ColorDiffuse = {\r\n r = 0,\r\n g = 0,\r\n b = 0,\r\n a = 0,\r\n },\r\n Locked = true,\r\n Grid = true,\r\n Snap = false,\r\n Tooltip = false,\r\n}\r\n\r\nfunction onLoad(savedData)\r\n createPlaceRecallButtons()\r\n placedCardGuids = { }\r\n placedCardCount = 0\r\n if (savedData ~= nil) then\r\n local saveState = JSON.decode(savedData)\r\n if (saveState.placedCards ~= nil) then\r\n placedCardGuids = saveState.placedCards\r\n end\r\n end\r\nend\r\n\r\nfunction onSave()\r\n local saveState = {\r\n placedCards = placedCardGuids,\r\n }\r\n\r\n return JSON.encode(saveState)\r\nend\r\n\r\n--Creates recall and place buttons\r\nfunction createPlaceRecallButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={1,0.1,2.1}, rotation={0,0,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={-1,0.1,2.1}, rotation={0,0,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n-- Spawns the set of cards identified by this objects Name (which should hold\r\n-- the class) and description (whether to spawn basic cards or upgraded)\r\nfunction buttonClick_place()\r\n -- Cards already on the table, don't spawn more\r\n if (placedCardCount > 0) then\r\n return\r\n end\r\n local cardClass = self.getName()\r\n local isUpgraded = false\r\n if (self.getDescription() == \"Upgrades\") then\r\n isUpgraded = true\r\n end\r\n skillCount = 0\r\n eventCount = 0\r\n assetCount = 0\r\n local allCardsBag = getObjectFromGUID(allCardsBagGuid)\r\n local cardList = allCardsBag.call(\"getCardsByClassAndLevel\", {class = cardClass, upgraded = isUpgraded})\r\n placeCards(cardList)\r\nend\r\n\r\n-- Spawn all cards from the returned index\r\nfunction placeCards(cardIdList)\r\n local allCardsBag = getObjectFromGUID(allCardsBagGuid)\r\n local indexReady = allCardsBag.call(\"isIndexReady\")\r\n if (not indexReady) then\r\n broadcastToAll(\"Still loading player cards, please try again in a few seconds\", {0.9, 0.2, 0.2})\r\n return\r\n end\r\n\r\n for _, cardId in ipairs(cardIdList) do\r\n local card = allCardsBag.call(\"getCardById\", { id = cardId })\r\n placeCard(card.data, card.metadata)\r\n end\r\nend\r\n\r\nfunction placeCard(cardData, cardMetadata)\r\n local destinationPos\r\n if (cardMetadata.type == \"Skill\") then\r\n destinationPos = getSkillPosition(cardMetadata.level > 0)\r\n elseif (cardMetadata.type == \"Event\") then\r\n destinationPos = getEventPosition(cardMetadata.level > 0)\r\n elseif (cardMetadata.type == \"Asset\") then\r\n destinationPos = getAssetPosition(cardMetadata.level > 0)\r\n end\r\n -- Clear the GUID from the card's data so it will get a new GUID on spawn.\r\n -- This solves the issue of duplicate GUIDs being spawned and causing problems\r\n -- with recall\r\n cardData.GUID = nil\r\n local spawnedCard = spawnObjectData({\r\n data = cardData,\r\n position = destinationPos,\r\n rotation = {0, yRotation, 0},\r\n callback_function = recordPlacedCard})\r\nend\r\n\r\n-- Returns the table position where the next skill should be placed\r\n-- Param isUpgraded: True if it's an upgraded card (right side of the table),\r\n-- false for a Level 0 card (left side of table)\r\nfunction getSkillPosition(isUpgraded)\r\n local skillPos\r\n if (isUpgraded) then\r\n skillPos = startPositions.upgrades.skill:copy()\r\n else\r\n skillPos = startPositions.level0.skill:copy()\r\n end\r\n local shift = Vector(div(skillCount, cardsPerRow) * xShift, 0, (skillCount % cardsPerRow) * zShift)\r\n skillPos:add(shift)\r\n skillCount = skillCount + 1\r\n\r\n return skillPos\r\nend\r\n\r\n-- Returns the table position where the next event should be placed\r\n-- Param isUpgraded: True if it's an upgraded card (right side of the table),\r\n-- false for a Level 0 card (left side of table)\r\nfunction getEventPosition(isUpgraded)\r\n local eventPos\r\n if (isUpgraded) then\r\n eventPos = startPositions.upgrades.event:copy()\r\n else\r\n eventPos = startPositions.level0.event:copy()\r\n end\r\n local shift = Vector(div(eventCount, cardsPerRow) * xShift, 0, (eventCount % cardsPerRow) * zShift)\r\n eventPos:add(shift)\r\n eventCount = eventCount + 1\r\n\r\n return eventPos\r\nend\r\n\r\n-- Returns the table position where the next asset should be placed\r\n-- Param isUpgraded: True if it's an upgraded card (right side of the table),\r\n-- false for a Level 0 card (left side of table)\r\nfunction getAssetPosition(isUpgraded)\r\n local assetPos\r\n if (isUpgraded) then\r\n assetPos = startPositions.upgrades.asset:copy()\r\n else\r\n assetPos = startPositions.level0.asset:copy()\r\n end\r\n local shift = Vector(div(assetCount, cardsPerRow) * xShift, 0, (assetCount % cardsPerRow) * zShift)\r\n assetPos:add(shift)\r\n assetCount = assetCount + 1\r\n\r\n return assetPos\r\nend\r\n\r\n-- Callback function which adds a spawned card to the tracking list\r\nfunction recordPlacedCard(spawnedCard)\r\n if (spawnedCard.getName() == \"Protecting the Anirniq (2)\") then\r\n log(\"Spawned PtA \"..spawnedCard.getGUID())\r\n end\r\n placedCardGuids[spawnedCard.getGUID()] = true\r\n placedCardCount = placedCardCount + 1\r\nend\r\n\r\n-- Recalls all spawned cards to the bag, and clears the placedCardGuids list\r\nfunction buttonClick_recall()\r\n local trash = spawnObjectData({data = recallBag, position = self.getPosition()})\r\n for cardGuid, _ in pairs(placedCardGuids) do\r\n local card = getObjectFromGUID(cardGuid)\r\n if (card ~= nil) then\r\n trash.putObject(card)\r\n placedCardGuids[cardGuid] = nil\r\n placedCardCount = placedCardCount - 1\r\n end\r\n end\r\n\r\n if (placedCardCount > 0) then\r\n -- Couldn't recall all the cards, check and pull them from decks\r\n local decksInArea = { }\r\n local allObjects = getAllObjects()\r\n for _, object in ipairs(allObjects) do\r\n if (object.name == \"Deck\" and isInArea(object)) then\r\n table.insert(decksInArea, object)\r\n end\r\n end\r\n for _, deck in ipairs(decksInArea) do\r\n local cardsInDeck = deck.getObjects()\r\n for i, card in ipairs(cardsInDeck) do\r\n if (placedCardGuids[card.guid]) then\r\n trash.putObject(deck.takeObject({ guid = card.guid }))\r\n break\r\n end\r\n end\r\n end\r\n end\r\n\r\n trash.destruct()\r\n -- We've recalled everything we can, some cards may have been moved out of the\r\n -- card area. Just reset at this point.\r\n placedCardGuids = { }\r\n placedCardCount = 0\r\nend\r\n\r\nfunction isInArea(object)\r\n if (object == nil) then\r\n return false\r\n end\r\n local position = object.getPosition()\r\n return position.x > CARD_AREA_X_THRESHOLD\r\n and (position.z > CARD_AREA_BASIC_Z_THRESHOLD\r\n or position.z < CARD_AREA_UPGRADED_Z_THRESHOLD)\r\nend\r\n\r\nfunction div(a,b)\r\n return (a - a % b) / b\r\nend",
"LuaScriptState": "{\"placedCards\":[]}",
"XmlUI": ""
},
{
"GUID": "f39af2",
"Name": "Custom_Model",
"Transform": {
"posX": 66.5834,
"posY": 1.40989959,
"posZ": 59.6779671,
"rotX": 0.0208053477,
"rotY": 270.018524,
"rotZ": 0.0167770945,
"scaleX": 1.2,
"scaleY": 1.2,
"scaleZ": 1.2
},
"Nickname": "Mystic",
"Description": "Level 0",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": true,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomMesh": {
"MeshURL": "https://pastebin.com/raw/ALrYhQGb",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/952965722516557267/757887224F6C37104CDFFE241FAD09B57117D670/",
"NormalURL": "",
"ColliderURL": "",
"Convex": true,
"MaterialIndex": 3,
"TypeIndex": 0,
"CustomShader": {
"SpecularColor": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"SpecularIntensity": 0.0,
"SpecularSharpness": 2.0,
"FresnelStrength": 0.0
},
"CastShadows": true
},
"LuaScript": "-- Class card bag implementation. Mimics the behavior of the previous SCED\r\n-- card memory bags, but spawns cards from the All Cards Bag instead.\r\n--\r\n-- The All Cards Bag handles indexing of the player cards by class and level, as\r\n-- well as sorting those lists. See that object for more information.\r\n\r\nlocal allCardsBagGuid = \"15bb07\"\r\n\r\n-- Lines which define the card layout area. The X threshold is shared, basic\r\n-- cards have Z > 47 while upgrades have Z < -46\r\n-- Note that the SCED table is rotated, making X the vertical (up the table)\r\n-- axis and Z the side-to-side axis\r\nlocal CARD_AREA_X_THRESHOLD = 22\r\nlocal CARD_AREA_BASIC_Z_THRESHOLD = 47\r\nlocal CARD_AREA_UPGRADED_Z_THRESHOLD = -46\r\n\r\nlocal skillCount = 0\r\nlocal eventCount = 0\r\nlocal assetCount = 0\r\n\r\n-- Coordinates to begin laying out cards to match the reserved areas of the\r\n-- table. Cards will lay out horizontally, then create additional rows\r\nlocal startPositions = {\r\n upgrades = {\r\n skill = Vector(58.09966, 1.36, -47.42),\r\n event = Vector(52.94421, 1.36, -47.42),\r\n asset = Vector(40.29005, 1.36, -47.42),\r\n },\r\n level0 = {\r\n skill = Vector(58.38383, 1.36, 92.39036),\r\n event = Vector(53.22857, 1.36, 92.44123),\r\n asset = Vector(40.9602, 1.36, 92.44869),\r\n },\r\n}\r\n\r\n-- Amount to shift for the next card (zShift) or next row of cards (xShift)\r\n-- Note that the table rotation is weird, and the X axis is vertical while the\r\n-- Z axis is horizontal\r\nlocal zShift = -2.29998\r\nlocal xShift = -3.66572\r\nlocal yRotation = 270\r\nlocal cardsPerRow = 20\r\n\r\n-- Tracks cards which are placed by this \"bag\" so they can be recalled\r\nlocal placedCardGuids = { }\r\nlocal placedCardsCount = 0\r\n\r\n-- In order to mimic the behavior of the previous memory buttons we use a\r\n-- a temporary bag when recalling objects. This bag is tiny and transparent,\r\n-- and will be placed at the same location as this object. Once all placed\r\n-- cards are recalled bag to this bag, it will be destroyed\r\nlocal recallBag = {\r\n Name = \"Bag\",\r\n Transform = {\r\n scaleX = 0.01,\r\n scaleY = 0.01,\r\n scaleZ = 0.01,\r\n },\r\n ColorDiffuse = {\r\n r = 0,\r\n g = 0,\r\n b = 0,\r\n a = 0,\r\n },\r\n Locked = true,\r\n Grid = true,\r\n Snap = false,\r\n Tooltip = false,\r\n}\r\n\r\nfunction onLoad(savedData)\r\n createPlaceRecallButtons()\r\n placedCardGuids = { }\r\n placedCardCount = 0\r\n if (savedData ~= nil) then\r\n local saveState = JSON.decode(savedData)\r\n if (saveState.placedCards ~= nil) then\r\n placedCardGuids = saveState.placedCards\r\n end\r\n end\r\nend\r\n\r\nfunction onSave()\r\n local saveState = {\r\n placedCards = placedCardGuids,\r\n }\r\n\r\n return JSON.encode(saveState)\r\nend\r\n\r\n--Creates recall and place buttons\r\nfunction createPlaceRecallButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={1,0.1,2.1}, rotation={0,0,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={-1,0.1,2.1}, rotation={0,0,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n-- Spawns the set of cards identified by this objects Name (which should hold\r\n-- the class) and description (whether to spawn basic cards or upgraded)\r\nfunction buttonClick_place()\r\n -- Cards already on the table, don't spawn more\r\n if (placedCardCount > 0) then\r\n return\r\n end\r\n local cardClass = self.getName()\r\n local isUpgraded = false\r\n if (self.getDescription() == \"Upgrades\") then\r\n isUpgraded = true\r\n end\r\n skillCount = 0\r\n eventCount = 0\r\n assetCount = 0\r\n local allCardsBag = getObjectFromGUID(allCardsBagGuid)\r\n local cardList = allCardsBag.call(\"getCardsByClassAndLevel\", {class = cardClass, upgraded = isUpgraded})\r\n placeCards(cardList)\r\nend\r\n\r\n-- Spawn all cards from the returned index\r\nfunction placeCards(cardIdList)\r\n local allCardsBag = getObjectFromGUID(allCardsBagGuid)\r\n local indexReady = allCardsBag.call(\"isIndexReady\")\r\n if (not indexReady) then\r\n broadcastToAll(\"Still loading player cards, please try again in a few seconds\", {0.9, 0.2, 0.2})\r\n return\r\n end\r\n\r\n for _, cardId in ipairs(cardIdList) do\r\n local card = allCardsBag.call(\"getCardById\", { id = cardId })\r\n placeCard(card.data, card.metadata)\r\n end\r\nend\r\n\r\nfunction placeCard(cardData, cardMetadata)\r\n local destinationPos\r\n if (cardMetadata.type == \"Skill\") then\r\n destinationPos = getSkillPosition(cardMetadata.level > 0)\r\n elseif (cardMetadata.type == \"Event\") then\r\n destinationPos = getEventPosition(cardMetadata.level > 0)\r\n elseif (cardMetadata.type == \"Asset\") then\r\n destinationPos = getAssetPosition(cardMetadata.level > 0)\r\n end\r\n -- Clear the GUID from the card's data so it will get a new GUID on spawn.\r\n -- This solves the issue of duplicate GUIDs being spawned and causing problems\r\n -- with recall\r\n cardData.GUID = nil\r\n local spawnedCard = spawnObjectData({\r\n data = cardData,\r\n position = destinationPos,\r\n rotation = {0, yRotation, 0},\r\n callback_function = recordPlacedCard})\r\nend\r\n\r\n-- Returns the table position where the next skill should be placed\r\n-- Param isUpgraded: True if it's an upgraded card (right side of the table),\r\n-- false for a Level 0 card (left side of table)\r\nfunction getSkillPosition(isUpgraded)\r\n local skillPos\r\n if (isUpgraded) then\r\n skillPos = startPositions.upgrades.skill:copy()\r\n else\r\n skillPos = startPositions.level0.skill:copy()\r\n end\r\n local shift = Vector(div(skillCount, cardsPerRow) * xShift, 0, (skillCount % cardsPerRow) * zShift)\r\n skillPos:add(shift)\r\n skillCount = skillCount + 1\r\n\r\n return skillPos\r\nend\r\n\r\n-- Returns the table position where the next event should be placed\r\n-- Param isUpgraded: True if it's an upgraded card (right side of the table),\r\n-- false for a Level 0 card (left side of table)\r\nfunction getEventPosition(isUpgraded)\r\n local eventPos\r\n if (isUpgraded) then\r\n eventPos = startPositions.upgrades.event:copy()\r\n else\r\n eventPos = startPositions.level0.event:copy()\r\n end\r\n local shift = Vector(div(eventCount, cardsPerRow) * xShift, 0, (eventCount % cardsPerRow) * zShift)\r\n eventPos:add(shift)\r\n eventCount = eventCount + 1\r\n\r\n return eventPos\r\nend\r\n\r\n-- Returns the table position where the next asset should be placed\r\n-- Param isUpgraded: True if it's an upgraded card (right side of the table),\r\n-- false for a Level 0 card (left side of table)\r\nfunction getAssetPosition(isUpgraded)\r\n local assetPos\r\n if (isUpgraded) then\r\n assetPos = startPositions.upgrades.asset:copy()\r\n else\r\n assetPos = startPositions.level0.asset:copy()\r\n end\r\n local shift = Vector(div(assetCount, cardsPerRow) * xShift, 0, (assetCount % cardsPerRow) * zShift)\r\n assetPos:add(shift)\r\n assetCount = assetCount + 1\r\n\r\n return assetPos\r\nend\r\n\r\n-- Callback function which adds a spawned card to the tracking list\r\nfunction recordPlacedCard(spawnedCard)\r\n if (spawnedCard.getName() == \"Protecting the Anirniq (2)\") then\r\n log(\"Spawned PtA \"..spawnedCard.getGUID())\r\n end\r\n placedCardGuids[spawnedCard.getGUID()] = true\r\n placedCardCount = placedCardCount + 1\r\nend\r\n\r\n-- Recalls all spawned cards to the bag, and clears the placedCardGuids list\r\nfunction buttonClick_recall()\r\n local trash = spawnObjectData({data = recallBag, position = self.getPosition()})\r\n for cardGuid, _ in pairs(placedCardGuids) do\r\n local card = getObjectFromGUID(cardGuid)\r\n if (card ~= nil) then\r\n trash.putObject(card)\r\n placedCardGuids[cardGuid] = nil\r\n placedCardCount = placedCardCount - 1\r\n end\r\n end\r\n\r\n if (placedCardCount > 0) then\r\n -- Couldn't recall all the cards, check and pull them from decks\r\n local decksInArea = { }\r\n local allObjects = getAllObjects()\r\n for _, object in ipairs(allObjects) do\r\n if (object.name == \"Deck\" and isInArea(object)) then\r\n table.insert(decksInArea, object)\r\n end\r\n end\r\n for _, deck in ipairs(decksInArea) do\r\n local cardsInDeck = deck.getObjects()\r\n for i, card in ipairs(cardsInDeck) do\r\n if (placedCardGuids[card.guid]) then\r\n trash.putObject(deck.takeObject({ guid = card.guid }))\r\n break\r\n end\r\n end\r\n end\r\n end\r\n\r\n trash.destruct()\r\n -- We've recalled everything we can, some cards may have been moved out of the\r\n -- card area. Just reset at this point.\r\n placedCardGuids = { }\r\n placedCardCount = 0\r\nend\r\n\r\nfunction isInArea(object)\r\n if (object == nil) then\r\n return false\r\n end\r\n local position = object.getPosition()\r\n return position.x > CARD_AREA_X_THRESHOLD\r\n and (position.z > CARD_AREA_BASIC_Z_THRESHOLD\r\n or position.z < CARD_AREA_UPGRADED_Z_THRESHOLD)\r\nend\r\n\r\nfunction div(a,b)\r\n return (a - a % b) / b\r\nend",
"LuaScriptState": "{\"placedCards\":[]}",
"XmlUI": ""
},
{
"GUID": "93fc45",
"Name": "Custom_Model",
"Transform": {
"posX": 66.57824,
"posY": 1.40833783,
"posZ": 54.34889,
"rotX": 0.0208053365,
"rotY": 270.018524,
"rotZ": 0.016776979,
"scaleX": 1.2,
"scaleY": 1.2,
"scaleZ": 1.2
},
"Nickname": "Survivor",
"Description": "Level 0",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": true,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomMesh": {
"MeshURL": "https://pastebin.com/raw/ALrYhQGb",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/952965722515960460/F43F63452854B10B416FDF3BF9EF3068E6E68F26/",
"NormalURL": "",
"ColliderURL": "",
"Convex": true,
"MaterialIndex": 3,
"TypeIndex": 0,
"CustomShader": {
"SpecularColor": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"SpecularIntensity": 0.0,
"SpecularSharpness": 2.0,
"FresnelStrength": 0.0
},
"CastShadows": true
},
"LuaScript": "-- Class card bag implementation. Mimics the behavior of the previous SCED\r\n-- card memory bags, but spawns cards from the All Cards Bag instead.\r\n--\r\n-- The All Cards Bag handles indexing of the player cards by class and level, as\r\n-- well as sorting those lists. See that object for more information.\r\n\r\nlocal allCardsBagGuid = \"15bb07\"\r\n\r\n-- Lines which define the card layout area. The X threshold is shared, basic\r\n-- cards have Z > 47 while upgrades have Z < -46\r\n-- Note that the SCED table is rotated, making X the vertical (up the table)\r\n-- axis and Z the side-to-side axis\r\nlocal CARD_AREA_X_THRESHOLD = 22\r\nlocal CARD_AREA_BASIC_Z_THRESHOLD = 47\r\nlocal CARD_AREA_UPGRADED_Z_THRESHOLD = -46\r\n\r\nlocal skillCount = 0\r\nlocal eventCount = 0\r\nlocal assetCount = 0\r\n\r\n-- Coordinates to begin laying out cards to match the reserved areas of the\r\n-- table. Cards will lay out horizontally, then create additional rows\r\nlocal startPositions = {\r\n upgrades = {\r\n skill = Vector(58.09966, 1.36, -47.42),\r\n event = Vector(52.94421, 1.36, -47.42),\r\n asset = Vector(40.29005, 1.36, -47.42),\r\n },\r\n level0 = {\r\n skill = Vector(58.38383, 1.36, 92.39036),\r\n event = Vector(53.22857, 1.36, 92.44123),\r\n asset = Vector(40.9602, 1.36, 92.44869),\r\n },\r\n}\r\n\r\n-- Amount to shift for the next card (zShift) or next row of cards (xShift)\r\n-- Note that the table rotation is weird, and the X axis is vertical while the\r\n-- Z axis is horizontal\r\nlocal zShift = -2.29998\r\nlocal xShift = -3.66572\r\nlocal yRotation = 270\r\nlocal cardsPerRow = 20\r\n\r\n-- Tracks cards which are placed by this \"bag\" so they can be recalled\r\nlocal placedCardGuids = { }\r\nlocal placedCardsCount = 0\r\n\r\n-- In order to mimic the behavior of the previous memory buttons we use a\r\n-- a temporary bag when recalling objects. This bag is tiny and transparent,\r\n-- and will be placed at the same location as this object. Once all placed\r\n-- cards are recalled bag to this bag, it will be destroyed\r\nlocal recallBag = {\r\n Name = \"Bag\",\r\n Transform = {\r\n scaleX = 0.01,\r\n scaleY = 0.01,\r\n scaleZ = 0.01,\r\n },\r\n ColorDiffuse = {\r\n r = 0,\r\n g = 0,\r\n b = 0,\r\n a = 0,\r\n },\r\n Locked = true,\r\n Grid = true,\r\n Snap = false,\r\n Tooltip = false,\r\n}\r\n\r\nfunction onLoad(savedData)\r\n createPlaceRecallButtons()\r\n placedCardGuids = { }\r\n placedCardCount = 0\r\n if (savedData ~= nil) then\r\n local saveState = JSON.decode(savedData)\r\n if (saveState.placedCards ~= nil) then\r\n placedCardGuids = saveState.placedCards\r\n end\r\n end\r\nend\r\n\r\nfunction onSave()\r\n local saveState = {\r\n placedCards = placedCardGuids,\r\n }\r\n\r\n return JSON.encode(saveState)\r\nend\r\n\r\n--Creates recall and place buttons\r\nfunction createPlaceRecallButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={1,0.1,2.1}, rotation={0,0,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={-1,0.1,2.1}, rotation={0,0,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n-- Spawns the set of cards identified by this objects Name (which should hold\r\n-- the class) and description (whether to spawn basic cards or upgraded)\r\nfunction buttonClick_place()\r\n -- Cards already on the table, don't spawn more\r\n if (placedCardCount > 0) then\r\n return\r\n end\r\n local cardClass = self.getName()\r\n local isUpgraded = false\r\n if (self.getDescription() == \"Upgrades\") then\r\n isUpgraded = true\r\n end\r\n skillCount = 0\r\n eventCount = 0\r\n assetCount = 0\r\n local allCardsBag = getObjectFromGUID(allCardsBagGuid)\r\n local cardList = allCardsBag.call(\"getCardsByClassAndLevel\", {class = cardClass, upgraded = isUpgraded})\r\n placeCards(cardList)\r\nend\r\n\r\n-- Spawn all cards from the returned index\r\nfunction placeCards(cardIdList)\r\n local allCardsBag = getObjectFromGUID(allCardsBagGuid)\r\n local indexReady = allCardsBag.call(\"isIndexReady\")\r\n if (not indexReady) then\r\n broadcastToAll(\"Still loading player cards, please try again in a few seconds\", {0.9, 0.2, 0.2})\r\n return\r\n end\r\n\r\n for _, cardId in ipairs(cardIdList) do\r\n local card = allCardsBag.call(\"getCardById\", { id = cardId })\r\n placeCard(card.data, card.metadata)\r\n end\r\nend\r\n\r\nfunction placeCard(cardData, cardMetadata)\r\n local destinationPos\r\n if (cardMetadata.type == \"Skill\") then\r\n destinationPos = getSkillPosition(cardMetadata.level > 0)\r\n elseif (cardMetadata.type == \"Event\") then\r\n destinationPos = getEventPosition(cardMetadata.level > 0)\r\n elseif (cardMetadata.type == \"Asset\") then\r\n destinationPos = getAssetPosition(cardMetadata.level > 0)\r\n end\r\n -- Clear the GUID from the card's data so it will get a new GUID on spawn.\r\n -- This solves the issue of duplicate GUIDs being spawned and causing problems\r\n -- with recall\r\n cardData.GUID = nil\r\n local spawnedCard = spawnObjectData({\r\n data = cardData,\r\n position = destinationPos,\r\n rotation = {0, yRotation, 0},\r\n callback_function = recordPlacedCard})\r\nend\r\n\r\n-- Returns the table position where the next skill should be placed\r\n-- Param isUpgraded: True if it's an upgraded card (right side of the table),\r\n-- false for a Level 0 card (left side of table)\r\nfunction getSkillPosition(isUpgraded)\r\n local skillPos\r\n if (isUpgraded) then\r\n skillPos = startPositions.upgrades.skill:copy()\r\n else\r\n skillPos = startPositions.level0.skill:copy()\r\n end\r\n local shift = Vector(div(skillCount, cardsPerRow) * xShift, 0, (skillCount % cardsPerRow) * zShift)\r\n skillPos:add(shift)\r\n skillCount = skillCount + 1\r\n\r\n return skillPos\r\nend\r\n\r\n-- Returns the table position where the next event should be placed\r\n-- Param isUpgraded: True if it's an upgraded card (right side of the table),\r\n-- false for a Level 0 card (left side of table)\r\nfunction getEventPosition(isUpgraded)\r\n local eventPos\r\n if (isUpgraded) then\r\n eventPos = startPositions.upgrades.event:copy()\r\n else\r\n eventPos = startPositions.level0.event:copy()\r\n end\r\n local shift = Vector(div(eventCount, cardsPerRow) * xShift, 0, (eventCount % cardsPerRow) * zShift)\r\n eventPos:add(shift)\r\n eventCount = eventCount + 1\r\n\r\n return eventPos\r\nend\r\n\r\n-- Returns the table position where the next asset should be placed\r\n-- Param isUpgraded: True if it's an upgraded card (right side of the table),\r\n-- false for a Level 0 card (left side of table)\r\nfunction getAssetPosition(isUpgraded)\r\n local assetPos\r\n if (isUpgraded) then\r\n assetPos = startPositions.upgrades.asset:copy()\r\n else\r\n assetPos = startPositions.level0.asset:copy()\r\n end\r\n local shift = Vector(div(assetCount, cardsPerRow) * xShift, 0, (assetCount % cardsPerRow) * zShift)\r\n assetPos:add(shift)\r\n assetCount = assetCount + 1\r\n\r\n return assetPos\r\nend\r\n\r\n-- Callback function which adds a spawned card to the tracking list\r\nfunction recordPlacedCard(spawnedCard)\r\n if (spawnedCard.getName() == \"Protecting the Anirniq (2)\") then\r\n log(\"Spawned PtA \"..spawnedCard.getGUID())\r\n end\r\n placedCardGuids[spawnedCard.getGUID()] = true\r\n placedCardCount = placedCardCount + 1\r\nend\r\n\r\n-- Recalls all spawned cards to the bag, and clears the placedCardGuids list\r\nfunction buttonClick_recall()\r\n local trash = spawnObjectData({data = recallBag, position = self.getPosition()})\r\n for cardGuid, _ in pairs(placedCardGuids) do\r\n local card = getObjectFromGUID(cardGuid)\r\n if (card ~= nil) then\r\n trash.putObject(card)\r\n placedCardGuids[cardGuid] = nil\r\n placedCardCount = placedCardCount - 1\r\n end\r\n end\r\n\r\n if (placedCardCount > 0) then\r\n -- Couldn't recall all the cards, check and pull them from decks\r\n local decksInArea = { }\r\n local allObjects = getAllObjects()\r\n for _, object in ipairs(allObjects) do\r\n if (object.name == \"Deck\" and isInArea(object)) then\r\n table.insert(decksInArea, object)\r\n end\r\n end\r\n for _, deck in ipairs(decksInArea) do\r\n local cardsInDeck = deck.getObjects()\r\n for i, card in ipairs(cardsInDeck) do\r\n if (placedCardGuids[card.guid]) then\r\n trash.putObject(deck.takeObject({ guid = card.guid }))\r\n break\r\n end\r\n end\r\n end\r\n end\r\n\r\n trash.destruct()\r\n -- We've recalled everything we can, some cards may have been moved out of the\r\n -- card area. Just reset at this point.\r\n placedCardGuids = { }\r\n placedCardCount = 0\r\nend\r\n\r\nfunction isInArea(object)\r\n if (object == nil) then\r\n return false\r\n end\r\n local position = object.getPosition()\r\n return position.x > CARD_AREA_X_THRESHOLD\r\n and (position.z > CARD_AREA_BASIC_Z_THRESHOLD\r\n or position.z < CARD_AREA_UPGRADED_Z_THRESHOLD)\r\nend\r\n\r\nfunction div(a,b)\r\n return (a - a % b) / b\r\nend",
"LuaScriptState": "{\"placedCards\":[]}",
"XmlUI": ""
},
{
"GUID": "2eee3b",
"Name": "Custom_Model",
"Transform": {
"posX": 66.59369,
"posY": 1.406785,
"posZ": 49.02466,
"rotX": 0.0208053645,
"rotY": 270.018524,
"rotZ": 0.0167770777,
"scaleX": 1.2,
"scaleY": 1.2,
"scaleZ": 1.2
},
"Nickname": "Neutral",
"Description": "Level 0",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": true,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomMesh": {
"MeshURL": "https://pastebin.com/raw/ALrYhQGb",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/952965722515017130/AD0A2EDADD663473879A6A391FACD32966983B17/",
"NormalURL": "",
"ColliderURL": "",
"Convex": true,
"MaterialIndex": 3,
"TypeIndex": 0,
"CustomShader": {
"SpecularColor": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"SpecularIntensity": 0.0,
"SpecularSharpness": 2.0,
"FresnelStrength": 0.0
},
"CastShadows": true
},
"LuaScript": "-- Class card bag implementation. Mimics the behavior of the previous SCED\r\n-- card memory bags, but spawns cards from the All Cards Bag instead.\r\n--\r\n-- The All Cards Bag handles indexing of the player cards by class and level, as\r\n-- well as sorting those lists. See that object for more information.\r\n\r\nlocal allCardsBagGuid = \"15bb07\"\r\n\r\n-- Lines which define the card layout area. The X threshold is shared, basic\r\n-- cards have Z > 47 while upgrades have Z < -46\r\n-- Note that the SCED table is rotated, making X the vertical (up the table)\r\n-- axis and Z the side-to-side axis\r\nlocal CARD_AREA_X_THRESHOLD = 22\r\nlocal CARD_AREA_BASIC_Z_THRESHOLD = 47\r\nlocal CARD_AREA_UPGRADED_Z_THRESHOLD = -46\r\n\r\nlocal skillCount = 0\r\nlocal eventCount = 0\r\nlocal assetCount = 0\r\n\r\n-- Coordinates to begin laying out cards to match the reserved areas of the\r\n-- table. Cards will lay out horizontally, then create additional rows\r\nlocal startPositions = {\r\n upgrades = {\r\n skill = Vector(58.09966, 1.36, -47.42),\r\n event = Vector(52.94421, 1.36, -47.42),\r\n asset = Vector(40.29005, 1.36, -47.42),\r\n },\r\n level0 = {\r\n skill = Vector(58.38383, 1.36, 92.39036),\r\n event = Vector(53.22857, 1.36, 92.44123),\r\n asset = Vector(40.9602, 1.36, 92.44869),\r\n },\r\n}\r\n\r\n-- Amount to shift for the next card (zShift) or next row of cards (xShift)\r\n-- Note that the table rotation is weird, and the X axis is vertical while the\r\n-- Z axis is horizontal\r\nlocal zShift = -2.29998\r\nlocal xShift = -3.66572\r\nlocal yRotation = 270\r\nlocal cardsPerRow = 20\r\n\r\n-- Tracks cards which are placed by this \"bag\" so they can be recalled\r\nlocal placedCardGuids = { }\r\nlocal placedCardsCount = 0\r\n\r\n-- In order to mimic the behavior of the previous memory buttons we use a\r\n-- a temporary bag when recalling objects. This bag is tiny and transparent,\r\n-- and will be placed at the same location as this object. Once all placed\r\n-- cards are recalled bag to this bag, it will be destroyed\r\nlocal recallBag = {\r\n Name = \"Bag\",\r\n Transform = {\r\n scaleX = 0.01,\r\n scaleY = 0.01,\r\n scaleZ = 0.01,\r\n },\r\n ColorDiffuse = {\r\n r = 0,\r\n g = 0,\r\n b = 0,\r\n a = 0,\r\n },\r\n Locked = true,\r\n Grid = true,\r\n Snap = false,\r\n Tooltip = false,\r\n}\r\n\r\nfunction onLoad(savedData)\r\n createPlaceRecallButtons()\r\n placedCardGuids = { }\r\n placedCardCount = 0\r\n if (savedData ~= nil) then\r\n local saveState = JSON.decode(savedData)\r\n if (saveState.placedCards ~= nil) then\r\n placedCardGuids = saveState.placedCards\r\n end\r\n end\r\nend\r\n\r\nfunction onSave()\r\n local saveState = {\r\n placedCards = placedCardGuids,\r\n }\r\n\r\n return JSON.encode(saveState)\r\nend\r\n\r\n--Creates recall and place buttons\r\nfunction createPlaceRecallButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={1,0.1,2.1}, rotation={0,0,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={-1,0.1,2.1}, rotation={0,0,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n-- Spawns the set of cards identified by this objects Name (which should hold\r\n-- the class) and description (whether to spawn basic cards or upgraded)\r\nfunction buttonClick_place()\r\n -- Cards already on the table, don't spawn more\r\n if (placedCardCount > 0) then\r\n return\r\n end\r\n local cardClass = self.getName()\r\n local isUpgraded = false\r\n if (self.getDescription() == \"Upgrades\") then\r\n isUpgraded = true\r\n end\r\n skillCount = 0\r\n eventCount = 0\r\n assetCount = 0\r\n local allCardsBag = getObjectFromGUID(allCardsBagGuid)\r\n local cardList = allCardsBag.call(\"getCardsByClassAndLevel\", {class = cardClass, upgraded = isUpgraded})\r\n placeCards(cardList)\r\nend\r\n\r\n-- Spawn all cards from the returned index\r\nfunction placeCards(cardIdList)\r\n local allCardsBag = getObjectFromGUID(allCardsBagGuid)\r\n local indexReady = allCardsBag.call(\"isIndexReady\")\r\n if (not indexReady) then\r\n broadcastToAll(\"Still loading player cards, please try again in a few seconds\", {0.9, 0.2, 0.2})\r\n return\r\n end\r\n\r\n for _, cardId in ipairs(cardIdList) do\r\n local card = allCardsBag.call(\"getCardById\", { id = cardId })\r\n placeCard(card.data, card.metadata)\r\n end\r\nend\r\n\r\nfunction placeCard(cardData, cardMetadata)\r\n local destinationPos\r\n if (cardMetadata.type == \"Skill\") then\r\n destinationPos = getSkillPosition(cardMetadata.level > 0)\r\n elseif (cardMetadata.type == \"Event\") then\r\n destinationPos = getEventPosition(cardMetadata.level > 0)\r\n elseif (cardMetadata.type == \"Asset\") then\r\n destinationPos = getAssetPosition(cardMetadata.level > 0)\r\n end\r\n -- Clear the GUID from the card's data so it will get a new GUID on spawn.\r\n -- This solves the issue of duplicate GUIDs being spawned and causing problems\r\n -- with recall\r\n cardData.GUID = nil\r\n local spawnedCard = spawnObjectData({\r\n data = cardData,\r\n position = destinationPos,\r\n rotation = {0, yRotation, 0},\r\n callback_function = recordPlacedCard})\r\nend\r\n\r\n-- Returns the table position where the next skill should be placed\r\n-- Param isUpgraded: True if it's an upgraded card (right side of the table),\r\n-- false for a Level 0 card (left side of table)\r\nfunction getSkillPosition(isUpgraded)\r\n local skillPos\r\n if (isUpgraded) then\r\n skillPos = startPositions.upgrades.skill:copy()\r\n else\r\n skillPos = startPositions.level0.skill:copy()\r\n end\r\n local shift = Vector(div(skillCount, cardsPerRow) * xShift, 0, (skillCount % cardsPerRow) * zShift)\r\n skillPos:add(shift)\r\n skillCount = skillCount + 1\r\n\r\n return skillPos\r\nend\r\n\r\n-- Returns the table position where the next event should be placed\r\n-- Param isUpgraded: True if it's an upgraded card (right side of the table),\r\n-- false for a Level 0 card (left side of table)\r\nfunction getEventPosition(isUpgraded)\r\n local eventPos\r\n if (isUpgraded) then\r\n eventPos = startPositions.upgrades.event:copy()\r\n else\r\n eventPos = startPositions.level0.event:copy()\r\n end\r\n local shift = Vector(div(eventCount, cardsPerRow) * xShift, 0, (eventCount % cardsPerRow) * zShift)\r\n eventPos:add(shift)\r\n eventCount = eventCount + 1\r\n\r\n return eventPos\r\nend\r\n\r\n-- Returns the table position where the next asset should be placed\r\n-- Param isUpgraded: True if it's an upgraded card (right side of the table),\r\n-- false for a Level 0 card (left side of table)\r\nfunction getAssetPosition(isUpgraded)\r\n local assetPos\r\n if (isUpgraded) then\r\n assetPos = startPositions.upgrades.asset:copy()\r\n else\r\n assetPos = startPositions.level0.asset:copy()\r\n end\r\n local shift = Vector(div(assetCount, cardsPerRow) * xShift, 0, (assetCount % cardsPerRow) * zShift)\r\n assetPos:add(shift)\r\n assetCount = assetCount + 1\r\n\r\n return assetPos\r\nend\r\n\r\n-- Callback function which adds a spawned card to the tracking list\r\nfunction recordPlacedCard(spawnedCard)\r\n if (spawnedCard.getName() == \"Protecting the Anirniq (2)\") then\r\n log(\"Spawned PtA \"..spawnedCard.getGUID())\r\n end\r\n placedCardGuids[spawnedCard.getGUID()] = true\r\n placedCardCount = placedCardCount + 1\r\nend\r\n\r\n-- Recalls all spawned cards to the bag, and clears the placedCardGuids list\r\nfunction buttonClick_recall()\r\n local trash = spawnObjectData({data = recallBag, position = self.getPosition()})\r\n for cardGuid, _ in pairs(placedCardGuids) do\r\n local card = getObjectFromGUID(cardGuid)\r\n if (card ~= nil) then\r\n trash.putObject(card)\r\n placedCardGuids[cardGuid] = nil\r\n placedCardCount = placedCardCount - 1\r\n end\r\n end\r\n\r\n if (placedCardCount > 0) then\r\n -- Couldn't recall all the cards, check and pull them from decks\r\n local decksInArea = { }\r\n local allObjects = getAllObjects()\r\n for _, object in ipairs(allObjects) do\r\n if (object.name == \"Deck\" and isInArea(object)) then\r\n table.insert(decksInArea, object)\r\n end\r\n end\r\n for _, deck in ipairs(decksInArea) do\r\n local cardsInDeck = deck.getObjects()\r\n for i, card in ipairs(cardsInDeck) do\r\n if (placedCardGuids[card.guid]) then\r\n trash.putObject(deck.takeObject({ guid = card.guid }))\r\n break\r\n end\r\n end\r\n end\r\n end\r\n\r\n trash.destruct()\r\n -- We've recalled everything we can, some cards may have been moved out of the\r\n -- card area. Just reset at this point.\r\n placedCardGuids = { }\r\n placedCardCount = 0\r\nend\r\n\r\nfunction isInArea(object)\r\n if (object == nil) then\r\n return false\r\n end\r\n local position = object.getPosition()\r\n return position.x > CARD_AREA_X_THRESHOLD\r\n and (position.z > CARD_AREA_BASIC_Z_THRESHOLD\r\n or position.z < CARD_AREA_UPGRADED_Z_THRESHOLD)\r\nend\r\n\r\nfunction div(a,b)\r\n return (a - a % b) / b\r\nend",
"LuaScriptState": "{\"placedCards\":[]}",
"XmlUI": ""
},
{
"GUID": "5fe24e",
"Name": "Custom_Model",
"Transform": {
"posX": -33.327198,
"posY": 1.29228187,
"posZ": -73.22582,
"rotX": 0.0208101459,
"rotY": 270.00058,
"rotZ": 0.016770687,
"scaleX": 0.5,
"scaleY": 0.139652729,
"scaleZ": 0.5
},
"Nickname": "Promo Investigators",
"Description": "",
"GMNotes": "investigators/promos.json",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0,
"a": 0.274509817
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomMesh": {
"MeshURL": "https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/core_h_MSH.obj",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/778493489662643453/D2A4691056C419B9766927701A20E932C69986F9/",
"NormalURL": "",
"ColliderURL": "",
"Convex": true,
"MaterialIndex": 3,
"TypeIndex": 0,
"CustomShader": {
"SpecularColor": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"SpecularIntensity": 0.0,
"SpecularSharpness": 2.0,
"FresnelStrength": 0.0
},
"CastShadows": true
},
"LuaScript": "\r\nfunction onload(saved_data)\r\n createDownloadButton()\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make Download button\r\nfunction createDownloadButton()\r\n self.createButton({\r\n label=\"Download\", click_function=\"buttonClick_download\", function_owner=self,\r\n position={0,0.1,7}, rotation={0,0,0}, height=850, width=3300,\r\n font_size=700, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by download button,\r\nfunction buttonClick_download()\r\n local params = { url = self.getGMNotes(), replace = self.guid }\r\n Global.call('placeholder_download', params)\r\nend",
"LuaScriptState": "{\"ml\":{\"10681c\":{\"lock\":false,\"pos\":{\"x\":-26.3001708984375,\"y\":1.26878070831299,\"z\":-76.9456329345703},\"rot\":{\"x\":359.979187011719,\"y\":90.0019912719727,\"z\":359.983215332031}},\"6bd479\":{\"lock\":false,\"pos\":{\"x\":-16.6361274719238,\"y\":1.35761868953705,\"z\":-75.7012405395508},\"rot\":{\"x\":0.0208059512078762,\"y\":270.036193847656,\"z\":0.0167813580483198}},\"87a46c\":{\"lock\":false,\"pos\":{\"x\":-16.6359539031982,\"y\":1.35689568519592,\"z\":-78.1714630126953},\"rot\":{\"x\":0.0208228174597025,\"y\":269.978759765625,\"z\":0.0167602244764566}},\"8d4d81\":{\"lock\":false,\"pos\":{\"x\":-19.2936096191406,\"y\":1.30989539623261,\"z\":-76.9415512084961},\"rot\":{\"x\":0.0208087544888258,\"y\":269.999969482422,\"z\":0.0167708676308393}},\"8de7e4\":{\"lock\":false,\"pos\":{\"x\":-22.6157627105713,\"y\":1.30868756771088,\"z\":-76.946044921875},\"rot\":{\"x\":0.0167713053524494,\"y\":179.999969482422,\"z\":359.979187011719}},\"97b325\":{\"lock\":false,\"pos\":{\"x\":-16.6354160308838,\"y\":1.35725593566895,\"z\":-76.9414672851563},\"rot\":{\"x\":0.0208042003214359,\"y\":270.04345703125,\"z\":0.01678366959095}}}}",
"XmlUI": ""
},
{
"GUID": "35fb9c",
"Name": "Custom_Model",
"Transform": {
"posX": -33.3273,
"posY": 1.29423988,
"posZ": -66.53577,
"rotX": 0.0208102688,
"rotY": 270.0,
"rotZ": 0.0167705137,
"scaleX": 0.5,
"scaleY": 0.139652729,
"scaleZ": 0.5
},
"Nickname": "Starter Deck Investigators",
"Description": "",
"GMNotes": "investigators/starter_decks.json",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0,
"a": 0.274509817
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomMesh": {
"MeshURL": "https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/core_h_MSH.obj",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/1470940868630890919/FCBF67725CBD8CBF4254D6BFD1BB92193D463436/",
"NormalURL": "",
"ColliderURL": "",
"Convex": true,
"MaterialIndex": 3,
"TypeIndex": 0,
"CustomShader": {
"SpecularColor": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"SpecularIntensity": 0.0,
"SpecularSharpness": 2.0,
"FresnelStrength": 0.0
},
"CastShadows": true
},
"LuaScript": "\r\nfunction onload(saved_data)\r\n createDownloadButton()\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make Download button\r\nfunction createDownloadButton()\r\n self.createButton({\r\n label=\"Download\", click_function=\"buttonClick_download\", function_owner=self,\r\n position={0,0.1,7}, rotation={0,0,0}, height=850, width=3300,\r\n font_size=700, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by download button,\r\nfunction buttonClick_download()\r\n local params = { url = self.getGMNotes(), replace = self.guid }\r\n Global.call('placeholder_download', params)\r\nend",
"LuaScriptState": "{\"ml\":{\"15105c\":{\"lock\":false,\"pos\":{\"x\":-19.2959,\"y\":1.3122,\"z\":-69.0607},\"rot\":{\"x\":0.0208,\"y\":269.9999,\"z\":0.0168}},\"16df70\":{\"lock\":false,\"pos\":{\"x\":-19.3,\"y\":1.3168,\"z\":-53.4358},\"rot\":{\"x\":0.0208,\"y\":269.9999,\"z\":0.0168}},\"1c3aab\":{\"lock\":false,\"pos\":{\"x\":-19.3001,\"y\":1.3145,\"z\":-61.2332},\"rot\":{\"x\":0.0208,\"y\":270,\"z\":0.0168}},\"1da958\":{\"lock\":false,\"pos\":{\"x\":-22.6169,\"y\":1.3645,\"z\":-84.8185},\"rot\":{\"x\":0.0168,\"y\":179.9921,\"z\":359.9792}},\"208c4d\":{\"lock\":false,\"pos\":{\"x\":-16.6335,\"y\":1.3638,\"z\":-54.6166},\"rot\":{\"x\":0.0218,\"y\":266.5908,\"z\":0.0155}},\"26f88d\":{\"lock\":false,\"pos\":{\"x\":-16.639,\"y\":1.3603,\"z\":-66.8114},\"rot\":{\"x\":0.0208,\"y\":270.0166,\"z\":0.0168}},\"298237\":{\"lock\":false,\"pos\":{\"x\":-22.6146,\"y\":1.3701,\"z\":-65.5964},\"rot\":{\"x\":0.0168,\"y\":180.0003,\"z\":359.9792}},\"2b0bee\":{\"lock\":false,\"pos\":{\"x\":-19.2998,\"y\":1.3076,\"z\":-84.8182},\"rot\":{\"x\":0.0208,\"y\":270.0002,\"z\":0.0168}},\"3742e4\":{\"lock\":false,\"pos\":{\"x\":-26.3002,\"y\":1.2688,\"z\":-76.9454},\"rot\":{\"x\":359.9792,\"y\":89.9993,\"z\":359.9832}},\"376a06\":{\"lock\":false,\"pos\":{\"x\":-26.3002,\"y\":1.2688,\"z\":-76.9456},\"rot\":{\"x\":359.9792,\"y\":89.9798,\"z\":359.9832}},\"389792\":{\"lock\":false,\"pos\":{\"x\":-22.6157,\"y\":1.3668,\"z\":-76.946},\"rot\":{\"x\":0.0168,\"y\":180,\"z\":359.9792}},\"3f60eb\":{\"lock\":false,\"pos\":{\"x\":-19.2948,\"y\":1.3714,\"z\":-65.5815},\"rot\":{\"x\":0.0208,\"y\":269.9986,\"z\":0.0168}},\"44d1ab\":{\"lock\":false,\"pos\":{\"x\":-16.6402,\"y\":1.355,\"z\":-84.8182},\"rot\":{\"x\":0.0208,\"y\":270.0322,\"z\":0.0168}},\"4d3ac8\":{\"lock\":false,\"pos\":{\"x\":-26.3,\"y\":1.2757,\"z\":-53.4369},\"rot\":{\"x\":359.9792,\"y\":90.0003,\"z\":359.9832}},\"55e98a\":{\"lock\":false,\"pos\":{\"x\":-19.2936,\"y\":1.3099,\"z\":-76.9415},\"rot\":{\"x\":0.0208,\"y\":270.0001,\"z\":0.0168}},\"5d16e3\":{\"lock\":false,\"pos\":{\"x\":-16.6401,\"y\":1.3619,\"z\":-61.231},\"rot\":{\"x\":0.0208,\"y\":270.0002,\"z\":0.0168}},\"6bd479\":{\"lock\":false,\"pos\":{\"x\":-16.6403,\"y\":1.3576,\"z\":-75.7054},\"rot\":{\"x\":0.0208,\"y\":270.0208,\"z\":0.0168}},\"72caa1\":{\"lock\":false,\"pos\":{\"x\":-16.6392,\"y\":1.3606,\"z\":-65.5811},\"rot\":{\"x\":0.0208,\"y\":269.9983,\"z\":0.0168}},\"7f7566\":{\"lock\":false,\"pos\":{\"x\":-22.6157,\"y\":1.3087,\"z\":-76.946},\"rot\":{\"x\":0.0168,\"y\":180.0001,\"z\":359.9792}},\"84a141\":{\"lock\":false,\"pos\":{\"x\":-16.6403,\"y\":1.3576,\"z\":-75.7054},\"rot\":{\"x\":0.0208,\"y\":270.0334,\"z\":0.0168}},\"875dca\":{\"lock\":false,\"pos\":{\"x\":-16.6336,\"y\":1.3569,\"z\":-78.1716},\"rot\":{\"x\":0.0218,\"y\":266.6161,\"z\":0.0155}},\"888fcc\":{\"lock\":false,\"pos\":{\"x\":-19.2998,\"y\":1.3657,\"z\":-84.8182},\"rot\":{\"x\":0.0208,\"y\":270.0035,\"z\":0.0168}},\"8b0a9e\":{\"lock\":false,\"pos\":{\"x\":-16.639,\"y\":1.361,\"z\":-64.3414},\"rot\":{\"x\":0.0208,\"y\":269.9907,\"z\":0.0168}},\"8e8dcf\":{\"lock\":false,\"pos\":{\"x\":-22.6157,\"y\":1.311,\"z\":-69.0756},\"rot\":{\"x\":0.0168,\"y\":180,\"z\":359.9792}},\"8f57db\":{\"lock\":false,\"pos\":{\"x\":-22.6169,\"y\":1.3133,\"z\":-61.2414},\"rot\":{\"x\":0.0168,\"y\":179.9999,\"z\":359.9792}},\"90cfdb\":{\"lock\":false,\"pos\":{\"x\":-16.6385,\"y\":1.3554,\"z\":-83.5415},\"rot\":{\"x\":0.0208,\"y\":270.0007,\"z\":0.0168}},\"92c727\":{\"lock\":false,\"pos\":{\"x\":-26.3001,\"y\":1.2734,\"z\":-61.241},\"rot\":{\"x\":359.9792,\"y\":89.9999,\"z\":359.9832}},\"9cd95a\":{\"lock\":false,\"pos\":{\"x\":-16.6335,\"y\":1.3615,\"z\":-62.4568},\"rot\":{\"x\":0.0218,\"y\":266.5908,\"z\":0.0155}},\"a7606b\":{\"lock\":false,\"pos\":{\"x\":-16.6466,\"y\":1.3592,\"z\":-70.295},\"rot\":{\"x\":0.0218,\"y\":266.5696,\"z\":0.0155}},\"a95b8c\":{\"lock\":false,\"pos\":{\"x\":-22.6169,\"y\":1.3064,\"z\":-84.8185},\"rot\":{\"x\":0.0168,\"y\":179.9999,\"z\":359.9792}},\"aaeac7\":{\"lock\":false,\"pos\":{\"x\":-16.6401,\"y\":1.36,\"z\":-67.8206},\"rot\":{\"x\":0.0208,\"y\":270.0258,\"z\":0.0168}},\"ab52dc\":{\"lock\":false,\"pos\":{\"x\":-26.2996,\"y\":1.2665,\"z\":-84.818},\"rot\":{\"x\":359.9792,\"y\":90.0128,\"z\":359.9832}},\"b675fd\":{\"lock\":false,\"pos\":{\"x\":-16.6403,\"y\":1.3596,\"z\":-69.0603},\"rot\":{\"x\":0.0208,\"y\":270.0005,\"z\":0.0168}},\"be9e91\":{\"lock\":false,\"pos\":{\"x\":-26.3002,\"y\":1.2711,\"z\":-69.0606},\"rot\":{\"x\":359.9792,\"y\":89.9998,\"z\":359.9832}},\"c0e7b1\":{\"lock\":false,\"pos\":{\"x\":-16.6414,\"y\":1.3546,\"z\":-86.0129},\"rot\":{\"x\":0.0218,\"y\":266.5644,\"z\":0.0155}},\"c1aa7a\":{\"lock\":false,\"pos\":{\"x\":-26.2995,\"y\":1.2665,\"z\":-84.8178},\"rot\":{\"x\":359.9792,\"y\":90.0001,\"z\":359.9832}},\"c2ef97\":{\"lock\":false,\"pos\":{\"x\":-22.6139,\"y\":1.3156,\"z\":-53.4381},\"rot\":{\"x\":0.0168,\"y\":179.9999,\"z\":359.9792}},\"d3d270\":{\"lock\":false,\"pos\":{\"x\":-16.6396,\"y\":1.3573,\"z\":-76.9456},\"rot\":{\"x\":0.0208,\"y\":270.0207,\"z\":0.0168}},\"d8e1ad\":{\"lock\":false,\"pos\":{\"x\":-16.6401,\"y\":1.3569,\"z\":-78.1756},\"rot\":{\"x\":0.0208,\"y\":270.0207,\"z\":0.0168}},\"d9f2c7\":{\"lock\":false,\"pos\":{\"x\":-16.6385,\"y\":1.3554,\"z\":-83.5415},\"rot\":{\"x\":0.0208,\"y\":269.9983,\"z\":0.0168}},\"e1786c\":{\"lock\":false,\"pos\":{\"x\":-16.6394,\"y\":1.3546,\"z\":-86.0186},\"rot\":{\"x\":0.0208,\"y\":269.9993,\"z\":0.0168}},\"f0d3cc\":{\"lock\":false,\"pos\":{\"x\":-16.64,\"y\":1.3642,\"z\":-53.3904},\"rot\":{\"x\":0.0208,\"y\":270.0119,\"z\":0.0168}},\"f7a65d\":{\"lock\":false,\"pos\":{\"x\":-16.64,\"y\":1.3645,\"z\":-52.152},\"rot\":{\"x\":0.0208,\"y\":270.0303,\"z\":0.0168}},\"f94187\":{\"lock\":false,\"pos\":{\"x\":-16.6401,\"y\":1.3622,\"z\":-60.001},\"rot\":{\"x\":0.0208,\"y\":270.0422,\"z\":0.0168}},\"fc1612\":{\"lock\":false,\"pos\":{\"x\":-16.6396,\"y\":1.3573,\"z\":-76.9456},\"rot\":{\"x\":0.0208,\"y\":270.0098,\"z\":0.0168}},\"fc27ff\":{\"lock\":false,\"pos\":{\"x\":-26.2991,\"y\":1.2721,\"z\":-65.5814},\"rot\":{\"x\":359.9792,\"y\":90.0019,\"z\":359.9832}},\"fc63ca\":{\"lock\":false,\"pos\":{\"x\":-19.2936,\"y\":1.368,\"z\":-76.9415},\"rot\":{\"x\":0.0208,\"y\":269.9999,\"z\":0.0168}},\"ffa2b2\":{\"lock\":false,\"pos\":{\"x\":-16.6402,\"y\":1.355,\"z\":-84.8182},\"rot\":{\"x\":0.0208,\"y\":269.9994,\"z\":0.0168}}}}",
"XmlUI": ""
},
{
"GUID": "a32f43",
"Name": "Custom_Model",
"Transform": {
"posX": -33.3274765,
"posY": 1.29614234,
"posZ": -60.0364723,
"rotX": 0.0208097082,
"rotY": 270.002,
"rotZ": 0.0167712364,
"scaleX": 0.5,
"scaleY": 0.139652729,
"scaleZ": 0.5
},
"Nickname": "Edge of the Earth Investigators",
"Description": "",
"GMNotes": "investigators/edge_of_the_earth.json",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0,
"a": 0.274509817
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomMesh": {
"MeshURL": "https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/core_h_MSH.obj",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/1690522200974608531/E240A47DE01B8BEE399FA43FC2A757A26F566BF0/",
"NormalURL": "",
"ColliderURL": "",
"Convex": true,
"MaterialIndex": 3,
"TypeIndex": 0,
"CustomShader": {
"SpecularColor": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"SpecularIntensity": 0.0,
"SpecularSharpness": 2.0,
"FresnelStrength": 0.0
},
"CastShadows": true
},
"LuaScript": "\r\nfunction onload(saved_data)\r\n createDownloadButton()\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make Download button\r\nfunction createDownloadButton()\r\n self.createButton({\r\n label=\"Download\", click_function=\"buttonClick_download\", function_owner=self,\r\n position={0,0.1,7}, rotation={0,0,0}, height=850, width=3300,\r\n font_size=700, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by download button,\r\nfunction buttonClick_download()\r\n local params = { url = self.getGMNotes(), replace = self.guid }\r\n Global.call('placeholder_download', params)\r\nend",
"LuaScriptState": "{\"ml\":{\"00527b\":{\"lock\":false,\"pos\":{\"x\":-16.6312274932861,\"y\":1.35725867748261,\"z\":-76.9372787475586},\"rot\":{\"x\":0.0208104122430086,\"y\":270.018707275391,\"z\":0.0167745221406221}},\"056d00\":{\"lock\":false,\"pos\":{\"x\":-16.6316890716553,\"y\":1.35920643806458,\"z\":-70.2822113037109},\"rot\":{\"x\":0.0208054259419441,\"y\":270.038696289063,\"z\":0.0167820565402508}},\"0b0759\":{\"lock\":false,\"pos\":{\"x\":-16.6318531036377,\"y\":1.35495400428772,\"z\":-84.8098526000977},\"rot\":{\"x\":0.0208161231130362,\"y\":270.000122070313,\"z\":0.0167681965976954}},\"104227\":{\"lock\":false,\"pos\":{\"x\":-16.6317596435547,\"y\":1.35689830780029,\"z\":-78.1672897338867},\"rot\":{\"x\":0.020809156820178,\"y\":270.026550292969,\"z\":0.0167781226336956}},\"196166\":{\"lock\":false,\"pos\":{\"x\":-16.6316967010498,\"y\":1.36415350437164,\"z\":-53.3820495605469},\"rot\":{\"x\":0.0208163596689701,\"y\":269.999572753906,\"z\":0.0167677029967308}},\"3db200\":{\"lock\":false,\"pos\":{\"x\":-16.6316757202148,\"y\":1.36379325389862,\"z\":-54.6123657226563},\"rot\":{\"x\":0.0208161119371653,\"y\":269.999725341797,\"z\":0.0167676750570536}},\"4478ea\":{\"lock\":false,\"pos\":{\"x\":-22.6168899536133,\"y\":1.3063827753067,\"z\":-84.8184814453125},\"rot\":{\"x\":0.0167767461389303,\"y\":180.014526367188,\"z\":359.979187011719}},\"4d0128\":{\"lock\":false,\"pos\":{\"x\":-19.293586730957,\"y\":1.30989539623261,\"z\":-76.9415283203125},\"rot\":{\"x\":0.0208118669688702,\"y\":269.989532470703,\"z\":0.0167670845985413}},\"50d446\":{\"lock\":false,\"pos\":{\"x\":-16.6319217681885,\"y\":1.35762143135071,\"z\":-75.6970520019531},\"rot\":{\"x\":0.0208115167915821,\"y\":270.018493652344,\"z\":0.0167747288942337}},\"558d29\":{\"lock\":false,\"pos\":{\"x\":-22.6138820648193,\"y\":1.31556940078735,\"z\":-53.4381103515625},\"rot\":{\"x\":0.0167792141437531,\"y\":180.021514892578,\"z\":359.979187011719}},\"57aa9d\":{\"lock\":false,\"pos\":{\"x\":-16.6316947937012,\"y\":1.36221849918365,\"z\":-59.9926147460938},\"rot\":{\"x\":0.0208160392940044,\"y\":269.999938964844,\"z\":0.0167684387415648}},\"5ee302\":{\"lock\":false,\"pos\":{\"x\":-16.6344413757324,\"y\":1.35956561565399,\"z\":-69.0519104003906},\"rot\":{\"x\":0.02080855704844,\"y\":270.028625488281,\"z\":0.0167782641947269}},\"5f0f71\":{\"lock\":false,\"pos\":{\"x\":-16.608024597168,\"y\":1.35461115837097,\"z\":-86.0107803344727},\"rot\":{\"x\":0.020830050110817,\"y\":269.953674316406,\"z\":0.0167507417500019}},\"6ebbd1\":{\"lock\":false,\"pos\":{\"x\":-16.6316661834717,\"y\":1.36149835586548,\"z\":-62.4525375366211},\"rot\":{\"x\":0.0208161305636168,\"y\":269.999816894531,\"z\":0.0167679209262133}},\"7a57bc\":{\"lock\":false,\"pos\":{\"x\":-16.6349315643311,\"y\":1.36185729503632,\"z\":-61.2226181030273},\"rot\":{\"x\":0.0208211429417133,\"y\":269.984405517578,\"z\":0.0167624317109585}},\"7be455\":{\"lock\":false,\"pos\":{\"x\":-16.6243743896484,\"y\":1.35532796382904,\"z\":-83.5416717529297},\"rot\":{\"x\":0.0207983590662479,\"y\":270.061065673828,\"z\":0.0167901292443275}},\"865caa\":{\"lock\":false,\"pos\":{\"x\":-16.6317005157471,\"y\":1.3599294424057,\"z\":-67.8121948242188},\"rot\":{\"x\":0.0208084918558598,\"y\":270.028106689453,\"z\":0.0167781412601471}},\"87d2f7\":{\"lock\":false,\"pos\":{\"x\":-22.6156692504883,\"y\":1.31099140644073,\"z\":-69.0755920410156},\"rot\":{\"x\":0.0167783293873072,\"y\":180.019180297852,\"z\":359.979187011719}},\"9b0047\":{\"lock\":false,\"pos\":{\"x\":-16.6316947937012,\"y\":1.36451601982117,\"z\":-52.1436538696289},\"rot\":{\"x\":0.0208159647881985,\"y\":269.999572753906,\"z\":0.0167678687721491}},\"aa1c23\":{\"lock\":false,\"pos\":{\"x\":-19.2997627258301,\"y\":1.30758762359619,\"z\":-84.8181610107422},\"rot\":{\"x\":0.0208101216703653,\"y\":269.995422363281,\"z\":0.0167689844965935}},\"df8ec4\":{\"lock\":false,\"pos\":{\"x\":-19.2999973297119,\"y\":1.3167736530304,\"z\":-53.4358177185059},\"rot\":{\"x\":0.0208093822002411,\"y\":269.998107910156,\"z\":0.016770301386714}},\"e0e7cc\":{\"lock\":false,\"pos\":{\"x\":-26.3001918792725,\"y\":1.26878106594086,\"z\":-76.9456405639648},\"rot\":{\"x\":359.979156494141,\"y\":89.9998321533203,\"z\":359.983215332031}},\"e4ddf5\":{\"lock\":false,\"pos\":{\"x\":-22.6157398223877,\"y\":1.30868756771088,\"z\":-76.9460220336914},\"rot\":{\"x\":0.016787875443697,\"y\":180.045364379883,\"z\":359.979217529297}},\"e8a199\":{\"lock\":false,\"pos\":{\"x\":-26.3000411987305,\"y\":1.27337765693665,\"z\":-61.2409973144531},\"rot\":{\"x\":359.979156494141,\"y\":90.0003814697266,\"z\":359.983215332031}},\"e92504\":{\"lock\":false,\"pos\":{\"x\":-26.2999973297119,\"y\":1.27566206455231,\"z\":-53.436840057373},\"rot\":{\"x\":359.979156494141,\"y\":90.0020370483398,\"z\":359.983215332031}},\"f10c50\":{\"lock\":false,\"pos\":{\"x\":-26.2998371124268,\"y\":1.27108895778656,\"z\":-69.0603408813477},\"rot\":{\"x\":359.979156494141,\"y\":90.0000076293945,\"z\":359.983245849609}},\"f28cab\":{\"lock\":false,\"pos\":{\"x\":-26.29958152771,\"y\":1.26647615432739,\"z\":-84.817985534668},\"rot\":{\"x\":359.979156494141,\"y\":90.0020599365234,\"z\":359.983215332031}},\"f6a81a\":{\"lock\":false,\"pos\":{\"x\":-22.6169376373291,\"y\":1.33023798465729,\"z\":-61.2413673400879},\"rot\":{\"x\":0.0167667772620916,\"y\":179.986480712891,\"z\":359.979187011719}},\"f74398\":{\"lock\":false,\"pos\":{\"x\":-19.2957820892334,\"y\":1.31220149993896,\"z\":-69.0607376098633},\"rot\":{\"x\":0.0208135470747948,\"y\":269.983520507813,\"z\":0.0167647320777178}},\"fbcc75\":{\"lock\":false,\"pos\":{\"x\":-19.3000545501709,\"y\":1.33144474029541,\"z\":-61.2332344055176},\"rot\":{\"x\":0.0208115875720978,\"y\":269.999450683594,\"z\":0.0167709924280643}}}}",
"XmlUI": ""
},
{
"GUID": "10bd18",
"Name": "Custom_Model",
"Transform": {
"posX": -33.3268623,
"posY": 1.297934,
"posZ": -53.91553,
"rotX": 0.0208104048,
"rotY": 269.999939,
"rotZ": 0.0167704057,
"scaleX": 0.5,
"scaleY": 0.139652729,
"scaleZ": 0.5
},
"Nickname": "The Innsmouth Conspiracy",
"Description": "",
"GMNotes": "investigators/innsmouth_conspiracy.json",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0,
"a": 0.274509817
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomMesh": {
"MeshURL": "https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/core_h_MSH.obj",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/1626320664132195050/3888AC3E4F59D039C5F01B7EC72AB63174184381/",
"NormalURL": "",
"ColliderURL": "",
"Convex": true,
"MaterialIndex": 3,
"TypeIndex": 0,
"CustomShader": {
"SpecularColor": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"SpecularIntensity": 0.0,
"SpecularSharpness": 2.0,
"FresnelStrength": 0.0
},
"CastShadows": true
},
"LuaScript": "\r\nfunction onload(saved_data)\r\n createDownloadButton()\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make Download button\r\nfunction createDownloadButton()\r\n self.createButton({\r\n label=\"Download\", click_function=\"buttonClick_download\", function_owner=self,\r\n position={0,0.1,7}, rotation={0,0,0}, height=850, width=3300,\r\n font_size=700, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by download button,\r\nfunction buttonClick_download()\r\n local params = { url = self.getGMNotes(), replace = self.guid }\r\n Global.call('placeholder_download', params)\r\nend",
"LuaScriptState": "{\"ml\":{\"0531e5\":{\"lock\":false,\"pos\":{\"x\":-16.6400871276855,\"y\":1.3618528842926,\"z\":-61.2309913635254},\"rot\":{\"x\":0.0208086054772139,\"y\":270.027465820313,\"z\":0.016778064891696}},\"09299a\":{\"lock\":false,\"pos\":{\"x\":-22.6139030456543,\"y\":1.31556940078735,\"z\":-53.4381294250488},\"rot\":{\"x\":0.016771337017417,\"y\":180,\"z\":359.979187011719}},\"0db936\":{\"lock\":false,\"pos\":{\"x\":-16.6400470733643,\"y\":1.36149299144745,\"z\":-62.4609298706055},\"rot\":{\"x\":0.02082191221416,\"y\":269.980682373047,\"z\":0.0167613159865141}},\"16b750\":{\"lock\":false,\"pos\":{\"x\":-19.2958736419678,\"y\":1.31220149993896,\"z\":-69.0606994628906},\"rot\":{\"x\":0.0208087041974068,\"y\":269.999938964844,\"z\":0.0167709477245808}},\"1711ef\":{\"lock\":false,\"pos\":{\"x\":-19.3000774383545,\"y\":1.31449115276337,\"z\":-61.2332534790039},\"rot\":{\"x\":0.0208088010549545,\"y\":270.000091552734,\"z\":0.016771174967289}},\"1f168b\":{\"lock\":false,\"pos\":{\"x\":-16.640079498291,\"y\":1.35920095443726,\"z\":-70.2905960083008},\"rot\":{\"x\":0.0208170041441917,\"y\":269.998657226563,\"z\":0.0167676992714405}},\"2da799\":{\"lock\":false,\"pos\":{\"x\":-16.6400680541992,\"y\":1.36451053619385,\"z\":-52.152027130127},\"rot\":{\"x\":0.0208160188049078,\"y\":270.000305175781,\"z\":0.0167681109160185}},\"347bdc\":{\"lock\":false,\"pos\":{\"x\":-16.6403064727783,\"y\":1.35761594772339,\"z\":-75.705436706543},\"rot\":{\"x\":0.0208161026239395,\"y\":270.00244140625,\"z\":0.0167687796056271}},\"37326d\":{\"lock\":false,\"pos\":{\"x\":-26.3001327514648,\"y\":1.27337777614594,\"z\":-61.2409515380859},\"rot\":{\"x\":359.979156494141,\"y\":89.9917221069336,\"z\":359.983245849609}},\"396e28\":{\"lock\":false,\"pos\":{\"x\":-26.2995777130127,\"y\":1.26647710800171,\"z\":-84.817985534668},\"rot\":{\"x\":359.979156494141,\"y\":90.0006942749023,\"z\":359.983215332031}},\"3a0b7c\":{\"lock\":false,\"pos\":{\"x\":-26.2999935150146,\"y\":1.2756621837616,\"z\":-53.4368362426758},\"rot\":{\"x\":359.979156494141,\"y\":90.0000305175781,\"z\":359.983215332031}},\"4140f8\":{\"lock\":false,\"pos\":{\"x\":-19.3000259399414,\"y\":1.3167736530304,\"z\":-53.4358406066895},\"rot\":{\"x\":0.0208087284117937,\"y\":270,\"z\":0.0167706534266472}},\"4ac8be\":{\"lock\":false,\"pos\":{\"x\":-16.6400661468506,\"y\":1.36414790153503,\"z\":-53.3904190063477},\"rot\":{\"x\":0.0208145789802074,\"y\":270.006103515625,\"z\":0.0167700946331024}},\"4c0961\":{\"lock\":false,\"pos\":{\"x\":-22.6156921386719,\"y\":1.31099140644073,\"z\":-69.0756149291992},\"rot\":{\"x\":0.0167712476104498,\"y\":179.999877929688,\"z\":359.979187011719}},\"54c2dd\":{\"lock\":false,\"pos\":{\"x\":-22.6169605255127,\"y\":1.31328415870667,\"z\":-61.2413864135742},\"rot\":{\"x\":0.0167712420225143,\"y\":180,\"z\":359.979187011719}},\"57ccc6\":{\"lock\":false,\"pos\":{\"x\":-22.6156921386719,\"y\":1.31099140644073,\"z\":-69.0756149291992},\"rot\":{\"x\":0.0167714022099972,\"y\":180,\"z\":359.979187011719}},\"592dfb\":{\"lock\":false,\"pos\":{\"x\":-16.6394157409668,\"y\":1.35459733009338,\"z\":-86.0186080932617},\"rot\":{\"x\":0.0208184141665697,\"y\":269.99267578125,\"z\":0.0167655274271965}},\"5d774c\":{\"lock\":false,\"pos\":{\"x\":-16.6400718688965,\"y\":1.3637877702713,\"z\":-54.6207466125488},\"rot\":{\"x\":0.0208241995424032,\"y\":269.973754882813,\"z\":0.0167581476271153}},\"61edfd\":{\"lock\":false,\"pos\":{\"x\":-19.2936210632324,\"y\":1.32684922218323,\"z\":-76.9415588378906},\"rot\":{\"x\":0.0208094138652086,\"y\":270,\"z\":0.0167710557579994}},\"687b10\":{\"lock\":false,\"pos\":{\"x\":-26.3001728057861,\"y\":1.26878070831299,\"z\":-76.9456329345703},\"rot\":{\"x\":359.979156494141,\"y\":90.0000305175781,\"z\":359.983215332031}},\"6b8d4e\":{\"lock\":false,\"pos\":{\"x\":-16.6400699615479,\"y\":1.36221206188202,\"z\":-60.0041961669922},\"rot\":{\"x\":0.0208080615848303,\"y\":270.02783203125,\"z\":0.0167781114578247}},\"8667e9\":{\"lock\":false,\"pos\":{\"x\":-22.6169128417969,\"y\":1.32333660125732,\"z\":-84.8185043334961},\"rot\":{\"x\":0.0167790967971087,\"y\":180.020736694336,\"z\":359.979187011719}},\"888fcc\":{\"lock\":false,\"pos\":{\"x\":-19.2997856140137,\"y\":1.3075875043869,\"z\":-84.8181838989258},\"rot\":{\"x\":0.0208080690354109,\"y\":270.003265380859,\"z\":0.016772422939539}},\"8d324e\":{\"lock\":false,\"pos\":{\"x\":-22.6157627105713,\"y\":1.3256413936615,\"z\":-76.946044921875},\"rot\":{\"x\":0.0167714711278677,\"y\":179.999664306641,\"z\":359.979187011719}},\"a31459\":{\"lock\":false,\"pos\":{\"x\":-19.2958946228027,\"y\":1.31220149993896,\"z\":-69.0607147216797},\"rot\":{\"x\":0.0208088010549545,\"y\":269.999938964844,\"z\":0.0167708992958069}},\"b3b6b9\":{\"lock\":false,\"pos\":{\"x\":-16.6402435302734,\"y\":1.35494863986969,\"z\":-84.8182067871094},\"rot\":{\"x\":0.0208163503557444,\"y\":270.000213623047,\"z\":0.0167683847248554}},\"b81d01\":{\"lock\":false,\"pos\":{\"x\":-26.3001499176025,\"y\":1.27108907699585,\"z\":-69.0605926513672},\"rot\":{\"x\":359.979187011719,\"y\":90.0157012939453,\"z\":359.983215332031}},\"bef686\":{\"lock\":false,\"pos\":{\"x\":-19.3000831604004,\"y\":1.31449115276337,\"z\":-61.2332572937012},\"rot\":{\"x\":0.0208086911588907,\"y\":270,\"z\":0.016770601272583}},\"c0a2e9\":{\"lock\":false,\"pos\":{\"x\":-16.6400833129883,\"y\":1.35992407798767,\"z\":-67.8205947875977},\"rot\":{\"x\":0.0208170916885138,\"y\":269.9970703125,\"z\":0.0167670771479607}},\"c0d89c\":{\"lock\":false,\"pos\":{\"x\":-22.6169605255127,\"y\":1.31328415870667,\"z\":-61.2413864135742},\"rot\":{\"x\":0.0167716462165117,\"y\":180,\"z\":359.979187011719}},\"c116a8\":{\"lock\":false,\"pos\":{\"x\":-22.6139030456543,\"y\":1.31556940078735,\"z\":-53.4381294250488},\"rot\":{\"x\":0.0167773738503456,\"y\":180.016952514648,\"z\":359.979187011719}},\"d5ff18\":{\"lock\":false,\"pos\":{\"x\":-16.6401348114014,\"y\":1.35689282417297,\"z\":-78.1756439208984},\"rot\":{\"x\":0.0208216030150652,\"y\":269.983154296875,\"z\":0.0167616996914148}},\"d827a4\":{\"lock\":false,\"pos\":{\"x\":-16.6385688781738,\"y\":1.35532283782959,\"z\":-83.5415115356445},\"rot\":{\"x\":0.0208126716315746,\"y\":270.012481689453,\"z\":0.0167724099010229}},\"da2a87\":{\"lock\":false,\"pos\":{\"x\":-19.2997856140137,\"y\":1.32454133033752,\"z\":-84.8181838989258},\"rot\":{\"x\":0.0208084024488926,\"y\":270.003143310547,\"z\":0.016771687194705}},\"eaadbf\":{\"lock\":false,\"pos\":{\"x\":-16.6395988464355,\"y\":1.357253074646,\"z\":-76.9456481933594},\"rot\":{\"x\":0.0208154898136854,\"y\":270.004028320313,\"z\":0.0167695544660091}},\"fc63ca\":{\"lock\":false,\"pos\":{\"x\":-19.2936096191406,\"y\":1.30989551544189,\"z\":-76.9415512084961},\"rot\":{\"x\":0.0208090711385012,\"y\":269.999603271484,\"z\":0.0167711153626442}},\"ff2fcf\":{\"lock\":false,\"pos\":{\"x\":-16.6403007507324,\"y\":1.35956108570099,\"z\":-69.0603103637695},\"rot\":{\"x\":0.0208179466426373,\"y\":269.996185302734,\"z\":0.0167664047330618}}}}",
"XmlUI": ""
},
{
"GUID": "2585f4",
"Name": "Custom_Model",
"Transform": {
"posX": -9.698427,
"posY": 1.30651534,
"posZ": -53.9157524,
"rotX": 0.0208092444,
"rotY": 270.0032,
"rotZ": 0.0167716891,
"scaleX": 0.5,
"scaleY": 0.139652729,
"scaleZ": 0.5
},
"Nickname": "Core",
"Description": "",
"GMNotes": "investigators/core_investigators.json",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0,
"a": 0.274509817
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomMesh": {
"MeshURL": "https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/core_h_MSH.obj",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/762723517667628371/18438B0A0045038A7099648AA3346DFCAA267C66/",
"NormalURL": "",
"ColliderURL": "",
"Convex": true,
"MaterialIndex": 3,
"TypeIndex": 0,
"CustomShader": {
"SpecularColor": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"SpecularIntensity": 0.0,
"SpecularSharpness": 2.0,
"FresnelStrength": 0.0
},
"CastShadows": true
},
"LuaScript": "\r\nfunction onload(saved_data)\r\n createDownloadButton()\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make Download button\r\nfunction createDownloadButton()\r\n self.createButton({\r\n label=\"Download\", click_function=\"buttonClick_download\", function_owner=self,\r\n position={0,0.1,7}, rotation={0,0,0}, height=850, width=3300,\r\n font_size=700, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by download button,\r\nfunction buttonClick_download()\r\n local params = { url = self.getGMNotes(), replace = self.guid }\r\n Global.call('placeholder_download', params)\r\nend",
"LuaScriptState": "{\"ml\":{\"011254\":{\"lock\":false,\"pos\":{\"x\":-26.3001747131348,\"y\":1.2687805891037,\"z\":-76.9456329345703},\"rot\":{\"x\":359.979156494141,\"y\":90.0006866455078,\"z\":359.983215332031}},\"02abdb\":{\"lock\":false,\"pos\":{\"x\":-26.3001766204834,\"y\":1.27108907699585,\"z\":-69.0605773925781},\"rot\":{\"x\":359.979156494141,\"y\":90.0000305175781,\"z\":359.983215332031}},\"0d6388\":{\"lock\":false,\"pos\":{\"x\":-26.3001327514648,\"y\":1.27337801456451,\"z\":-61.2409515380859},\"rot\":{\"x\":359.979156494141,\"y\":90.0000534057617,\"z\":359.983245849609}},\"0de2c4\":{\"lock\":false,\"pos\":{\"x\":-16.6400833129883,\"y\":1.35992395877838,\"z\":-67.8205947875977},\"rot\":{\"x\":0.0208168718963861,\"y\":269.999755859375,\"z\":0.0167678985744715}},\"171f17\":{\"lock\":false,\"pos\":{\"x\":-22.6139030456543,\"y\":1.33252310752869,\"z\":-53.4381294250488},\"rot\":{\"x\":0.0167775936424732,\"y\":180.016952514648,\"z\":359.979187011719}},\"1f564c\":{\"lock\":false,\"pos\":{\"x\":-22.6169605255127,\"y\":1.33986604213715,\"z\":-61.2413864135742},\"rot\":{\"x\":0.0167712848633528,\"y\":179.999389648438,\"z\":359.979187011719}},\"226716\":{\"lock\":false,\"pos\":{\"x\":-16.640079498291,\"y\":1.35920095443726,\"z\":-70.2905960083008},\"rot\":{\"x\":0.020816121250391,\"y\":269.999542236328,\"z\":0.0167678277939558}},\"2e7dd9\":{\"lock\":false,\"pos\":{\"x\":-22.6156921386719,\"y\":1.33757328987122,\"z\":-69.0756149291992},\"rot\":{\"x\":0.016772611066699,\"y\":180.002975463867,\"z\":359.979187011719}},\"307044\":{\"lock\":false,\"pos\":{\"x\":-16.6402435302734,\"y\":1.35494840145111,\"z\":-84.8182067871094},\"rot\":{\"x\":0.0208094026893377,\"y\":270.022247314453,\"z\":0.0167760271579027}},\"3ddfeb\":{\"lock\":false,\"pos\":{\"x\":-16.6394100189209,\"y\":1.35459744930267,\"z\":-86.0186004638672},\"rot\":{\"x\":0.0208168178796768,\"y\":269.999542236328,\"z\":0.0167677383869886}},\"41bfc7\":{\"lock\":false,\"pos\":{\"x\":-16.6551189422607,\"y\":1.36184680461884,\"z\":-61.2331466674805},\"rot\":{\"x\":0.0208136532455683,\"y\":270.010894775391,\"z\":0.0167719274759293}},\"4ad11b\":{\"lock\":false,\"pos\":{\"x\":-16.6395988464355,\"y\":1.35725319385529,\"z\":-76.9456481933594},\"rot\":{\"x\":0.0208164155483246,\"y\":269.999664306641,\"z\":0.0167681090533733}},\"543164\":{\"lock\":false,\"pos\":{\"x\":-16.6403007507324,\"y\":1.35956108570099,\"z\":-69.0603103637695},\"rot\":{\"x\":0.0208165682852268,\"y\":269.999450683594,\"z\":0.0167680103331804}},\"6330da\":{\"lock\":false,\"pos\":{\"x\":-16.6400718688965,\"y\":1.3637877702713,\"z\":-54.6207466125488},\"rot\":{\"x\":0.0208168029785156,\"y\":270.000213623047,\"z\":0.016768105328083}},\"779aa6\":{\"lock\":false,\"pos\":{\"x\":-16.6385726928711,\"y\":1.35532283782959,\"z\":-83.5415191650391},\"rot\":{\"x\":0.020816907286644,\"y\":269.998016357422,\"z\":0.0167672354727983}},\"7a6af2\":{\"lock\":false,\"pos\":{\"x\":-19.2997856140137,\"y\":1.30758762359619,\"z\":-84.8181838989258},\"rot\":{\"x\":0.0208030845969915,\"y\":270.018859863281,\"z\":0.0167777817696333}},\"90ea00\":{\"lock\":false,\"pos\":{\"x\":-22.6169128417969,\"y\":1.3063827753067,\"z\":-84.8185043334961},\"rot\":{\"x\":0.0167749840766191,\"y\":180.010162353516,\"z\":359.979187011719}},\"965031\":{\"lock\":false,\"pos\":{\"x\":-19.3000774383545,\"y\":1.31449115276337,\"z\":-61.2332534790039},\"rot\":{\"x\":0.0208072941750288,\"y\":270.005187988281,\"z\":0.0167727172374725}},\"978a0e\":{\"lock\":false,\"pos\":{\"x\":-26.2999935150146,\"y\":1.2756621837616,\"z\":-53.4368362426758},\"rot\":{\"x\":359.979187011719,\"y\":90.000358581543,\"z\":359.983215332031}},\"9e80b9\":{\"lock\":false,\"pos\":{\"x\":-16.6400699615479,\"y\":1.36414790153503,\"z\":-53.3904228210449},\"rot\":{\"x\":0.0208210311830044,\"y\":269.983795166016,\"z\":0.0167619772255421}},\"bde4a6\":{\"lock\":false,\"pos\":{\"x\":-16.6400680541992,\"y\":1.36451029777527,\"z\":-52.152027130127},\"rot\":{\"x\":0.0208169389516115,\"y\":269.999755859375,\"z\":0.0167679786682129}},\"bed196\":{\"lock\":false,\"pos\":{\"x\":-19.295877456665,\"y\":1.31220149993896,\"z\":-69.0607070922852},\"rot\":{\"x\":0.0207994971424341,\"y\":270.031768798828,\"z\":0.0167825259268284}},\"d3b405\":{\"lock\":false,\"pos\":{\"x\":-19.3000202178955,\"y\":1.33372735977173,\"z\":-53.4358367919922},\"rot\":{\"x\":0.0208113174885511,\"y\":269.99267578125,\"z\":0.0167684387415648}},\"d3cab5\":{\"lock\":false,\"pos\":{\"x\":-22.6157627105713,\"y\":1.33526945114136,\"z\":-76.946044921875},\"rot\":{\"x\":0.016772435978055,\"y\":179.999969482422,\"z\":359.979187011719}},\"d6fdbf\":{\"lock\":false,\"pos\":{\"x\":-16.6400470733643,\"y\":1.36149299144745,\"z\":-62.4609298706055},\"rot\":{\"x\":0.0208268687129021,\"y\":269.965209960938,\"z\":0.0167554784566164}},\"d9fb86\":{\"lock\":false,\"pos\":{\"x\":-16.6401386260986,\"y\":1.35689294338226,\"z\":-78.175651550293},\"rot\":{\"x\":0.0208142194896936,\"y\":270.008666992188,\"z\":0.0167710538953543}},\"dc27c7\":{\"lock\":false,\"pos\":{\"x\":-26.2995834350586,\"y\":1.26647651195526,\"z\":-84.817985534668},\"rot\":{\"x\":359.979156494141,\"y\":90.0029678344727,\"z\":359.983215332031}},\"de216f\":{\"lock\":false,\"pos\":{\"x\":-16.6551265716553,\"y\":1.36220669746399,\"z\":-60.0037269592285},\"rot\":{\"x\":0.020813288167119,\"y\":270.010681152344,\"z\":0.0167718790471554}},\"e04b48\":{\"lock\":false,\"pos\":{\"x\":-16.6403102874756,\"y\":1.35761594772339,\"z\":-75.7054443359375},\"rot\":{\"x\":0.0208204388618469,\"y\":269.987365722656,\"z\":0.0167635157704353}},\"e9ad05\":{\"lock\":false,\"pos\":{\"x\":-19.2936096191406,\"y\":1.30989539623261,\"z\":-76.9415512084961},\"rot\":{\"x\":0.0208097249269485,\"y\":269.995941162109,\"z\":0.0167692024260759}}}}",
"XmlUI": ""
},
{
"GUID": "5889dd",
"Name": "Custom_Model",
"Transform": {
"posX": -9.760612,
"posY": 1.30470121,
"posZ": -60.03595,
"rotX": 0.0208121967,
"rotY": 269.9933,
"rotZ": 0.0167681333,
"scaleX": 0.5,
"scaleY": 0.139652729,
"scaleZ": 0.5
},
"Nickname": "The Dunwich Legacy",
"Description": "",
"GMNotes": "investigators/dunwich_legacy.json",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0,
"a": 0.274509817
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomMesh": {
"MeshURL": "https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/core_h_MSH.obj",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/762723517667666249/B7EB11E1C48A63D3B8AC233FF2DF0BBAD74ECC6E/",
"NormalURL": "",
"ColliderURL": "",
"Convex": true,
"MaterialIndex": 3,
"TypeIndex": 0,
"CustomShader": {
"SpecularColor": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"SpecularIntensity": 0.0,
"SpecularSharpness": 2.0,
"FresnelStrength": 0.0
},
"CastShadows": true
},
"LuaScript": "\r\nfunction onload(saved_data)\r\n createDownloadButton()\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make Download button\r\nfunction createDownloadButton()\r\n self.createButton({\r\n label=\"Download\", click_function=\"buttonClick_download\", function_owner=self,\r\n position={0,0.1,7}, rotation={0,0,0}, height=850, width=3300,\r\n font_size=700, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by download button,\r\nfunction buttonClick_download()\r\n local params = { url = self.getGMNotes(), replace = self.guid }\r\n Global.call('placeholder_download', params)\r\nend",
"LuaScriptState": "{\"ml\":{\"04e814\":{\"lock\":false,\"pos\":{\"x\":-16.6361236572266,\"y\":1.35761868953705,\"z\":-75.7012557983398},\"rot\":{\"x\":0.0208200719207525,\"y\":269.987670898438,\"z\":0.0167636647820473}},\"07b86c\":{\"lock\":false,\"pos\":{\"x\":-16.6361179351807,\"y\":1.35956382751465,\"z\":-69.0561218261719},\"rot\":{\"x\":0.0208163615316153,\"y\":270.000213623047,\"z\":0.0167682655155659}},\"0a9dcf\":{\"lock\":false,\"pos\":{\"x\":-19.2958946228027,\"y\":1.3291552066803,\"z\":-69.0606918334961},\"rot\":{\"x\":0.020802516490221,\"y\":270.023498535156,\"z\":0.016779288649559}},\"20a1ae\":{\"lock\":false,\"pos\":{\"x\":-22.6157627105713,\"y\":1.30868756771088,\"z\":-76.946044921875},\"rot\":{\"x\":0.016771724447608,\"y\":180.001052856445,\"z\":359.979187011719}},\"246187\":{\"lock\":false,\"pos\":{\"x\":-16.6359176635742,\"y\":1.35920369625092,\"z\":-70.2864227294922},\"rot\":{\"x\":0.0208163615316153,\"y\":270.000030517578,\"z\":0.01676837913692}},\"25a9d0\":{\"lock\":false,\"pos\":{\"x\":-26.3001747131348,\"y\":1.2687805891037,\"z\":-76.9456329345703},\"rot\":{\"x\":359.979156494141,\"y\":90.0001220703125,\"z\":359.983215332031}},\"3178b4\":{\"lock\":false,\"pos\":{\"x\":-16.633617401123,\"y\":1.36378955841064,\"z\":-54.6229019165039},\"rot\":{\"x\":0.0208762735128403,\"y\":269.7958984375,\"z\":0.0166939832270145}},\"39c9b4\":{\"lock\":false,\"pos\":{\"x\":-16.634391784668,\"y\":1.35532557964325,\"z\":-83.5373382568359},\"rot\":{\"x\":0.0208165720105171,\"y\":270.000823974609,\"z\":0.0167684108018875}},\"41625c\":{\"lock\":false,\"pos\":{\"x\":-19.3000965118408,\"y\":1.31449115276337,\"z\":-61.2331962585449},\"rot\":{\"x\":0.0208033584058285,\"y\":270.017700195313,\"z\":0.0167775470763445}},\"523bbe\":{\"lock\":false,\"pos\":{\"x\":-22.6156940460205,\"y\":1.32794523239136,\"z\":-69.0755920410156},\"rot\":{\"x\":0.0167734548449516,\"y\":180.005798339844,\"z\":359.979187011719}},\"5d43bb\":{\"lock\":false,\"pos\":{\"x\":-16.6352195739746,\"y\":1.35460007190704,\"z\":-86.0144271850586},\"rot\":{\"x\":0.0208166837692261,\"y\":269.998901367188,\"z\":0.0167677477002144}},\"62acb6\":{\"lock\":false,\"pos\":{\"x\":-26.3001937866211,\"y\":1.27108895778656,\"z\":-69.0606079101563},\"rot\":{\"x\":359.979187011719,\"y\":90.0000991821289,\"z\":359.983215332031}},\"7b6ae4\":{\"lock\":false,\"pos\":{\"x\":-16.6354084014893,\"y\":1.35725593566895,\"z\":-76.9414749145508},\"rot\":{\"x\":0.0208171717822552,\"y\":269.998901367188,\"z\":0.0167678035795689}},\"89f1f7\":{\"lock\":false,\"pos\":{\"x\":-22.6163425445557,\"y\":1.30638313293457,\"z\":-84.818489074707},\"rot\":{\"x\":0.0167830754071474,\"y\":180.031951904297,\"z\":359.979187011719}},\"8d7701\":{\"lock\":false,\"pos\":{\"x\":-16.6360607147217,\"y\":1.35495126247406,\"z\":-84.8140258789063},\"rot\":{\"x\":0.0208135508000851,\"y\":270.008941650391,\"z\":0.0167709235101938}},\"9bdc2f\":{\"lock\":false,\"pos\":{\"x\":-16.6359176635742,\"y\":1.36185562610626,\"z\":-61.2268142700195},\"rot\":{\"x\":0.0208168551325798,\"y\":270.000091552734,\"z\":0.0167681444436312}},\"acabdf\":{\"lock\":false,\"pos\":{\"x\":-22.6139030456543,\"y\":1.31556940078735,\"z\":-53.4381294250488},\"rot\":{\"x\":0.0167670119553804,\"y\":179.98796081543,\"z\":359.979187011719}},\"ae39ed\":{\"lock\":false,\"pos\":{\"x\":-26.3000984191895,\"y\":1.27337777614594,\"z\":-61.2410011291504},\"rot\":{\"x\":359.979156494141,\"y\":90,\"z\":359.983215332031}},\"b18047\":{\"lock\":false,\"pos\":{\"x\":-22.6169605255127,\"y\":1.31328415870667,\"z\":-61.2413864135742},\"rot\":{\"x\":0.016771437600255,\"y\":179.999908447266,\"z\":359.979187011719}},\"c72b69\":{\"lock\":false,\"pos\":{\"x\":-16.6358203887939,\"y\":1.36451327800751,\"z\":-52.1478118896484},\"rot\":{\"x\":0.020812688395381,\"y\":270.012512207031,\"z\":0.0167724564671516}},\"c81217\":{\"lock\":false,\"pos\":{\"x\":-19.2999954223633,\"y\":1.31677353382111,\"z\":-53.4357948303223},\"rot\":{\"x\":0.0208019912242889,\"y\":270.023193359375,\"z\":0.0167795568704605}},\"d28c9a\":{\"lock\":false,\"pos\":{\"x\":-19.2936096191406,\"y\":1.30989539623261,\"z\":-76.9415512084961},\"rot\":{\"x\":0.0208005085587502,\"y\":270.028686523438,\"z\":0.0167813412845135}},\"dbd56b\":{\"lock\":false,\"pos\":{\"x\":-16.6358127593994,\"y\":1.36415064334869,\"z\":-53.3862228393555},\"rot\":{\"x\":0.0208156015723944,\"y\":270.00048828125,\"z\":0.0167680345475674}},\"e46816\":{\"lock\":false,\"pos\":{\"x\":-16.6359252929688,\"y\":1.35992670059204,\"z\":-67.8164138793945},\"rot\":{\"x\":0.0208154637366533,\"y\":270.00048828125,\"z\":0.0167681556195021}},\"e69e6d\":{\"lock\":false,\"pos\":{\"x\":-16.6358165740967,\"y\":1.36149561405182,\"z\":-62.4567184448242},\"rot\":{\"x\":0.0208171736449003,\"y\":269.999938964844,\"z\":0.0167679321020842}},\"e7f6e7\":{\"lock\":false,\"pos\":{\"x\":-22.6156921386719,\"y\":1.32794523239136,\"z\":-69.0756149291992},\"rot\":{\"x\":0.0167758744210005,\"y\":180.012145996094,\"z\":359.979187011719}},\"ed4b06\":{\"lock\":false,\"pos\":{\"x\":-19.2997856140137,\"y\":1.3075875043869,\"z\":-84.8181838989258},\"rot\":{\"x\":0.0208119191229343,\"y\":269.989379882813,\"z\":0.016767218708992}},\"ed6ea8\":{\"lock\":false,\"pos\":{\"x\":-16.6359481811523,\"y\":1.35689568519592,\"z\":-78.1714782714844},\"rot\":{\"x\":0.0208173505961895,\"y\":269.996398925781,\"z\":0.0167666263878345}},\"edb898\":{\"lock\":false,\"pos\":{\"x\":-26.29958152771,\"y\":1.26647686958313,\"z\":-84.817985534668},\"rot\":{\"x\":359.979156494141,\"y\":90.000114440918,\"z\":359.983215332031}},\"f8af18\":{\"lock\":false,\"pos\":{\"x\":-26.299991607666,\"y\":1.27566206455231,\"z\":-53.4367980957031},\"rot\":{\"x\":359.979156494141,\"y\":90.0000991821289,\"z\":359.983245849609}},\"f9c822\":{\"lock\":false,\"pos\":{\"x\":-16.640100479126,\"y\":1.36221289634705,\"z\":-60.0009994506836},\"rot\":{\"x\":0.0208163224160671,\"y\":270.000732421875,\"z\":0.0167683698236942}}}}",
"XmlUI": ""
},
{
"GUID": "899c3a",
"Name": "Custom_Model",
"Transform": {
"posX": -9.760995,
"posY": 1.30279851,
"posZ": -66.53561,
"rotX": 0.0208123047,
"rotY": 269.993347,
"rotZ": 0.0167680271,
"scaleX": 0.5,
"scaleY": 0.139652729,
"scaleZ": 0.5
},
"Nickname": "The Path to Carcosa",
"Description": "",
"GMNotes": "investigators/path_to_carcosa.json",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0,
"a": 0.274509817
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomMesh": {
"MeshURL": "https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/core_h_MSH.obj",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/762723517667645467/CDF71CF96691CEF2E690F71332479ACBA0697864/",
"NormalURL": "",
"ColliderURL": "",
"Convex": true,
"MaterialIndex": 3,
"TypeIndex": 0,
"CustomShader": {
"SpecularColor": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"SpecularIntensity": 0.0,
"SpecularSharpness": 2.0,
"FresnelStrength": 0.0
},
"CastShadows": true
},
"LuaScript": "\r\nfunction onload(saved_data)\r\n createDownloadButton()\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make Download button\r\nfunction createDownloadButton()\r\n self.createButton({\r\n label=\"Download\", click_function=\"buttonClick_download\", function_owner=self,\r\n position={0,0.1,7}, rotation={0,0,0}, height=850, width=3300,\r\n font_size=700, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by download button,\r\nfunction buttonClick_download()\r\n local params = { url = self.getGMNotes(), replace = self.guid }\r\n Global.call('placeholder_download', params)\r\nend",
"LuaScriptState": "{\"ml\":{\"02bcb4\":{\"lock\":false,\"pos\":{\"x\":-22.6128,\"y\":1.3747,\"z\":-49.959},\"rot\":{\"x\":0.0168,\"y\":180.0104,\"z\":359.9792}},\"069e1b\":{\"lock\":false,\"pos\":{\"x\":-22.6158,\"y\":1.3655,\"z\":-81.3393},\"rot\":{\"x\":0.0168,\"y\":180.0104,\"z\":359.9792}},\"08cb35\":{\"lock\":false,\"pos\":{\"x\":-16.6389,\"y\":1.3625,\"z\":-58.9818},\"rot\":{\"x\":0.0208,\"y\":270.0182,\"z\":0.0168}},\"0b9ee6\":{\"lock\":false,\"pos\":{\"x\":-16.6392,\"y\":1.3587,\"z\":-72.2263},\"rot\":{\"x\":0.0208,\"y\":270.0002,\"z\":0.0168}},\"233795\":{\"lock\":false,\"pos\":{\"x\":-19.2948,\"y\":1.3714,\"z\":-65.5815},\"rot\":{\"x\":0.0208,\"y\":269.9567,\"z\":0.0168}},\"235bfb\":{\"lock\":false,\"pos\":{\"x\":-22.6157,\"y\":1.3632,\"z\":-89.174},\"rot\":{\"x\":0.0168,\"y\":180.0105,\"z\":359.9792}},\"27e41e\":{\"lock\":false,\"pos\":{\"x\":-16.6385,\"y\":1.3583,\"z\":-73.4665},\"rot\":{\"x\":0.0208,\"y\":270.0004,\"z\":0.0168}},\"2ce03d\":{\"lock\":false,\"pos\":{\"x\":-16.639,\"y\":1.3656,\"z\":-48.6729},\"rot\":{\"x\":0.0208,\"y\":270.0002,\"z\":0.0168}},\"3d3e9c\":{\"lock\":false,\"pos\":{\"x\":-26.2985,\"y\":1.2675,\"z\":-81.3388},\"rot\":{\"x\":359.9792,\"y\":90.018,\"z\":359.9832}},\"3da38f\":{\"lock\":false,\"pos\":{\"x\":-26.299,\"y\":1.2744,\"z\":-57.7619},\"rot\":{\"x\":359.9792,\"y\":89.9998,\"z\":359.9832}},\"435797\":{\"lock\":false,\"pos\":{\"x\":-16.639,\"y\":1.3652,\"z\":-49.9113},\"rot\":{\"x\":0.0208,\"y\":270.0002,\"z\":0.0168}},\"454573\":{\"lock\":false,\"pos\":{\"x\":-26.2991,\"y\":1.2698,\"z\":-73.4665},\"rot\":{\"x\":359.9792,\"y\":90.0003,\"z\":359.9832}},\"462941\":{\"lock\":false,\"pos\":{\"x\":-22.6158,\"y\":1.3724,\"z\":-57.7623},\"rot\":{\"x\":0.0168,\"y\":180.0002,\"z\":359.9792}},\"4fe415\":{\"lock\":false,\"pos\":{\"x\":-16.6392,\"y\":1.3606,\"z\":-65.5811},\"rot\":{\"x\":0.0208,\"y\":270.0002,\"z\":0.0168}},\"5b1faf\":{\"lock\":false,\"pos\":{\"x\":-26.2989,\"y\":1.2767,\"z\":-49.9578},\"rot\":{\"x\":359.9792,\"y\":89.9999,\"z\":359.9832}},\"5c5d3e\":{\"lock\":false,\"pos\":{\"x\":-19.2989,\"y\":1.3759,\"z\":-49.9567},\"rot\":{\"x\":0.0208,\"y\":269.9878,\"z\":0.0168}},\"681694\":{\"lock\":false,\"pos\":{\"x\":-16.6383,\"y\":1.3534,\"z\":-90.3836},\"rot\":{\"x\":0.0208,\"y\":270.009,\"z\":0.0168}},\"69a43c\":{\"lock\":false,\"pos\":{\"x\":-16.6406,\"y\":1.3541,\"z\":-87.9074},\"rot\":{\"x\":0.0209,\"y\":269.8033,\"z\":0.0167}},\"74d0ca\":{\"lock\":false,\"pos\":{\"x\":-22.6146,\"y\":1.3701,\"z\":-65.5964},\"rot\":{\"x\":0.0168,\"y\":180.0104,\"z\":359.9792}},\"754ca1\":{\"lock\":false,\"pos\":{\"x\":-19.2987,\"y\":1.3667,\"z\":-81.339},\"rot\":{\"x\":0.0208,\"y\":269.9901,\"z\":0.0168}},\"7b85f6\":{\"lock\":false,\"pos\":{\"x\":-16.6384,\"y\":1.3537,\"z\":-89.1537},\"rot\":{\"x\":0.0208,\"y\":270.0001,\"z\":0.0168}},\"9248cf\":{\"lock\":false,\"pos\":{\"x\":-16.639,\"y\":1.3579,\"z\":-74.6965},\"rot\":{\"x\":0.0208,\"y\":269.9992,\"z\":0.0168}},\"98d426\":{\"lock\":false,\"pos\":{\"x\":-16.639,\"y\":1.3648,\"z\":-51.1416},\"rot\":{\"x\":0.0208,\"y\":269.9988,\"z\":0.0168}},\"ac8f67\":{\"lock\":false,\"pos\":{\"x\":-19.2985,\"y\":1.3645,\"z\":-89.1737},\"rot\":{\"x\":0.0208,\"y\":269.9649,\"z\":0.0167}},\"b4a171\":{\"lock\":false,\"pos\":{\"x\":-19.2925,\"y\":1.3691,\"z\":-73.4624},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"b967c9\":{\"lock\":false,\"pos\":{\"x\":-16.6391,\"y\":1.356,\"z\":-81.339},\"rot\":{\"x\":0.0208,\"y\":269.9989,\"z\":0.0168}},\"baeea0\":{\"lock\":false,\"pos\":{\"x\":-26.2991,\"y\":1.2721,\"z\":-65.5814},\"rot\":{\"x\":359.9792,\"y\":89.9999,\"z\":359.9832}},\"bc93c3\":{\"lock\":false,\"pos\":{\"x\":-19.299,\"y\":1.3736,\"z\":-57.7542},\"rot\":{\"x\":0.0208,\"y\":270.0007,\"z\":0.0168}},\"bd9bda\":{\"lock\":false,\"pos\":{\"x\":-22.6146,\"y\":1.3678,\"z\":-73.4669},\"rot\":{\"x\":0.0168,\"y\":180.0104,\"z\":359.9792}},\"c55d46\":{\"lock\":false,\"pos\":{\"x\":-26.2984,\"y\":1.2652,\"z\":-89.1737},\"rot\":{\"x\":359.9792,\"y\":89.9836,\"z\":359.9832}},\"cd74de\":{\"lock\":false,\"pos\":{\"x\":-16.639,\"y\":1.361,\"z\":-64.3414},\"rot\":{\"x\":0.0208,\"y\":270.0003,\"z\":0.0168}},\"dd6f2b\":{\"lock\":false,\"pos\":{\"x\":-16.6381,\"y\":1.3556,\"z\":-82.5394},\"rot\":{\"x\":0.0208,\"y\":270.0164,\"z\":0.0168}},\"df03fb\":{\"lock\":false,\"pos\":{\"x\":-16.639,\"y\":1.3629,\"z\":-57.7519},\"rot\":{\"x\":0.0208,\"y\":269.9988,\"z\":0.0168}},\"e2df57\":{\"lock\":false,\"pos\":{\"x\":-16.639,\"y\":1.3603,\"z\":-66.8114},\"rot\":{\"x\":0.0208,\"y\":269.9986,\"z\":0.0168}},\"eb9c85\":{\"lock\":false,\"pos\":{\"x\":-16.6386,\"y\":1.3564,\"z\":-80.069},\"rot\":{\"x\":0.0208,\"y\":269.9867,\"z\":0.0168}},\"eed875\":{\"lock\":false,\"pos\":{\"x\":-16.6415,\"y\":1.3633,\"z\":-56.517},\"rot\":{\"x\":0.0208,\"y\":269.9107,\"z\":0.0167}}}}",
"XmlUI": ""
},
{
"GUID": "03b888",
"Name": "Custom_Model",
"Transform": {
"posX": -9.761878,
"posY": 1.30084026,
"posZ": -73.2255554,
"rotX": 0.02081177,
"rotY": 269.9936,
"rotZ": 0.016768422,
"scaleX": 0.5,
"scaleY": 0.139652729,
"scaleZ": 0.5
},
"Nickname": "The Forgotten Age",
"Description": "",
"GMNotes": "investigators/forgotten_age.json",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0,
"a": 0.274509817
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomMesh": {
"MeshURL": "https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/core_h_MSH.obj",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/762723517669830426/AAB750A408E887633F25AFDFB194C50A9A1518DF/",
"NormalURL": "",
"ColliderURL": "",
"Convex": true,
"MaterialIndex": 3,
"TypeIndex": 0,
"CustomShader": {
"SpecularColor": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"SpecularIntensity": 0.0,
"SpecularSharpness": 2.0,
"FresnelStrength": 0.0
},
"CastShadows": true
},
"LuaScript": "\r\nfunction onload(saved_data)\r\n createDownloadButton()\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make Download button\r\nfunction createDownloadButton()\r\n self.createButton({\r\n label=\"Download\", click_function=\"buttonClick_download\", function_owner=self,\r\n position={0,0.1,7}, rotation={0,0,0}, height=850, width=3300,\r\n font_size=700, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by download button,\r\nfunction buttonClick_download()\r\n local params = { url = self.getGMNotes(), replace = self.guid }\r\n Global.call('placeholder_download', params)\r\nend",
"LuaScriptState": "{\"ml\":{\"0745af\":{\"lock\":false,\"pos\":{\"x\":-16.6399993896484,\"y\":1.36149299144745,\"z\":-62.4608993530273},\"rot\":{\"x\":0.0208170022815466,\"y\":269.999938964844,\"z\":0.0167678613215685}},\"0cce7f\":{\"lock\":false,\"pos\":{\"x\":-22.6168956756592,\"y\":1.31328415870667,\"z\":-61.241397857666},\"rot\":{\"x\":0.0167752671986818,\"y\":180.010299682617,\"z\":359.979187011719}},\"1842b6\":{\"lock\":false,\"pos\":{\"x\":-26.2999973297119,\"y\":1.27566230297089,\"z\":-53.4369010925293},\"rot\":{\"x\":359.979156494141,\"y\":90,\"z\":359.983245849609}},\"1f8fcf\":{\"lock\":false,\"pos\":{\"x\":-16.6403007507324,\"y\":1.35956108570099,\"z\":-69.060302734375},\"rot\":{\"x\":0.0208168476819992,\"y\":270.00048828125,\"z\":0.0167679134756327}},\"24660b\":{\"lock\":false,\"pos\":{\"x\":-16.640100479126,\"y\":1.36414790153503,\"z\":-53.3903999328613},\"rot\":{\"x\":0.0208166111260653,\"y\":270.000305175781,\"z\":0.0167675819247961}},\"3c3607\":{\"lock\":false,\"pos\":{\"x\":-16.640100479126,\"y\":1.36185300350189,\"z\":-61.2309989929199},\"rot\":{\"x\":0.0208168718963861,\"y\":269.999603271484,\"z\":0.0167678724974394}},\"4722e6\":{\"lock\":false,\"pos\":{\"x\":-26.3000984191895,\"y\":1.2733781337738,\"z\":-61.2410011291504},\"rot\":{\"x\":359.979156494141,\"y\":89.9815063476563,\"z\":359.983245849609}},\"480119\":{\"lock\":false,\"pos\":{\"x\":-19.2997970581055,\"y\":1.3075875043869,\"z\":-84.8181991577148},\"rot\":{\"x\":0.0208203382790089,\"y\":269.968048095703,\"z\":0.0167613867670298}},\"573cb2\":{\"lock\":false,\"pos\":{\"x\":-22.6157627105713,\"y\":1.30868756771088,\"z\":-76.946044921875},\"rot\":{\"x\":0.0167756136506796,\"y\":180.01025390625,\"z\":359.979187011719}},\"5c7b14\":{\"lock\":false,\"pos\":{\"x\":-26.300199508667,\"y\":1.27108907699585,\"z\":-69.0606079101563},\"rot\":{\"x\":359.979187011719,\"y\":90.010009765625,\"z\":359.983215332031}},\"663b02\":{\"lock\":false,\"pos\":{\"x\":-19.2958965301514,\"y\":1.31220138072968,\"z\":-69.0606994628906},\"rot\":{\"x\":0.0208054259419441,\"y\":270.018493652344,\"z\":0.0167794562876225}},\"698808\":{\"lock\":false,\"pos\":{\"x\":-26.2995986938477,\"y\":1.26647639274597,\"z\":-84.8180084228516},\"rot\":{\"x\":359.979156494141,\"y\":90,\"z\":359.983245849609}},\"6c2d02\":{\"lock\":false,\"pos\":{\"x\":-22.6138954162598,\"y\":1.31556940078735,\"z\":-53.4380950927734},\"rot\":{\"x\":0.0167753715068102,\"y\":180.010299682617,\"z\":359.979187011719}},\"7069c2\":{\"lock\":false,\"pos\":{\"x\":-16.640100479126,\"y\":1.35689306259155,\"z\":-78.1755981445313},\"rot\":{\"x\":0.0208157803863287,\"y\":270.000732421875,\"z\":0.0167677123099566}},\"757716\":{\"lock\":false,\"pos\":{\"x\":-16.640100479126,\"y\":1.35992407798767,\"z\":-67.8206024169922},\"rot\":{\"x\":0.020816633477807,\"y\":270.000610351563,\"z\":0.0167682748287916}},\"7ae4a4\":{\"lock\":false,\"pos\":{\"x\":-16.640100479126,\"y\":1.36221301555634,\"z\":-60.0009994506836},\"rot\":{\"x\":0.0208161063492298,\"y\":269.999694824219,\"z\":0.0167677123099566}},\"7d0121\":{\"lock\":false,\"pos\":{\"x\":-16.6403007507324,\"y\":1.35761606693268,\"z\":-75.7053985595703},\"rot\":{\"x\":0.0208213068544865,\"y\":269.982086181641,\"z\":0.0167609136551619}},\"8d356b\":{\"lock\":false,\"pos\":{\"x\":-22.6156959533691,\"y\":1.31099140644073,\"z\":-69.0755996704102},\"rot\":{\"x\":0.0167721603065729,\"y\":180.000701904297,\"z\":359.979187011719}},\"90165e\":{\"lock\":false,\"pos\":{\"x\":-16.640100479126,\"y\":1.3637877702713,\"z\":-54.6207008361816},\"rot\":{\"x\":0.0208164267241955,\"y\":270.000213623047,\"z\":0.0167677942663431}},\"9c5af7\":{\"lock\":false,\"pos\":{\"x\":-26.3001976013184,\"y\":1.2687805891037,\"z\":-76.9456100463867},\"rot\":{\"x\":359.979156494141,\"y\":90,\"z\":359.983215332031}},\"a52a3a\":{\"lock\":false,\"pos\":{\"x\":-16.6396007537842,\"y\":1.35725319385529,\"z\":-76.9456024169922},\"rot\":{\"x\":0.0208161231130362,\"y\":270.000610351563,\"z\":0.0167683716863394}},\"b6b36e\":{\"lock\":false,\"pos\":{\"x\":-16.640100479126,\"y\":1.35920095443726,\"z\":-70.2906036376953},\"rot\":{\"x\":0.0208172854036093,\"y\":269.998809814453,\"z\":0.0167675353586674}},\"bab94a\":{\"lock\":false,\"pos\":{\"x\":-22.6168956756592,\"y\":1.3063827753067,\"z\":-84.8184967041016},\"rot\":{\"x\":0.0167757626622915,\"y\":180.010299682617,\"z\":359.979187011719}},\"be44cf\":{\"lock\":false,\"pos\":{\"x\":-16.6394004821777,\"y\":1.35459744930267,\"z\":-86.0186004638672},\"rot\":{\"x\":0.0208111852407455,\"y\":270.017486572266,\"z\":0.0167746804654598}},\"c1bb90\":{\"lock\":false,\"pos\":{\"x\":-16.6401996612549,\"y\":1.35494863986969,\"z\":-84.8181991577148},\"rot\":{\"x\":0.0208170153200626,\"y\":270.000396728516,\"z\":0.016767954453826}},\"cf0fa6\":{\"lock\":false,\"pos\":{\"x\":-16.640100479126,\"y\":1.36451041698456,\"z\":-52.1520004272461},\"rot\":{\"x\":0.0208162851631641,\"y\":270.000213623047,\"z\":0.0167680457234383}},\"d742cb\":{\"lock\":false,\"pos\":{\"x\":-19.3000965118408,\"y\":1.31449115276337,\"z\":-61.2331962585449},\"rot\":{\"x\":0.0208036378026009,\"y\":270.01806640625,\"z\":0.0167762525379658}},\"e0aba2\":{\"lock\":false,\"pos\":{\"x\":-19.2935962677002,\"y\":1.30989539623261,\"z\":-76.9414978027344},\"rot\":{\"x\":0.0208106692880392,\"y\":269.999786376953,\"z\":0.0167726222425699}},\"e4c465\":{\"lock\":false,\"pos\":{\"x\":-16.638599395752,\"y\":1.35532283782959,\"z\":-83.5414962768555},\"rot\":{\"x\":0.0208705551922321,\"y\":269.815185546875,\"z\":0.0167006105184555}},\"ef40fe\":{\"lock\":false,\"pos\":{\"x\":-19.2999954223633,\"y\":1.31677353382111,\"z\":-53.4357948303223},\"rot\":{\"x\":0.0208147279918194,\"y\":269.981292724609,\"z\":0.0167628452181816}}}}",
"XmlUI": ""
},
{
"GUID": "0dcbe8",
"Name": "Custom_Model",
"Transform": {
"posX": -9.760777,
"posY": 1.29886019,
"posZ": -79.9905853,
"rotX": 0.0208109617,
"rotY": 269.998749,
"rotZ": 0.01676996,
"scaleX": 0.5,
"scaleY": 0.139652729,
"scaleZ": 0.5
},
"Nickname": "The Circle Undone",
"Description": "",
"GMNotes": "investigators/circle_undone.json",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0,
"a": 0.274509817
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomMesh": {
"MeshURL": "https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/core_h_MSH.obj",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/762723517669843863/DC0750A38111062909FEDA1BC20685895A574A54/",
"NormalURL": "",
"ColliderURL": "",
"Convex": true,
"MaterialIndex": 3,
"TypeIndex": 0,
"CustomShader": {
"SpecularColor": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"SpecularIntensity": 0.0,
"SpecularSharpness": 2.0,
"FresnelStrength": 0.0
},
"CastShadows": true
},
"LuaScript": "\r\nfunction onload(saved_data)\r\n createDownloadButton()\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make Download button\r\nfunction createDownloadButton()\r\n self.createButton({\r\n label=\"Download\", click_function=\"buttonClick_download\", function_owner=self,\r\n position={0,0.1,7}, rotation={0,0,0}, height=850, width=3300,\r\n font_size=700, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by download button,\r\nfunction buttonClick_download()\r\n local params = { url = self.getGMNotes(), replace = self.guid }\r\n Global.call('placeholder_download', params)\r\nend",
"LuaScriptState": "{\"ml\":{\"06b093\":{\"lock\":false,\"pos\":{\"x\":-16.6386,\"y\":1.3564,\"z\":-80.069},\"rot\":{\"x\":0.0208,\"y\":270.0001,\"z\":0.0168}},\"07c091\":{\"lock\":false,\"pos\":{\"x\":-22.6158,\"y\":1.3724,\"z\":-57.7623},\"rot\":{\"x\":0.0168,\"y\":179.9901,\"z\":359.9792}},\"0987f6\":{\"lock\":false,\"pos\":{\"x\":-22.6158,\"y\":1.3655,\"z\":-81.3393},\"rot\":{\"x\":0.0168,\"y\":179.9858,\"z\":359.9792}},\"12aab7\":{\"lock\":false,\"pos\":{\"x\":-16.639,\"y\":1.361,\"z\":-64.3414},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"290c75\":{\"lock\":false,\"pos\":{\"x\":-16.639,\"y\":1.3633,\"z\":-56.5219},\"rot\":{\"x\":0.0208,\"y\":270.0144,\"z\":0.0168}},\"2c0d63\":{\"lock\":false,\"pos\":{\"x\":-19.2925,\"y\":1.3691,\"z\":-73.4624},\"rot\":{\"x\":0.0208,\"y\":269.9922,\"z\":0.0168}},\"498c92\":{\"lock\":false,\"pos\":{\"x\":-19.2948,\"y\":1.3714,\"z\":-65.5815},\"rot\":{\"x\":0.0208,\"y\":269.9871,\"z\":0.0168}},\"49d0b5\":{\"lock\":false,\"pos\":{\"x\":-19.2985,\"y\":1.3645,\"z\":-89.1737},\"rot\":{\"x\":0.0208,\"y\":269.983,\"z\":0.0168}},\"4fa9f0\":{\"lock\":false,\"pos\":{\"x\":-26.299,\"y\":1.2744,\"z\":-57.7619},\"rot\":{\"x\":359.9792,\"y\":90.0036,\"z\":359.9832}},\"546051\":{\"lock\":false,\"pos\":{\"x\":-19.299,\"y\":1.3736,\"z\":-57.7542},\"rot\":{\"x\":0.0208,\"y\":269.9838,\"z\":0.0168}},\"57ed69\":{\"lock\":false,\"pos\":{\"x\":-16.6389,\"y\":1.3625,\"z\":-58.9818},\"rot\":{\"x\":0.0208,\"y\":270,\"z\":0.0168}},\"6414c4\":{\"lock\":false,\"pos\":{\"x\":-19.2989,\"y\":1.3828,\"z\":-49.9567},\"rot\":{\"x\":0.0208,\"y\":270.0118,\"z\":0.0168}},\"6cb8b7\":{\"lock\":false,\"pos\":{\"x\":-16.6385,\"y\":1.3541,\"z\":-87.9138},\"rot\":{\"x\":0.0208,\"y\":269.985,\"z\":0.0168}},\"7038f1\":{\"lock\":false,\"pos\":{\"x\":-26.2984,\"y\":1.2652,\"z\":-89.1737},\"rot\":{\"x\":359.9792,\"y\":89.9975,\"z\":359.9832}},\"74efa5\":{\"lock\":false,\"pos\":{\"x\":-16.6385,\"y\":1.3583,\"z\":-73.4665},\"rot\":{\"x\":0.0208,\"y\":270.0452,\"z\":0.0168}},\"759bf5\":{\"lock\":false,\"pos\":{\"x\":-16.639,\"y\":1.3579,\"z\":-74.6965},\"rot\":{\"x\":0.0208,\"y\":269.9665,\"z\":0.0168}},\"77ae77\":{\"lock\":false,\"pos\":{\"x\":-16.639,\"y\":1.3603,\"z\":-66.8114},\"rot\":{\"x\":0.0208,\"y\":269.9974,\"z\":0.0168}},\"7b381e\":{\"lock\":false,\"pos\":{\"x\":-22.6146,\"y\":1.3678,\"z\":-73.4669},\"rot\":{\"x\":0.0168,\"y\":179.9857,\"z\":359.9792}},\"7e14e1\":{\"lock\":false,\"pos\":{\"x\":-16.639,\"y\":1.3656,\"z\":-48.6729},\"rot\":{\"x\":0.0208,\"y\":270.0007,\"z\":0.0168}},\"7e8db4\":{\"lock\":false,\"pos\":{\"x\":-26.2985,\"y\":1.2675,\"z\":-81.3388},\"rot\":{\"x\":359.9792,\"y\":89.9837,\"z\":359.9832}},\"800843\":{\"lock\":false,\"pos\":{\"x\":-16.6383,\"y\":1.3537,\"z\":-89.1397},\"rot\":{\"x\":0.0208,\"y\":270.0267,\"z\":0.0168}},\"8551a0\":{\"lock\":false,\"pos\":{\"x\":-16.6391,\"y\":1.356,\"z\":-81.339},\"rot\":{\"x\":0.0208,\"y\":270.0159,\"z\":0.0168}},\"90ffcd\":{\"lock\":false,\"pos\":{\"x\":-26.2991,\"y\":1.2698,\"z\":-73.4665},\"rot\":{\"x\":359.9792,\"y\":89.9841,\"z\":359.9832}},\"97c956\":{\"lock\":false,\"pos\":{\"x\":-26.2989,\"y\":1.2767,\"z\":-49.9578},\"rot\":{\"x\":359.9792,\"y\":90.0023,\"z\":359.9832}},\"98f4b5\":{\"lock\":false,\"pos\":{\"x\":-16.639,\"y\":1.3629,\"z\":-57.7519},\"rot\":{\"x\":0.0208,\"y\":269.9753,\"z\":0.0168}},\"a19874\":{\"lock\":false,\"pos\":{\"x\":-16.6384,\"y\":1.3534,\"z\":-90.3837},\"rot\":{\"x\":0.0208,\"y\":270.0001,\"z\":0.0168}},\"aa0875\":{\"lock\":false,\"pos\":{\"x\":-22.6128,\"y\":1.3816,\"z\":-49.959},\"rot\":{\"x\":0.0168,\"y\":179.9808,\"z\":359.9792}},\"ab0486\":{\"lock\":false,\"pos\":{\"x\":-16.6392,\"y\":1.3606,\"z\":-65.5811},\"rot\":{\"x\":0.0208,\"y\":269.9982,\"z\":0.0168}},\"b4a195\":{\"lock\":false,\"pos\":{\"x\":-19.2987,\"y\":1.3667,\"z\":-81.339},\"rot\":{\"x\":0.0208,\"y\":270.0094,\"z\":0.0168}},\"b94c04\":{\"lock\":false,\"pos\":{\"x\":-26.2991,\"y\":1.2721,\"z\":-65.5814},\"rot\":{\"x\":359.9792,\"y\":90.0109,\"z\":359.9832}},\"df079f\":{\"lock\":false,\"pos\":{\"x\":-16.6383,\"y\":1.3556,\"z\":-82.5394},\"rot\":{\"x\":0.0208,\"y\":270.0002,\"z\":0.0168}},\"e2aac1\":{\"lock\":false,\"pos\":{\"x\":-16.639,\"y\":1.3648,\"z\":-51.1416},\"rot\":{\"x\":0.0208,\"y\":270.0373,\"z\":0.0168}},\"e4be8a\":{\"lock\":false,\"pos\":{\"x\":-16.6392,\"y\":1.3587,\"z\":-72.2263},\"rot\":{\"x\":0.0208,\"y\":270.0004,\"z\":0.0168}},\"e5683e\":{\"lock\":false,\"pos\":{\"x\":-22.6157,\"y\":1.3632,\"z\":-89.174},\"rot\":{\"x\":0.0168,\"y\":179.9837,\"z\":359.9792}},\"f4bdf0\":{\"lock\":false,\"pos\":{\"x\":-22.6146,\"y\":1.3701,\"z\":-65.5964},\"rot\":{\"x\":0.0168,\"y\":179.9885,\"z\":359.9792}},\"fb6232\":{\"lock\":false,\"pos\":{\"x\":-16.639,\"y\":1.3652,\"z\":-49.9113},\"rot\":{\"x\":0.0208,\"y\":270.0219,\"z\":0.0168}}}}",
"XmlUI": ""
},
{
"GUID": "a34f34",
"Name": "Custom_Model",
"Transform": {
"posX": -9.758048,
"posY": 1.29687655,
"posZ": -86.77087,
"rotX": 0.0208100621,
"rotY": 270.000366,
"rotZ": 0.0167706944,
"scaleX": 0.5,
"scaleY": 0.139652729,
"scaleZ": 0.5
},
"Nickname": "The Dream-Eaters",
"Description": "",
"GMNotes": "investigators/dream-eaters.json",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0,
"a": 0.274509817
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomMesh": {
"MeshURL": "https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/core_h_MSH.obj",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/762723517669849292/9CD4BE220E1DE5294B1BC6301792920D213C98B3/",
"NormalURL": "",
"ColliderURL": "",
"Convex": true,
"MaterialIndex": 3,
"TypeIndex": 0,
"CustomShader": {
"SpecularColor": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"SpecularIntensity": 0.0,
"SpecularSharpness": 2.0,
"FresnelStrength": 0.0
},
"CastShadows": true
},
"LuaScript": "\r\nfunction onload(saved_data)\r\n createDownloadButton()\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make Download button\r\nfunction createDownloadButton()\r\n self.createButton({\r\n label=\"Download\", click_function=\"buttonClick_download\", function_owner=self,\r\n position={0,0.1,7}, rotation={0,0,0}, height=850, width=3300,\r\n font_size=700, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by download button,\r\nfunction buttonClick_download()\r\n local params = { url = self.getGMNotes(), replace = self.guid }\r\n Global.call('placeholder_download', params)\r\nend",
"LuaScriptState": "{\"ml\":{\"0531e5\":{\"lock\":false,\"pos\":{\"x\":-16.64,\"y\":1.3615,\"z\":-62.4609},\"rot\":{\"x\":0.0208,\"y\":270.0276,\"z\":0.0168}},\"0db936\":{\"lock\":false,\"pos\":{\"x\":-16.6389,\"y\":1.3622,\"z\":-59.9952},\"rot\":{\"x\":0.0209,\"y\":269.8573,\"z\":0.0167}},\"1f168b\":{\"lock\":false,\"pos\":{\"x\":-16.6401,\"y\":1.3592,\"z\":-70.2906},\"rot\":{\"x\":0.0208,\"y\":269.9988,\"z\":0.0168}},\"20abda\":{\"lock\":false,\"pos\":{\"x\":-19.3,\"y\":1.3749,\"z\":-53.4358},\"rot\":{\"x\":0.0208,\"y\":269.9682,\"z\":0.0168}},\"2da799\":{\"lock\":false,\"pos\":{\"x\":-16.64,\"y\":1.3645,\"z\":-52.152},\"rot\":{\"x\":0.0208,\"y\":270.0003,\"z\":0.0168}},\"347bdc\":{\"lock\":false,\"pos\":{\"x\":-16.6403,\"y\":1.3576,\"z\":-75.7054},\"rot\":{\"x\":0.0208,\"y\":270.0024,\"z\":0.0168}},\"37326d\":{\"lock\":false,\"pos\":{\"x\":-26.3001,\"y\":1.2734,\"z\":-61.241},\"rot\":{\"x\":359.9792,\"y\":89.9917,\"z\":359.9832}},\"396e28\":{\"lock\":false,\"pos\":{\"x\":-26.2996,\"y\":1.2665,\"z\":-84.818},\"rot\":{\"x\":359.9792,\"y\":90.0006,\"z\":359.9832}},\"3a0b7c\":{\"lock\":false,\"pos\":{\"x\":-26.3,\"y\":1.2757,\"z\":-53.4368},\"rot\":{\"x\":359.9792,\"y\":90,\"z\":359.9832}},\"4ac8be\":{\"lock\":false,\"pos\":{\"x\":-16.64,\"y\":1.3642,\"z\":-53.3904},\"rot\":{\"x\":0.0208,\"y\":270.0061,\"z\":0.0168}},\"568da7\":{\"lock\":false,\"pos\":{\"x\":-19.2998,\"y\":1.3657,\"z\":-84.8182},\"rot\":{\"x\":0.0208,\"y\":270.0004,\"z\":0.0168}},\"592dfb\":{\"lock\":false,\"pos\":{\"x\":-16.6394,\"y\":1.3546,\"z\":-86.0186},\"rot\":{\"x\":0.0208,\"y\":270.0097,\"z\":0.0168}},\"5d774c\":{\"lock\":false,\"pos\":{\"x\":-16.6343,\"y\":1.3638,\"z\":-54.6167},\"rot\":{\"x\":0.0208,\"y\":269.9004,\"z\":0.0167}},\"687b10\":{\"lock\":false,\"pos\":{\"x\":-26.3002,\"y\":1.2688,\"z\":-76.9456},\"rot\":{\"x\":359.9792,\"y\":89.9993,\"z\":359.9832}},\"6b8d4e\":{\"lock\":false,\"pos\":{\"x\":-16.6401,\"y\":1.3619,\"z\":-61.231},\"rot\":{\"x\":0.0208,\"y\":270.0115,\"z\":0.0168}},\"92b8c8\":{\"lock\":false,\"pos\":{\"x\":-19.2936,\"y\":1.368,\"z\":-76.9415},\"rot\":{\"x\":0.0208,\"y\":269.9868,\"z\":0.0168}},\"b238a0\":{\"lock\":false,\"pos\":{\"x\":-22.6157,\"y\":1.3668,\"z\":-76.946},\"rot\":{\"x\":0.0168,\"y\":179.9999,\"z\":359.9792}},\"b3b6b9\":{\"lock\":false,\"pos\":{\"x\":-16.6385,\"y\":1.3554,\"z\":-83.5415},\"rot\":{\"x\":0.0208,\"y\":270.0003,\"z\":0.0168}},\"b81d01\":{\"lock\":false,\"pos\":{\"x\":-26.3002,\"y\":1.2711,\"z\":-69.0606},\"rot\":{\"x\":359.9792,\"y\":90.0185,\"z\":359.9832}},\"c0a2e9\":{\"lock\":false,\"pos\":{\"x\":-16.6401,\"y\":1.36,\"z\":-67.8206},\"rot\":{\"x\":0.0208,\"y\":269.9973,\"z\":0.0168}},\"c57723\":{\"lock\":false,\"pos\":{\"x\":-22.6169,\"y\":1.3714,\"z\":-61.2414},\"rot\":{\"x\":0.0168,\"y\":179.9939,\"z\":359.9792}},\"c82de2\":{\"lock\":false,\"pos\":{\"x\":-22.6157,\"y\":1.3691,\"z\":-69.0756},\"rot\":{\"x\":0.0168,\"y\":179.9999,\"z\":359.9792}},\"c96d87\":{\"lock\":false,\"pos\":{\"x\":-22.6139,\"y\":1.3737,\"z\":-53.4381},\"rot\":{\"x\":0.0168,\"y\":180,\"z\":359.9792}},\"d5ff18\":{\"lock\":false,\"pos\":{\"x\":-16.6401,\"y\":1.3569,\"z\":-78.1756},\"rot\":{\"x\":0.0208,\"y\":270.0004,\"z\":0.0168}},\"d827a4\":{\"lock\":false,\"pos\":{\"x\":-16.6402,\"y\":1.355,\"z\":-84.8182},\"rot\":{\"x\":0.0208,\"y\":269.9846,\"z\":0.0168}},\"da546d\":{\"lock\":false,\"pos\":{\"x\":-22.6169,\"y\":1.3645,\"z\":-84.8185},\"rot\":{\"x\":0.0168,\"y\":179.9867,\"z\":359.9792}},\"df88eb\":{\"lock\":false,\"pos\":{\"x\":-19.3001,\"y\":1.3726,\"z\":-61.2332},\"rot\":{\"x\":0.0208,\"y\":269.987,\"z\":0.0168}},\"eaadbf\":{\"lock\":false,\"pos\":{\"x\":-16.6396,\"y\":1.3573,\"z\":-76.9456},\"rot\":{\"x\":0.0208,\"y\":269.9724,\"z\":0.0167}},\"fae88f\":{\"lock\":false,\"pos\":{\"x\":-19.2959,\"y\":1.3703,\"z\":-69.0607},\"rot\":{\"x\":0.0208,\"y\":269.9871,\"z\":0.0168}},\"ff2fcf\":{\"lock\":false,\"pos\":{\"x\":-16.6403,\"y\":1.3596,\"z\":-69.0603},\"rot\":{\"x\":0.0208,\"y\":269.9963,\"z\":0.0168}}}}",
"XmlUI": ""
},
{
"GUID": "fe2ae4",
"Name": "ScriptingTrigger",
"Transform": {
"posX": -3.90844154,
"posY": 4.13122,
"posZ": -10.4676151,
"rotX": 0.0,
"rotY": 89.99999,
"rotZ": 0.0,
"scaleX": 3.471745,
"scaleY": 5.1,
"scaleZ": 4.49798346
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0,
"a": 0.509803951
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": true,
"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": "b46db2",
"Name": "Custom_Model_Bag",
"Transform": {
"posX": 32.4528923,
"posY": 1.43240166,
"posZ": -13.1247549,
"rotX": 359.920135,
"rotY": 270.006775,
"rotZ": 0.0168654826,
"scaleX": 2.21,
"scaleY": 0.46,
"scaleZ": 2.42
},
"Nickname": "The Fall of the House of Usher",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"MaterialIndex": -1,
"MeshIndex": -1,
"CustomMesh": {
"MeshURL": "https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/1771580824970152646/1C2D909AF92814C33B43D22F0EE1D6B8FD260998/",
"NormalURL": "",
"ColliderURL": "",
"Convex": true,
"MaterialIndex": 3,
"TypeIndex": 6,
"CustomShader": {
"SpecularColor": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"SpecularIntensity": 0.0,
"SpecularSharpness": 2.0,
"FresnelStrength": 0.0
},
"CastShadows": true
},
"Bag": {
"Order": 0
},
"LuaScript": "-- Utility memory bag by Directsun\r\n-- Version 2.5.2\r\n-- Fork of Memory Bag 2.0 by MrStump\r\n\r\nfunction updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction combineMemoryFromBagsWithin()\r\n local bagObjList = self.getObjects()\r\n for _, bagObj in ipairs(bagObjList) do\r\n local data = bagObj.lua_script_state\r\n if data ~= nil then\r\n local j = JSON.decode(data)\r\n if j ~= nil and j.ml ~= nil then\r\n for guid, entry in pairs(j.ml) do\r\n memoryList[guid] = entry\r\n end\r\n end\r\n end\r\n end\r\nend\r\n\r\nfunction updateMemoryWithMoves()\r\n memoryList = memoryListBackup\r\n --get the first transposed object's coordinates\r\n local obj = getObjectFromGUID(moveGuid)\r\n\r\n -- p1 is where needs to go, p2 is where it was\r\n local refObjPos = memoryList[moveGuid].pos\r\n local deltaPos = findOffsetDistance(obj.getPosition(), refObjPos, nil)\r\n local movedRotation = obj.getRotation()\r\n for guid, entry in pairs(memoryList) do\r\n memoryList[guid].pos.x = entry.pos.x - deltaPos.x\r\n memoryList[guid].pos.y = entry.pos.y - deltaPos.y\r\n memoryList[guid].pos.z = entry.pos.z - deltaPos.z\r\n -- memoryList[guid].rot.x = movedRotation.x\r\n -- memoryList[guid].rot.y = movedRotation.y\r\n -- memoryList[guid].rot.z = movedRotation.z\r\n end\r\n\r\n --theList[obj.getGUID()] = {\r\n -- pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n -- rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n -- lock=obj.getLock()\r\n --}\r\n moveList = {}\r\nend\r\n\r\nfunction onload(saved_data)\r\n fresh = true\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n moveList = {}\r\n moveGuid = nil\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n fresh = false\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.1,-2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by Transpose button\r\nfunction buttonClick_transpose()\r\n moveGuid = nil\r\n broadcastToAll(\"Select one object and move it- all objects will move relative to the new location\", {0.75, 0.75, 1})\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n moveList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects(true)\r\n createSetupActionButtons(true)\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects(false)\r\n createSetupActionButtons(false)\r\nend\r\n\r\nfunction getAllObjectsInMemory()\r\n local objTable = {}\r\n local curObj = {}\r\n\r\n for guid in pairs(memoryListBackup) do\r\n curObj = getObjectFromGUID(guid)\r\n table.insert(objTable, curObj)\r\n end\r\n\r\n return objTable\r\n -- return getAllObjects()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects(move)\r\n local howManyButtons = 0\r\n\r\n local objsToHaveButtons = {}\r\n if move == true then\r\n objsToHaveButtons = getAllObjectsInMemory()\r\n else\r\n objsToHaveButtons = getAllObjects()\r\n end\r\n\r\n for _, obj in ipairs(objsToHaveButtons) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1 * 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor + 2\r\n objPos.z = objPos.z * globalScaleFactor * 0.9\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj, move) end\r\n local color = {0.75,0.25,0.25,0.6}\r\n local colorMove = {0,0,1,0.6}\r\n if move == true then\r\n color = colorMove\r\n end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=500, width=500,\r\n color=color,\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons(move)\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={-0.6,0.1,-2.1}, rotation={0,0,0}, height=220, width=550,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={-0.6,0.3,-2.5}, rotation={0,0,0}, height=220, width=550,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n\r\n if move == false then\r\n self.createButton({\r\n label=\"Add\", click_function=\"buttonClick_add\", function_owner=self,\r\n position={0.6,0.3,-2.1}, rotation={0,0,0}, height=220, width=550,\r\n font_size=130, color={0,0,0}, font_color={0.25,1,0.25}\r\n })\r\n\r\n if fresh == false then\r\n self.createButton({\r\n label=\"Set New\", click_function=\"buttonClick_setNew\", function_owner=self,\r\n position={0.6,0.3,-2.9}, rotation={0,0,0}, height=220, width=550,\r\n font_size=130, color={0,0,0}, font_color={0.75,0.75,1}\r\n })\r\n self.createButton({\r\n label=\"Remove\", click_function=\"buttonClick_remove\", function_owner=self,\r\n position={0.6,0.3,-2.5}, rotation={0,0,0}, height=220, width=550,\r\n font_size=130, color={0,0,0}, font_color={1,0.25,0.25}\r\n })\r\n end\r\n end\r\n\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-0.6,0.3,-2.9}, rotation={0,0,0}, height=220, width=550,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj, move)\r\n local colorMove = {0,0,1,0.6}\r\n local color = {0,1,0,0.6}\r\n\r\n previousGuid = selectedGuid\r\n selectedGuid = obj.getGUID()\r\n\r\n theList = memoryList\r\n if move == true then\r\n theList = moveList\r\n if previousGuid ~= nil and previousGuid ~= selectedGuid then\r\n local prevObj = getObjectFromGUID(previousGuid)\r\n prevObj.highlightOff()\r\n self.editButton({index=previousIndex, color=colorMove})\r\n theList[previousGuid] = nil\r\n end\r\n previousIndex = index\r\n end\r\n\r\n if theList[selectedGuid] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n theList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n if move == true then\r\n color = colorMove\r\n end\r\n self.editButton({index=index, color=color})\r\n theList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n moveList = {}\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\n moveGuid = nil\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n fresh = false\r\n if next(moveList) ~= nil then\r\n for guid in pairs(moveList) do\r\n moveGuid = guid\r\n end\r\n if memoryListBackup[moveGuid] == nil then\r\n broadcastToAll(\"Item selected for moving is not already in memory\", {1, 0.25, 0.25})\r\n else\r\n broadcastToAll(\"Moving all items in memory relative to new objects position!\", {0.75, 0.75, 1})\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(moveList) do\r\n moveGuid = guid\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n updateMemoryWithMoves()\r\n updateSave()\r\n buttonClick_place()\r\n end\r\n elseif next(memoryList) == nil and moveGuid == nil then\r\n memoryList = memoryListBackup\r\n broadcastToAll(\"No selections made.\", {0.75, 0.25, 0.25})\r\n end\r\n combineMemoryFromBagsWithin()\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n moveGuid = nil\r\nend\r\n\r\nfunction combineTables(first_table, second_table)\r\n for k,v in pairs(second_table) do first_table[k] = v end\r\nend\r\n\r\nfunction buttonClick_add()\r\n fresh = false\r\n combineTables(memoryList, memoryListBackup)\r\n broadcastToAll(\"Adding internal bags and selections to existing memory\", {0.25, 0.75, 0.25})\r\n combineMemoryFromBagsWithin()\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\nfunction buttonClick_remove()\r\n broadcastToAll(\"Removing Selected Entries From Memory\", {1.0, 0.25, 0.25})\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n memoryListBackup[guid] = nil\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Removed\", {1,1,1})\r\n memoryList = memoryListBackup\r\n updateSave()\r\nend\r\n\r\nfunction buttonClick_setNew()\r\n broadcastToAll(\"Setting new position relative to items in memory\", {0.75, 0.75, 1})\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n guid = obj.guid\r\n if memoryListBackup[guid] ~= nil then\r\n count = count + 1\r\n memoryListBackup[guid].pos = obj.getPosition()\r\n memoryListBackup[guid].rot = obj.getRotation()\r\n memoryListBackup[guid].lock = obj.getLock()\r\n end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n memoryList = memoryListBackup\r\n updateSave()\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n fresh = true\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={-0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.1,-2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n--- self.createButton({\r\n--- label=\"Move\", click_function=\"buttonClick_transpose\", function_owner=self,\r\n--- position={-2.8,0.3,0}, rotation={0,0,0}, height=350, width=800,\r\n--- font_size=250, color={0,0,0}, font_color={0.75,0.75,1}\r\n--- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot, smooth=false\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local yOffset = 0\r\n if obj ~= nil then\r\n local bounds = obj.getBounds()\r\n yOffset = (bounds.size.y - bounds.offset.y)\r\n end\r\n local deltaPos = {}\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + yOffset\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\nfunction rotateMyCoordinates(desiredPos, obj)\r\n\tlocal angle = math.rad(obj.getRotation().y)\r\n local x = desiredPos.x * math.sin(angle)\r\n\tlocal z = desiredPos.z * math.cos(angle)\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n",
"LuaScriptState": "{\"ml\":{\"191941\":{\"lock\":false,\"pos\":{\"x\":-8.8991,\"y\":1.6039,\"z\":-12.2997},\"rot\":{\"x\":359.922,\"y\":269.9513,\"z\":0.0169}},\"1e5cf2\":{\"lock\":false,\"pos\":{\"x\":-8.9685,\"y\":1.6055,\"z\":-7.0847},\"rot\":{\"x\":359.9211,\"y\":269.9971,\"z\":0.0173}},\"1ec67c\":{\"lock\":false,\"pos\":{\"x\":-2.6889,\"y\":1.6191,\"z\":-5.0485},\"rot\":{\"x\":0.0168,\"y\":179.9999,\"z\":0.0803}},\"22ae93\":{\"lock\":false,\"pos\":{\"x\":-30.2241,\"y\":1.6225,\"z\":-3.83},\"rot\":{\"x\":0.0166,\"y\":180.1514,\"z\":0.08}},\"34fda8\":{\"lock\":false,\"pos\":{\"x\":-33.6136,\"y\":1.6294,\"z\":3.5762},\"rot\":{\"x\":0.0684,\"y\":134.9841,\"z\":0.0446}},\"49f26f\":{\"lock\":false,\"pos\":{\"x\":-36.7604,\"y\":1.6463,\"z\":-0.1319},\"rot\":{\"x\":359.9201,\"y\":270.0081,\"z\":0.0168}},\"4b8bb9\":{\"lock\":false,\"pos\":{\"x\":0.1816,\"y\":1.6265,\"z\":-15.6845},\"rot\":{\"x\":359.9197,\"y\":270.0023,\"z\":0.0168}},\"4d6ba5\":{\"lock\":false,\"pos\":{\"x\":-30.2243,\"y\":1.6349,\"z\":-7.7001},\"rot\":{\"x\":359.9201,\"y\":270.011,\"z\":0.0168}},\"4f0dc5\":{\"lock\":false,\"pos\":{\"x\":-30.2243,\"y\":1.6372,\"z\":-0.0301},\"rot\":{\"x\":359.9201,\"y\":269.9995,\"z\":0.0168}},\"64faca\":{\"lock\":false,\"pos\":{\"x\":-34.2126,\"y\":1.628,\"z\":-3.9652},\"rot\":{\"x\":359.9455,\"y\":329.9937,\"z\":359.9392}},\"7234af\":{\"lock\":false,\"pos\":{\"x\":-26.7523,\"y\":1.6187,\"z\":-0.0751},\"rot\":{\"x\":359.9201,\"y\":270.0107,\"z\":0.0169}},\"7a167a\":{\"lock\":false,\"pos\":{\"x\":1.7099,\"y\":1.5583,\"z\":14.2855},\"rot\":{\"x\":359.9554,\"y\":224.7322,\"z\":0.0689}},\"7da52c\":{\"lock\":false,\"pos\":{\"x\":-3.956,\"y\":1.5975,\"z\":-10.4412},\"rot\":{\"x\":359.9197,\"y\":269.9999,\"z\":0.0168}},\"82cc79\":{\"lock\":false,\"pos\":{\"x\":-27.2534,\"y\":1.6172,\"z\":-7.651},\"rot\":{\"x\":359.9201,\"y\":270.0127,\"z\":0.0169}},\"8a3e0b\":{\"lock\":false,\"pos\":{\"x\":-8.9186,\"y\":1.6062,\"z\":-4.448},\"rot\":{\"x\":359.9219,\"y\":270.0014,\"z\":180.0168}},\"8a4aea\":{\"lock\":false,\"pos\":{\"x\":-3.9278,\"y\":1.7733,\"z\":5.7572},\"rot\":{\"x\":359.9197,\"y\":270.0108,\"z\":180.0168}},\"8fc1ca\":{\"lock\":false,\"pos\":{\"x\":-27.3633,\"y\":1.6207,\"z\":3.5729},\"rot\":{\"x\":359.9554,\"y\":225.0201,\"z\":0.0684}},\"90b00d\":{\"lock\":false,\"pos\":{\"x\":-1.6368,\"y\":1.4983,\"z\":-39.3037},\"rot\":{\"x\":0,\"y\":270.0101,\"z\":359.6725}},\"a8a05c\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6156,\"z\":3.86},\"rot\":{\"x\":0.0167,\"y\":180.0935,\"z\":0.08}},\"ab5023\":{\"lock\":false,\"pos\":{\"x\":-2.7249,\"y\":1.6159,\"z\":0.3733},\"rot\":{\"x\":0.0168,\"y\":180,\"z\":0.0803}},\"acf560\":{\"lock\":false,\"pos\":{\"x\":-33.4997,\"y\":1.6304,\"z\":7.534},\"rot\":{\"x\":359.9201,\"y\":270.01,\"z\":0.0169}},\"aef3fc\":{\"lock\":false,\"pos\":{\"x\":-23.6766,\"y\":1.6258,\"z\":-7.7},\"rot\":{\"x\":359.9201,\"y\":269.9665,\"z\":0.0169}},\"b485b2\":{\"lock\":false,\"pos\":{\"x\":-8.8413,\"y\":1.603,\"z\":-14.9318},\"rot\":{\"x\":359.9213,\"y\":269.9984,\"z\":0.0179}},\"b81b3a\":{\"lock\":false,\"pos\":{\"x\":-30.2241,\"y\":1.6247,\"z\":3.86},\"rot\":{\"x\":0.0168,\"y\":180.0174,\"z\":0.0799}},\"bbb70a\":{\"lock\":false,\"pos\":{\"x\":-3.9117,\"y\":1.5826,\"z\":-14.806},\"rot\":{\"x\":359.9197,\"y\":270.0314,\"z\":0.0168}},\"bd62c6\":{\"lock\":false,\"pos\":{\"x\":-23.6767,\"y\":1.6303,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":269.9995,\"z\":0.0168}},\"c4b15a\":{\"lock\":false,\"pos\":{\"x\":-21.0971,\"y\":1.641,\"z\":1.7052},\"rot\":{\"x\":359.3205,\"y\":270.0123,\"z\":0.0167}},\"cac078\":{\"lock\":false,\"pos\":{\"x\":-30.2243,\"y\":1.6394,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":270.0006,\"z\":0.0168}},\"d1e043\":{\"lock\":false,\"pos\":{\"x\":-36.7732,\"y\":1.6339,\"z\":3.86},\"rot\":{\"x\":0.0168,\"y\":180.0144,\"z\":0.0799}},\"e03eed\":{\"lock\":false,\"pos\":{\"x\":-36.7732,\"y\":1.6486,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":270.0102,\"z\":0.0168}},\"ec039f\":{\"lock\":false,\"pos\":{\"x\":-8.9555,\"y\":1.6047,\"z\":-9.7254},\"rot\":{\"x\":359.9219,\"y\":270.0037,\"z\":0.0168}},\"eda22b\":{\"lock\":false,\"pos\":{\"x\":-1.4656,\"y\":1.5756,\"z\":-26.9312},\"rot\":{\"x\":359.9201,\"y\":270.0143,\"z\":0.0169}},\"f2cf1f\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6281,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9977,\"z\":0.0172}},\"fdde48\":{\"lock\":false,\"pos\":{\"x\":-27.0721,\"y\":1.6182,\"z\":-3.4372},\"rot\":{\"x\":359.9316,\"y\":315.0023,\"z\":359.9554}}}}",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "7a167a",
"Name": "Custom_Model_Bag",
"Transform": {
"posX": 1.709901,
"posY": 1.5583,
"posZ": 14.2855015,
"rotX": 359.955444,
"rotY": 224.7322,
"rotZ": 0.068877846,
"scaleX": 2.0,
"scaleY": 2.0,
"scaleZ": 2.0
},
"Nickname": "Set-aside",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.02148666,
"g": 0.00100758043,
"b": 0.02148666
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"MaterialIndex": -1,
"MeshIndex": -1,
"CustomMesh": {
"MeshURL": "http://cloud-3.steamusercontent.com/ugc/764975951334964971/3078F312706FC974833ECD2A359B87FD4F283509/",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/764975951334960553/C518D80E31E27DB23EEAC8CF9253E59798865790/",
"NormalURL": "http://cloud-3.steamusercontent.com/ugc/764975951334960069/E70E4A58A1B7827F1E5E2AF9FF44DF0BD5DA33F7/",
"ColliderURL": "",
"Convex": true,
"MaterialIndex": 1,
"TypeIndex": 6,
"CastShadows": true
},
"Bag": {
"Order": 0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"PhysicsMaterial": {
"StaticFriction": 0.6,
"DynamicFriction": 0.6,
"Bounciness": 0.0,
"FrictionCombine": 0,
"BounceCombine": 0
},
"Rigidbody": {
"Mass": 1.375,
"Drag": 5.0,
"AngularDrag": 5.0,
"UseGravity": true
},
"ContainedObjects": [
{
"GUID": "ff3998",
"Name": "Card",
"Transform": {
"posX": 1.6964221,
"posY": 3.67016315,
"posZ": 14.2788363,
"rotX": 359.94812,
"rotY": 224.998062,
"rotZ": 0.05827967,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Faded Silhouette",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 266200,
"SidewaysCard": false,
"CustomDeck": {
"2662": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1771580824970169444/6539120F8BB25D617FF076FA55497E6F46C040C9/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933574036605747/66F5F6903F78214DDB7420F5022C9CDEC4D85464/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "7ebb5b",
"Name": "Card",
"Transform": {
"posX": 2.54317617,
"posY": 2.32877278,
"posZ": -75.41165,
"rotX": 0.02081628,
"rotY": 269.973663,
"rotZ": 0.01676165,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "The Mad Trist (Dragon's Cunning)",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 267302,
"SidewaysCard": false,
"CustomDeck": {
"2673": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1688271207858395302/58D4D41AE08786AD3FB990CF8D8902A74B59E5A2/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933574036605747/66F5F6903F78214DDB7420F5022C9CDEC4D85464/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": false,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "cb1ae5",
"Name": "Card",
"Transform": {
"posX": 2.723613,
"posY": 2.329004,
"posZ": -75.4904861,
"rotX": 0.0208050925,
"rotY": 270.012726,
"rotZ": 0.016775379,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "The Mad Trist (Shelter From the Storm)",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 267301,
"SidewaysCard": false,
"CustomDeck": {
"2673": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1688271207858395302/58D4D41AE08786AD3FB990CF8D8902A74B59E5A2/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933574036605747/66F5F6903F78214DDB7420F5022C9CDEC4D85464/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": false,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "e96c9a",
"Name": "Card",
"Transform": {
"posX": 3.92157078,
"posY": 2.78149557,
"posZ": -21.8806248,
"rotX": 359.90802,
"rotY": 269.987671,
"rotZ": 355.401367,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "The Thing From the Tarn",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 267402,
"SidewaysCard": false,
"CustomDeck": {
"2674": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1688271207858398141/1AA2D79C9AA8D6E1A3A78DBF45BBFF38DDE05916/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 10,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "98ab65",
"Name": "Card",
"Transform": {
"posX": 1.69642055,
"posY": 3.670253,
"posZ": 14.2788353,
"rotX": 359.9641,
"rotY": 224.997986,
"rotZ": 180.054932,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "The Tarn",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 266200,
"SidewaysCard": false,
"CustomDeck": {
"2662": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1771580824970184574/246CC491AE3349BCCE57FA27532AAE474D124A17/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1771580824970186741/0CE5BB177A6024F930476E70929616545173FD48/",
"NumWidth": 5,
"NumHeight": 3,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "376325",
"Name": "Card",
"Transform": {
"posX": 10.7538481,
"posY": 2.33437133,
"posZ": -65.68242,
"rotX": 0.0208084118,
"rotY": 270.0,
"rotZ": 0.0167710651,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Madeline Usher",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 267400,
"SidewaysCard": false,
"CustomDeck": {
"2674": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1688271207858398141/1AA2D79C9AA8D6E1A3A78DBF45BBFF38DDE05916/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 10,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "8a4aea",
"Name": "Deck",
"Transform": {
"posX": -3.92780781,
"posY": 1.7732631,
"posZ": 5.75723,
"rotX": 359.919739,
"rotY": 270.010773,
"rotZ": 180.016815,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Encounter Deck",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": false,
"SidewaysCard": false,
"DeckIDs": [
267603,
267604,
267605,
267406,
267407,
267408,
267409,
267410,
267411,
267412,
267413,
267414,
267415,
267416,
267417,
267418,
267419,
267420,
267421,
267422,
267623,
267624,
267425,
267426,
267427,
267428,
267429,
267430,
267431,
267432,
267433,
267434,
267435,
267436
],
"CustomDeck": {
"2676": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1618472198119624102/021A32AD159295F8E69D40EC3B4892FC71ED8956/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 10,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"2674": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1688271207858398141/1AA2D79C9AA8D6E1A3A78DBF45BBFF38DDE05916/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 10,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "7f4445",
"Name": "Card",
"Transform": {
"posX": -26.3000164,
"posY": 1.31442773,
"posZ": -53.4368629,
"rotX": 0.0195531063,
"rotY": 269.9959,
"rotZ": 0.0288844239,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Servant of Two Masters",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 267603,
"SidewaysCard": false,
"CustomDeck": {
"2676": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1618472198119624102/021A32AD159295F8E69D40EC3B4892FC71ED8956/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 10,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "ab7d14",
"Name": "Card",
"Transform": {
"posX": -26.29997,
"posY": 1.34424281,
"posZ": -53.4367371,
"rotX": 359.947571,
"rotY": 269.9962,
"rotZ": 359.843628,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Servant of Two Masters",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 267604,
"SidewaysCard": false,
"CustomDeck": {
"2676": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1618472198119624102/021A32AD159295F8E69D40EC3B4892FC71ED8956/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 10,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "b4abbd",
"Name": "Card",
"Transform": {
"posX": -26.30001,
"posY": 1.378816,
"posZ": -53.4368553,
"rotX": 0.0234351065,
"rotY": 269.996124,
"rotZ": 0.0156022748,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Servant of Two Masters",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 267605,
"SidewaysCard": false,
"CustomDeck": {
"2676": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1618472198119624102/021A32AD159295F8E69D40EC3B4892FC71ED8956/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 10,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "e6a789",
"Name": "Card",
"Transform": {
"posX": -18.5648918,
"posY": 1.67251241,
"posZ": -50.2358551,
"rotX": 0.0124478061,
"rotY": 270.0003,
"rotZ": 179.459076,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Secretive Steward",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 267406,
"SidewaysCard": false,
"CustomDeck": {
"2674": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1688271207858398141/1AA2D79C9AA8D6E1A3A78DBF45BBFF38DDE05916/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 10,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "653cf5",
"Name": "Card",
"Transform": {
"posX": -18.18981,
"posY": 1.67093074,
"posZ": -50.40251,
"rotX": 0.0126283262,
"rotY": 270.000183,
"rotZ": 180.891327,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Secretive Steward",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 267407,
"SidewaysCard": false,
"CustomDeck": {
"2674": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1688271207858398141/1AA2D79C9AA8D6E1A3A78DBF45BBFF38DDE05916/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 10,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "51f95a",
"Name": "Card",
"Transform": {
"posX": -18.29373,
"posY": 1.64654613,
"posZ": -50.3816338,
"rotX": 0.0168345887,
"rotY": 270.000244,
"rotZ": 179.810989,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Scion of Usher",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 267408,
"SidewaysCard": false,
"CustomDeck": {
"2674": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1688271207858398141/1AA2D79C9AA8D6E1A3A78DBF45BBFF38DDE05916/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 10,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "f80235",
"Name": "Card",
"Transform": {
"posX": -18.32815,
"posY": 1.62676167,
"posZ": -50.0344734,
"rotX": 0.0137582906,
"rotY": 270.0016,
"rotZ": 179.943665,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Scion of Usher",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 267409,
"SidewaysCard": false,
"CustomDeck": {
"2674": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1688271207858398141/1AA2D79C9AA8D6E1A3A78DBF45BBFF38DDE05916/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 10,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "e078ec",
"Name": "Card",
"Transform": {
"posX": -18.154911,
"posY": 1.642305,
"posZ": -50.18142,
"rotX": 0.0124898544,
"rotY": 269.999756,
"rotZ": 180.805511,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Scion of Usher",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 267410,
"SidewaysCard": false,
"CustomDeck": {
"2674": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1688271207858398141/1AA2D79C9AA8D6E1A3A78DBF45BBFF38DDE05916/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 10,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "7bf2a3",
"Name": "Card",
"Transform": {
"posX": -18.2170944,
"posY": 1.6367687,
"posZ": -50.34562,
"rotX": 0.0124925226,
"rotY": 270.0003,
"rotZ": 178.965424,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Pestilent Vapor",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 267411,
"SidewaysCard": false,
"CustomDeck": {
"2674": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1688271207858398141/1AA2D79C9AA8D6E1A3A78DBF45BBFF38DDE05916/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 10,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "0218f8",
"Name": "Card",
"Transform": {
"posX": -17.9084187,
"posY": 1.62733233,
"posZ": -49.99183,
"rotX": 0.0123574128,
"rotY": 269.999817,
"rotZ": 178.808426,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Pestilent Vapor",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 267412,
"SidewaysCard": false,
"CustomDeck": {
"2674": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1688271207858398141/1AA2D79C9AA8D6E1A3A78DBF45BBFF38DDE05916/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 10,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "1db5ed",
"Name": "Card",
"Transform": {
"posX": -18.4513721,
"posY": 1.67933226,
"posZ": -50.3815727,
"rotX": 0.0129483314,
"rotY": 270.001038,
"rotZ": 184.813232,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Pestilent Vapor",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 267413,
"SidewaysCard": false,
"CustomDeck": {
"2674": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1688271207858398141/1AA2D79C9AA8D6E1A3A78DBF45BBFF38DDE05916/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 10,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "22d8d7",
"Name": "Card",
"Transform": {
"posX": -18.153574,
"posY": 1.67210782,
"posZ": -50.0208626,
"rotX": 0.0125054363,
"rotY": 269.999176,
"rotZ": 184.439987,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Nervous Affliction",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 267414,
"SidewaysCard": false,
"CustomDeck": {
"2674": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1688271207858398141/1AA2D79C9AA8D6E1A3A78DBF45BBFF38DDE05916/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 10,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "d32276",
"Name": "Card",
"Transform": {
"posX": -18.338171,
"posY": 1.59532952,
"posZ": -50.09536,
"rotX": 0.0124992467,
"rotY": 269.999573,
"rotZ": 181.108719,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Nervous Affliction",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 267415,
"SidewaysCard": false,
"CustomDeck": {
"2674": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1688271207858398141/1AA2D79C9AA8D6E1A3A78DBF45BBFF38DDE05916/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 10,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "59ac38",
"Name": "Card",
"Transform": {
"posX": -18.3005047,
"posY": 1.58548772,
"posZ": -50.18967,
"rotX": 0.0124095464,
"rotY": 269.999878,
"rotZ": 179.0157,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Nervous Affliction",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 267416,
"SidewaysCard": false,
"CustomDeck": {
"2674": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1688271207858398141/1AA2D79C9AA8D6E1A3A78DBF45BBFF38DDE05916/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 10,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "ab7495",
"Name": "Card",
"Transform": {
"posX": -18.4524269,
"posY": 1.57809091,
"posZ": -50.50927,
"rotX": 0.0125005,
"rotY": 270.000122,
"rotZ": 179.198471,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Morbid Acuteness",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 267417,
"SidewaysCard": false,
"CustomDeck": {
"2674": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1688271207858398141/1AA2D79C9AA8D6E1A3A78DBF45BBFF38DDE05916/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 10,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "f01684",
"Name": "Card",
"Transform": {
"posX": -18.31635,
"posY": 1.54023325,
"posZ": -49.9107323,
"rotX": 0.01442592,
"rotY": 270.00238,
"rotZ": 179.8414,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Morbid Acuteness",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 267418,
"SidewaysCard": false,
"CustomDeck": {
"2674": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1688271207858398141/1AA2D79C9AA8D6E1A3A78DBF45BBFF38DDE05916/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 10,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "06307f",
"Name": "Card",
"Transform": {
"posX": -18.3231888,
"posY": 1.53060889,
"posZ": -49.7068329,
"rotX": 0.0159019753,
"rotY": 270.003143,
"rotZ": 179.839615,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Morbid Acuteness",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 267419,
"SidewaysCard": false,
"CustomDeck": {
"2674": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1688271207858398141/1AA2D79C9AA8D6E1A3A78DBF45BBFF38DDE05916/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 10,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "b9deed",
"Name": "Card",
"Transform": {
"posX": -18.1079235,
"posY": 1.61435544,
"posZ": -49.95464,
"rotX": 0.012504369,
"rotY": 269.999176,
"rotZ": 184.439209,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Luminous Phantasm",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 267420,
"SidewaysCard": false,
"CustomDeck": {
"2674": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1688271207858398141/1AA2D79C9AA8D6E1A3A78DBF45BBFF38DDE05916/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 10,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "8f9b8e",
"Name": "Card",
"Transform": {
"posX": -18.4116211,
"posY": 1.61177754,
"posZ": -50.06635,
"rotX": 0.012540441,
"rotY": 269.99884,
"rotZ": 185.1547,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Luminous Phantasm",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 267421,
"SidewaysCard": false,
"CustomDeck": {
"2674": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1688271207858398141/1AA2D79C9AA8D6E1A3A78DBF45BBFF38DDE05916/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 10,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "1e046e",
"Name": "Card",
"Transform": {
"posX": -18.4634514,
"posY": 1.52768469,
"posZ": -50.2570763,
"rotX": 0.0125012742,
"rotY": 270.000336,
"rotZ": 179.050781,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Luminous Phantasm",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 267422,
"SidewaysCard": false,
"CustomDeck": {
"2674": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1688271207858398141/1AA2D79C9AA8D6E1A3A78DBF45BBFF38DDE05916/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 10,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "e253d1",
"Name": "Card",
"Transform": {
"posX": -22.19596,
"posY": 1.31503642,
"posZ": -55.7635231,
"rotX": 0.0208660029,
"rotY": 269.996277,
"rotZ": 0.016478993,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Enshrouded Host",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 267623,
"SidewaysCard": false,
"CustomDeck": {
"2676": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1618472198119624102/021A32AD159295F8E69D40EC3B4892FC71ED8956/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 10,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "d6d658",
"Name": "Card",
"Transform": {
"posX": -21.8706913,
"posY": 1.35705388,
"posZ": -55.3651047,
"rotX": 0.0216609351,
"rotY": 269.996277,
"rotZ": 0.0131509742,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Enshrouded Host",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 267624,
"SidewaysCard": false,
"CustomDeck": {
"2676": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1618472198119624102/021A32AD159295F8E69D40EC3B4892FC71ED8956/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 10,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "9d1507",
"Name": "Card",
"Transform": {
"posX": -18.1775684,
"posY": 1.501694,
"posZ": -50.0015869,
"rotX": 0.0125068771,
"rotY": 269.999817,
"rotZ": 178.786285,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Enervating Touch",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 267425,
"SidewaysCard": false,
"CustomDeck": {
"2674": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1688271207858398141/1AA2D79C9AA8D6E1A3A78DBF45BBFF38DDE05916/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 10,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "d54d43",
"Name": "Card",
"Transform": {
"posX": -18.0938358,
"posY": 1.47830474,
"posZ": -50.10125,
"rotX": 0.01251875,
"rotY": 270.0,
"rotZ": 179.521423,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Enervating Touch",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 267426,
"SidewaysCard": false,
"CustomDeck": {
"2674": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1688271207858398141/1AA2D79C9AA8D6E1A3A78DBF45BBFF38DDE05916/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 10,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "e077f9",
"Name": "Card",
"Transform": {
"posX": -17.7105427,
"posY": 1.4832114,
"posZ": -50.39859,
"rotX": 0.0124774221,
"rotY": 270.000183,
"rotZ": 179.0626,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Enervating Touch",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 267427,
"SidewaysCard": false,
"CustomDeck": {
"2674": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1688271207858398141/1AA2D79C9AA8D6E1A3A78DBF45BBFF38DDE05916/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 10,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "d2144a",
"Name": "Card",
"Transform": {
"posX": -18.32573,
"posY": 1.44405758,
"posZ": -49.4406776,
"rotX": 0.0125303688,
"rotY": 270.00177,
"rotZ": 179.92662,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Desolate Heritage",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 267428,
"SidewaysCard": false,
"CustomDeck": {
"2674": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1688271207858398141/1AA2D79C9AA8D6E1A3A78DBF45BBFF38DDE05916/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 10,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "6d735e",
"Name": "Card",
"Transform": {
"posX": -18.1527176,
"posY": 1.44654441,
"posZ": -50.2835274,
"rotX": 0.012491229,
"rotY": 270.000275,
"rotZ": 179.6938,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Desolate Heritage",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 267429,
"SidewaysCard": false,
"CustomDeck": {
"2674": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1688271207858398141/1AA2D79C9AA8D6E1A3A78DBF45BBFF38DDE05916/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 10,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "700759",
"Name": "Card",
"Transform": {
"posX": -18.15477,
"posY": 1.45425463,
"posZ": -50.0853767,
"rotX": 0.01249311,
"rotY": 269.999817,
"rotZ": 178.879913,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Decayed Legacy",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 267430,
"SidewaysCard": false,
"CustomDeck": {
"2674": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1688271207858398141/1AA2D79C9AA8D6E1A3A78DBF45BBFF38DDE05916/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 10,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "4f91cf",
"Name": "Card",
"Transform": {
"posX": -17.9949951,
"posY": 1.44328249,
"posZ": -49.8564034,
"rotX": 0.00772254262,
"rotY": 269.999878,
"rotZ": 178.800049,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Decayed Legacy",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 267431,
"SidewaysCard": false,
"CustomDeck": {
"2674": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1688271207858398141/1AA2D79C9AA8D6E1A3A78DBF45BBFF38DDE05916/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 10,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "ba1c8b",
"Name": "Card",
"Transform": {
"posX": -18.3085861,
"posY": 1.43478632,
"posZ": -50.1325378,
"rotX": 0.0124849454,
"rotY": 269.999847,
"rotZ": 178.9945,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Collapsing Ruin",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 267432,
"SidewaysCard": false,
"CustomDeck": {
"2674": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1688271207858398141/1AA2D79C9AA8D6E1A3A78DBF45BBFF38DDE05916/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 10,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "711ebe",
"Name": "Card",
"Transform": {
"posX": -18.16081,
"posY": 1.42010689,
"posZ": -50.00193,
"rotX": 0.0125138676,
"rotY": 269.999878,
"rotZ": 178.965286,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Collapsing Ruin",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 267433,
"SidewaysCard": false,
"CustomDeck": {
"2674": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1688271207858398141/1AA2D79C9AA8D6E1A3A78DBF45BBFF38DDE05916/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 10,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "fc870a",
"Name": "Card",
"Transform": {
"posX": -18.0555267,
"posY": 1.39852118,
"posZ": -50.21055,
"rotX": 0.01251264,
"rotY": 270.000061,
"rotZ": 179.686142,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Collapsing Ruin",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 267434,
"SidewaysCard": false,
"CustomDeck": {
"2674": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1688271207858398141/1AA2D79C9AA8D6E1A3A78DBF45BBFF38DDE05916/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 10,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "9b3239",
"Name": "Card",
"Transform": {
"posX": -18.3170166,
"posY": 1.37842846,
"posZ": -50.03627,
"rotX": 0.0125690419,
"rotY": 269.999847,
"rotZ": 178.902435,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Auditory Hallucinations",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 267435,
"SidewaysCard": false,
"CustomDeck": {
"2674": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1688271207858398141/1AA2D79C9AA8D6E1A3A78DBF45BBFF38DDE05916/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 10,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "21bce8",
"Name": "Card",
"Transform": {
"posX": -18.1896172,
"posY": 1.3181119,
"posZ": -50.238224,
"rotX": 0.02080863,
"rotY": 270.0001,
"rotZ": 180.016861,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Auditory Hallucinations",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 267436,
"SidewaysCard": false,
"CustomDeck": {
"2674": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1688271207858398141/1AA2D79C9AA8D6E1A3A78DBF45BBFF38DDE05916/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 10,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "ab5023",
"Name": "Deck",
"Transform": {
"posX": -2.72492671,
"posY": 1.61594665,
"posZ": 0.373305827,
"rotX": 0.01683541,
"rotY": 180.0,
"rotZ": 0.08025654,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Agenda Deck",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"SidewaysCard": true,
"DeckIDs": [
266703,
266704
],
"CustomDeck": {
"2667": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1688271207858385334/89E47D2E69BE2F60223246A0C708C24C80E999E6/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1688271207858385871/E854FF5C0C1D2CB5FE53765019600F5B9FA17717/",
"NumWidth": 3,
"NumHeight": 2,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "616765",
"Name": "Card",
"Transform": {
"posX": -20.6349182,
"posY": 1.31877947,
"posZ": -44.8656464,
"rotX": 0.01695235,
"rotY": 179.999969,
"rotZ": 359.978,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Agenda 2 - Rushing Asunder",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 266703,
"SidewaysCard": true,
"CustomDeck": {
"2667": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1688271207858385334/89E47D2E69BE2F60223246A0C708C24C80E999E6/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1688271207858385871/E854FF5C0C1D2CB5FE53765019600F5B9FA17717/",
"NumWidth": 3,
"NumHeight": 2,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "c25e60",
"Name": "Card",
"Transform": {
"posX": -20.5505028,
"posY": 1.36062586,
"posZ": -44.859436,
"rotX": 0.0201046,
"rotY": 179.997421,
"rotZ": 359.975464,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Agenda 1 - Hall of Antiquity",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 266704,
"SidewaysCard": true,
"CustomDeck": {
"2667": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1688271207858385334/89E47D2E69BE2F60223246A0C708C24C80E999E6/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1688271207858385871/E854FF5C0C1D2CB5FE53765019600F5B9FA17717/",
"NumWidth": 3,
"NumHeight": 2,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "1ec67c",
"Name": "Deck",
"Transform": {
"posX": -2.6888504,
"posY": 1.619117,
"posZ": -5.04849243,
"rotX": 0.0168356169,
"rotY": 179.999878,
"rotZ": 0.0802562162,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Act Deck",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"SidewaysCard": true,
"DeckIDs": [
266700,
266701,
266702
],
"CustomDeck": {
"2667": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1688271207858385334/89E47D2E69BE2F60223246A0C708C24C80E999E6/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1688271207858385871/E854FF5C0C1D2CB5FE53765019600F5B9FA17717/",
"NumWidth": 3,
"NumHeight": 2,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "588762",
"Name": "Card",
"Transform": {
"posX": -18.6484737,
"posY": 1.41893721,
"posZ": -44.6650276,
"rotX": 0.07660136,
"rotY": 180.059219,
"rotZ": 181.053665,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Act 3 - Ancestral Corruption",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 266700,
"SidewaysCard": true,
"CustomDeck": {
"2667": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1688271207858385334/89E47D2E69BE2F60223246A0C708C24C80E999E6/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1688271207858385871/E854FF5C0C1D2CB5FE53765019600F5B9FA17717/",
"NumWidth": 3,
"NumHeight": 2,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "da8eec",
"Name": "Card",
"Transform": {
"posX": -18.1550789,
"posY": 1.36655867,
"posZ": -44.74436,
"rotX": 0.08817647,
"rotY": 180.013321,
"rotZ": 180.1983,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Act 2 - Fleeting Glimpses",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 266701,
"SidewaysCard": true,
"CustomDeck": {
"2667": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1688271207858385334/89E47D2E69BE2F60223246A0C708C24C80E999E6/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1688271207858385871/E854FF5C0C1D2CB5FE53765019600F5B9FA17717/",
"NumWidth": 3,
"NumHeight": 2,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "bdcb5d",
"Name": "Card",
"Transform": {
"posX": -2.68853474,
"posY": 1.66220689,
"posZ": -5.04853725,
"rotX": 0.01653325,
"rotY": 179.99971,
"rotZ": 0.07867886,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Act 1 - The Disturbed Proprietor",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 266702,
"SidewaysCard": true,
"CustomDeck": {
"2667": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1688271207858385334/89E47D2E69BE2F60223246A0C708C24C80E999E6/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1688271207858385871/E854FF5C0C1D2CB5FE53765019600F5B9FA17717/",
"NumWidth": 3,
"NumHeight": 2,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "7da52c",
"Name": "Card",
"Transform": {
"posX": -3.95600033,
"posY": 1.59753942,
"posZ": -10.4412012,
"rotX": 359.919739,
"rotY": 269.9999,
"rotZ": 0.01683727,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "The Fall of the House of Usher",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 267514,
"SidewaysCard": false,
"CustomDeck": {
"2675": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1688271207858403238/D64453CB110581B96A8B3686B85790A382C7253B/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1688271207858405271/D07D8E962A46C01679DCDD15C458ABF522ABA405/",
"NumWidth": 5,
"NumHeight": 3,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "bbb70a",
"Name": "Custom_Tile",
"Transform": {
"posX": -3.91170144,
"posY": 1.5825901,
"posZ": -14.8060179,
"rotX": 359.919739,
"rotY": 270.031372,
"rotZ": 0.0167937782,
"scaleX": 2.2,
"scaleY": 1.0,
"scaleZ": 2.2
},
"Nickname": "The Fall of the House of Usher",
"Description": "click to set chaos token difficulty",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/965354846165100486/3DC8FCEF364B30758B09EF96AF9458F2B8E64D56/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/949588657194710961/D864BCCCC1C811EC7F0AED69D1C30C678D3D9FC9/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "name = 'Sleepy Hollow'\r\n\r\nfunction onLoad()\r\n Global.call('createSetupButtons', {object=self, key=name})\r\nend\r\n\r\nfunction normalClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='normal'})\r\nend\r\n\r\nfunction hardClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='hard'})\r\nend\r\r\n",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "4b8bb9",
"Name": "Custom_Model",
"Transform": {
"posX": 0.181591079,
"posY": 1.62652063,
"posZ": -15.68453,
"rotX": 359.919739,
"rotY": 270.00235,
"rotZ": 0.0168280154,
"scaleX": 0.5000004,
"scaleY": 0.5000004,
"scaleZ": 0.5000004
},
"Nickname": "The Fall of the House of Usher Custom Data Helper",
"Description": "Include this in custom content for clue spawning!",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomMesh": {
"MeshURL": "http://cloud-3.steamusercontent.com/ugc/943949966265929204/A38BB5D72419E6298385556D931877C0A1A55C17/",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/254843371583187306/6844B833AD55B9A34095067B201B311E1348325F/",
"NormalURL": "",
"ColliderURL": "http://cloud-3.steamusercontent.com/ugc/943949966265929204/A38BB5D72419E6298385556D931877C0A1A55C17/",
"Convex": true,
"MaterialIndex": 2,
"TypeIndex": 0,
"CustomShader": {
"SpecularColor": {
"r": 0.7222887,
"g": 0.507659256,
"b": 0.339915335
},
"SpecularIntensity": 0.4,
"SpecularSharpness": 7.0,
"FresnelStrength": 0.0
},
"CastShadows": true
},
"LuaScript": "-- set true to enable debug logging\r\nDEBUG = false\r\n\r\nfunction log(message)\r\n if DEBUG then\r\n print(message)\r\n end\r\nend\r\n\r\n--[[\r\nKnown locations and clues. We check this to determine if we should\r\natttempt to spawn clues, first we look for _ and if\r\nwe find nothing we look for \r\nformat is [location_guid -> clueCount]\r\n]]\r\nLOCATIONS_DATA_JSON = [[\r\n{\r\n \"San Francisco\": {\"type\": \"fixed\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"\tArkham\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"Buenos Aires\": {\"type\": \"fixed\", \"value\": 2, \"clueSide\": \"back\"},\r\n \"\tLondon\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"front\"},\r\n \"Rome\": {\"type\": \"perPlayer\", \"value\": 3, \"clueSide\": \"front\"},\r\n \"Istanbul\": {\"type\": \"perPlayer\", \"value\": 4, \"clueSide\": \"front\"},\r\n \"Tokyo_123abc\": {\"type\": \"perPlayer\", \"value\": 0, \"clueSide\": \"back\"},\r\n \"Tokyo_456efg\": {\"type\": \"perPlayer\", \"value\": 4, \"clueSide\": \"back\"},\r\n \"Tokyo\": {\"type\": \"fixed\", \"value\": 2, \"clueSide\": \"back\"},\r\n \"Shanghai_123\": {\"type\": \"fixed\", \"value\": 12, \"clueSide\": \"front\"},\r\n \"Sydney\": {\"type\": \"fixed\", \"value\": 0, \"clueSide\": \"front\"},\r\n \"Private Library\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"front\"},\r\n \"Portrait Gallery\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"front\"},\r\n \"Banquet Hall\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\r\n \"Manor Chapel\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"front\"},\r\n \"Wine Cellar\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\r\n \"Usher Family Crypt\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\n \"The Tarn\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"}\r\n}\r\n]]\r\n\r\n\r\nPLAYER_CARD_DATA_JSON = [[\r\n{\r\n \"Tool Belt (0)\": {\r\n \"tokenType\": \"resource\",\r\n \"tokenCount\": 2\r\n },\r\n \"Tool Belt (3)\": {\r\n \"tokenType\": \"resource\",\r\n \"tokenCount\": 4\r\n },\r\n \"Yithian Rifle\": {\r\n \"tokenType\": \"resource\",\r\n \"tokenCount\": 3\r\n },\r\n \"xxx\": {\r\n \"tokenType\": \"resource\",\r\n \"tokenCount\": 3\r\n }\r\n}\r\n]]\r\n\r\nHIDDEN_CARD_DATA = {\r\n \"Unpleasant Card (Doom)\",\r\n \"Unpleasant Card (Gloom)\",\r\n \"The Case of the Scarlet DOOOOOM!\"\r\n}\r\n\r\nLOCATIONS_DATA = JSON.decode(LOCATIONS_DATA_JSON)\r\nPLAYER_CARD_DATA = JSON.decode(PLAYER_CARD_DATA_JSON)\r\n\r\nfunction onload(save_state)\r\n local playArea = getObjectFromGUID('721ba2')\r\n playArea.call(\"updateLocations\", {self.getGUID()})\r\n local playerMatWhite = getObjectFromGUID('8b081b')\r\n playerMatWhite.call(\"updatePlayerCards\", {self.getGUID()})\r\n local playerMatOrange = getObjectFromGUID('bd0ff4')\r\n playerMatOrange.call(\"updatePlayerCards\", {self.getGUID()})\r\n local playerMatGreen = getObjectFromGUID('383d8b')\r\n playerMatGreen.call(\"updatePlayerCards\", {self.getGUID()})\r\n local playerMatRed = getObjectFromGUID('0840d5')\r\n playerMatRed.call(\"updatePlayerCards\", {self.getGUID()})\r\n local dataHelper = getObjectFromGUID('708279')\r\n dataHelper.call(\"updateHiddenCards\", {self.getGUID()})\r\nend\r\n",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "eda22b",
"Name": "Custom_Token",
"Transform": {
"posX": -1.46559811,
"posY": 1.57562256,
"posZ": -26.9312,
"rotX": 359.9201,
"rotY": 270.014343,
"rotZ": 0.0168516431,
"scaleX": 4.17180443,
"scaleY": 1.0,
"scaleZ": 4.17180443
},
"Nickname": "Generic Campaign Log",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1771580824970159800/BC2D9FAB7DFA721D5E62FED50247C9E418B3B43E/",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.2,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "--[[ Character Sheet Template by: MrStump\r\n\r\nYou can set up your own character sheet if you follow these steps.\r\n\r\nStep 1) Change the character sheet image\r\n -Right click on the character sheet, click Custom\r\n -Replace the image URL with one for your character sheet\r\n -Click import, make sure your sheet loads\r\n -SAVE THE GAME (the table setup)\r\n -LOAD FROM THAT SAVE YOU JUST MADE\r\n\r\nStep 2) Edit script to fit your character sheet\r\n -Below you will see some general options, and then the big data table\r\n -The data table is what determines how many of which buttons are made\r\n -Checkboxes\r\n -Counters\r\n -Textboxes\r\n -By default, there are 3 of each. You can add more or remove entries\r\n -If you intend to add/remove, be sure only to add/remove ENTRIES\r\n -This is what an entry looks like:\r\n {\r\n pos = {-0.977,0.1,-0.589},\r\n size = 800,\r\n state = false\r\n },\r\n -Deleting the whole thing would remove that specific item on the sheet\r\n -Copy and pasting it after another entry would create another\r\n -Each entry type has unique data points (pos, size, state, etc)\r\n -Do not try to add in your own data points or remove them individually\r\n -There is a summary of what each point does at the top of its category\r\n\r\nStep 3) Save and check script changes\r\n -Hit Save & Apply in the script window to save your code\r\n -You can edit your code as needed and Save+Apply as often as needed\r\n -When you are finished, make disableSave = false below then Save+apply\r\n -This enables saving, so your sheet will remember whats on it.\r\n\r\nBonus) Finding/Editing Positions for elements\r\n I have included a tool to get positions for buttons in {x,y,z} form\r\n Place it where you want the center of your element to be\r\n Then copy the table from the notes (lower right of screen)\r\n You can highlight it and CTRL+C\r\n Paste it into the data table where needed (pos=)\r\n If you want to manually tweek the values:\r\n {0,0,0} is the center of the character sheet\r\n {1,0,0} is right, {-1,0,0} is left\r\n {0,0,-1} is up, {0,0,1} is down\r\n 0.1 for Y is the height off of the page.\r\n If it was 0, it would be down inside the model of the sheet\r\n\r\nBegin editing below: ]]\r\n\r\n--Set this to true while editing and false when you have finished\r\ndisableSave = false\r\n--Remember to set this to false once you are done making changes\r\n--Then, after you save & apply it, save your game too\r\n\r\n--Color information for button text (r,g,b, values of 0-1)\r\nbuttonFontColor = {0,0,0}\r\n--Color information for button background\r\nbuttonColor = {1,1,1}\r\n--Change scale of button (Avoid changing if possible)\r\nbuttonScale = {0.1,0.1,0.1}\r\n\r\n--This is the button placement information\r\ndefaultButtonData = {\r\n --Add checkboxes\r\n checkbox = {\r\n --[[\r\n pos = the position (pasted from the helper tool)\r\n size = height/width/font_size for checkbox\r\n state = default starting value for checkbox (true=checked, false=not)\r\n ]]\r\n --End of checkboxes\r\n },\r\n --Add counters that have a + and - button\r\n counter = {\r\n --[[\r\n pos = the position (pasted from the helper tool)\r\n size = height/width/font_size for counter\r\n value = default starting value for counter\r\n hideBG = if background of counter is hidden (true=hidden, false=not)\r\n ]]\r\n --1st Player Experience\r\n {\r\n pos = {-1.080,0.1,-1.010},\r\n size = 800,\r\n value = 0,\r\n hideBG = true\r\n },\r\n --1st Player Physical Trauma\r\n {\r\n pos = {-1.270,0.1,-0.790},\r\n size = 600,\r\n value = 0,\r\n hideBG = true\r\n },\r\n --1st Player Mental Trauma\r\n {\r\n pos = {-1.000,0.1,-0.790},\r\n size = 600,\r\n value = 0,\r\n hideBG = true\r\n },\r\n --2nd Player Experience\r\n {\r\n pos = {-0.251,0.1,-1.010},\r\n size = 800,\r\n value = 0,\r\n hideBG = true\r\n },\r\n --2nd Player Physical Trauma\r\n {\r\n pos = {-0.441,0.1,-0.790},\r\n size = 600,\r\n value = 0,\r\n hideBG = true\r\n },\r\n --2nd Player Mental Trauma\r\n {\r\n pos = {-0.171,0.1,-0.790},\r\n size = 600,\r\n value = 0,\r\n hideBG = true\r\n },\r\n --3rd Player Experience\r\n {\r\n pos = {0.579,0.1,-1.010},\r\n size = 800,\r\n value = 0,\r\n hideBG = true\r\n },\r\n --3rd Player Physical Trauma\r\n {\r\n pos = {0.389,0.1,-0.790},\r\n size = 600,\r\n value = 0,\r\n hideBG = true\r\n },\r\n --3rd Player Mental Trauma\r\n {\r\n pos = {0.659,0.1,-0.790},\r\n size = 600,\r\n value = 0,\r\n hideBG = true\r\n },\r\n --4th Player Experience\r\n {\r\n pos = {1.407,0.1,-1.010},\r\n size = 800,\r\n value = 0,\r\n hideBG = true\r\n },\r\n --4th Player Physical Trauma\r\n {\r\n pos = {1.217,0.1,-0.790},\r\n size = 600,\r\n value = 0,\r\n hideBG = true\r\n },\r\n --4th Player Mental Trauma\r\n {\r\n pos = {1.487,0.1,-0.790},\r\n size = 600,\r\n value = 0,\r\n hideBG = true\r\n },\r\n --End of counters\r\n },\r\n --Add editable text boxes\r\n textbox = {\r\n --[[\r\n pos = the position (pasted from the helper tool)\r\n rows = how many lines of text you want for this box\r\n width = how wide the text box is\r\n font_size = size of text. This and \"rows\" effect overall height\r\n label = what is shown when there is no text. \"\" = nothing\r\n value = text entered into box. \"\" = nothing\r\n alignment = Number to indicate how you want text aligned\r\n (1=Automatic, 2=Left, 3=Center, 4=Right, 5=Justified)\r\n ]]\r\n --1st Player Name\r\n {\r\n pos = {-1.265,0.1,-1.390},\r\n rows = 1,\r\n width = 3800,\r\n font_size = 300,\r\n label = \"Empty\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --1st Player Investigator\r\n {\r\n pos = {-1.265,0.1,-1.195},\r\n rows = 1,\r\n width = 3800,\r\n font_size = 300,\r\n label = \"Empty\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --1st Player Story Assets/Weaknesses\r\n {\r\n pos = {-1.265,0.1,-0.420},\r\n rows = 7,\r\n width = 3800,\r\n font_size = 300,\r\n label = \"Empty\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --2nd Player Name\r\n {\r\n pos = {-0.436,0.1,-1.390},\r\n rows = 1,\r\n width = 3800,\r\n font_size = 300,\r\n label = \"Empty\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --2nd Player Investigator\r\n {\r\n pos = {-0.436,0.1,-1.195},\r\n rows = 1,\r\n width = 3800,\r\n font_size = 300,\r\n label = \"Empty\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --2nd Player Story Assets/Weaknesses\r\n {\r\n pos = {-0.436,0.1,-0.420},\r\n rows = 7,\r\n width = 3800,\r\n font_size = 300,\r\n label = \"Empty\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --3rd Player Name\r\n {\r\n pos = {0.394,0.1,-1.390},\r\n rows = 1,\r\n width = 3800,\r\n font_size = 300,\r\n label = \"Empty\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --3rd Player Investigator\r\n {\r\n pos = {0.394,0.1,-1.195},\r\n rows = 1,\r\n width = 3800,\r\n font_size = 300,\r\n label = \"Empty\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --3rd Player Story Assets/Weaknesses\r\n {\r\n pos = {0.394,0.1,-0.420},\r\n rows = 7,\r\n width = 3800,\r\n font_size = 300,\r\n label = \"Empty\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --4th Player Name\r\n {\r\n pos = {1.222,0.1,-1.390},\r\n rows = 1,\r\n width = 3800,\r\n font_size = 300,\r\n label = \"Empty\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --4th Player Investigator\r\n {\r\n pos = {1.222,0.1,-1.195},\r\n rows = 1,\r\n width = 3800,\r\n font_size = 300,\r\n label = \"Empty\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --4th Player Story Assets/Weaknesses\r\n {\r\n pos = {1.222,0.1,-0.420},\r\n rows = 7,\r\n width = 3800,\r\n font_size = 300,\r\n label = \"Empty\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --Campaign Notes 1\r\n {\r\n pos = {-0.930,0.1,0.930},\r\n rows = 27,\r\n width = 7800,\r\n font_size = 300,\r\n label = \"Empty\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --Campaign Notes 2\r\n {\r\n pos = {0.820,0.1,0.707},\r\n rows = 20,\r\n width = 7800,\r\n font_size = 300,\r\n label = \"Empty\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --Killed and Insane Investigators\r\n {\r\n pos = {1.010,0.1,1.700},\r\n rows = 5,\r\n width = 7400,\r\n font_size = 300,\r\n label = \"Empty\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --End of textboxes\r\n }\r\n}\r\n\r\n\r\n\r\n--Lua beyond this point, I recommend doing something more fun with your life\r\n\r\n\r\n\r\n--Save function\r\nfunction updateSave()\r\n saved_data = JSON.encode(ref_buttonData)\r\n if disableSave==true then saved_data=\"\" end\r\n self.script_state = saved_data\r\nend\r\n\r\n--Startup procedure\r\nfunction onload(saved_data)\r\n if disableSave==true then saved_data=\"\" end\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n ref_buttonData = loaded_data\r\n else\r\n ref_buttonData = defaultButtonData\r\n end\r\n\r\n spawnedButtonCount = 0\r\n createCheckbox()\r\n createCounter()\r\n createTextbox()\r\nend\r\n\r\n\r\n\r\n--Click functions for buttons\r\n\r\n\r\n\r\n--Checks or unchecks the given box\r\nfunction click_checkbox(tableIndex, buttonIndex)\r\n if ref_buttonData.checkbox[tableIndex].state == true then\r\n ref_buttonData.checkbox[tableIndex].state = false\r\n self.editButton({index=buttonIndex, label=\"\"})\r\n else\r\n ref_buttonData.checkbox[tableIndex].state = true\r\n self.editButton({index=buttonIndex, label=string.char(10008)})\r\n end\r\n updateSave()\r\nend\r\n\r\n--Applies value to given counter display\r\nfunction click_counter(tableIndex, buttonIndex, amount)\r\n ref_buttonData.counter[tableIndex].value = ref_buttonData.counter[tableIndex].value + amount\r\n self.editButton({index=buttonIndex, label=ref_buttonData.counter[tableIndex].value})\r\n updateSave()\r\nend\r\n\r\n--Updates saved value for given text box\r\nfunction click_textbox(i, value, selected)\r\n if selected == false then\r\n ref_buttonData.textbox[i].value = value\r\n updateSave()\r\n end\r\nend\r\n\r\n--Dud function for if you have a background on a counter\r\nfunction click_none() end\r\n\r\n\r\n\r\n--Button creation\r\n\r\n\r\n\r\n--Makes checkboxes\r\nfunction createCheckbox()\r\n for i, data in ipairs(ref_buttonData.checkbox) do\r\n --Sets up reference function\r\n local buttonNumber = spawnedButtonCount\r\n local funcName = \"checkbox\"..i\r\n local func = function() click_checkbox(i, buttonNumber) end\r\n self.setVar(funcName, func)\r\n --Sets up label\r\n local label = \"\"\r\n if data.state==true then label=string.char(10008) end\r\n --Creates button and counts it\r\n self.createButton({\r\n label=label, click_function=funcName, function_owner=self,\r\n position=data.pos, height=data.size, width=data.size,\r\n font_size=data.size, scale=buttonScale,\r\n color=buttonColor, font_color=buttonFontColor\r\n })\r\n spawnedButtonCount = spawnedButtonCount + 1\r\n end\r\nend\r\n\r\n--Makes counters\r\nfunction createCounter()\r\n for i, data in ipairs(ref_buttonData.counter) do\r\n --Sets up display\r\n local displayNumber = spawnedButtonCount\r\n --Sets up label\r\n local label = data.value\r\n --Sets height/width for display\r\n local size = data.size\r\n if data.hideBG == true then size = 0 end\r\n --Creates button and counts it\r\n self.createButton({\r\n label=label, click_function=\"click_none\", function_owner=self,\r\n position=data.pos, height=size, width=size,\r\n font_size=data.size, scale=buttonScale,\r\n color=buttonColor, font_color=buttonFontColor\r\n })\r\n spawnedButtonCount = spawnedButtonCount + 1\r\n\r\n --Sets up add 1\r\n local funcName = \"counterAdd\"..i\r\n local func = function() click_counter(i, displayNumber, 1) end\r\n self.setVar(funcName, func)\r\n --Sets up label\r\n local label = \"+\"\r\n --Sets up position\r\n local offsetDistance = (data.size/2 + data.size/4) * (buttonScale[1] * 0.002)\r\n local pos = {data.pos[1] + offsetDistance, data.pos[2], data.pos[3]}\r\n --Sets up size\r\n local size = data.size / 2\r\n --Creates button and counts it\r\n self.createButton({\r\n label=label, click_function=funcName, function_owner=self,\r\n position=pos, height=size, width=size,\r\n font_size=size, scale=buttonScale,\r\n color=buttonColor, font_color=buttonFontColor\r\n })\r\n spawnedButtonCount = spawnedButtonCount + 1\r\n\r\n --Sets up subtract 1\r\n local funcName = \"counterSub\"..i\r\n local func = function() click_counter(i, displayNumber, -1) end\r\n self.setVar(funcName, func)\r\n --Sets up label\r\n local label = \"-\"\r\n --Set up position\r\n local pos = {data.pos[1] - offsetDistance, data.pos[2], data.pos[3]}\r\n --Creates button and counts it\r\n self.createButton({\r\n label=label, click_function=funcName, function_owner=self,\r\n position=pos, height=size, width=size,\r\n font_size=size, scale=buttonScale,\r\n color=buttonColor, font_color=buttonFontColor\r\n })\r\n spawnedButtonCount = spawnedButtonCount + 1\r\n end\r\nend\r\n\r\nfunction createTextbox()\r\n for i, data in ipairs(ref_buttonData.textbox) do\r\n --Sets up reference function\r\n local funcName = \"textbox\"..i\r\n local func = function(_,_,val,sel) click_textbox(i,val,sel) end\r\n self.setVar(funcName, func)\r\n\r\n self.createInput({\r\n input_function = funcName,\r\n function_owner = self,\r\n label = data.label,\r\n alignment = data.alignment,\r\n position = data.pos,\r\n scale = buttonScale,\r\n width = data.width,\r\n height = (data.font_size*data.rows)+24,\r\n font_size = data.font_size,\r\n color = buttonColor,\r\n font_color = buttonFontColor,\r\n value = data.value,\r\n })\r\n end\r\nend\r\n",
"LuaScriptState": "{\"checkbox\":[],\"counter\":[{\"hideBG\":true,\"pos\":[-1.08,0.1,-1.01],\"size\":800,\"value\":0},{\"hideBG\":true,\"pos\":[-1.27,0.1,-0.79],\"size\":600,\"value\":0},{\"hideBG\":true,\"pos\":[-1,0.1,-0.79],\"size\":600,\"value\":0},{\"hideBG\":true,\"pos\":[-0.251,0.1,-1.01],\"size\":800,\"value\":0},{\"hideBG\":true,\"pos\":[-0.441,0.1,-0.79],\"size\":600,\"value\":0},{\"hideBG\":true,\"pos\":[-0.171,0.1,-0.79],\"size\":600,\"value\":0},{\"hideBG\":true,\"pos\":[0.579,0.1,-1.01],\"size\":800,\"value\":0},{\"hideBG\":true,\"pos\":[0.389,0.1,-0.79],\"size\":600,\"value\":0},{\"hideBG\":true,\"pos\":[0.659,0.1,-0.79],\"size\":600,\"value\":0},{\"hideBG\":true,\"pos\":[1.407,0.1,-1.01],\"size\":800,\"value\":0},{\"hideBG\":true,\"pos\":[1.217,0.1,-0.79],\"size\":600,\"value\":0},{\"hideBG\":true,\"pos\":[1.487,0.1,-0.79],\"size\":600,\"value\":0}],\"textbox\":[{\"alignment\":2,\"font_size\":300,\"label\":\"Empty\",\"pos\":[-1.265,0.1,-1.39],\"rows\":1,\"value\":\"\",\"width\":3800},{\"alignment\":2,\"font_size\":300,\"label\":\"Empty\",\"pos\":[-1.265,0.1,-1.195],\"rows\":1,\"value\":\"\",\"width\":3800},{\"alignment\":2,\"font_size\":300,\"label\":\"Empty\",\"pos\":[-1.265,0.1,-0.42],\"rows\":7,\"value\":\"\",\"width\":3800},{\"alignment\":2,\"font_size\":300,\"label\":\"Empty\",\"pos\":[-0.436,0.1,-1.39],\"rows\":1,\"value\":\"\",\"width\":3800},{\"alignment\":2,\"font_size\":300,\"label\":\"Empty\",\"pos\":[-0.436,0.1,-1.195],\"rows\":1,\"value\":\"\",\"width\":3800},{\"alignment\":2,\"font_size\":300,\"label\":\"Empty\",\"pos\":[-0.436,0.1,-0.42],\"rows\":7,\"value\":\"\",\"width\":3800},{\"alignment\":2,\"font_size\":300,\"label\":\"Empty\",\"pos\":[0.394,0.1,-1.39],\"rows\":1,\"value\":\"\",\"width\":3800},{\"alignment\":2,\"font_size\":300,\"label\":\"Empty\",\"pos\":[0.394,0.1,-1.195],\"rows\":1,\"value\":\"\",\"width\":3800},{\"alignment\":2,\"font_size\":300,\"label\":\"Empty\",\"pos\":[0.394,0.1,-0.42],\"rows\":7,\"value\":\"\",\"width\":3800},{\"alignment\":2,\"font_size\":300,\"label\":\"Empty\",\"pos\":[1.222,0.1,-1.39],\"rows\":1,\"value\":\"\",\"width\":3800},{\"alignment\":2,\"font_size\":300,\"label\":\"Empty\",\"pos\":[1.222,0.1,-1.195],\"rows\":1,\"value\":\"\",\"width\":3800},{\"alignment\":2,\"font_size\":300,\"label\":\"Empty\",\"pos\":[1.222,0.1,-0.42],\"rows\":7,\"value\":\"\",\"width\":3800},{\"alignment\":2,\"font_size\":300,\"label\":\"Empty\",\"pos\":[-0.93,0.1,0.93],\"rows\":27,\"value\":\"\",\"width\":7800},{\"alignment\":2,\"font_size\":300,\"label\":\"Empty\",\"pos\":[0.82,0.1,0.707],\"rows\":20,\"value\":\"\",\"width\":7800},{\"alignment\":2,\"font_size\":300,\"label\":\"Empty\",\"pos\":[1.01,0.1,1.7],\"rows\":5,\"value\":\"\",\"width\":7400}]}",
"XmlUI": ""
},
{
"GUID": "90b00d",
"Name": "Custom_PDF",
"Transform": {
"posX": -1.63682187,
"posY": 1.49830508,
"posZ": -39.30366,
"rotX": 1.84628552E-05,
"rotY": 270.010071,
"rotZ": 359.672516,
"scaleX": 1.76113939,
"scaleY": 1.0,
"scaleZ": 1.76113939
},
"Nickname": "Additional Rules",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomPDF": {
"PDFUrl": "http://cloud-3.steamusercontent.com/ugc/1688271369106169580/ABB0A6B305AA80FA681F4882803966F76621508F/",
"PDFPassword": "",
"PDFPage": 0,
"PDFPageOffset": 0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "8a3e0b",
"Name": "Card",
"Transform": {
"posX": -8.918634,
"posY": 1.60620868,
"posZ": -4.447969,
"rotX": 359.921936,
"rotY": 270.0014,
"rotZ": 180.016815,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Guide 1",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 266213,
"SidewaysCard": false,
"CustomDeck": {
"2662": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1771580824970184574/246CC491AE3349BCCE57FA27532AAE474D124A17/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1771580824970186741/0CE5BB177A6024F930476E70929616545173FD48/",
"NumWidth": 5,
"NumHeight": 3,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "1e5cf2",
"Name": "Card",
"Transform": {
"posX": -8.968483,
"posY": 1.6054945,
"posZ": -7.084684,
"rotX": 359.921143,
"rotY": 269.997131,
"rotZ": 0.0173219871,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Guide 2",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 266212,
"SidewaysCard": false,
"CustomDeck": {
"2662": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1771580824970184574/246CC491AE3349BCCE57FA27532AAE474D124A17/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1771580824970186741/0CE5BB177A6024F930476E70929616545173FD48/",
"NumWidth": 5,
"NumHeight": 3,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "ec039f",
"Name": "Card",
"Transform": {
"posX": -8.955502,
"posY": 1.60470855,
"posZ": -9.725402,
"rotX": 359.921936,
"rotY": 270.003662,
"rotZ": 0.0168097671,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Guide 3",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 267511,
"SidewaysCard": false,
"CustomDeck": {
"2675": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1688271207858403238/D64453CB110581B96A8B3686B85790A382C7253B/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1688271207858405271/D07D8E962A46C01679DCDD15C458ABF522ABA405/",
"NumWidth": 5,
"NumHeight": 3,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "191941",
"Name": "Card",
"Transform": {
"posX": -8.899112,
"posY": 1.60387433,
"posZ": -12.2997246,
"rotX": 359.922,
"rotY": 269.9513,
"rotZ": 0.0168648139,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Guide 4",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 266210,
"SidewaysCard": false,
"CustomDeck": {
"2662": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1771580824970184574/246CC491AE3349BCCE57FA27532AAE474D124A17/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1771580824970186741/0CE5BB177A6024F930476E70929616545173FD48/",
"NumWidth": 5,
"NumHeight": 3,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "b485b2",
"Name": "Card",
"Transform": {
"posX": -8.8413,
"posY": 1.60302413,
"posZ": -14.9318,
"rotX": 359.921265,
"rotY": 269.9984,
"rotZ": 0.0178598072,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Guide 5",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 266209,
"SidewaysCard": false,
"CustomDeck": {
"2662": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1771580824970184574/246CC491AE3349BCCE57FA27532AAE474D124A17/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1771580824970186741/0CE5BB177A6024F930476E70929616545173FD48/",
"NumWidth": 5,
"NumHeight": 3,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "bd62c6",
"Name": "Card",
"Transform": {
"posX": -23.6766777,
"posY": 1.63030028,
"posZ": 7.569978,
"rotX": 359.9201,
"rotY": 269.9995,
"rotZ": 0.0168402363,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Private Library",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 266207,
"SidewaysCard": false,
"CustomDeck": {
"2662": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1771580824970184574/246CC491AE3349BCCE57FA27532AAE474D124A17/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1771580824970186741/0CE5BB177A6024F930476E70929616545173FD48/",
"NumWidth": 5,
"NumHeight": 3,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "a8a05c",
"Name": "Custom_Tile",
"Transform": {
"posX": -23.6765,
"posY": 1.61560476,
"posZ": 3.86000061,
"rotX": 0.01670878,
"rotY": 180.093521,
"rotZ": 0.07996749,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.6045295,
"g": 0.6045295,
"b": 0.6045295
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/vppt2my.png",
"ImageSecondaryURL": "https://i.imgur.com/vppt2my.png",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "44b0c5",
"Name": "Custom_Tile",
"Transform": {
"posX": -39.7933121,
"posY": 1.63758957,
"posZ": 2.038383,
"rotX": 359.9201,
"rotY": 269.9961,
"rotZ": 0.0168742146,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.6045295,
"g": 0.6045295,
"b": 0.6045295
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/HyfE8m8.png",
"ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"3": {
"GUID": "5b38c6",
"Name": "Custom_Tile",
"Transform": {
"posX": -38.8217163,
"posY": 1.99356019,
"posZ": 0.4159239,
"rotX": 359.9201,
"rotY": 272.9828,
"rotZ": 0.01687373,
"scaleX": 0.8,
"scaleY": 1.0,
"scaleZ": 0.8
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.6045295,
"g": 0.6045295,
"b": 0.6045295
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/dHKBLoD.png",
"ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "c4b15a",
"Name": "Card",
"Transform": {
"posX": -21.0970974,
"posY": 1.64099979,
"posZ": 1.70520091,
"rotX": 359.320526,
"rotY": 270.0123,
"rotZ": 0.0166907683,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Roderick Usher",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 267401,
"SidewaysCard": false,
"CustomDeck": {
"2674": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1688271207858398141/1AA2D79C9AA8D6E1A3A78DBF45BBFF38DDE05916/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 10,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "f2cf1f",
"Name": "Card",
"Transform": {
"posX": -23.67651,
"posY": 1.6280731,
"posZ": -0.0300425254,
"rotX": 359.920074,
"rotY": 269.997742,
"rotZ": 0.0172454622,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Roderick's Studio",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 266208,
"SidewaysCard": false,
"CustomDeck": {
"2662": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1771580824970184574/246CC491AE3349BCCE57FA27532AAE474D124A17/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1771580824970186741/0CE5BB177A6024F930476E70929616545173FD48/",
"NumWidth": 5,
"NumHeight": 3,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "aef3fc",
"Name": "Card",
"Transform": {
"posX": -23.6765881,
"posY": 1.62581253,
"posZ": -7.70001554,
"rotX": 359.9201,
"rotY": 269.9665,
"rotZ": 0.0168862976,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Portrait Gallery",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 266206,
"SidewaysCard": false,
"CustomDeck": {
"2662": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1771580824970184574/246CC491AE3349BCCE57FA27532AAE474D124A17/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1771580824970186741/0CE5BB177A6024F930476E70929616545173FD48/",
"NumWidth": 5,
"NumHeight": 3,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "8fc1ca",
"Name": "Custom_Tile",
"Transform": {
"posX": -27.3633,
"posY": 1.6206615,
"posZ": 3.57290077,
"rotX": 359.955383,
"rotY": 225.020081,
"rotZ": 0.0683651939,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.6045295,
"g": 0.6045295,
"b": 0.6045295
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/vppt2my.png",
"ImageSecondaryURL": "https://i.imgur.com/vppt2my.png",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "44b0c5",
"Name": "Custom_Tile",
"Transform": {
"posX": -39.7933121,
"posY": 1.63758957,
"posZ": 2.038383,
"rotX": 359.9201,
"rotY": 269.9961,
"rotZ": 0.0168742146,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.6045295,
"g": 0.6045295,
"b": 0.6045295
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/HyfE8m8.png",
"ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"3": {
"GUID": "5b38c6",
"Name": "Custom_Tile",
"Transform": {
"posX": -38.8217163,
"posY": 1.99356019,
"posZ": 0.4159239,
"rotX": 359.9201,
"rotY": 272.9828,
"rotZ": 0.01687373,
"scaleX": 0.8,
"scaleY": 1.0,
"scaleZ": 0.8
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.6045295,
"g": 0.6045295,
"b": 0.6045295
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/dHKBLoD.png",
"ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "7234af",
"Name": "Custom_Tile",
"Transform": {
"posX": -26.7523,
"posY": 1.61873734,
"posZ": -0.0751002654,
"rotX": 359.9201,
"rotY": 270.010681,
"rotZ": 0.0168521255,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.6045295,
"g": 0.6045295,
"b": 0.6045295
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/vppt2my.png",
"ImageSecondaryURL": "https://i.imgur.com/vppt2my.png",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "44b0c5",
"Name": "Custom_Tile",
"Transform": {
"posX": -39.7933121,
"posY": 1.63758957,
"posZ": 2.038383,
"rotX": 359.9201,
"rotY": 269.9961,
"rotZ": 0.0168742146,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.6045295,
"g": 0.6045295,
"b": 0.6045295
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/HyfE8m8.png",
"ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"3": {
"GUID": "5b38c6",
"Name": "Custom_Tile",
"Transform": {
"posX": -38.8217163,
"posY": 1.99356019,
"posZ": 0.4159239,
"rotX": 359.9201,
"rotY": 272.9828,
"rotZ": 0.01687373,
"scaleX": 0.8,
"scaleY": 1.0,
"scaleZ": 0.8
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.6045295,
"g": 0.6045295,
"b": 0.6045295
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/dHKBLoD.png",
"ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "fdde48",
"Name": "Custom_Tile",
"Transform": {
"posX": -27.0721,
"posY": 1.61819541,
"posZ": -3.43720031,
"rotX": 359.93158,
"rotY": 315.0023,
"rotZ": 359.9554,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.6045295,
"g": 0.6045295,
"b": 0.6045295
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/vppt2my.png",
"ImageSecondaryURL": "https://i.imgur.com/vppt2my.png",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "44b0c5",
"Name": "Custom_Tile",
"Transform": {
"posX": -39.7933121,
"posY": 1.63758957,
"posZ": 2.038383,
"rotX": 359.9201,
"rotY": 269.9961,
"rotZ": 0.0168742146,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.6045295,
"g": 0.6045295,
"b": 0.6045295
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/HyfE8m8.png",
"ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"3": {
"GUID": "5b38c6",
"Name": "Custom_Tile",
"Transform": {
"posX": -38.8217163,
"posY": 1.99356019,
"posZ": 0.4159239,
"rotX": 359.9201,
"rotY": 272.9828,
"rotZ": 0.01687373,
"scaleX": 0.8,
"scaleY": 1.0,
"scaleZ": 0.8
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.6045295,
"g": 0.6045295,
"b": 0.6045295
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/dHKBLoD.png",
"ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "82cc79",
"Name": "Custom_Tile",
"Transform": {
"posX": -27.2534,
"posY": 1.61720955,
"posZ": -7.651001,
"rotX": 359.9201,
"rotY": 270.0127,
"rotZ": 0.0168517735,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.6045295,
"g": 0.6045295,
"b": 0.6045295
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/vppt2my.png",
"ImageSecondaryURL": "https://i.imgur.com/vppt2my.png",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "44b0c5",
"Name": "Custom_Tile",
"Transform": {
"posX": -39.7933121,
"posY": 1.63758957,
"posZ": 2.038383,
"rotX": 359.9201,
"rotY": 269.9961,
"rotZ": 0.0168742146,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.6045295,
"g": 0.6045295,
"b": 0.6045295
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/HyfE8m8.png",
"ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"3": {
"GUID": "5b38c6",
"Name": "Custom_Tile",
"Transform": {
"posX": -38.8217163,
"posY": 1.99356019,
"posZ": 0.4159239,
"rotX": 359.9201,
"rotY": 272.9828,
"rotZ": 0.01687373,
"scaleX": 0.8,
"scaleY": 1.0,
"scaleZ": 0.8
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.6045295,
"g": 0.6045295,
"b": 0.6045295
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/dHKBLoD.png",
"ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "cac078",
"Name": "Card",
"Transform": {
"posX": -30.2242985,
"posY": 1.63943052,
"posZ": 7.56999874,
"rotX": 359.9201,
"rotY": 270.0006,
"rotZ": 0.016838992,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Banquet Hall",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 266204,
"SidewaysCard": false,
"CustomDeck": {
"2662": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1771580824970184574/246CC491AE3349BCCE57FA27532AAE474D124A17/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1771580824970186741/0CE5BB177A6024F930476E70929616545173FD48/",
"NumWidth": 5,
"NumHeight": 3,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "b81b3a",
"Name": "Custom_Tile",
"Transform": {
"posX": -30.2241,
"posY": 1.624735,
"posZ": 3.86000013,
"rotX": 0.0168148819,
"rotY": 180.0174,
"rotZ": 0.07994443,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.6045295,
"g": 0.6045295,
"b": 0.6045295
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/vppt2my.png",
"ImageSecondaryURL": "https://i.imgur.com/vppt2my.png",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "44b0c5",
"Name": "Custom_Tile",
"Transform": {
"posX": -39.7933121,
"posY": 1.63758957,
"posZ": 2.038383,
"rotX": 359.9201,
"rotY": 269.9961,
"rotZ": 0.0168742146,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.6045295,
"g": 0.6045295,
"b": 0.6045295
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/HyfE8m8.png",
"ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"3": {
"GUID": "5b38c6",
"Name": "Custom_Tile",
"Transform": {
"posX": -38.8217163,
"posY": 1.99356019,
"posZ": 0.4159239,
"rotX": 359.9201,
"rotY": 272.9828,
"rotZ": 0.01687373,
"scaleX": 0.8,
"scaleY": 1.0,
"scaleZ": 0.8
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.6045295,
"g": 0.6045295,
"b": 0.6045295
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/dHKBLoD.png",
"ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "4f0dc5",
"Name": "Card",
"Transform": {
"posX": -30.2243,
"posY": 1.637197,
"posZ": -0.0301003475,
"rotX": 359.9201,
"rotY": 269.9995,
"rotZ": 0.016840307,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Grand Hall",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 266205,
"SidewaysCard": false,
"CustomDeck": {
"2662": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1771580824970184574/246CC491AE3349BCCE57FA27532AAE474D124A17/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1771580824970186741/0CE5BB177A6024F930476E70929616545173FD48/",
"NumWidth": 5,
"NumHeight": 3,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "22ae93",
"Name": "Custom_Tile",
"Transform": {
"posX": -30.2241,
"posY": 1.62247491,
"posZ": -3.82999969,
"rotX": 0.0166281164,
"rotY": 180.151382,
"rotZ": 0.07998387,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.6045295,
"g": 0.6045295,
"b": 0.6045295
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/vppt2my.png",
"ImageSecondaryURL": "https://i.imgur.com/vppt2my.png",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "44b0c5",
"Name": "Custom_Tile",
"Transform": {
"posX": -39.7933121,
"posY": 1.63758957,
"posZ": 2.038383,
"rotX": 359.9201,
"rotY": 269.9961,
"rotZ": 0.0168742146,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.6045295,
"g": 0.6045295,
"b": 0.6045295
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/HyfE8m8.png",
"ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"3": {
"GUID": "5b38c6",
"Name": "Custom_Tile",
"Transform": {
"posX": -38.8217163,
"posY": 1.99356019,
"posZ": 0.4159239,
"rotX": 359.9201,
"rotY": 272.9828,
"rotZ": 0.01687373,
"scaleX": 0.8,
"scaleY": 1.0,
"scaleZ": 0.8
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.6045295,
"g": 0.6045295,
"b": 0.6045295
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/dHKBLoD.png",
"ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "4d6ba5",
"Name": "Card",
"Transform": {
"posX": -30.2242889,
"posY": 1.63494277,
"posZ": -7.700119,
"rotX": 359.9201,
"rotY": 270.011047,
"rotZ": 0.0168241076,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Manor Chapel",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 266203,
"SidewaysCard": false,
"CustomDeck": {
"2662": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1771580824970184574/246CC491AE3349BCCE57FA27532AAE474D124A17/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1771580824970186741/0CE5BB177A6024F930476E70929616545173FD48/",
"NumWidth": 5,
"NumHeight": 3,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "acf560",
"Name": "Custom_Tile",
"Transform": {
"posX": -33.4997,
"posY": 1.63038242,
"posZ": 7.5340004,
"rotX": 359.9201,
"rotY": 270.01,
"rotZ": 0.0168517511,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.6045295,
"g": 0.6045295,
"b": 0.6045295
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/vppt2my.png",
"ImageSecondaryURL": "https://i.imgur.com/vppt2my.png",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "44b0c5",
"Name": "Custom_Tile",
"Transform": {
"posX": -39.7933121,
"posY": 1.63758957,
"posZ": 2.038383,
"rotX": 359.9201,
"rotY": 269.9961,
"rotZ": 0.0168742146,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.6045295,
"g": 0.6045295,
"b": 0.6045295
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/HyfE8m8.png",
"ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"3": {
"GUID": "5b38c6",
"Name": "Custom_Tile",
"Transform": {
"posX": -38.8217163,
"posY": 1.99356019,
"posZ": 0.4159239,
"rotX": 359.9201,
"rotY": 272.9828,
"rotZ": 0.01687373,
"scaleX": 0.8,
"scaleY": 1.0,
"scaleZ": 0.8
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.6045295,
"g": 0.6045295,
"b": 0.6045295
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/dHKBLoD.png",
"ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "34fda8",
"Name": "Custom_Tile",
"Transform": {
"posX": -33.6136,
"posY": 1.62937808,
"posZ": 3.57619977,
"rotX": 0.06842041,
"rotY": 134.984085,
"rotZ": 0.0445658527,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.6045295,
"g": 0.6045295,
"b": 0.6045295
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/vppt2my.png",
"ImageSecondaryURL": "https://i.imgur.com/vppt2my.png",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "44b0c5",
"Name": "Custom_Tile",
"Transform": {
"posX": -39.7933121,
"posY": 1.63758957,
"posZ": 2.038383,
"rotX": 359.9201,
"rotY": 269.9961,
"rotZ": 0.0168742146,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.6045295,
"g": 0.6045295,
"b": 0.6045295
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/HyfE8m8.png",
"ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"3": {
"GUID": "5b38c6",
"Name": "Custom_Tile",
"Transform": {
"posX": -38.8217163,
"posY": 1.99356019,
"posZ": 0.4159239,
"rotX": 359.9201,
"rotY": 272.9828,
"rotZ": 0.01687373,
"scaleX": 0.8,
"scaleY": 1.0,
"scaleZ": 0.8
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.6045295,
"g": 0.6045295,
"b": 0.6045295
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/dHKBLoD.png",
"ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "64faca",
"Name": "Custom_Tile",
"Transform": {
"posX": -34.2126,
"posY": 1.62799716,
"posZ": -3.96519947,
"rotX": 359.945465,
"rotY": 329.9937,
"rotZ": 359.9392,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.6045295,
"g": 0.6045295,
"b": 0.6045295
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/vppt2my.png",
"ImageSecondaryURL": "https://i.imgur.com/vppt2my.png",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "44b0c5",
"Name": "Custom_Tile",
"Transform": {
"posX": -39.7933121,
"posY": 1.63758957,
"posZ": 2.038383,
"rotX": 359.9201,
"rotY": 269.9961,
"rotZ": 0.0168742146,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.6045295,
"g": 0.6045295,
"b": 0.6045295
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/HyfE8m8.png",
"ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"3": {
"GUID": "5b38c6",
"Name": "Custom_Tile",
"Transform": {
"posX": -38.8217163,
"posY": 1.99356019,
"posZ": 0.4159239,
"rotX": 359.9201,
"rotY": 272.9828,
"rotZ": 0.01687373,
"scaleX": 0.8,
"scaleY": 1.0,
"scaleZ": 0.8
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.6045295,
"g": 0.6045295,
"b": 0.6045295
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/dHKBLoD.png",
"ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "e03eed",
"Name": "Card",
"Transform": {
"posX": -36.7732,
"posY": 1.64856255,
"posZ": 7.569997,
"rotX": 359.9201,
"rotY": 270.010162,
"rotZ": 0.016825499,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Wine Cellar",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 266202,
"SidewaysCard": false,
"CustomDeck": {
"2662": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1771580824970184574/246CC491AE3349BCCE57FA27532AAE474D124A17/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1771580824970186741/0CE5BB177A6024F930476E70929616545173FD48/",
"NumWidth": 5,
"NumHeight": 3,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "d1e043",
"Name": "Custom_Tile",
"Transform": {
"posX": -36.7732,
"posY": 1.63386738,
"posZ": 3.86000085,
"rotX": 0.0168190934,
"rotY": 180.014359,
"rotZ": 0.0799439549,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.6045295,
"g": 0.6045295,
"b": 0.6045295
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/vppt2my.png",
"ImageSecondaryURL": "https://i.imgur.com/vppt2my.png",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "44b0c5",
"Name": "Custom_Tile",
"Transform": {
"posX": -39.7933121,
"posY": 1.63758957,
"posZ": 2.038383,
"rotX": 359.9201,
"rotY": 269.9961,
"rotZ": 0.0168742146,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.6045295,
"g": 0.6045295,
"b": 0.6045295
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/HyfE8m8.png",
"ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"3": {
"GUID": "5b38c6",
"Name": "Custom_Tile",
"Transform": {
"posX": -38.8217163,
"posY": 1.99356019,
"posZ": 0.4159239,
"rotX": 359.9201,
"rotY": 272.9828,
"rotZ": 0.01687373,
"scaleX": 0.8,
"scaleY": 1.0,
"scaleZ": 0.8
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.6045295,
"g": 0.6045295,
"b": 0.6045295
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/dHKBLoD.png",
"ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "49f26f",
"Name": "Card",
"Transform": {
"posX": -36.7604,
"posY": 1.64628112,
"posZ": -0.131903931,
"rotX": 359.9201,
"rotY": 270.008118,
"rotZ": 0.0168282613,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Usher Family Crypt",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 266201,
"SidewaysCard": false,
"CustomDeck": {
"2662": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1771580824970184574/246CC491AE3349BCCE57FA27532AAE474D124A17/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1771580824970186741/0CE5BB177A6024F930476E70929616545173FD48/",
"NumWidth": 5,
"NumHeight": 3,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
],
"AttachedDecals": [
{
"Transform": {
"posX": -0.0021877822,
"posY": -0.08963572,
"posZ": -0.00288731651,
"rotX": 270.0,
"rotY": 359.869568,
"rotZ": 0.0,
"scaleX": 2.00000215,
"scaleY": 2.00000238,
"scaleZ": 2.00000262
},
"CustomDecal": {
"Name": "dunwich_back",
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/959719855119695911/931B9829687A20F4DEADB36DA57B7E6D76792231/",
"Size": 7.4
}
}
]
},
{
"GUID": "d0c8fa",
"Name": "Custom_Tile",
"Transform": {
"posX": -58.6385765,
"posY": 1.56325769,
"posZ": 0.000165649049,
"rotX": 359.920135,
"rotY": 269.9928,
"rotZ": 0.0168793369,
"scaleX": 1.5,
"scaleY": 1.0,
"scaleZ": 1.5
},
"Nickname": "Phase Tracker",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.106237344,
"g": 0.008296312,
"b": 0.0
},
"Tags": [
"LinkedPhaseTracker"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": true,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/933819604050849085/9E22AFD7B0157140FC177DBCCBCB1D61D6A0329F/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/933819604050849524/797528309EFBAC7485283048AAB9DA68B8A31891/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.2,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "function onLoad()\n -- Add a button to the object\n local params = {}\n params.click_function = 'toPhaseTwo'\n params.function_owner = self\n params.tooltip = ''\n params.width = 600\n params.height = 600\n self.createButton(params)\nend\n\nfunction toPhaseTwo()\n for _, tracker in ipairs(getObjectsWithTag(\"LinkedPhaseTracker\")) do\n tracker.setState(2)\n end\nend",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "807ed5",
"Name": "Custom_Tile",
"Transform": {
"posX": -58.77764,
"posY": 1.56345141,
"posZ": -3.14759745E-07,
"rotX": 359.920135,
"rotY": 269.9928,
"rotZ": 0.0168813616,
"scaleX": 1.5,
"scaleY": 1.0,
"scaleZ": 1.5
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.0414625555,
"g": 0.113237642,
"b": 0.0009864086
},
"Tags": [
"LinkedPhaseTracker"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/933819604050885611/845B5AA915F30492B5F34864698B9C3627FA5763/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/933819604050886219/5987AB68E0D2609CC3831F1311E9070D7189FBA8/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.2,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "function onLoad()\n -- Add a button to the object\n local params = {}\n params.click_function = 'toPhaseThree'\n params.function_owner = self\n params.tooltip = ''\n params.width = 600\n params.height = 600\n self.createButton(params)\nend\n\nfunction toPhaseThree()\n for _, tracker in ipairs(getObjectsWithTag(\"LinkedPhaseTracker\")) do\n tracker.setState(3)\n end\nend",
"LuaScriptState": "",
"XmlUI": ""
},
"3": {
"GUID": "b4983b",
"Name": "Custom_Tile",
"Transform": {
"posX": -58.77764,
"posY": 1.56345141,
"posZ": -3.14759745E-07,
"rotX": 359.920135,
"rotY": 269.9928,
"rotZ": 0.0168813579,
"scaleX": 1.5,
"scaleY": 1.0,
"scaleZ": 1.5
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.235188872,
"g": 0.0,
"b": 0.0
},
"Tags": [
"LinkedPhaseTracker"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/982233321870235122/492996D07ABF6DDA4B605A3013C4892839DCF1F3/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/982233321870235526/32D11CE67CBFB6E1197E540F9CA08F871A500C85/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.2,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "function onLoad()\n -- Add a button to the object\n local params = {}\n params.click_function = 'toPhaseFour'\n params.function_owner = self\n params.tooltip = ''\n params.width = 600\n params.height = 600\n self.createButton(params)\nend\n\nfunction toPhaseFour()\n for _, tracker in ipairs(getObjectsWithTag(\"LinkedPhaseTracker\")) do\n tracker.setState(4)\n end\nend",
"LuaScriptState": "",
"XmlUI": ""
},
"4": {
"GUID": "d8a337",
"Name": "Custom_Tile",
"Transform": {
"posX": -58.7776527,
"posY": 1.56345153,
"posZ": -4.10604116E-07,
"rotX": 359.920135,
"rotY": 269.9928,
"rotZ": 0.0168830752,
"scaleX": 1.5,
"scaleY": 1.0,
"scaleZ": 1.5
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.5313587,
"g": 0.3496275,
"b": 0.0
},
"Tags": [
"LinkedPhaseTracker"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/982233321870237261/C287CAED2423970F33E72D6C7415CBEC6794C533/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/982233321870237827/81374325F650673C37C89E4E2A1DC25F1C97FED8/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.2,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "function onLoad()\n -- Add a button to the object\n local params = {}\n params.click_function = 'toPhaseOne'\n params.function_owner = self\n params.tooltip = ''\n params.width = 600\n params.height = 600\n self.createButton(params)\nend\n\nfunction toPhaseOne()\n for _, tracker in ipairs(getObjectsWithTag(\"LinkedPhaseTracker\")) do\n tracker.setState(1)\n end\nend",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "0ffbc5",
"Name": "Custom_Tile",
"Transform": {
"posX": 38.04545,
"posY": 1.426032,
"posZ": -8.280211,
"rotX": 359.9201,
"rotY": 270.021851,
"rotZ": 0.0168432612,
"scaleX": 1.31135309,
"scaleY": 1.0,
"scaleZ": 1.31135309
},
"Nickname": "Navigation Overlay Tile",
"Description": "By jaqenZann",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1745699644170918010/4E5FCD0140AE8960A1E1272A1979E575EE12C3F3/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1745699644170918010/4E5FCD0140AE8960A1E1272A1979E575EE12C3F3/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 0,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "-- SCE Navigation Panel version 1.00\r\n\r\nfunction onLoad(saved_data)\r\n self.createButton({\r\n label=\"\",\r\n tooltip=\"Display full overlay\",\r\n click_function=\"displayFull\",\r\n function_owner=self,\r\n position={0.0,0.1,-0.57},\r\n height=70,\r\n width=800,\r\n scale={x=1, y=1, z=1},\r\n color={1,0,0,0}\r\n })\r\n self.createButton({\r\n label=\"\",\r\n tooltip=\"Display only play area\",\r\n click_function=\"displayPlayArea\",\r\n function_owner=self,\r\n position={0.0,0.1,-0.30},\r\n height=70,\r\n width=800,\r\n scale={x=1, y=1, z=1},\r\n color={1,0,0,0}\r\n })\r\n self.createButton({\r\n label=\"\",\r\n tooltip=\"Close overlay\",\r\n click_function=\"closeOverlay\",\r\n function_owner=self,\r\n position={0.0,0.1,-0.03},\r\n height=70,\r\n width=800,\r\n scale={x=1, y=1, z=1},\r\n color={1,0,0,0}\r\n })\r\n self.createButton({\r\n label=\"\",\r\n tooltip=\"Modify a camera position\",\r\n click_function=\"beginSetCamera\",\r\n function_owner=self,\r\n position={0.0,0.1,0.37},\r\n height=70,\r\n width=800,\r\n scale={x=1, y=1, z=1},\r\n color={1,0,0,0}\r\n })\r\n self.createButton({\r\n label=\"\",\r\n tooltip=\"Reset camera positions to default\",\r\n click_function=\"resetCameras\",\r\n function_owner=self,\r\n position={0.0,0.1,0.77},\r\n height=70,\r\n width=800,\r\n scale={x=1, y=1, z=1},\r\n color={1,0,0,0}\r\n })\r\n\r\n defaultCameraParams = {\r\n {position={-1.626, -2.5, -0.064}, pitch=62.964, yaw=90.000, distance=17.844}, -- 1. ActAgenda\r\n {position={-27.822, -2.5, 0.424}, pitch=75.823, yaw=90.000, distance=-1.000}, -- 2. Map\r\n-- {position={-31.592, -2.5, 26.392}, pitch=74.238, yaw=180.000, distance=19.858}, -- 3. Green playmat\r\n {position={-31.592, -2.5, 26.392}, pitch=74.238, yaw=180.000, distance=-1.000}, -- 3. Green playmat\r\n {position={-55.026, -2.5, 12.052}, pitch=74.238, yaw=90.000, distance=-1.000}, -- 4. White playmat\r\n {position={-55.026, -2.5, -11.479}, pitch=74.238, yaw=90.000, distance=-1.000}, -- 5. Orange playmat\r\n {position={-31.592, -2.5, -26.392}, pitch=74.238, yaw=0.000, distance=-1.000}, -- 6. Red playmat\r\n {position={-2.940, -2.5, 25.160}, pitch=73.556, yaw=90.000, distance=20.146}, -- 7. Victory / SetAside\r\n {position={-58.216, -2.5, -71.288}, pitch=76.430, yaw=90.000, distance=20.000}, -- 8. Deckbuilder\r\n {position={46.368, -2.5, 0.328}, pitch=69.491, yaw=90.000, distance=46.255}, -- 9. Campaigns\r\n {position={13.875, -2.5, 0.328}, pitch=69.491, yaw=90.000, distance=37.962}, -- 10. Scenarios\r\n {position={51.940, -2.5, 64.476}, pitch=76.430, yaw=90.000, distance=48.102}, -- 11. Level 0\r\n {position={51.302, -2.5, -73.514}, pitch=76.430, yaw=90.000, distance=48.102}, -- 12. Upgraded\r\n {position={-27.788, -2.5, 74.662}, pitch=76.430, yaw=90.000, distance=30.616}, -- 13. Weaknesses\r\n {position={-61.090, -2.5, 70.762}, pitch=76.430, yaw=90.000, distance=34.188}, -- 14. Rules\r\n {position={-18.547, -2.5, -73.514}, pitch=76.430, yaw=90.000, distance=42.249}, -- 15. Investigators\r\n {position={-2.144, -2.5, -26.900}, pitch=73.556, yaw=90.000, distance=20.146}, -- 16. Log\r\n {position={-45.000, -2.5, -0.228}, pitch=73.556, yaw=90.000, distance=12.000} -- 17. BlessCurse\r\n }\r\n\r\n fullButtonData = {\r\n { id = \"1\", width = \"84\", height = \"38\", offsetX = \"1\", offsetY = \"-9\" },\r\n { id = \"2\", width = \"78\", height = \"50\", offsetX = \"1\", offsetY = \"-59\" },\r\n { id = \"3\", width = \"36\", height = \"70\", offsetX = \"-62\", offsetY = \"-70\" },\r\n { id = \"4\", width = \"70\", height = \"40\", offsetX = \"-36\", offsetY = \"-130\" },\r\n { id = \"5\", width = \"70\", height = \"40\", offsetX = \"39\", offsetY = \"-130\" },\r\n { id = \"6\", width = \"36\", height = \"70\", offsetX = \"64\", offsetY = \"-70\" },\r\n { id = \"7\", width = \"36\", height = \"36\", offsetX = \"-63\", offsetY = \"-9\" },\r\n { id = \"8\", width = \"64\", height = \"64\", offsetX = \"153\", offsetY = \"-128\" },\r\n { id = \"9\", width = \"155\", height = \"70\", offsetX = \"2\", offsetY = \"120\" },\r\n { id = \"10\", width = \"155\", height = 70, offsetX = \"2\", offsetY = \"47\" },\r\n { id = \"11\", width = \"120\", height = \"100\", offsetX = \"-148\", offsetY = \"101\" },\r\n { id = \"12\", width = \"120\", height = \"100\", offsetX = \"150\", offsetY = \"101\" },\r\n { id = \"13\", width = \"120\", height = \"80\", offsetX = \"-150\", offsetY = \"-55\" },\r\n { id = \"14\", width = \"120\", height = \"60\", offsetX = \"-150\", offsetY = \"-132\" },\r\n { id = \"15\", width = \"110\", height = \"100\", offsetX = \"152\", offsetY = \"-42\" },\r\n { id = \"16\", width = \"36\", height = \"36\", offsetX = \"64\", offsetY = \"-9\" },\r\n { id = \"17\", width = \"44\", height = \"25\", offsetX = \"1\", offsetY = \"-97\" }\r\n }\r\n\r\n playButtonData = {\r\n { id = \"1\", width = \"84\", height = \"38\", offsetX = \"0\", offsetY = \"59\" },\r\n { id = \"2\", width = \"78\", height = \"50\", offsetX = \"0\", offsetY = \"9\" },\r\n { id = \"3\", width = \"36\", height = \"70\", offsetX = \"-62\", offsetY = \"-1\" },\r\n { id = \"4\", width = \"70\", height = \"40\", offsetX = \"-37\", offsetY = \"-61\" },\r\n { id = \"5\", width = \"70\", height = \"40\", offsetX = \"39\", offsetY = \"-61\" },\r\n { id = \"6\", width = \"36\", height = \"70\", offsetX = \"63\", offsetY = \"-2\" },\r\n { id = \"7\", width = \"36\", height = \"36\", offsetX = \"-64\", offsetY = \"59\" },\r\n { id = \"16\", width = \"36\", height = \"36\", offsetX = \"63\", offsetY = \"59\" },\r\n { id = \"17\", width = \"44\", height = \"25\", offsetX = \"0\", offsetY = \"-28\" }\r\n }\r\n\r\n playermatData = {\r\n White = { guid = '8b081b', origin = { x=-54.42, y=0, z=20.96 }, scale = { x=36.63, y=5.10, z=14.59 }, orientation = { x=0, y=270, z=0 }, minX = -61.4, maxX = -48.6, minZ = -2.39, maxZ = 24.53, xOffset = 0.07, zOffset = 0.03 },\r\n Orange = { guid = 'bd0ff4', origin = { x=-54.42, y=0, z=-20.96 }, scale = { x=36.63, y=5.10, z=14.59 }, orientation = { x=0, y=270, z=0 }, minX = -61.4, maxX = -48.6, minZ = -24.53, maxZ = 2.39, xOffset = 0.07, zOffset = 0.02 },\r\n Green = { guid = '383d8b', origin = { x=-25.00, y=0, z=26.20 }, scale = { x=31.5, y=5.10, z=14.59 }, orientation = { x=0, y=0, z=0 }, minX = -44.43, maxX = -17.44, minZ = 20.17, maxZ = 32.97, xOffset = -0.07, zOffset = 0.00 },\r\n Red = { guid = '0840d5', origin = { x=-25.00, y=0, z=-26.60 }, scale = { x=31.5, y=5.10, z=14.59 }, orientation = { x=0, y=180, z=0 }, minX = -44.43, maxX = -17.44, minZ = -32.97, maxZ = -20.17, xOffset = 0.07, zOffset = -0.06 }\r\n }\r\n\r\n editing = false\r\n selectedEditButton = -1\r\n\r\n editPos = {0, 0, 0}\r\n editPitch = 0\r\n editYaw = 0\r\n editDistance = 0\r\n\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n\r\n cameraParams = loaded_data.cameras\r\n fullVisibility = loaded_data.fullVis\r\n playVisibility = loaded_data.playVis\r\n\r\n resetOverlay()\r\n else\r\n cameraParams = {\r\n Green = {},\r\n White = {},\r\n Orange = {},\r\n Red = {}\r\n }\r\n\r\n for iv, v in pairs({'Green', 'White', 'Orange', 'Red'}) do\r\n cameraParams[v] = {}\r\n\r\n for i = 1,17 do\r\n cameraParams[v][i] = {}\r\n\r\n cameraParams[v][i].position = defaultCameraParams[i].position\r\n cameraParams[v][i].pitch = defaultCameraParams[i].pitch\r\n cameraParams[v][i].yaw = defaultCameraParams[i].yaw\r\n cameraParams[v][i].distance = defaultCameraParams[i].distance\r\n end\r\n end\r\n\r\n fullVisibility = {\r\n Green = false,\r\n White = false,\r\n Orange = false,\r\n Red = false\r\n }\r\n\r\n playVisibility = {\r\n Green = false,\r\n White = false,\r\n Orange = false,\r\n Red = false\r\n }\r\n end\r\nend\r\n\r\nfunction onSave()\r\n return JSON.encode({\r\n cameras = cameraParams,\r\n fullVis = fullVisibility,\r\n playVis = playVisibility\r\n })\r\n\r\n-- return ''\r\nend\r\n\r\nfunction displayFull(object, color)\r\n local playerCount = getPlayerCount()\r\n local colors\r\n if playerCount == 1 then\r\n colors = { 'Green', 'White', 'Orange', 'Red' }\r\n else\r\n colors = { color }\r\n end\r\n\r\n for i, v in ipairs(colors) do\r\n fullVisibility[v] = true\r\n playVisibility[v] = false\r\n end\r\n\r\n resetOverlay()\r\nend\r\n\r\nfunction displayPlayArea(object, color)\r\n local playerCount = getPlayerCount()\r\n local colors\r\n if playerCount == 1 then\r\n colors = { 'Green', 'White', 'Orange', 'Red' }\r\n else\r\n colors = { color }\r\n end\r\n\r\n for i, v in ipairs(colors) do\r\n fullVisibility[v] = false\r\n playVisibility[v] = true\r\n end\r\n\r\n resetOverlay()\r\nend\r\n\r\nfunction resetCameras(object, color)\r\n local playerCount = getPlayerCount()\r\n local colors\r\n\r\n if playerCount == 1 then\r\n colors = { 'Green', 'White', 'Orange', 'Red' }\r\n else\r\n colors = { color }\r\n end\r\n\r\n for iv, v in ipairs(colors) do\r\n for i = 1,17 do\r\n cameraParams[v][i].position = defaultCameraParams[i].position\r\n cameraParams[v][i].pitch = defaultCameraParams[i].pitch\r\n cameraParams[v][i].yaw = defaultCameraParams[i].yaw\r\n cameraParams[v][i].distance = defaultCameraParams[i].distance\r\n end\r\n end\r\nend\r\n\r\nfunction closeOverlay(object, color)\r\n fullVisibility[color] = false\r\n playVisibility[color] = false\r\n\r\n resetOverlay()\r\nend\r\n\r\nfunction resetOverlay()\r\n local guid = self.getGUID()\r\n local color\r\n local panel\r\n\r\n local existingXml = UI.getXml()\r\n local openingXml = ''\r\n\r\n -- try to only remove our panels\r\n for p = 1,2 do\r\n i, j = string.find(existingXml, ' 1 and string.len(openingXml) == 0 then\r\n openingXml = string.sub(existingXml, 1, i-1)\r\n end\r\n\r\n if i then\r\n local panelXml = string.sub(existingXml, i)\r\n k, m = string.find(panelXml, ' ')\r\n\r\n existingXml = string.sub(panelXml, m+1)\r\n else\r\n break\r\n end\r\n end\r\n\r\n local xml = openingXml .. [[\r\n ]] .. existingXml\r\n\r\n local fullColors = ''\r\n local playColors = ''\r\n\r\n for i, v in pairs(fullVisibility) do\r\n if v == true then\r\n if string.len(fullColors) > 0 then\r\n fullColors = fullColors .. '|' .. i\r\n else\r\n fullColors = i\r\n end\r\n end\r\n end\r\n\r\n for i, v in pairs(playVisibility) do\r\n if v == true then\r\n if string.len(playColors) > 0 then\r\n playColors = playColors .. '|' .. i\r\n else\r\n playColors = i\r\n end\r\n end\r\n end\r\n\r\n if string.len(fullColors) > 0 then\r\n data = fullButtonData\r\n\r\n xml = xml .. [[\r\n ]]\r\n\r\n for i, d in ipairs(data) do\r\n if editing then\r\n if selectedEditButton < 0 then\r\n color = \"rgba(1,1,1,1)\"\r\n elseif tonumber(d.id) == selectedEditButton then\r\n color = \"rgba(0,1,0,1)\"\r\n else\r\n color = \"rgba(1,0,0,1)\"\r\n end\r\n else\r\n color = \"rgba(0,1,0,0)\"\r\n end\r\n\r\n xml = xml .. [[\r\n \r\n ]]\r\n end\r\n\r\n xml = xml .. [[ ]]\r\n end\r\n\r\n if string.len(playColors) > 0 then\r\n data = playButtonData\r\n\r\n xml = xml .. [[\r\n \r\n ]]\r\n\r\n for i, d in ipairs(data) do\r\n if editing then\r\n if selectedEditButton < 0 then\r\n color = \"rgba(1,1,1,1)\"\r\n elseif tonumber(d.id) == selectedEditButton then\r\n color = \"rgba(0,1,0,1)\"\r\n else\r\n color = \"rgba(1,0,0,1)\"\r\n end\r\n else\r\n color = \"rgba(0,1,0,0)\"\r\n end\r\n\r\n xml = xml .. [[\r\n \r\n ]]\r\n end\r\n\r\n xml = xml .. [[ ]]\r\n end\r\n\r\n local existingAssets = UI.getCustomAssets()\r\n local largeOverlay = nil\r\n local smallOverlay = nil\r\n\r\n for i,v in pairs(existingAssets) do\r\n for ii,vv in pairs(v) do\r\n if vv == 'OverlayLarge' then\r\n largeOverlay = v\r\n end\r\n if vv == 'OverlaySmall' then\r\n smallOverlay = v\r\n end\r\n end\r\n end\r\n\r\n local largeURL = 'http://cloud-3.steamusercontent.com/ugc/1745699502804112656/A34D1F30E0DA0E283F300AE6D6B63F59FFC97730/'\r\n local smallURL = 'http://cloud-3.steamusercontent.com/ugc/1745699502804112719/CFFC89BF9FB8439204EE19CF94180EC99450CD38/'\r\n\r\n if largeOverlay == nil then\r\n largeOverlay = { name='OverlayLarge', url=largeURL }\r\n table.insert(existingAssets, largeOverlay)\r\n else\r\n largeOverlay.url = largeURL\r\n\r\n end\r\n\r\n if smallOverlay == nil then\r\n smallOverlay = { name='OverlaySmall', url=smallURL }\r\n table.insert(existingAssets, smallOverlay)\r\n else\r\n smallOverlay.url = smallURL\r\n end\r\n\r\n UI.setXml(xml, existingAssets)\r\nend\r\n\r\nfunction buttonClicked(player, _, idValue)\r\n if editing then\r\n if selectedEditButton < 0 then\r\n selectedEditButton = tonumber(idValue)\r\n else\r\n if tonumber(idValue) == selectedEditButton and editDistance > 0 then\r\n local playerCount = getPlayerCount()\r\n local colors\r\n\r\n if playerCount == 1 then\r\n colors = { 'Green', 'White', 'Orange', 'Red' }\r\n else\r\n colors = { player.color }\r\n end\r\n\r\n for i, v in ipairs(colors) do\r\n cameraParams[v][selectedEditButton].position = editPos\r\n cameraParams[v][selectedEditButton].pitch = editPitch\r\n cameraParams[v][selectedEditButton].yaw = editYaw\r\n cameraParams[v][selectedEditButton].distance = editDistance\r\n end\r\n end\r\n\r\n editing = false\r\n selectedEditButton = -1\r\n end\r\n\r\n resetOverlay()\r\n else\r\n loadCamera(player, _, idValue)\r\n end\r\nend\r\n\r\nfunction loadCamera(player, _, idValue)\r\n local index = tonumber(idValue)\r\n local color = player.color\r\n\r\n -- only do map zooming if te camera hasn't been specially set by user\r\n if index == 2 and cameraParams[color][index].distance <= 0.0 then\r\n local mapObjects = Physics.cast({\r\n origin = { x=-29.2, y=0, z=0.0 },\r\n direction = { x=0, y=1, z=0 },\r\n type = 3,\r\n size = { x=36, y=5, z=31.4 },\r\n orientation = { x=0, y=90, z=0 }\r\n })\r\n\r\n local minX = 100\r\n local maxX = -100\r\n local minZ = 100\r\n local maxZ = -100\r\n\r\n for i,v in pairs(mapObjects) do\r\n local obj = v.hit_object\r\n\r\n if obj.type == 'Card' or obj.type == 'Infinite' then\r\n local bounds = obj.getBounds()\r\n\r\n local x1 = bounds['center'][1] - bounds['size'][1]/2\r\n local x2 = bounds['center'][1] + bounds['size'][1]/2\r\n local z1 = bounds['center'][3] - bounds['size'][3]/2\r\n local z2 = bounds['center'][3] + bounds['size'][3]/2\r\n\r\n if x1 < minX then\r\n minX = x1\r\n end\r\n if x2 > maxX then\r\n maxX = x2\r\n end\r\n if z1 < minZ then\r\n minZ = z1\r\n end\r\n if z2 > maxZ then\r\n maxZ = z2\r\n end\r\n end\r\n end\r\n\r\n if minX < 100 then\r\n local dx = maxX - minX\r\n local dz = (maxZ - minZ) / (1.6) -- screen ratio * 1.2 (for my macbook pro, no idea how to generalize this)\r\n local centerX = (minX + maxX) / 2 - dx*0.12 -- offset is to move it a bit up, so the cards don't block anything\r\n local centerZ = (minZ + maxZ) / 2\r\n\r\n local scale = dx\r\n if dz > dx then\r\n scale = dz\r\n end\r\n\r\n -- regression line from the following data points, seems linear\r\n -- rows 1 scale 4.5 d 12\r\n -- rows 2 scale 11 d 16\r\n -- rows 3 scale 14.5 d 19.6\r\n -- rows 4 scale 19.6 d 25\r\n -- rows 5 scale 23.25 d 28\r\n -- rows 6 scale 30.8 d 34\r\n\r\n -- local d = 0.8685 * scale + 7.4505\r\n\r\n -- modified by testing\r\n -- local d = 0.8685 * scale + 5\r\n local d = 1.04 * scale + 5\r\n\r\n player.lookAt({position={centerX, 0, centerZ}, pitch=75.823, yaw=90.000, distance=d})\r\n else\r\n player.lookAt({position={-33.667, 0, 0.014}, pitch=75.823, yaw=90.000, distance=36})\r\n end\r\n elseif index >= 3 and index <= 6 then\r\n local matColor = nil\r\n\r\n if index == 3 then\r\n matColor = 'Green'\r\n elseif index == 4 then\r\n matColor = 'White'\r\n elseif index == 5 then\r\n matColor = 'Orange'\r\n elseif index == 6 then\r\n matColor = 'Red'\r\n end\r\n\r\n if matColor ~= nil then\r\n local playerCount = getPlayerCount()\r\n\r\n if playerCount <= 1 then\r\n player.changeColor(matColor)\r\n end\r\n end\r\n\r\n if cameraParams[color][index].distance <= 0.0 then\r\n local matObjects = Physics.cast({\r\n origin = playermatData[matColor].origin,\r\n direction = { x=0, y=1, z=0 },\r\n type = 3,\r\n size = playermatData[matColor].scale,\r\n orientation = playermatData[matColor].orientation,\r\n-- debug=true\r\n })\r\n\r\n local minX = playermatData[matColor].minX\r\n local maxX = playermatData[matColor].maxX\r\n local minZ = playermatData[matColor].minZ\r\n local maxZ = playermatData[matColor].maxZ\r\n\r\n for i,v in pairs(matObjects) do\r\n local obj = v.hit_object\r\n\r\n if obj.type == 'Card' or obj.type == 'Infinite' then\r\n local bounds = obj.getBounds()\r\n\r\n local x1 = bounds['center'][1] - bounds['size'][1]/2\r\n local x2 = bounds['center'][1] + bounds['size'][1]/2\r\n local z1 = bounds['center'][3] - bounds['size'][3]/2\r\n local z2 = bounds['center'][3] + bounds['size'][3]/2\r\n\r\n if x1 < minX then\r\n minX = x1\r\n end\r\n if x2 > maxX then\r\n maxX = x2\r\n end\r\n if z1 < minZ then\r\n minZ = z1\r\n end\r\n if z2 > maxZ then\r\n maxZ = z2\r\n end\r\n end\r\n end\r\n\r\n local dx\r\n local dz\r\n local centerX\r\n local centerZ\r\n local scale\r\n local yaw\r\n local d\r\n\r\n -- White/Orange\r\n if index > 3 and index < 6 then\r\n dx = maxX - minX\r\n dz = (maxZ - minZ) / (1.6) -- screen ratio * 1.2 (for my macbook pro, no idea how to generalize this)\r\n\r\n centerX = (minX + maxX) / 2 - dx*playermatData[matColor].xOffset -- offset is to move it a bit up, so the cards don't block anything\r\n centerZ = (minZ + maxZ) / 2 + dz*playermatData[matColor].zOffset -- offset is to move it right a bit, so the toolbar doesn't block anything\r\n yaw = 90\r\n\r\n scale = dx\r\n if dz > dx then\r\n scale = dz\r\n end\r\n\r\n d = 0.64 * scale + 7\r\n else -- Green/Red\r\n dx = (maxX - minX) / (1.6) -- screen ratio * 1.2 (for my macbook pro, no idea how to generalize this)\r\n dz = maxZ - minZ\r\n\r\n centerX = (minX + maxX) / 2 + dx*playermatData[matColor].zOffset -- offset is to move it right a bit, so the toolbar doesn't block anything\r\n centerZ = (minZ + maxZ) / 2 - dz*playermatData[matColor].xOffset -- offset is to move it a bit up, so the cards don't block anything\r\n yaw = playermatData[matColor].orientation.y + 180\r\n\r\n scale = dz\r\n if dx > dz then\r\n scale = dx\r\n end\r\n\r\n d = 0.64 * scale + 7\r\n end\r\n\r\n -- 15.46 -> 17.081\r\n -- 18.88 -> 19.33\r\n -- 24.34 -> 22.6\r\n\r\n -- need to wait if the player color changed\r\n Wait.frames(function() player.lookAt({position={centerX, 0, centerZ}, pitch=75.823, yaw=yaw, distance=d}) end, 2)\r\n else\r\n Wait.frames(function() player.lookAt(cameraParams[color][index]) end, 2)\r\n end\r\n else\r\n player.lookAt(cameraParams[color][index])\r\n end\r\nend\r\n\r\nfunction beginSetCamera(object, color)\r\n editing = true\r\n\r\n resetOverlay()\r\nend\r\n\r\nfunction updateEditCamera(params)\r\n editPos = params[1]\r\n editPitch = params[2]\r\n editYaw = params[3]\r\n editDistance = params[4]\r\nend\r\n\r\nfunction getPlayerCount()\r\n local playerCount = 0\r\n\r\n local playerList = getSeatedPlayers()\r\n\r\n for i, v in ipairs(playerList) do\r\n if v == 'Green' or v == 'White' or v == 'Orange' or v == 'Red' then\r\n playerCount = playerCount + 1\r\n end\r\n end\r\n\r\n return playerCount\r\nend\r\n",
"LuaScriptState": "{\"cameras\":{\"Green\":[{\"distance\":17.844,\"pitch\":62.964,\"position\":[-1.626,-2.5,-0.064],\"yaw\":90},{\"distance\":-1,\"pitch\":75.823,\"position\":[-27.822,-2.5,0.424],\"yaw\":90},{\"distance\":-1,\"pitch\":74.238,\"position\":[-31.592,-2.5,26.392],\"yaw\":180},{\"distance\":-1,\"pitch\":74.238,\"position\":[-55.026,-2.5,12.052],\"yaw\":90},{\"distance\":-1,\"pitch\":74.238,\"position\":[-55.026,-2.5,-11.479],\"yaw\":90},{\"distance\":-1,\"pitch\":74.238,\"position\":[-31.592,-2.5,-26.392],\"yaw\":0},{\"distance\":20.146,\"pitch\":73.556,\"position\":[-2.94,-2.5,25.16],\"yaw\":90},{\"distance\":20,\"pitch\":76.43,\"position\":[-58.216,-2.5,-71.288],\"yaw\":90},{\"distance\":46.255,\"pitch\":69.491,\"position\":[46.368,-2.5,0.328],\"yaw\":90},{\"distance\":37.962,\"pitch\":69.491,\"position\":[13.875,-2.5,0.328],\"yaw\":90},{\"distance\":48.102,\"pitch\":76.43,\"position\":[51.94,-2.5,64.476],\"yaw\":90},{\"distance\":48.102,\"pitch\":76.43,\"position\":[51.302,-2.5,-73.514],\"yaw\":90},{\"distance\":30.616,\"pitch\":76.43,\"position\":[-27.788,-2.5,74.662],\"yaw\":90},{\"distance\":34.188,\"pitch\":76.43,\"position\":[-61.09,-2.5,70.762],\"yaw\":90},{\"distance\":42.249,\"pitch\":76.43,\"position\":[-18.547,-2.5,-73.514],\"yaw\":90},{\"distance\":20.146,\"pitch\":73.556,\"position\":[-2.144,-2.5,-26.9],\"yaw\":90},{\"distance\":12,\"pitch\":73.556,\"position\":[-45,-2.5,-0.228],\"yaw\":90}],\"Orange\":[{\"distance\":17.844,\"pitch\":62.964,\"position\":[-1.626,-2.5,-0.064],\"yaw\":90},{\"distance\":-1,\"pitch\":75.823,\"position\":[-27.822,-2.5,0.424],\"yaw\":90},{\"distance\":-1,\"pitch\":74.238,\"position\":[-31.592,-2.5,26.392],\"yaw\":180},{\"distance\":-1,\"pitch\":74.238,\"position\":[-55.026,-2.5,12.052],\"yaw\":90},{\"distance\":-1,\"pitch\":74.238,\"position\":[-55.026,-2.5,-11.479],\"yaw\":90},{\"distance\":-1,\"pitch\":74.238,\"position\":[-31.592,-2.5,-26.392],\"yaw\":0},{\"distance\":20.146,\"pitch\":73.556,\"position\":[-2.94,-2.5,25.16],\"yaw\":90},{\"distance\":20,\"pitch\":76.43,\"position\":[-58.216,-2.5,-71.288],\"yaw\":90},{\"distance\":46.255,\"pitch\":69.491,\"position\":[46.368,-2.5,0.328],\"yaw\":90},{\"distance\":37.962,\"pitch\":69.491,\"position\":[13.875,-2.5,0.328],\"yaw\":90},{\"distance\":48.102,\"pitch\":76.43,\"position\":[51.94,-2.5,64.476],\"yaw\":90},{\"distance\":48.102,\"pitch\":76.43,\"position\":[51.302,-2.5,-73.514],\"yaw\":90},{\"distance\":30.616,\"pitch\":76.43,\"position\":[-27.788,-2.5,74.662],\"yaw\":90},{\"distance\":34.188,\"pitch\":76.43,\"position\":[-61.09,-2.5,70.762],\"yaw\":90},{\"distance\":42.249,\"pitch\":76.43,\"position\":[-18.547,-2.5,-73.514],\"yaw\":90},{\"distance\":20.146,\"pitch\":73.556,\"position\":[-2.144,-2.5,-26.9],\"yaw\":90},{\"distance\":12,\"pitch\":73.556,\"position\":[-45,-2.5,-0.228],\"yaw\":90}],\"Red\":[{\"distance\":17.844,\"pitch\":62.964,\"position\":[-1.626,-2.5,-0.064],\"yaw\":90},{\"distance\":-1,\"pitch\":75.823,\"position\":[-27.822,-2.5,0.424],\"yaw\":90},{\"distance\":-1,\"pitch\":74.238,\"position\":[-31.592,-2.5,26.392],\"yaw\":180},{\"distance\":-1,\"pitch\":74.238,\"position\":[-55.026,-2.5,12.052],\"yaw\":90},{\"distance\":-1,\"pitch\":74.238,\"position\":[-55.026,-2.5,-11.479],\"yaw\":90},{\"distance\":-1,\"pitch\":74.238,\"position\":[-31.592,-2.5,-26.392],\"yaw\":0},{\"distance\":20.146,\"pitch\":73.556,\"position\":[-2.94,-2.5,25.16],\"yaw\":90},{\"distance\":20,\"pitch\":76.43,\"position\":[-58.216,-2.5,-71.288],\"yaw\":90},{\"distance\":46.255,\"pitch\":69.491,\"position\":[46.368,-2.5,0.328],\"yaw\":90},{\"distance\":37.962,\"pitch\":69.491,\"position\":[13.875,-2.5,0.328],\"yaw\":90},{\"distance\":48.102,\"pitch\":76.43,\"position\":[51.94,-2.5,64.476],\"yaw\":90},{\"distance\":48.102,\"pitch\":76.43,\"position\":[51.302,-2.5,-73.514],\"yaw\":90},{\"distance\":30.616,\"pitch\":76.43,\"position\":[-27.788,-2.5,74.662],\"yaw\":90},{\"distance\":34.188,\"pitch\":76.43,\"position\":[-61.09,-2.5,70.762],\"yaw\":90},{\"distance\":42.249,\"pitch\":76.43,\"position\":[-18.547,-2.5,-73.514],\"yaw\":90},{\"distance\":20.146,\"pitch\":73.556,\"position\":[-2.144,-2.5,-26.9],\"yaw\":90},{\"distance\":12,\"pitch\":73.556,\"position\":[-45,-2.5,-0.228],\"yaw\":90}],\"White\":[{\"distance\":17.844,\"pitch\":62.964,\"position\":[-1.626,-2.5,-0.064],\"yaw\":90},{\"distance\":-1,\"pitch\":75.823,\"position\":[-27.822,-2.5,0.424],\"yaw\":90},{\"distance\":-1,\"pitch\":74.238,\"position\":[-31.592,-2.5,26.392],\"yaw\":180},{\"distance\":-1,\"pitch\":74.238,\"position\":[-55.026,-2.5,12.052],\"yaw\":90},{\"distance\":-1,\"pitch\":74.238,\"position\":[-55.026,-2.5,-11.479],\"yaw\":90},{\"distance\":-1,\"pitch\":74.238,\"position\":[-31.592,-2.5,-26.392],\"yaw\":0},{\"distance\":20.146,\"pitch\":73.556,\"position\":[-2.94,-2.5,25.16],\"yaw\":90},{\"distance\":20,\"pitch\":76.43,\"position\":[-58.216,-2.5,-71.288],\"yaw\":90},{\"distance\":46.255,\"pitch\":69.491,\"position\":[46.368,-2.5,0.328],\"yaw\":90},{\"distance\":37.962,\"pitch\":69.491,\"position\":[13.875,-2.5,0.328],\"yaw\":90},{\"distance\":48.102,\"pitch\":76.43,\"position\":[51.94,-2.5,64.476],\"yaw\":90},{\"distance\":48.102,\"pitch\":76.43,\"position\":[51.302,-2.5,-73.514],\"yaw\":90},{\"distance\":30.616,\"pitch\":76.43,\"position\":[-27.788,-2.5,74.662],\"yaw\":90},{\"distance\":34.188,\"pitch\":76.43,\"position\":[-61.09,-2.5,70.762],\"yaw\":90},{\"distance\":42.249,\"pitch\":76.43,\"position\":[-18.547,-2.5,-73.514],\"yaw\":90},{\"distance\":20.146,\"pitch\":73.556,\"position\":[-2.144,-2.5,-26.9],\"yaw\":90},{\"distance\":12,\"pitch\":73.556,\"position\":[-45,-2.5,-0.228],\"yaw\":90}]},\"fullVis\":{\"Green\":true,\"Orange\":true,\"Red\":true,\"White\":false},\"playVis\":{\"Green\":false,\"Orange\":false,\"Red\":false,\"White\":false}}",
"XmlUI": ""
},
{
"GUID": "a8affa",
"Name": "Bag",
"Transform": {
"posX": 40.3736839,
"posY": 1.23823071,
"posZ": -6.65300035,
"rotX": 0.0168862157,
"rotY": 179.9993,
"rotZ": 0.07994681,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Navigation Overlay Instructions/Setup",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.7058823,
"g": 0.366520882,
"b": 0.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,
"Bag": {
"Order": 0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "739ee5",
"Name": "Notecard",
"Transform": {
"posX": 18.4474373,
"posY": 3.59918427,
"posZ": -25.8548622,
"rotX": 0.409890354,
"rotY": 89.98979,
"rotZ": 0.305724472,
"scaleX": 0.7,
"scaleY": 1.0,
"scaleZ": 0.7
},
"Nickname": "Navigation Overlay",
"Description": "Controls a movable overlay allowing for quick movement to various parts of the table. There should only be one tile per table.\n\nFull Table: Displays a larger overlay corresponding to the whole table.\n\nPlay Area: Displays a much smaller overlay only covering the play area.",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"3": {
"GUID": "579a11",
"Name": "Notecard",
"Transform": {
"posX": 6.083923,
"posY": 1.53338218,
"posZ": -32.75589,
"rotX": 0.07987937,
"rotY": 89.99992,
"rotZ": 359.983124,
"scaleX": 0.7,
"scaleY": 1.0,
"scaleZ": 0.7
},
"Nickname": "Navigation Overlay: Edit Camera (1/2)",
"Description": "Edit Camera: TTS does not make accessing camera settings easy, so this is done using a modified version of MrStump's Camera Placement Helper.\n\nTo use the Helper, place it in the position you want the camera to look, with the desired rotation. Set the Pitch and Distance values. Click \"Set camera to this angle\".",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"4": {
"GUID": "045a3e",
"Name": "Notecard",
"Transform": {
"posX": 6.08392334,
"posY": 1.53338218,
"posZ": -32.7558937,
"rotX": 0.07987977,
"rotY": 89.9998856,
"rotZ": 359.983124,
"scaleX": 0.7,
"scaleY": 1.0,
"scaleZ": 0.7
},
"Nickname": "Navigation Overlay: Edit Camera (2/2)",
"Description": "1. Click \"Edit Camera\"\n2. Click a button in the overlay, it will turn green.\n3. Use the Camera Placement Helper to set the camera view.\n4. When clicking \"Set camera to this angle\" produces the correct camera view, click the green button in the overlay again to set the camera. Click a red button to cancel.",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"2": {
"GUID": "3051f2",
"Name": "Notecard",
"Transform": {
"posX": 6.08392429,
"posY": 1.53338218,
"posZ": -32.7559,
"rotX": 0.07987893,
"rotY": 89.9998,
"rotZ": 359.983124,
"scaleX": 0.7,
"scaleY": 1.0,
"scaleZ": 0.7
},
"Nickname": "Navigation Overlay",
"Description": "If there is only 1 player, clicking a button to move to a playmat will change the player's color to that playmat's color. Changes to camera settings will apply to all colors.\n\nIf there is more than 1 player, displaying the overlay or editing a camera setting will only apply to your color.",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "cecc3e",
"Name": "Custom_Assetbundle",
"Transform": {
"posX": 18.1479759,
"posY": 3.50409222,
"posZ": -26.63417,
"rotX": 0.3053459,
"rotY": 269.9994,
"rotZ": 0.126356155,
"scaleX": 0.5750004,
"scaleY": 0.5750004,
"scaleZ": 0.5750004
},
"Nickname": "",
"Description": "[b]Camera Placement Helper[/b]\n\nIf you want to use another object as the focus for the camera, you may do so by enter its GUID into this object's NAME field.\n\nIf you put a space and a number, the camera rotation will be offset by that amount. POSITIVE NUMBERS ONLY.\n\n[i]Example:[/i]\ncecc3e 90\n",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.18381986,
"g": 0.18381986,
"b": 0.18381986
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomAssetbundle": {
"AssetbundleURL": "http://cloud-3.steamusercontent.com/ugc/880873968289806692/67F62868DF65CD9CC43F3CDCDED7BACA0F075422/",
"AssetbundleSecondaryURL": "",
"MaterialIndex": 2,
"TypeIndex": 4,
"LoopingEffectIndex": 0
},
"LuaScript": "--On-demand save function, remembers pitch and distance values\r\nfunction updateSave()\r\n saved_data = JSON.encode({pitch=pitch, distance=distance})\r\n self.script_state = saved_data\r\nend\r\n\r\n--Startup, loading memory\r\nfunction onload(saved_data)\r\n --Loads the tracking for if the game has started yet\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n pitch = loaded_data.pitch\r\n distance = loaded_data.distance\r\n else\r\n pitch = 45\r\n distance = 30\r\n end\r\n\r\n createInputs()\r\n createButtons()\r\nend\r\n\r\n--Activated by finishing writing in the input box, updates save info\r\nfunction input_entered(inputString, stillEditing , typeIndex)\r\n if stillEditing == false then\r\n --Check to avoid empty input strings\r\n if tonumber(inputString) == nil then inputString = 0 end\r\n --Update save data\r\n if typeIndex==0 then\r\n pitch = inputString\r\n else\r\n distance = inputString\r\n end\r\n updateSave()\r\n end\r\nend\r\n\r\n--Activated by button, the -5 -1 +1 +5 buttons\r\nfunction click_modify(amount, typeIndex)\r\n if typeIndex==0 then\r\n pitch = pitch + amount\r\n self.editInput({index=typeIndex, value=pitch})\r\n else\r\n distance = distance + amount\r\n self.editInput({index=typeIndex, value=distance})\r\n end\r\n updateSave()\r\nend\r\n\r\n--Activated by button, uses the data to move the camera\r\nfunction click_setCamera(_, color)\r\n --Check if there is another object to use instead of self\r\n local targetObj = self\r\n local nameGUID = string.sub(self.getName(), 1, 6)\r\n if getObjectFromGUID(nameGUID) ~= nil then\r\n targetObj = getObjectFromGUID(nameGUID)\r\n end\r\n\r\n --Check if there is an offset to use instead of 180\r\n local offsetY = 180\r\n local offsetString = string.sub(self.getName(), 7)\r\n if tonumber(string.match(offsetString, \"%d+\")) ~= nil then\r\n offsetY = tonumber(string.match(offsetString, \"%d+\"))\r\n end\r\n\r\n --Move camera into position around object\r\n local pos = targetObj.getPosition()\r\n local rot = targetObj.getRotation()\r\n rot.y = rot.y + offsetY\r\n Player[color].lookAt({position=pos, pitch=pitch, yaw=rot.y, distance=distance})\r\n\r\n local objectList = getObjects()\r\n local AHLCGNavTile = nil\r\n\r\n for i,v in ipairs(objectList) do\r\n if v.getName() == 'Navigation Overlay Tile' then\r\n AHLCGNavTile = v\r\n break\r\n end\r\n end\r\n\r\n-- local AHLCGNavTile = getObjectFromGUID(\"0ffbc5\")\r\n if AHLCGNavTile then\r\n AHLCGNavTile.call('updateEditCamera', {pos, pitch, rot.y, distance})\r\n end\r\nend\r\n\r\n\r\n\r\n\r\n--Button/Input creation\r\n\r\n\r\n\r\n--Text boxes for number input\r\nfunction createInputs()\r\n local funcName = \"inputFuncNamePitch\"\r\n local func = function(_,_,x,z) input_entered(x,z,0) end\r\n self.setVar(funcName, func)\r\n self.createInput({\r\n input_function=funcName, function_owner=self, label=\"input\",\r\n alignment=2, position={-3.4,0.35,-0.21}, rotation={0,0,0}, height=420, width=1400,\r\n font_size=400, color={57/255,46/255,40/255},\r\n font_color={1,1,1}, value=pitch,\r\n validation=3 -- int (1 = None, 2 = Integer, 3 = Float, 4 = Alphanumeric, 5 = Username, 6 = Name),\r\n })\r\n local funcName = \"inputFuncNameDistance\"\r\n local func = function(_,_,x,z) input_entered(x,z,1) end\r\n self.setVar(funcName, func)\r\n self.createInput({\r\n input_function=funcName, function_owner=self, label=\"input\",\r\n alignment=4, position={3.4,0.35,-0.21}, rotation={0,0,0}, height=420, width=1400,\r\n font_size=400, color={57/255,46/255,40/255},\r\n font_color={1,1,1}, value=distance,\r\n validation=3 -- int (1 = None, 2 = Integer, 3 = Float, 4 = Alphanumeric, 5 = Username, 6 = Name),\r\n })\r\nend\r\n\r\n--Center button and -5 - +5 buttons\r\nfunction createButtons()\r\n self.createButton({\r\n click_function=\"click_setCamera\", function_owner=self,\r\n position={0,0.4,0}, height=900, width=900, color={1,1,1,0},\r\n tooltip=\"Set camera to this angle\"\r\n })\r\n\r\n for i, ref in ipairs(ref_modifyPitchButtons) do\r\n local funcName = \"pitchModifyFunction_\"..i\r\n self.setVar(funcName, ref.func)\r\n local pos = {-3.4+ref.offset,0.3,0.6}\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=pos, height=240, width=320, color={1,1,1,0}\r\n })\r\n end\r\n\r\n for i, ref in ipairs(ref_modifyDistanceButtons) do\r\n local funcName = \"distanceModifyFunction_\"..i\r\n self.setVar(funcName, ref.func)\r\n local pos = {3.4+ref.offset,0.3,0.6}\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=pos, height=240, width=320, color={1,1,1,0}\r\n })\r\n end\r\nend\r\n\r\n--Data tables used in button creation\r\n\r\nref_modifyPitchButtons = {\r\n {offset=-0.37, func=function() click_modify(-1, 0) end},\r\n {offset=-1.11, func=function() click_modify(-5, 0) end},\r\n {offset=0.37, func=function() click_modify(1, 0) end},\r\n {offset=1.11, func=function() click_modify(5, 0) end},\r\n}\r\n\r\nref_modifyDistanceButtons = {\r\n {offset=-0.37, func=function() click_modify(-1, 1) end},\r\n {offset=-1.11, func=function() click_modify(-5, 1) end},\r\n {offset=0.37, func=function() click_modify(1, 1) end},\r\n {offset=1.11, func=function() click_modify(5, 1) end},\r\n}",
"LuaScriptState": "{\"distance\":15,\"pitch\":75}",
"XmlUI": ""
}
]
},
{
"GUID": "cc77a8",
"Name": "Checker_red",
"Transform": {
"posX": 38.5846138,
"posY": 1.42261684,
"posZ": -17.3245735,
"rotX": 359.920074,
"rotY": 270.015564,
"rotZ": 0.0168783925,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Draw Token Button Tooltip Renamer",
"Description": "By Pyxel",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 0.0,
"b": 0.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,
"LuaScript": "function onLoad()\r\n spawnButton(\"symbols\", \"Change Tooltips\",\r\n \"Changes tooltip for 'draw chaos token' buttons.\", 0, 0.5, 0, 600, 400, 70)\r\nend\r\n\r\nfunction spawnButton( func, text, tool_tip, xPosition, yPosition, zPosition, button_width, button_height, fontsize )\r\n scale = self.getScale()\r\n scale = scale[1]\r\n params = {\r\n click_function = func,\r\n function_owner = self,\r\n label = text,\r\n position = {scale * xPosition, yPosition, scale * zPosition},\r\n rotation = {0, 0, 0},\r\n width = button_width * scale,\r\n height = button_height * scale,\r\n font_size = fontsize * scale,\r\n color = {1, 1, 1},\r\n font_color = {0, 0, 0},\r\n tooltip = tool_tip\r\n }\r\n self.createButton(params)\r\nend\r\n\r\nfunction symbols()\r\n local tool = \"no scenario selected\"\r\n for _, scenario in ipairs(getObjectFromGUID(\"fe2ae4\").getObjects()) do\r\n if scenario.getDescription() == \"The Gathering\" then\r\n if scenario.is_face_down == true then\r\n tool = \"Hard / Expert\\n\\n[skull] -2. If you fail, after this skill test, search the encounter deck and discard pile for a [[Ghoul]] enemy, and draw it. Shuffle the encounter deck.\\n\\n[cultist] Reveal another token. If you fail, take 2 horror.\\n\\n[tablet] -4. If there is a [[Ghoul]] enemy at your location, take 1 damage and 1 horror.\"\r\n else\r\n tool = \"Easy / Standard\\n\\n[skull] -X. X is the number of [[Ghoul]] enemies at your location.\\n\\n[cultist] -1. If you fail, take 1 horror.\\n\\n[tablet] -2. If there is a [[Ghoul]] enemy at your location, take 1 damage.\\n\\n\"\r\n end\r\n end\r\n -- midnight masks\r\n if scenario.getDescription() == \"The Midnight Masks\" then\r\n if scenario.is_face_down == true then\r\n tool = \"Hard / Expert\\n\\n[skull]: -X. X is the total number of doom in play.\\n\\n[cultist]: -2. Place 1 doom on each [[Cultist]] enemy in play. If there are no [[Cultist]] enemies in play, reveal another token.\\n\\n[tablet]: -4. If you fail, place all your clues on your location.\"\r\n else\r\n tool = \"Easy / Standard\\n\\n[skull]: -X. X is the highest number of doom on a [[Cultist]] enemy in play.\\n\\n[cultist]: -2. Place 1 doom on the nearest [[Cultist]] enemy.\\n\\n[tablet]: -3. If you fail, place 1 of your clues on your location.\"\r\n end\r\n end\r\n -- devourer below\r\n if scenario.getDescription() == \"The Devourer Below\" then\r\n if scenario.is_face_down == true then\r\n tool = \"Hard / Expert\\n\\n[skull]: -3. If you fail, after this skill test, search the encounter deck and discard pile for a [[Monster]] enemy, and draw it. Shuffle the encounter deck.\\n\\n[cultist]: -4. Place 2 doom on the nearest enemy.\\n\\n[tablet]: -5. If there is a [[Monster]] enemy at your location, take 1 damage and 1 horror.\\n\\n[elder_thing]: -7. If there is an [[Ancient One]] enemy in play, reveal another token.\"\r\n else\r\n tool = \"Easy / Standard\\n\\n[skull]: -X. X is the number of [[Monster]] enemies in play.\\n\\n[cultist]: -2. Place 1 doom on the nearest enemy.\\n\\n[tablet]: -3. If there is a [[Monster]] enemy at your location, take 1 damage.\\n\\n[elder_thing]: -5. If there is an [[Ancient One]] enemy in play, reveal another token.\"\r\n end\r\n end\r\n -- extracurricular activity symbols\r\n if scenario.getDescription() == \"Extracurricular Activity\" then\r\n if scenario.is_face_down == true then\r\n tool = \"Hard / Expert\\n\\n[skull]: -2. If you fail, discard the top 5 cards of your deck.\\n\\n[cultist]: -1 (-5 instead if there are 10 or more cards in your discard pile).\\n\\n[elder_thing]: -X. Discard the top 3 cards of your deck. X is the total printed cost of those discarded cards.\"\r\n else\r\n tool = \"Easy / Standard\\n\\n[skull]: -1. If you fail, discard the top 3 cards of your deck.\\n\\n[cultist]: -1 (-3 instead if there are 10 or more cards in your discard pile).\\n\\n[elder_thing]: -X. Discard the top 2 cards of your deck. X is the total printed cost of those discarded cards.\"\r\n end\r\n end\r\n -- The house always wins symbols\r\n if scenario.getDescription() == \"The House Always Wins\" then\r\n if scenario.is_face_down == true then\r\n tool = \"Hard / Expert\\n\\n[skull]: -3. You may spend 3 resources to treat this token as a 0, instead.\\n\\n[cultist]: -3. If you fail, discard 3 resources.\\n\\n[tablet]: -2. Discard 3 resources.\"\r\n else\r\n tool = \"Easy / Standard\\n\\n[skull]: -2. You may spend 2 resources to treat this token as a 0, instead.\\n\\n[cultist]: -3. If you succeed, gain 3 resources.\\n\\n[tablet]: -2. If you fail, discard 3 resources.\"\r\n end\r\n end\r\n -- Miskatonic museum symbols\r\n if scenario.getDescription() == \"The Miskatonic Museum\" then\r\n if scenario.is_face_down == true then\r\n tool = \"Hard / Expert\\n\\n[skull]: -2 (-4 instead if Hunting Horror is at your location.)\\n\\n[cultist]: -3. If you fail, search the encounter deck, discard pile, and the void for Hunting Horror and spawn it at your location, if able.\\n\\n[tablet]: -4. If Hunting Horror is at your location, it immediately attacks you.\\n\\n[elder_thing]: -5. If you fail, discard an asset you control.\"\r\n else\r\n tool = \"Easy / Standard\\n\\n[skull]: -1 (-3 instead if Hunting Horror is at your location.)\\n\\n[cultist]: -1. If you fail, search the encounter deck, discard pile, and the void for Hunting Horror and spawn it at your location, if able.\\n\\n[tablet]: -2. Return 1 of your clues to your current location.\\n\\n[elder_thing]: -3. If you fail, discard an asset you control.\"\r\n end\r\n end\r\n -- essex county express symbols\r\n if scenario.getDescription() == \"The Essex County Express\" then\r\n if scenario.is_face_down == true then\r\n tool = \"Hard / Expert\\n\\n[skull]: -X. X is 1 more than the current Agenda #. \\n\\n[cultist]: Reveal another token. If you fail and it is your turn, lose all remaining actions and end your turn immediately.\\n\\n[tablet]: -4. Add 1 doom token to each Cultist enemy in play.\\n\\n[elder_thing]: -3. If you fail, choose and discard a card from your hand for each point you failed by.\"\r\n else\r\n tool = \"Easy / Standard\\n\\n[skull]: -X. X is the current Agenda #.\\n\\n[cultist]: -1. If you fail and it is your turn, lose all remaining actions and end your turn immediately.\\n\\n[tablet]: -2. Add 1 doom token to the nearest Cultist enemy.\\n\\n[elder_thing]: -3. If you fail, choose and discard a card from your hand.\"\r\n end\r\n end\r\n --blood on the Altar\r\n if scenario.getDescription() == \"Blood on the Altar\" then\r\n if scenario.is_face_down == true then\r\n tool = \"Hard / Expert\\n\\n[skull]: -1 for each location in play with no encounter card underneath it.\\n\\n[cultist]: -4. If you fail, add 1 clue from the token pool to your location.\\n\\n[tablet]: -3. Reveal another token.\\n\\n[elder_thing]: -3. Place 1 doom on the current agenda.\"\r\n else\r\n tool = \"Easy / Standard\\n\\n[skull]: -1 for each location in play with no encounter card underneath it (max -4).\\n\\n[cultist]: -2. If you fail, add 1 clue from the token pool to your location.\\n\\n[tablet]: -2. If you are in the Hidden Chamber, reveal another token.\\n\\n[elder_thing]: -3. If you fail, place 1 doom on the current agenda.\"\r\n end\r\n end\r\n --undimensioned and unseen\r\n if scenario.getDescription() == \"Undimensioned and Unseen\" then\r\n if scenario.is_face_down == true then\r\n tool = \"Hard / Expert\\n\\n[skull]: -2 for each Brood of Yog-Sothoth in play.\\n\\n[cultist]: Reveal another token. If you fail this test, take 1 horror and 1 damage.\\n\\n[tablet]: 0. You must either remove all clue tokens from a Brood of Yog-Sothoth in play, or this test automatically fails.\\n\\n[elder_thing]: -5. If this token is revealed during an attack or evasion attempt against a Brood of Yog-Sothoth, it immediately attacks you.\"\r\n else\r\n tool = \"Easy / Standard\\n\\n[skull]: -1 for each Brood of Yog-Sothoth in play.\\n\\n[cultist]: Reveal another token. If you fail this test, take 1 horror.\\n\\n[tablet]: 0. You must either remove all clue tokens from a Brood of Yog-Sothoth in play, or this token's modifier is -4 instead.\\n\\n[elder_thing]: -3. If this token is revealed during an attack or evasion attempt against a Brood of Yog-Sothoth, it immediately attacks you.\"\r\n end\r\n end\r\n -- where doom Awaits\r\n if scenario.getDescription() == \"Where Doom Awaits\" then\r\n if scenario.is_face_down == true then\r\n tool = \"Hard / Expert\\n\\n[skull]: -2 (-5 instead if you are at an [[Altered]] location).\\n\\n[cultist]: Reveal another token. Cancel the effects and icons of each skill card committed to this test.\\n\\n[tablet]: -3. If it is Agenda 2, you automatically fail instead.\\n\\n[elder_thing]: -X. Discard the top 3 cards of your deck. X is the total printed cost of those discarded cards.\"\r\n else\r\n tool = \"Easy / Standard\\n\\n[skull]: -1 (-3 instead if you are at an [[Altered]] location).\\n\\n[cultist]: Reveal another token. Cancel the effects and icons of each skill card committed to this test.\\n\\n[tablet]: -2 (-4 instead if it is Agenda 2).\\n\\n[elder_thing]: -X. Discard the top 2 cards of your deck. X is the total printed cost of those discarded cards.\"\r\n end\r\n end\r\n --lost in time and space\r\n if scenario.getDescription() == \"Lost in Time and Space\" then\r\n if scenario.is_face_down == true then\r\n tool = \"Hard / Expert\\n\\n[skull]: -1 for each [[Extradimensional]] location in play.\\n\\n[cultist]: Reveal another token. After this skill test, discard cards from the top of the encounter deck until a location is discarded. Put that location into play and move there.\\n\\n[tablet]: -5. If Yog-Sothoth is in play, it attacks you after this skill test.\\n\\n[elder_thing]: -X. X is twice the shroud value of your location. If you fail and your location is [[Extradimensional]], discard it.\"\r\n else\r\n tool = \"Easy / Standard\\n\\n[skull]: -1 for each [[Extradimensional]] location in play (max -5).\\n\\n[cultist]: Reveal another token. If you fail, after this skill test, discard cards from the top of the encounter deck until a location is discarded. Put that location into play and move there.\\n\\n[tablet]: -3. If Yog-Sothoth is in play, it attacks you after this skill test.\\n\\n[elder_thing]: -X. X is the shroud value of your location. If you fail and your location is [[Extradimensional]], discard it.\"\r\n end\r\n end\r\n -- curtain call\r\n if scenario.getDescription() == \"Curtain Call\" then\r\n if scenario.is_face_down == true then\r\n tool = \"Hard / Expert\\n\\n[skull]: -X, where X is the amount of horror on you. (If you have no horror on you, X is 1.)\\n\\n[cultist] [tablet] [elder_thing]: -5. If your location has at least 1 horror on it, take 1 horror (from the token pool) . If your location has no horror on it, place 1 horror on it instead.\"\r\n else\r\n tool = \"Easy / Standard\\n\\n[skull]: -1 (-3 instead if you have 3 or more horror on you).\\n\\n[cultist] [tablet] [elder_thing]: -4. If your location has at least 1 horror on it, take 1 horror (from the token pool) . If your location has no horror on it, place 1 horror on it instead.\"\r\n end\r\n end\r\n -- Last King\r\n if scenario.getDescription() == \"The Last King\" then\r\n if scenario.is_face_down == true then\r\n tool = \"Hard / Expert\\n\\n[skull]: Reveal another token. If you fail, place 1 doom on the [[Lunatic]] enemy in play with the most remaining health.\\n\\n[cultist]: -3. Place 1 of your clues on your location.\\n\\n[tablet]: -4. Take 1 horror.\\n\\n[elder_thing]: -X. X is the shroud value of your location. If you fail, take 1 damage.\"\r\n else\r\n tool = \"Easy / Standard\\n\\n[skull]: Reveal another token. If you fail, place 1 doom on a [[Lunatic]] enemy in play.\\n\\n[cultist]: -2. If you fail, place 1 of your clues on your location.\\n\\n[tablet]: -4. If you fail, take 1 horror.\\n\\n[elder_thing]: -X. X is the shroud value of your location.\"\r\n end\r\n end\r\n -- Echoes Past\r\n if scenario.getDescription() == \"Echoes of the Past\" then\r\n if scenario.is_face_down == true then\r\n tool = \"Hard / Expert\\n\\n[skull]: -X. X is the total number of doom on enemies in play.\\n\\n[cultist]: -4. Place 1 doom on the nearest enemy.\\n\\n[tablet]: -4. Discard a random card from your hand.\\n\\n[elder_thing]: -4. If there is an enemy at your location, take 1 horror.\"\r\n else\r\n tool = \"Easy / Standard\\n\\n[skull]: -X. X is the highest number of doom on an enemy in play.\\n\\n[cultist]: -2. If you fail, place 1 doom on the nearest enemy.\\n\\n[tablet]: -2. If you fail, discard a random card from your hand.\\n\\n[elder_thing]: -2. If you fail and there is an enemy at your location, take 1 horror.\"\r\n end\r\n end\r\n -- Unspeakable Oath\r\n if scenario.getDescription() == \"The Unspeakable Oath\" then\r\n if scenario.is_face_down == true then\r\n tool = \"Hard / Expert\\n\\n[skull]: Reveal another token. If you fail, randomly choose an enemy from among the set-aside [[Monster]] enemies and place it beneath the act deck without looking at it. (Limit once per test.)\\n\\n[cultist]: -X. X is the amount of horror on you. If you fail, take 1 horror.\\n\\n[tablet]: -X. X is the base shroud value of your location. If you fail, take 1 horror.\\n\\n[elder_thing]: 0. Either randomly choose an enemy from among the set-aside [[Monster]] enemies and place it beneath the act deck without looking at it, or this test automatically fails instead.\"\r\n else\r\n tool = \"Easy / Standard\\n\\n[skull]: -1. If you fail, randomly choose an enemy from among the set-aside [[Monster]] enemies and place it beneath the act deck without looking at it.\\n\\n[cultist]: -X. X is the amount of horror on you.\\n\\n[tablet]: -X. X is the base shroud value of your location.\\n\\n[elder_thing]: 0. Either randomly choose an enemy from among the set-aside [[Monster]] enemies and place it beneath the act deck without looking at it, or this test automatically fails instead.\"\r\n end\r\n end\r\n -- A Phantom of Truth\r\n if scenario.getDescription() == \"A Phantom of Truth\" then\r\n if scenario.is_face_down == true then\r\n tool = \"Hard / Expert\\n\\n[skull]: -X. X is the amount of doom in play.\\n\\n[cultist]: -2. Move each unengaged [[Byakhee]] in play once toward the nearest investigator.\\n\\n[tablet]: -4. Cancel the effects and icons of each skill card committed to this test.\\n\\n[elder_thing]: -3. If you fail, lose 1 resource for each point you failed by.\"\r\n else\r\n tool = \"Easy / Standard\\n\\n[skull]: -X. X is the amount of doom in play (max 5).\\n\\n[cultist]: -2. If you fail, move each unengaged [[Byakhee]] in play once toward the nearest investigator.\\n\\n[tablet]: -3. Cancel the effects and icons of each skill card committed to this test.\\n\\n[elder_thing]: -2. If you fail, lose 1 resource for each point you failed by.\"\r\n end\r\n end\r\n -- The Pallid Mask\r\n if scenario.getDescription() == \"The Pallid Mask\" then\r\n if scenario.is_face_down == true then\r\n tool = \"Hard / Expert\\n\\n[skull]: -X. X is the number of locations away from the starting location you are.\\n\\n[cultist]: -3. If this token is revealed during an attack and this skill test is successful, this attack deals no damage.\\n\\n[tablet]: -3. If there is a [[Ghoul]] or [[Geist]] enemy at your location, it readies and attacks you (if there is more than one, choose one).\\n\\n[elder_thing]: -4. If you fail, search the encounter deck and discard pile for a [[Ghoul]] or [[Geist]] enemy and draw it.\"\r\n else\r\n tool = \"Easy / Standard\\n\\n[skull]: -X. X is the number of locations away from the starting location you are (max 5).\\n\\n[cultist]: -2. If this token is revealed during an attack, and this skill test is successful, this attack deals 1 less damage.\\n\\n[tablet]: -2. If there is a ready [[Ghoul]] or [[Geist]] enemy at your location, it attacks you (if there is more than one, choose one).\\n\\n[elder_thing]: -3. If you fail, search the encounter deck and discard pile for a [[Ghoul]] or [[Geist]] enemy and draw it.\"\r\n end\r\n end\r\n -- Dim Carcosa\r\n if scenario.getDescription() == \"Dim Carcosa\" then\r\n if scenario.is_face_down == true then\r\n tool = \"Hard / Expert\\n\\n[skull]: -X. X is the amount of horror on you.\\n\\n[cultist]: Reveal another token. If you fail, take 2 horror.\\n\\n[tablet]: -5. If you fail and Hastur is in play, place 1 clue on your location (from the token bank) .\\n\\n[elder_thing]: -5. If this token is revealed during an attack or evasion attempt against a [[Monster]] or [[Ancient One]] enemy, lose 1 action.\"\r\n else\r\n tool = \"Easy / Standard\\n\\n[skull]: -2 (-4 instead if you have no sanity remaining).\\n\\n[cultist]: Reveal another token. If you fail, take 1 horror.\\n\\n[tablet]: -3. If you fail and Hastur is in play, place 1 clue on your location (from the token bank) .\\n\\n[elder_thing]: -3. If this token is revealed during an attack or evasion attempt against a [[Monster]] or [[Ancient One]] enemy, lose 1 action.\"\r\n end\r\n end\r\n if scenario.getDescription() == \"Black Stars Rise\" then\r\n if scenario.is_face_down == true then\r\n tool = \"Hard / Expert\\n\\n[skull]: -X. X is the total amount of doom on agendas in play.\\n\\n[cultist]: Reveal another token. If there is an enemy with 1 or more doom on it at your location, this test automatically fails instead.\\n\\n[tablet]: Reveal another token. If you do not succeed by at least 1, place 1 doom on each agenda.\\n\\n[elder_thing]: -3. If you fail, search the encounter deck and discard pile for a [[Byakhee]] enemy and draw it.\"\r\n else\r\n tool = \"Easy / Standard\\n\\n[skull]: -X. X is the highest amount of doom on an agenda in play.\\n\\n[cultist]: Reveal another token. If this token is revealed during an attack or evasion attempt against an enemy with doom on it, this skill test automatically fails instead.\\n\\n[tablet]: Reveal another token. If you fail, place 1 doom on each agenda.\\n\\n[elder_thing]: -2. If you fail, search the encounter deck and discard pile for a [[Byakhee]] enemy and draw it.\"\r\n end\r\n end\r\n -- untamed Wilds\r\n if scenario.getDescription() == \"The Untamed Wilds\" then\r\n if scenario.is_face_down == true then\r\n tool = \"Hard / Expert\\n\\n[skull]: -X. X is 1 higher than the number of vengeance points in the victory display.\\n\\n[cultist]: -X. X is the number of locations in play.\\n\\n[tablet]: -X. X is the number of cards in the exploration deck (min 3).\\n\\n[elder_thing]: -3. If you are poisoned, this test automatically fails instead. If you are not poisoned and you fail, put a set-aside Poisoned weakness into play in your threat area.\"\r\n else\r\n tool = \"Easy / Standard\\n\\n[skull]: -X. X is the number of vengeance points in the victory display.\\n\\n[cultist]: -X. X is the number of locations in play (max 5).\\n\\n[tablet]: -X. X is the number of cards in the exploration deck (max 5).\\n\\n[elder_thing]: -2. If you are poisoned, this test automatically fails instead.\"\r\n end\r\n end\r\n --The doom of Eztli\r\n if scenario.getDescription() == \"The Doom of Eztli\" then\r\n if scenario.is_face_down == true then\r\n tool = \"Hard / Expert\\n\\n[skull]: -2 (-4 instead if there is doom on your location).\\n\\n[cultist] [tablet]: -X. X is the total amount of doom on locations in play.\\n\\n[elder_thing]: Reveal another chaos token. Place 1 doom on your location.\"\r\n else\r\n tool = \"Easy / Standard\\n\\n[skull]: -1 (-3 instead if there is doom on your location).\\n\\n[cultist] [tablet]: -X. X is the number of locations with doom on them.\\n\\n[elder_thing]: Reveal another chaos token. If you fail, place 1 doom on your location.\"\r\n end\r\n end\r\n --Threads of Fate\r\n if scenario.getDescription() == \"Threads of Fate\" then\r\n if scenario.is_face_down == true then\r\n tool = \"Hard / Expert\\n\\n[skull] : -X. X is the total number of doom in play.\\n\\n[cultist]: -2. If you do not succeed by at least 2, take 1 direct damage.\\n\\n[tablet]: -2. If you do not succeed by at least 2, place 1 doom on each [[cultist]] enemy.\\n\\n[elder_thing]: -3. If you fail, lose 1 of your clues.\"\r\n else\r\n tool = \"Easy / Standard\\n\\n[skull] : -X. X is the highest number of doom on a [[cultist]] enemy.\\n\\n[cultist]: -2. If you do not succeed by at least 1, take 1 damage.\\n\\n[tablet]: -2. If you do not succeed by at least 1, place 1 doom on the nearest [[cultist]] enemy.\\n\\n[elder_thing]: -2. If you fail, lose 1 of your clues.\"\r\n end\r\n end\r\n --The boundary beyond\r\n if scenario.getDescription() == \"The Boundary Beyond\" then\r\n if scenario.is_face_down == true then\r\n tool = \"Hard / Expert\\n\\n[skull]: -2 (-4 instead if you are at an [[Ancient]] location).\\n\\n[cultist]: Reveal another token. If you fail, place 1 doom on each [[Cultist]] enemy.\\n\\n[tablet]: Reveal another token. If you fail, each [[Serpent]] enemy at your location attacks you.\\n\\n[elder_thing]: -4. Place 1 clue (from the token pool) on the nearest [[Ancient]] location.\"\r\n else\r\n tool = \"Easy / Standard\\n\\n[skull]: -1 (-3 instead if you are at an [[Ancient]] location).\\n\\n[cultist]: Reveal another token. If you fail, place 1 doom on a [[Cultist]] enemy.\\n\\n[tablet]: Reveal another token. If you fail and there is a [[Serpent]] enemy at your location, it attacks you.\\n\\n[elder_thing]: -4. If you fail, place 1 clue (from the token pool) on the nearest [[Ancient]] location.\"\r\n end\r\n end\r\n --Heart of the elders p1\r\n if scenario.getDescription() == \"Heart of the Elders\" then\r\n if scenario.is_face_down == true then\r\n tool = \"Hard / Expert\\n\\n[skull]: -2 (-4 instead if you are in a [[Cave]] location).\\n\\n[cultist]: -3. If you fail, place 1 doom on your location.\\n\\n[tablet]: -3. If you are poisoned, this test automatically fails instead. If you are not poisoned and you fail, put a set-aside Poisoned weakness into play in your threat area.\\n\\n[elder_thing]: -4. If you fail, take 1 horror.\"\r\n else\r\n tool = \"Easy / Standard\\n\\n[skull]: -1 (-3 instead if you are in a [[Cave]] location).\\n\\n[cultist]: -2. If you fail, place 1 doom on your location.\\n\\n[tablet]: -2. If you are poisoned, this test automatically fails instead.\\n\\n[elder_thing]: -3. If you fail, take 1 horror.\"\r\n end\r\n end\r\n -- City of Archives\r\n if scenario.getDescription() == \"The City of Archives\" then\r\n if scenario.is_face_down == true then\r\n tool = \"Hard / Expert\\n\\n[skull]: -2 (if you have 5 or more cards in your hand, you automatically fail instead).\\n\\n[cultist] or [elder_thing]: -2. Place 1 of your clues on your location.\\n\\n[tablet]: -3. For each point you fail by, discard 1 random card from your hand.\"\r\n else\r\n tool = \"Easy / Standard\\n\\n[skull]: -1 (-3 instead if you have 5 or more cards in your hand).\\n\\n[cultist] or [elder_thing]: -2. If you fail, place 1 of your clues on your location.\\n\\n[tablet]: -3. If you fail, discard 1 random card from your hand.\"\r\n end\r\n end\r\n --Depths of Yoth\r\n if scenario.getName() == \"Scenario - Easy/Standard\" then\r\n tool = \"Easy / Standard\\n\\n[skull]: -X. X is the current depth level.\\n\\n[cultist]: Reveal another token. If you fail, each [[Serpent]] enemy at your location or a connecting location heals 2 damage.\\n\\n[tablet]: Reveal another token. If you fail, place 1 clue on your location (from the token pool) .\\n\\n[elder_thing]: -2. If there are 3 or more vengeance points in the victory display, you automatically fail this test, instead.\"\r\n end\r\n --hard\r\n if scenario.getName() == \"Scenario - Hard/Expert\" then\r\n tool = \"Hard / Expert\\n\\n[skull]: -X. X is the current depth level. If you fail, take 1 horror.\\n\\n[cultist]: Reveal another token. If you fail, each [[Serpent]] enemy at your location or a connecting location heals 2 damage.\\n\\n[tablet]: Reveal another token. If you fail, place 1 clue on your location (from the token pool) .\\n\\n[elder_thing]: -4. If there are 3 or more vengeance points in the victory display, you automatically fail this test, instead.\"\r\n end\r\n --Shattered Aeons\r\n if scenario.getDescription() == \"Shattered Aeons\" then\r\n if scenario.is_face_down == true then\r\n tool = \"Hard / Expert\\n\\n[skull]: -3 (-5 instead if the Relic of Ages is at your location).\\n\\n[cultist]: -3. If you do not succeed by at least 1, place 1 doom on each [[Cultist]] enemy.\\n\\n[tablet]: -3. If you are poisoned, this test automatically fails instead. If you are not poisoned and you fail, put a set-aside Poisoned weakness into play in your threat area.\\n\\n[elder_thing]: -3. Shuffle the topmost [[Hex]] treachery in the encounter discard pile into the exploration deck.\"\r\n else\r\n tool = \"Easy / Standard\\n\\n[skull]: -2 (-4 instead if the Relic of Ages is at your location).\\n\\n[cultist]: -2. If you do not succeed by at least 1, place 1 doom on the nearest [[Cultist]] enemy.\\n\\n[tablet]: -2. If you are poisoned, this test automatically fails instead.\\n\\n[elder_thing]: -2. If you fail, shuffle the topmost [[Hex]] treachery in the encounter discard pile into the exploration deck.\"\r\n end\r\n end\r\n --secret scenario\r\n if scenario.getDescription() == \"Turn Back Time\" then\r\n if scenario.is_face_down == true then\r\n tool = \"Hard / Expert\\n\\n[skull]: -X . X is the total amount of doom on locations.\\n\\n[elder_thing]: -6. Place 1 doom on your location.\"\r\n else\r\n tool = \"Easy / Standard\\n\\n[skull]: -X . X is the number of locations with doom on them.\\n\\n[elder_thing]: -4. If you fail, place 1 doom on your location.\"\r\n end\r\n end\r\n --Dissappearance Twilight\r\n if scenario.getDescription() == \"Disappearance at the Twilight Estate\" then\r\n if scenario.is_face_down == true then\r\n tool = \"Hard / Expert\\n\\n[skull]: -5. If you fail and this is an attack or evasion attempt, resolve each haunted ability on your location.\"\r\n else\r\n tool = \"Easy / Standard\\n\\n[skull]: -3. If you fail and this is an attack or evasion attempt, resolve each haunted ability on your location.\"\r\n end\r\n end\r\n --Witching Hour\r\n if scenario.getDescription() == \"The Witching Hour\" then\r\n if scenario.is_face_down == true then\r\n tool = \"Hard / Expert\\n\\n[skull]: -2. Discard cards from the top of the encounter deck equal to this test's difficulty.\\n\\n[tablet]: -2. If you fail, after this test resolves, draw the bottommost treachery in the encounter discard pile.\\n\\n[elder_thing]: -4. If you fail, ready each [[Witch]] enemy at your location and at each connecting location. Heal all damage from each of those enemies.\"\r\n else\r\n tool = \"Easy / Standard\\n\\n[skull]: -1. For each point you fail by, discard the top card of the encounter deck.\\n\\n[tablet]: -1. If you fail, after this test resolves, draw the bottommost treachery in the encounter discard pile.\\n\\n[elder_thing]: -3. If you fail, choose an exhausted or damaged [[Witch]] enemy at your location or at a connecting location. Ready that enemy and heal all damage from it.\"\r\n end\r\n end\r\n --Death's Doorstep\r\n if scenario.getDescription() == \"At Death's Doorstep\" then\r\n if scenario.is_face_down == true then\r\n tool = \"Hard / Expert\\n\\n[skull]: -2 (-4 instead if your location is haunted).\\n\\n[tablet]: -3. If this is an attack or evasion attempt, resolve each haunted ability on your location.\\n\\n[elder_thing]: -4. If there is a [[Spectral]] enemy at your location, take 1 damage and 1 horror.\"\r\n else\r\n tool = \"Easy / Standard\\n\\n[skull]: -1 (-3 instead if your location is haunted).\\n\\n[tablet]: -2. If you fail and this is an attack or evasion attempt, resolve each haunted ability on your location.\\n\\n[elder_thing]: -2. If there is a [[Spectral]] enemy at your location, take 1 damage.\"\r\n end\r\n end\r\n --Secret Name\r\n if scenario.getDescription() == \"The Secret Name\" then\r\n if scenario.is_face_down == true then\r\n tool = \"Hard / Expert\\n\\n[skull]: -2 (-4 instead if you are at an [[Extradimensional]] location).\\n\\n[cultist]: Reveal another chaos token. If you fail, discard the top 5 cards of the encounter deck.\\n\\n[tablet]: -3. If you fail and Nahab is in play, she attacks you (regardless of her current location) .\\n\\n[elder_thing]: -4. Resolve the hunter keyword on each enemy in play.\"\r\n else\r\n tool = \"Easy / Standard\\n\\n[skull]: -1 (-3 instead if you are at an [[Extradimensional]] location).\\n\\n[cultist]: Reveal another chaos token. If you fail, discard the top 3 cards of the encounter deck.\\n\\n[tablet]: -2. If you fail and Nahab is at your location, she attacks you.\\n\\n[elder_thing]: -3. If you fail, resolve the hunter keyword on each enemy in play.\"\r\n end\r\n end\r\n --Wages of Sin\r\n if scenario.getDescription() == \"The Wages of Sin\" then\r\n if scenario.is_face_down == true then\r\n tool = \"Hard / Expert\\n\\n[skull]: -X. X is the number of copies of Unfinished Business in the victory display. Reveal another token.\\n\\n[cultist]: -4. Until the end of the rount, each Heretic enemy in play gets +1 fight and +1 evade.\\n\\n[tablet]: -4. If you fail, trigger the forced ability on a copy of Unfinished Business in your threat area as if it were the end of the round.\\n\\n[elder_thing]: -2. If this is an attack or evasion attempt, resolve each haunted ability on your location.\"\r\n else\r\n tool = \"Easy / Standard\\n\\n[skull]: -X. X is 1 higher than the number of copies of Unfinished Business in the victory display.\\n\\n[cultist]: -3. Until the end of the round, each Heretic enemy in play gets +1 fight and +1 evade.\\n\\n[tablet]: -3. If you fail, trigger the forced ability on a copy of Unfinished Business in yout threat area as if it were the end of the round.\\n\\n[elder_thing]: -2. If you fail and this is an attack or evasion attempt, resolve each haunted ability on your location.\"\r\n end\r\n end\r\n -- For The Greater Good\r\n if scenario.getDescription() == \"For the Greater Good\" then\r\n if scenario.is_face_down == true then\r\n tool = \"Hard / Expert\\n\\n[skull]: -X. X is the total number of doom among [[Cultist]] enemies in play.\\n\\n[cultist]: -2. Reveal another token.\\n\\n[tablet]: -3. If you fail, place 1 doom on each [[Cultist]] enemy in play. If there are no [[Cultist]] enemies in play, reveal another token.\\n\\n[elder_thing]: -3. If you fail, move all doom from the [[Cultist]] enemy with the most doom on it to the current agenda. If no [[Cultist]] enemies in play have doom on them, reveal another token.\"\r\n else\r\n tool = \"Easy / Standard\\n\\n[skull]: -X. X is the highest number of doom on a [[Cultist]] enemy in play.\\n\\n[cultist]: -2. Reveal another token.\\n\\n[tablet]: -3. If you fail, place 1 doom on the nearest [[Cultist]] enemy.\\n\\n[elder_thing]: -3. If you fail, move 1 doom from the nearest [[Cultist]] enemy to the current agenda.\"\r\n end\r\n end\r\n --Union and Disillusion\r\n if scenario.getDescription() == \"Union and Disillusion\" then\r\n if scenario.is_face_down == true then\r\n tool = \"Hard / Expert\\n\\n[skull]: -3. If this is a skill test during a circle action, reveal another token.\\n\\n[cultist]: -4. If you have no damage on you, take 1 damage. If you have no horror on you, take 1 horror.\\n\\n[tablet]: -4. If you fail, a [[Spectral]] enemy at your location attacks you (even if it is exhausted). \\n\\n[elder_thing]: -4. If this is a skill test during a circle action and you fail, resolve each haunted ability on your location.\"\r\n else\r\n tool = \"Easy / Standard\\n\\n[skull]: -2. If this is a skill test during a circle action, reveal another token.\\n\\n[cultist]: -3. If you have no damage on you, take 1 damage. If you have no horror on you, take 1 horror.\\n\\n[tablet]: -3. If you fail, a [[Spectral]] enemy at your location attacks you (even if it is exhausted). \\n\\n[elder_thing]: -3. If this is a skill test during a circle action and you fail, resolve each haunted ability on your location.\"\r\n end\r\n end\r\n --Clutches of Chaos\r\n if scenario.getDescription() == \"In the Clutches of Chaos\" then\r\n if scenario.is_face_down == true then\r\n tool = \"Hard / Expert\\n\\n[skull]: -X. X is 1 higher than the total amount of doom and breaches on your location.\\n\\n[cultist]: Reveal another token. If there are fewer than 3 breaches on your location, place 1 breach on your location.\\n\\n[tablet]: -3. For each point you fail by, remove 1 breach from the current act.\\n\\n[elder_thing]: -4. If you fail, place 1 breach on a random location.\"\r\n else\r\n tool = \"Easy / Standard\\n\\n[skull]: -X. X is the total amount of doom and breaches on your location.\\n\\n[cultist]: Reveal another token. If there are fewer than 3 breaches on your location, place 1 breach on your location.\\n\\n[tablet]: -2. For each point you fail by, remove 1 breach from the current act.\\n\\n[elder_thing]: -3. If you fail, place 1 breach on a random location.\"\r\n end\r\n end\r\n --Before the Black Throne\r\n if scenario.getDescription() == \"Before the Black Throne\" then\r\n if scenario.is_face_down == true then\r\n tool = \"Hard / Expert\\n\\n[skull]: -X. X is the amount of doom on Azathoth, to a minimum of 2.\\n\\n[cultist]: Reveal another token. If you fail, search the encounter deck and discard pile for a [[Cultist]] enemy and draw it. Shuffle the encounter deck.\\n\\n[tablet]: -3. If you fail, Azathoth attacks you.\\n\\n[elder_thing]: -6. If your modified skill value for this test is 0, place 1 doom on Azathoth.\"\r\n else\r\n tool = \"Easy / Standard\\n\\n[skull]: -X. X is half of the doom on Azathoth (rounded up), to a minimum of 2.\\n\\n[cultist]: Reveal another token. If you fail, search the encounter deck and discard pile for a [[Cultist]] enemy and draw it. Shuffle the encounter deck.\\n\\n[tablet]: -2. If you fail, Azathoth attacks you.\\n\\n[elder_thing]: -4. If your modified skill value for this test is 0, place 1 doom on Azathoth.\"\r\n end\r\n end\r\n --Beyond the gates of sleep\r\n if scenario.getDescription() == \"Beyond the Gates of Sleep\" then\r\n if scenario.is_face_down == true then\r\n tool = \"Hard / Expert\\n\\n[skull] : -X. X is the number of cards in your hand.\\n\\n[cultist]: -X. X is the number of revealed [[Woods]] locations.\\n\\n[tablet]: -2. If this is an attack or evasion attempt against a swarming enemy, add 1 swarm card to it.\"\r\n else\r\n tool = \"Easy / Standard\\n\\n[skull] : -X. X is half the number of cards in your hand (rounded up).\\n\\n[cultist]: -X. X is the number of revealed Enchanted Woods locations.\\n\\n[tablet]: -2. If you fail and this is an attack or evasion attempt against a swarming enemy, add 1 swarm card to it.\"\r\n end\r\n end\r\n --Waking Nightmare\r\n if scenario.getDescription() == \"Waking Nightmare\" then\r\n if scenario.is_face_down == true then\r\n tool = \"Hard / Expert\\n\\n[skull]: -2 (-4 instead if you are engaged with a [[Staff]] enemy).\\n\\n[cultist]: Reveal another chaos token. If it is agenda 2 or 3, make an infestation test.\\n\\n[elder_thing]: -X. X is 1 higher than the number of infested locations.\"\r\n else\r\n tool = \"Easy / Standard\\n\\n[skull]: -1 (-3 instead if you are engaged with a [[Staff]] enemy).\\n\\n[cultist]: Reveal another chaos token. If you fail and it is agenda 2 or 3, make an infestation test.\\n\\n[elder_thing]: -X. X is the number of infested locations.\"\r\n end\r\n end\r\n --The search for kadath\r\n if scenario.getDescription() == \"The Search for Kadath\" then\r\n if scenario.is_face_down == true then\r\n tool = \"Hard / Expert\\n\\n[skull]: -X. X is 1 more than the number of Signs of the Gods the investigators have uncovered.\\n\\n[cultist]: Reveal another token. If this token is revealed during an investigation and this skill test fails, increase that location's shroud by 2 for the remainder of the round.\\n\\n[tablet]: -3. If you fail, either take 1 damage and 1 horror, or place 1 doom on the current agenda.\\n\\n[elder_thing]: +1. The black cat points you in the right direction. If this token is revealed during an investigation and you succeed, discover 1 additional clue.\"\r\n else\r\n tool = \"Easy / Standard\\n\\n[skull]: -X. X is the number of Signs of the Gods the investigators have uncovered.\\n\\n[cultist]: Reveal another token. If this token is revealed during an investigation and this skill test fails, increase that location's shroud by 1 for the remainder of the round.\\n\\n[tablet]: -2. If you fail, either take 1 damage and 1 horror, or place 1 doom on the current agenda.\\n\\n[elder_thing]: +2. The black cat points you in the right direction. If this token is revealed during an investigation and you succeed, discover 1 additional clue.\"\r\n end\r\n end\r\n --A thousand shapes of horror\r\n if scenario.getDescription() == \"A Thousand Shapes of Horror\" then\r\n if scenario.is_face_down == true then\r\n tool = \"Hard / Expert\\n\\n[skull]: -2 (-4 instead if you are at a [[Graveyard]] location).\\n\\n[cultist]: Reveal another token. If you fail and The Unnamable is in play, it attacks you (regardless of its current location).\\n\\n[tablet]: +1. The black cat causes a distraction. If this test is successful, choose and evade an enemy at any location with a fight value of X or lower, where X is the amount you succeeded by.\\n\\n[elder_thing]: -3. If you fail, you must either place 1 of your clues on your location or take 1 damage.\"\r\n else\r\n tool = \"Easy / Standard\\n\\n[skull]: -1 (-3 instead if you are at a [[Graveyard]] location).\\n\\n[cultist]: Reveal another token. If you fail and The Unnamable is in play, it attacks you (regardless of its current location).\\n\\n[tablet]: +2. The black cat causes a distraction. If this test is successful, choose and evade an enemy at any location with a fight value of X or lower, where X is the amount you succeeded by.\\n\\n[elder_thing]: -2. If you fail, you must either place 1 of your clues on your location or take 1 damage.\"\r\n end\r\n end\r\n --Dark Side of the moon\r\n if scenario.getDescription() == \"Dark Side of the Moon\" then\r\n if scenario.is_face_down == true then\r\n tool = \"Hard / Expert\\n\\n[skull]: -X. X is your alarm level.\\n\\n[cultist]: Reveal another token. If you fail and your alarm level is higher than your modified skill value, after this skill test ends, draw the top card of the encounter deck.\\n\\n[tablet]: -2. If you fail, raise your alarm level by 1.\\n\\n[elder_thing]: 0. The black cat summons several other cats to help. If this token is revealed during an evasion attempt and you succeed, deal 2 damage to the evaded enemy.\"\r\n else\r\n tool = \"Easy / Standard\\n\\n[skull]: -X. X is half your alarm level (rounded up).\\n\\n[cultist]: Reveal another token. If you fail and your alarm level is higher than your modified skill value, after this skill test ends, draw the top card of the encounter deck.\\n\\n[tablet]: -1. If you fail, raise your alarm level by 1.\\n\\n[elder_thing]: +1. The black cat summons several other cats to help. If this token is revealed during an evasion attempt and you succeed, deal 2 damage to the evaded enemy.\"\r\n end\r\n end\r\n --point of no return\r\n if scenario.getDescription() == \"Point of No Return\" then\r\n if scenario.is_face_down == true then\r\n tool = \"Hard / Expert\\n\\n[skull]: -X. X is 1 more than the amount of damage on this card.\\n\\n[cultist]: Reveal another token. If you fail, after this skill test ends, draw the top card of the encounter deck.\\n\\n[tablet]: 0. The black cat helps you navigate through the death-fire. If this token is revealed during an investigation and you succeed, draw 1 card.\\n\\n[elder_thing]: -4. If you fail by 2 or more, choose a ready enemy at your location or a connecting location. That enemy moves to your location, engages you, and makes an immediate attack.\"\r\n else\r\n tool = \"Easy / Standard\\n\\n[skull]: -X. X is the amount of damage on this card.\\n\\n[cultist]: Reveal another token. If you fail, after this skill test ends, draw the top card of the encounter deck.\\n\\n[tablet]: +1. The black cat helps you navigate through the death-fire. If this token is revealed during an investigation and you succeed, draw 1 card.\\n\\n[elder_thing]: -3. If you fail by 2 or more, choose a ready enemy at your location or a connecting location. That enemy moves to your location, engages you, and makes an immediate attack.\"\r\n end\r\n end\r\n --where the gods dwell\r\n if scenario.getDescription() == \"Where the Gods Dwell\" then\r\n if scenario.is_face_down == true then\r\n tool = \"Hard / Expert\\n\\n[skull]: -X. X is the number of the current act plus the number of the current agenda.\\n\\n[cultist]: Reveal another token. If you fail, place 1 doom on the current agenda. This effect may cause the current agenda to advance.\\n\\n[tablet]: -6. If you fail, choose and reveal a copy of Nyarlathotep in your hand. It attacks you and is shuffled into the encounter deck.\\n\\n[elder_thing]: -1. The black cat reminds you that it's all a dream.\"\r\n else\r\n tool = \"Easy / Standard\\n\\n[skull]: -X. X is the number of the current act.\\n\\n[cultist]: Reveal another token. If you fail, place 1 doom on the current agenda.\\n\\n[tablet]: -4. If you fail, choose and reveal a copy of Nyarlathotep in your hand. It attacks you and is shuffled into the encounter deck.\\n\\n[elder_thing]: 0. The black cat reminds you that it's all a dream.\"\r\n end\r\n end\r\n --weaver of the cosmos\r\n if scenario.getDescription() == \"Weaver of the Cosmos\" then\r\n if scenario.is_face_down == true then\r\n tool = \"Hard / Expert\\n\\n[skull]: -X. X is the amount of doom on locations in play.\\n\\n[cultist]: Reveal another token. If you fail, and there is an [[Ancient One]] enemy at your location, it attacks you.\\n\\n[tablet]: -1. The black cat tears at the web with its claws. If you succeed by 2 or more, remove 1 doom from your location.\\n\\n[elder_thing]: -4. If this skill test fails during an attack against a [[Spider]] enemy, place 1 doom on that enemy's location.\"\r\n else\r\n tool = \"Easy / Standard\\n\\n[skull]: -X. X is the highest amount of doom on a location in play.\\n\\n[cultist]: Reveal another token. If you fail, and there is an [[Ancient One]] enemy at your location, it attacks you.\\n\\n[tablet]: 0. The black cat tears at the web with its claws. If you succeed by 2 or more, remove 1 doom from your location.\\n\\n[elder_thing]: -3. If this skill test fails during an attack against a [[Spider]] enemy, place 1 doom on that enemy's location.\"\r\n end\r\n end\r\n --pit of despair\r\n if scenario.getDescription() == \"The Pit of Despair\" then\r\n if scenario.is_face_down == true then\r\n tool = \"Hard / Expert\\n\\n[skull]: -2 (-3 instead if your location is partially flooded; -4 instead if your location is fully flooded).\\n\\n[cultist]: -2. If your location is flooded, take 1 damage.\\n\\n[tablet]: -2. If you control a key, take 1 horror.\\n\\n[elder_thing]: -3. If The Amalgam is in the depths, put it into play engaged with you.\"\r\n else\r\n tool = \"Easy / Standard\\n\\n[skull]: -1 (-2 instead if your location is partially flooded; -3 instead if your location is fully flooded).\\n\\n[cultist]: -2. If you fail and your location is flooded, take 1 damage.\\n\\n[tablet]: -2. If you fail and you control a key, take 1 horror.\\n\\n[elder_thing]: -3. If you fail and The Amalgam is in the depths, put it into play engaged with you.\"\r\n end\r\n end\r\n --vanishing of elena harper\r\n if scenario.getDescription() == \"The Vanishing of Elina Harper\" then\r\n if scenario.is_face_down == true then\r\n tool = \"Hard / Expert\\n\\n[skull]: -X. X is 1 more than the current agenda number.\\n\\n[cultist]: -2. Place 1 doom on the nearest enemy (2 doom instead if you failed).\\n\\n[tablet]: -3. Take 1 horror (1 horror and 1 damage instead if you failed).\\n\\n[elder_thing]: -4. Place 1 of your clues on your location (2 clues instead if you failed).\"\r\n else\r\n tool = \"Easy / Standard\\n\\n[skull]: -X. X is the current agenda number.\\n\\n[cultist]: -2. If you fail, place 1 doom on the nearest enemy.\\n\\n[tablet]: -3. If you fail, take 1 horror.\\n\\n[elder_thing]: -4. If you fail, place 1 of your clues on your location.\"\r\n end\r\n end\r\n --in too deep\r\n if scenario.getDescription() == \"In Too Deep\" then\r\n if scenario.is_face_down == true then\r\n tool = \"Hard / Expert\\n\\n[skull]: -2 for each location to the east of your location (on the same row).\\n\\n[cultist]: -4. If you fail, move to the connecting location to the east, ignoring all barriers.\\n\\n[tablet]: -5. If you fail, choose a connecting location with no barriers between it and your location. Place 1 barrier between the two locations.\\n\\n[elder_thing]: -X. X is twice the number of barriers between your location and all connecting locations.\"\r\n else\r\n tool = \"Easy / Standard\\n\\n[skull]: -1 for each location to the east of your location (on the same row).\\n\\n[cultist]: -2. If you fail, move to the connecting location to the east, ignoring all barriers.\\n\\n[tablet]: -3. If you fail, choose a connecting location with no barriers between it and your location. Place 1 barrier between the two locations.\\n\\n[elder_thing]: -X. X is the number of barriers between your location and all connecting locations.\"\r\n end\r\n end\r\n --devil reef\r\n if scenario.getDescription() == \"Devil Reef\" then\r\n if scenario.is_face_down == true then\r\n tool = \"Hard / Expert\\n\\n[skull]: -X. X is 1 more than the number of keys the investigators control.\\n\\n[cultist]: -3. If this is an attack or evasion attempt against a [[Deep One]] enemy, it engages you. (If it is already engaged with you, it disengages first, then re-engages you.)\\n\\n[tablet]: -4. If you are not in a vehicle, take 1 damage.\\n\\n[elder_thing]: -5. If your location has a key on it, take 1 horror.\"\r\n else\r\n tool = \"Easy / Standard\\n\\n[skull]: -X. X is the number of keys the investigators control.\\n\\n[cultist]: -2. If you fail and this is an attack or evasion attempt against a [[Deep One]] enemy, it engages you. (If it is already engaged with you, it disengages first, then re-engages you.)\\n\\n[tablet]: -3. If you fail and you are not in a vehicle, take 1 damage.\\n\\n[elder_thing]: -4. If you fail and your location has a key on it, take 1 horror.\"\r\n end\r\n end\r\n --horror in high gear\r\n if scenario.getDescription() == \"Horror in High Gear\" then\r\n if scenario.is_face_down == true then\r\n tool = \"Hard / Expert\\n\\n[skull]: -2 (-4 instead if there are 6 or fewer locations remaining in the Road deck).\\n\\n[cultist]: -2. For each point you fail by, an investigator in your vehicle places 1 of their clues on your location.\\n\\n[tablet]: -3. For each point you fail by, an investigator in your vehicle loses 1 resource.\\n\\n[elder_thing]: -4. Resolve the hunter keyword on each enemy in play.\"\r\n else\r\n tool = \"Easy / Standard\\n\\n[skull]: -1 (-3 instead if there are 6 or fewer locations remaining in the Road deck).\\n\\n[cultist]: -1. For each point you fail by, an investigator in your vehicle places 1 of their clues on your location.\\n\\n[tablet]: -2. For each point you fail by, an investigator in your vehicle loses 1 resource.\\n\\n[elder_thing]: -4. If you fail, resolve the hunter keyword on each enemy in play.\"\r\n end\r\n end\r\n --light in the fog\r\n if scenario.getDescription() == \"A Light in the Fog\" then\r\n if scenario.is_face_down == true then\r\n tool = \"Hard / Expert\\n\\n[skull]: -2. If your location is flooded, reveal an additional chaos token.\\n\\n[cultist]: -2. If you fail, after this test ends, increase the flood level of your location (if you cannot, take 1 horror instead).\\n\\n[tablet]: -3. If you fail this test and your location is flooded, take 2 damage.\\n\\n[elder_thing]: -4. Move the nearest unengaged enemy once toward your location. It loses aloof during this movement.\"\r\n else\r\n tool = \"Easy / Standard\\n\\n[skull]: -1. If your location is flooded, reveal an additional chaos token.\\n\\n[cultist]: -2. If you fail, after this test ends, increase the flood level of your location.\\n\\n[tablet]: -3. If you fail this test and your location is flooded, take 1 damage.\\n\\n[elder_thing]: -4. If you fail, move the nearest ready unengaged enemy once toward your location. It loses aloof during this movement.\"\r\n end\r\n end\r\n --lair of dagon\r\n if scenario.getDescription() == \"The Lair of Dagon\" then\r\n if scenario.is_face_down == true then\r\n tool = \"Hard / Expert\\n\\n[skull]: -2 for each key on this card.\\n\\n[cultist]: -2. Reveal an additional chaos token. If you reveal 1 or more [curse] tokens during this test, you automatically fail.\\n\\n[tablet]: -3. Place each key you control on your location and take 1 damage.\\n\\n[elder_thing]: -4. Add 2 [curse] tokens to the chaos bag.\"\r\n else\r\n tool = \"Easy / Standard\\n\\n[skull]: -1 for each key on this card.\\n\\n[cultist]: 0. Reveal an additional chaos token. If you reveal 1 or more [curse] tokens during this test, you automatically fail.\\n\\n[tablet]: -3. If you fail, place each key you control on your location.\\n\\n[elder_thing]: -4. If you fail, add 1 [curse] token to the chaos bag.\"\r\n end\r\n end\r\n --into the maelstrom\r\n if scenario.getDescription() == \"Into the Maelstrom\" then\r\n if scenario.is_face_down == true then\r\n tool = \"Hard / Expert\\n\\n[skull]: -2 (-4 instead if there are 4 or more unflooded [[Y'ha-nthlei]] locations in play).\\n\\n[cultist]: -4. If you fail, place 1 doom on the current agenda (this may cause the current agenda to advance).\\n\\n[tablet]: -5. If you fail, you must either increase the flood level of your location or take 1 damage.\\n\\n[elder_thing]: -6. If you fail and there is a key on your location, take 1 horror.\"\r\n else\r\n tool = \"Easy / Standard\\n\\n[skull]: -1 (-3 instead if there are 4 or more unflooded [[Y'ha-nthlei]] locations in play).\\n\\n[cultist]: -3. If you fail, place 1 doom on the current agenda (this may cause the current agenda to advance).\\n\\n[tablet]: -4. If you fail, you must either increase the flood level of your location or take 1 damage.\\n\\n[elder_thing]: -5. If you fail and there is a key on your location, take 1 horror.\"\r\n end\r\n end\r\n end\r\n getObjectFromGUID(\"8b081b\").editButton({index = 6, tooltip = tool})\r\n getObjectFromGUID(\"bd0ff4\").editButton({index = 6, tooltip = tool})\r\n getObjectFromGUID(\"383d8b\").editButton({index = 6, tooltip = tool})\r\n getObjectFromGUID(\"0840d5\").editButton({index = 6, tooltip = tool})\r\nend\r\n",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "d3abc7",
"Name": "Notecard",
"Transform": {
"posX": 23.7537,
"posY": 1.51452816,
"posZ": -13.1289148,
"rotX": 0.0798758939,
"rotY": 89.99262,
"rotZ": 359.983124,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Arkham SCE 2.0.1 - 11/6/2021 Page 1",
"Description": "Added jaqenZann's Navigation Overlay! A bag nearby the Overlay Tile contains more info.\n\nAdded Tikatoy's Innsmouth Conspiracy Helpers, and updated Tikatoy's Upkeep Button to v4.3!\n\nAdded The Fall of the House of Usher, a fan-made scenario by The Beard!",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "bb7b28",
"Name": "Notecard",
"Transform": {
"posX": 23.7536888,
"posY": 1.514528,
"posZ": -13.1289063,
"rotX": 0.0798760056,
"rotY": 89.99263,
"rotZ": 359.983124,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Arkham SCE 2.0.1 - 11/6/2021 Page 2",
"Description": "Damage tokens now go up in state up to 50, rather than only up to 9. Thank you, The_Reaver!\n\nThanks to updates by Buhallin, the deck importer should now support Parallel Investigators as well as Joe Diamond's Hunch Deck!\n\nThe deck importer now defaults to private decks, rather than published decks.",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"3": {
"GUID": "191cd3",
"Name": "Notecard",
"Transform": {
"posX": 23.7536926,
"posY": 1.51452816,
"posZ": -13.1289091,
"rotX": 0.07987425,
"rotY": 89.99262,
"rotZ": 359.983124,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Arkham SCE 2.0.1 - 11/6/2021 Page 3",
"Description": "Added Nightmare Town Pack, a set of custom investigators by The Popest!\n\nAdded a new tool by Pyxel, the Tooltip Renamer. Use to change the tooltip of the draw chaos token button.\n\nFixed Set-Aside chests in the Innsmouth Conspiracy having bad asset URLs.",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"4": {
"GUID": "70d7fa",
"Name": "Notecard",
"Transform": {
"posX": 23.7536964,
"posY": 1.51452816,
"posZ": -13.128912,
"rotX": 0.07987617,
"rotY": 89.99262,
"rotZ": 359.983124,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Arkham SCE 2.0.1 - 11/6/2021 Page 4",
"Description": "Updated Mint Tea Fan's Lola Hayes Rework to the latest workshop version. (Thanks to the 2.0.0 rework to content downloading, you may have caught this update already!)\n\nThanks to everyone for your submissions and for your patience!",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
}
]
}