\r\nlocal token_precedence = {\r\n [\"Skull\"] = -1,\r\n [\"Cultist\"] = -2,\r\n [\"Tablet\"] = -3,\r\n [\"Elder Thing\"] = -4,\r\n\r\n [\"Elder Sign\"] = 100,\r\n [\"Auto-fail\"] = -100,\r\n\r\n [\"Bless\"] = -1,\r\n [\"Curse\"] = -2,\r\n [\"Frost\"] = -3,\r\n [\"\"] = -1000,\r\n}\r\n\r\nlocal function token_value_comparator(left, right)\r\n if left.value>right.value then return true\r\n elseif right.value>left.value then return false\r\n elseif left.precedence>right.precedence then return true\r\n elseif right.precedence>left.precedence then return false\r\n else return left.token:getGUID() > right.token:getGUID()\r\n end\r\nend\r\n\r\nlocal function do_position()\r\n local data = {}\r\n\r\n for index, token in ipairs(tracking) do\r\n local name = token:getName()\r\n\r\n data[index] = {\r\n token= token,\r\n value = tonumber(name) or tonumber(self.UI:getValue(name_ids[name])),\r\n precedence = token_precedence[name] or 0\r\n }\r\n end\r\n\r\n table.sort(data, token_value_comparator)\r\n\r\n local pos = self:getPosition()\r\n local location = {}\r\n\r\n pos[left_right] = pos[left_right] + offsets[left_right]\r\n\r\n location[left_right] = pos[left_right]\r\n location[up_down] = pos[up_down]\r\n location[vertical] = pos[vertical]\r\n\r\n local current_value = data[1].value\r\n\r\n for _, item in ipairs(data) do\r\n ---@type TTSObject\r\n local token = item.token\r\n\r\n ---@type number\r\n local value = item.value\r\n\r\n if value~=current_value then\r\n location[left_right] = pos[left_right]\r\n location[up_down] = location[up_down] + offsets[up_down]\r\n current_value = value\r\n end\r\n\r\n token:setPosition(location)\r\n token:setRotation(rotation)\r\n location[left_right] = location[left_right] + offsets[left_right]\r\n end\r\n\r\nend\r\n\r\nfunction layout()\r\n for _, token in ipairs(tracking) do\r\n token:destruct()\r\n end\r\n\r\n tracking = {}\r\n\r\n local chaos_bag = get_chaos_bag()\r\n\r\n local size = #chaos_bag:getObjects()\r\n\r\n for _,data in ipairs(chaos_bag:getObjects()) do\r\n chaos_bag:takeObject {\r\n guid = data.guid,\r\n smooth = false,\r\n ---@param tok TTSObject\r\n callback_function = function (tok)\r\n local clone = tok:clone()\r\n Wait.frames(function () chaos_bag:putObject(clone) end, 1)\r\n table.insert(tracking, tok)\r\n end\r\n }\r\n end\r\n\r\n Wait.condition(function () do_position() end, function () return size==#tracking end)\r\nend\r\n",
"LuaScriptState": "{\"auto_update\":\"True\",\"tokens\":{\"autofail\":\"-100\",\"bless\":\"-105\",\"cultist\":\"0\",\"curse\":\"-106\",\"elder_sign\":\"100\",\"elder_thing\":\"0\",\"frost\":\"-107\",\"skull\":\"0\",\"tablet\":\"0\",\"unnamed\":\"0\"},\"tracking\":[]}",
"XmlUI": " \r\n 100\r\n \r\n \r\n\r\n \r\n 0\r\n \r\n \r\n\r\n \r\n 0\r\n \r\n \r\n\r\n \r\n 0\r\n \r\n \r\n\r\n \r\n 0\r\n \r\n \r\n\r\n \r\n -100\r\n \r\n \r\n\r\n \r\n -105\r\n \r\n \r\n\r\n \r\n -106\r\n \r\n \r\n\r\n \r\n -107\r\n \r\n \r\n\r\n \r\n 0\r\n \r\n \r\n\r\n \r\n \r\n"
},
{
"GUID": "3da8b6",
"Name": "Custom_Model",
"Transform": {
"posX": 30.2379246,
"posY": 4.40563774,
"posZ": -33.9165268,
"rotX": 359.92926,
"rotY": 270.0,
"rotZ": 0.01895313,
"scaleX": 0.725000262,
"scaleY": 0.725000262,
"scaleZ": 0.725000262
},
"Nickname": "Attachment/Facedown Helper",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": {
"1": {
"GUID": "ce6247",
"Name": "Custom_Model_Bag",
"Transform": {
"posX": 16.3471622,
"posY": 1.64091611,
"posZ": -21.31525,
"rotX": 359.920135,
"rotY": 270.000671,
"rotZ": 0.0168785024,
"scaleX": 0.725000262,
"scaleY": 0.725000262,
"scaleZ": 0.725000262
},
"Nickname": "Sefina Rousseau Helper",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.06274338,
"g": 0.443134964,
"b": 0.08627259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"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": ""
},
"2": {
"GUID": "1e28aa",
"Name": "Custom_Model_Bag",
"Transform": {
"posX": 16.3471642,
"posY": 1.64091611,
"posZ": -21.3152542,
"rotX": 359.920135,
"rotY": 270.0006,
"rotZ": 0.01688044,
"scaleX": 0.725000262,
"scaleY": 0.725000262,
"scaleZ": 0.725000262
},
"Nickname": "Diana Stanley Helper",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.3647036,
"g": 0.333331048,
"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": [
{
"Type": 0,
"Name": "combatIcon",
"URL": "http://cloud-3.steamusercontent.com/ugc/1754695581870520946/B61CD5BDAE28B1893809915C7C92A8B472BB65BB/"
}
]
},
"3": {
"GUID": "d866f5",
"Name": "Custom_Model_Bag",
"Transform": {
"posX": 16.3471642,
"posY": 1.64091611,
"posZ": -21.315258,
"rotX": 359.920135,
"rotY": 270.000549,
"rotZ": 0.0168815069,
"scaleX": 0.725000262,
"scaleY": 0.725000262,
"scaleZ": 0.725000262
},
"Nickname": "Gloria Goldberg Helper",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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/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.3471661,
"posY": 1.64091623,
"posZ": -21.3152618,
"rotX": 359.920135,
"rotY": 270.0005,
"rotZ": 0.0168767888,
"scaleX": 0.725000262,
"scaleY": 0.725000262,
"scaleZ": 0.725000262
},
"Nickname": "Crystallizer of Dreams Helper",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.06274352,
"g": 0.443135172,
"b": 0.0862727538
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"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": [
{
"Type": 0,
"Name": "combatIcon",
"URL": "http://cloud-3.steamusercontent.com/ugc/1754695581870520946/B61CD5BDAE28B1893809915C7C92A8B472BB65BB/"
}
]
},
"5": {
"GUID": "089f35",
"Name": "Custom_Model_Bag",
"Transform": {
"posX": 16.347168,
"posY": 1.64091635,
"posZ": -21.3152657,
"rotX": 359.920135,
"rotY": 270.000427,
"rotZ": 0.0168802254,
"scaleX": 0.725000262,
"scaleY": 0.725000262,
"scaleZ": 0.725000262
},
"Nickname": "Ancestral Knowledge Helper",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 0.5607843,
"b": 0.2470581
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"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": 12.8022881,
"posY": 1.64571238,
"posZ": -21.8569355,
"rotX": 359.9203,
"rotY": 270.000122,
"rotZ": 0.0168367587,
"scaleX": 0.725000262,
"scaleY": 0.725000262,
"scaleZ": 0.725000262
},
"Nickname": "Astronomical Atlas Helper",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.364704728,
"g": 0.333332181,
"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": ""
}
}
},
{
"GUID": "66c1cb",
"Name": "CardCustom",
"Transform": {
"posX": 30.7113819,
"posY": 4.26916647,
"posZ": -36.33073,
"rotX": 1.33882606,
"rotY": 269.997162,
"rotZ": 359.9685,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Guard Dog (2)",
"Description": "BETA CARD",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 557600,
"SidewaysCard": false,
"CustomDeck": {
"5576": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1656728123511552359/83597B252CFCE2EA0879043ABC8E17C835A898C3/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "ecd43e",
"Name": "CardCustom",
"Transform": {
"posX": 30.8752422,
"posY": 4.23061037,
"posZ": -35.7798958,
"rotX": 359.9331,
"rotY": 270.001373,
"rotZ": 0.0179197881,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Flashlight (3)",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 557700,
"SidewaysCard": false,
"CustomDeck": {
"5577": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1693905524260059716/6013BA52A88B8438F7514B943E48FE5D1DBB25A0/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "PLAYER_CARD_DATA_JSON = [[\r\n{\r\n \"Flashlight (3)\": {\r\n \"tokenType\": \"resource\",\r\n \"tokenCount\": 4\r\n }\r\n}\r\n]]\n\r\nPLAYER_CARD_DATA = JSON.decode(PLAYER_CARD_DATA_JSON)\r\n\r\nfunction onload(save_state)\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\nend\r\n",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "2e59f6",
"Name": "Bag",
"Transform": {
"posX": 29.2138844,
"posY": 4.035616,
"posZ": -36.22162,
"rotX": 359.978729,
"rotY": 0.00100699859,
"rotZ": 359.9373,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Deck Importer - Commands",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "f4b112",
"Name": "Checker_white",
"Transform": {
"posX": -48.10565,
"posY": 3.41714334,
"posZ": -75.43099,
"rotX": 358.359924,
"rotY": 0.211258739,
"rotZ": 178.454788,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"import_command"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"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": "---\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": "400e1a",
"Name": "Checker_white",
"Transform": {
"posX": -48.1076851,
"posY": 3.41510534,
"posZ": -74.0850754,
"rotX": 0.0208911747,
"rotY": 270.02713,
"rotZ": 180.0168,
"scaleX": 0.350000441,
"scaleY": 0.350000441,
"scaleZ": 0.350000441
},
"Nickname": "Proxy Card Command",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"import_command"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"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": "---\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": -48.10487,
"posY": 3.4153235,
"posZ": -73.34305,
"rotX": 0.020905029,
"rotY": 269.976685,
"rotZ": 180.016785,
"scaleX": 0.350000441,
"scaleY": 0.350000441,
"scaleZ": 0.350000441
},
"Nickname": "Move Command",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"import_command"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"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": "---\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": -48.1045723,
"posY": 3.41552949,
"posZ": -72.64007,
"rotX": 0.0208915975,
"rotY": 270.023926,
"rotZ": 180.0168,
"scaleX": 0.350000441,
"scaleY": 0.350000441,
"scaleZ": 0.350000441
},
"Nickname": "Zone Command",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"import_command"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"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": "---\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": -48.1041374,
"posY": 3.41491437,
"posZ": -74.74271,
"rotX": 0.0208894648,
"rotY": 270.03006,
"rotZ": 180.0168,
"scaleX": 0.350000441,
"scaleY": 0.350000441,
"scaleZ": 0.350000441
},
"Nickname": "Proxy Investigator Command",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"import_command"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"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": "---\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": -45.4980621,
"posY": 3.22554684,
"posZ": -77.73321,
"rotX": 359.9791,
"rotY": 90.0282745,
"rotZ": 359.983276,
"scaleX": 0.55,
"scaleY": 0.55,
"scaleZ": 0.55
},
"Nickname": "Deck Importer Reference Guide",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"MaterialIndex": -1,
"MeshIndex": -1,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomPDF": {
"PDFUrl": "http://cloud-3.steamusercontent.com/ugc/1700659722106672329/E7690C91C2A67EE07244C7434DCCF49CCE62B51D/",
"PDFPassword": "",
"PDFPage": 0,
"PDFPageOffset": 0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
}
]
}
]
},
{
"GUID": "750fdd",
"Name": "Custom_Model_Bag",
"Transform": {
"posX": -20.8025589,
"posY": 1.38427436,
"posZ": 91.59856,
"rotX": 0.0208071861,
"rotY": 270.011719,
"rotZ": 0.0167743061,
"scaleX": 1.2,
"scaleY": 1.2,
"scaleZ": 1.2
},
"Nickname": "Weakness decks",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "https://pastebin.com/raw/ALrYhQGb",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/952965722516372129/745E93331A66C547C69B39EAD5044A72B8D732D3/",
"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=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by 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\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=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={-1,0.1,-2.1}, rotation={0,0,0}, height=350, width=900,\r\n font_size=250, 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,0.1,-3.7}, rotation={0,0,0}, height=350, width=900,\r\n font_size=250, 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,0.1,-2.1}, rotation={0,0,0}, height=350, width=900,\r\n font_size=250, 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,0.1,-3.7}, rotation={0,0,0}, height=350, width=900,\r\n font_size=250, 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,0.1,-2.9}, rotation={0,0,0}, height=350, width=900,\r\n font_size=250, 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,0.1,-2.9}, rotation={0,0,0}, height=350, width=900,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj, 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,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\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=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=\"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\":{\"0b361d\":{\"lock\":false,\"pos\":{\"x\":-20.9388751983643,\"y\":1.29235625267029,\"z\":83.3067245483398},\"rot\":{\"x\":0.0208030957728624,\"y\":270.018493652344,\"z\":180.016784667969}},\"0da7f2\":{\"lock\":false,\"pos\":{\"x\":-20.938871383667,\"y\":1.31228566169739,\"z\":85.6067276000977},\"rot\":{\"x\":0.0208079200237989,\"y\":270.001556396484,\"z\":180.01676940918}},\"120210\":{\"lock\":false,\"pos\":{\"x\":-24.453332901001,\"y\":1.30417060852051,\"z\":78.6900253295898},\"rot\":{\"x\":0.020808357745409,\"y\":269.999877929688,\"z\":180.01676940918}},\"15e75e\":{\"lock\":false,\"pos\":{\"x\":-24.4533653259277,\"y\":1.30551850795746,\"z\":83.2946319580078},\"rot\":{\"x\":0.0208085421472788,\"y\":269.999725341797,\"z\":180.01676940918}},\"193ddf\":{\"lock\":false,\"pos\":{\"x\":-20.9388751983643,\"y\":1.30063784122467,\"z\":78.7067260742188},\"rot\":{\"x\":0.0208050422370434,\"y\":270.011505126953,\"z\":180.01676940918}},\"516413\":{\"lock\":false,\"pos\":{\"x\":-20.9388847351074,\"y\":1.29804623126984,\"z\":53.4066505432129},\"rot\":{\"x\":0.0208085048943758,\"y\":269.999877929688,\"z\":180.01676940918}},\"58de9c\":{\"lock\":false,\"pos\":{\"x\":-24.4533710479736,\"y\":1.29733824729919,\"z\":71.7946090698242},\"rot\":{\"x\":0.0208083838224411,\"y\":270.000030517578,\"z\":180.01676940918}},\"62c248\":{\"lock\":false,\"pos\":{\"x\":-20.9388732910156,\"y\":1.28899002075195,\"z\":71.8067245483398},\"rot\":{\"x\":0.0208067409694195,\"y\":270.005554199219,\"z\":180.01676940918}},\"728f7e\":{\"lock\":false,\"pos\":{\"x\":-24.4533596038818,\"y\":1.33026194572449,\"z\":85.5946197509766},\"rot\":{\"x\":0.0208084657788277,\"y\":269.999481201172,\"z\":180.01676940918}},\"9c5822\":{\"lock\":false,\"pos\":{\"x\":-20.9388732910156,\"y\":1.29515051841736,\"z\":76.4067230224609},\"rot\":{\"x\":0.0208044853061438,\"y\":270.013031005859,\"z\":180.016784667969}},\"a24cb2\":{\"lock\":false,\"pos\":{\"x\":-20.9389095306396,\"y\":1.29111111164093,\"z\":62.606575012207},\"rot\":{\"x\":0.0208084378391504,\"y\":270,\"z\":180.01676940918}},\"c0f36d\":{\"lock\":false,\"pos\":{\"x\":-20.9388771057129,\"y\":1.28831684589386,\"z\":69.5069198608398},\"rot\":{\"x\":0.0208085775375366,\"y\":269.99951171875,\"z\":180.01676940918}},\"c276cb\":{\"lock\":false,\"pos\":{\"x\":-24.4534111022949,\"y\":1.30013060569763,\"z\":64.8945617675781},\"rot\":{\"x\":0.0208084024488926,\"y\":269.999938964844,\"z\":180.01676940918}},\"c97be9\":{\"lock\":false,\"pos\":{\"x\":-20.9388904571533,\"y\":1.29457867145538,\"z\":58.0065536499023},\"rot\":{\"x\":0.0208041872829199,\"y\":270.014221191406,\"z\":180.016784667969}},\"d95bd6\":{\"lock\":false,\"pos\":{\"x\":-24.4533920288086,\"y\":1.55807101726532,\"z\":57.9945068359375},\"rot\":{\"x\":0.0207986924797297,\"y\":270.034698486328,\"z\":180.016799926758}},\"f9215d\":{\"lock\":false,\"pos\":{\"x\":-20.9388809204102,\"y\":1.29659843444824,\"z\":64.9066696166992},\"rot\":{\"x\":0.0208041723817587,\"y\":270.014099121094,\"z\":180.016784667969}}}}",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "97c597",
"Name": "Custom_Model_Bag",
"Transform": {
"posX": -20.8025684,
"posY": 1.6520623,
"posZ": 91.59856,
"rotX": 0.02080705,
"rotY": 270.011719,
"rotZ": 0.0167741012,
"scaleX": 1.2,
"scaleY": 1.2,
"scaleZ": 1.2
},
"Nickname": "Weakness decks",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"MaterialIndex": -1,
"MeshIndex": -1,
"CustomMesh": {
"MeshURL": "https://pastebin.com/raw/ALrYhQGb",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/952965722516372129/745E93331A66C547C69B39EAD5044A72B8D732D3/",
"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=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by 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\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=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={-1,0.1,-2.1}, rotation={0,0,0}, height=350, width=900,\r\n font_size=250, 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,0.1,-3.7}, rotation={0,0,0}, height=350, width=900,\r\n font_size=250, 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,0.1,-2.1}, rotation={0,0,0}, height=350, width=900,\r\n font_size=250, 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,0.1,-3.7}, rotation={0,0,0}, height=350, width=900,\r\n font_size=250, 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,0.1,-2.9}, rotation={0,0,0}, height=350, width=900,\r\n font_size=250, 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,0.1,-2.9}, rotation={0,0,0}, height=350, width=900,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj, 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,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\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=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=\"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\":{\"0b361d\":{\"lock\":false,\"pos\":{\"x\":-20.9388751983643,\"y\":1.29235625267029,\"z\":83.3067245483398},\"rot\":{\"x\":0.0208030957728624,\"y\":270.018493652344,\"z\":180.016784667969}},\"0da7f2\":{\"lock\":false,\"pos\":{\"x\":-20.938871383667,\"y\":1.31228566169739,\"z\":85.6067276000977},\"rot\":{\"x\":0.0208079200237989,\"y\":270.001556396484,\"z\":180.01676940918}},\"120210\":{\"lock\":false,\"pos\":{\"x\":-24.453332901001,\"y\":1.30417060852051,\"z\":78.6900253295898},\"rot\":{\"x\":0.020808357745409,\"y\":269.999877929688,\"z\":180.01676940918}},\"15e75e\":{\"lock\":false,\"pos\":{\"x\":-24.4533653259277,\"y\":1.30551850795746,\"z\":83.2946319580078},\"rot\":{\"x\":0.0208085421472788,\"y\":269.999725341797,\"z\":180.01676940918}},\"193ddf\":{\"lock\":false,\"pos\":{\"x\":-20.9388751983643,\"y\":1.30063784122467,\"z\":78.7067260742188},\"rot\":{\"x\":0.0208050422370434,\"y\":270.011505126953,\"z\":180.01676940918}},\"516413\":{\"lock\":false,\"pos\":{\"x\":-20.9388847351074,\"y\":1.29804623126984,\"z\":53.4066505432129},\"rot\":{\"x\":0.0208085048943758,\"y\":269.999877929688,\"z\":180.01676940918}},\"58de9c\":{\"lock\":false,\"pos\":{\"x\":-24.4533710479736,\"y\":1.29733824729919,\"z\":71.7946090698242},\"rot\":{\"x\":0.0208083838224411,\"y\":270.000030517578,\"z\":180.01676940918}},\"62c248\":{\"lock\":false,\"pos\":{\"x\":-20.9388732910156,\"y\":1.28899002075195,\"z\":71.8067245483398},\"rot\":{\"x\":0.0208067409694195,\"y\":270.005554199219,\"z\":180.01676940918}},\"728f7e\":{\"lock\":false,\"pos\":{\"x\":-24.4533596038818,\"y\":1.33026194572449,\"z\":85.5946197509766},\"rot\":{\"x\":0.0208084657788277,\"y\":269.999481201172,\"z\":180.01676940918}},\"9c5822\":{\"lock\":false,\"pos\":{\"x\":-20.9388732910156,\"y\":1.29515051841736,\"z\":76.4067230224609},\"rot\":{\"x\":0.0208044853061438,\"y\":270.013031005859,\"z\":180.016784667969}},\"a24cb2\":{\"lock\":false,\"pos\":{\"x\":-20.9389095306396,\"y\":1.29111111164093,\"z\":62.606575012207},\"rot\":{\"x\":0.0208084378391504,\"y\":270,\"z\":180.01676940918}},\"c0f36d\":{\"lock\":false,\"pos\":{\"x\":-20.9388771057129,\"y\":1.28831684589386,\"z\":69.5069198608398},\"rot\":{\"x\":0.0208085775375366,\"y\":269.99951171875,\"z\":180.01676940918}},\"c276cb\":{\"lock\":false,\"pos\":{\"x\":-24.4534111022949,\"y\":1.30013060569763,\"z\":64.8945617675781},\"rot\":{\"x\":0.0208084024488926,\"y\":269.999938964844,\"z\":180.01676940918}},\"c97be9\":{\"lock\":false,\"pos\":{\"x\":-20.9388904571533,\"y\":1.29457867145538,\"z\":58.0065536499023},\"rot\":{\"x\":0.0208041872829199,\"y\":270.014221191406,\"z\":180.016784667969}},\"d95bd6\":{\"lock\":false,\"pos\":{\"x\":-24.4533920288086,\"y\":1.55807101726532,\"z\":57.9945068359375},\"rot\":{\"x\":0.0207986924797297,\"y\":270.034698486328,\"z\":180.016799926758}},\"f9215d\":{\"lock\":false,\"pos\":{\"x\":-20.9388809204102,\"y\":1.29659843444824,\"z\":64.9066696166992},\"rot\":{\"x\":0.0208041723817587,\"y\":270.014099121094,\"z\":180.016784667969}}}}",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "c276cb",
"Name": "Deck",
"Transform": {
"posX": -20.8025589,
"posY": 1.38427436,
"posZ": 91.59856,
"rotX": 0.0208084024,
"rotY": 269.999939,
"rotZ": 180.016769,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "The Scarlet Keys",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": false,
"SidewaysCard": false,
"DeckIDs": [
379152,
379151,
379150,
379149,
379148
],
"CustomDeck": {
"3791": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1814412497119474921/33ED44071C8BCA7379B0E8031F47169B73639E37/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 9,
"NumHeight": 6,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "6a0d53",
"Name": "Card",
"Transform": {
"posX": -5.305324,
"posY": 1.277402,
"posZ": 70.74118,
"rotX": 0.0208082665,
"rotY": 270.0012,
"rotZ": 0.0167716891,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Underprepared",
"Description": "Basic Weakness",
"GMNotes": "{\n \"id\": \"09128\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Blunder.\",\n \"permanent\": false,\n \"weakness\": true\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 379152,
"SidewaysCard": false,
"CustomDeck": {
"3791": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1814412497119474921/33ED44071C8BCA7379B0E8031F47169B73639E37/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 9,
"NumHeight": 6,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "329f2f",
"Name": "Card",
"Transform": {
"posX": -5.048062,
"posY": 1.51179326,
"posZ": 70.38751,
"rotX": 0.0170229655,
"rotY": 270.0004,
"rotZ": 11.0057287,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Ectoplasmic Horror",
"Description": "Basic Weakness",
"GMNotes": "{\n \"id\": \"09127\",\n \"type\": \"Enemy\",\n \"class\": \"Neutral\",\n \"traits\": \"Monster. Geist.\",\n \"permanent\": false,\n \"weakness\": true\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 379151,
"SidewaysCard": false,
"CustomDeck": {
"3791": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1814412497119474921/33ED44071C8BCA7379B0E8031F47169B73639E37/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 9,
"NumHeight": 6,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "a92fa2",
"Name": "Card",
"Transform": {
"posX": -5.260252,
"posY": 1.36498022,
"posZ": 70.17065,
"rotX": 0.018081082,
"rotY": 270.000183,
"rotZ": 359.967682,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Pay Your Due",
"Description": "Basic Weakness",
"GMNotes": "{\n \"id\": \"09126\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Pact.\",\n \"permanent\": false,\n \"weakness\": true\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 379150,
"SidewaysCard": false,
"CustomDeck": {
"3791": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1814412497119474921/33ED44071C8BCA7379B0E8031F47169B73639E37/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 9,
"NumHeight": 6,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "f549b6",
"Name": "Card",
"Transform": {
"posX": -5.284719,
"posY": 1.37558913,
"posZ": 70.532486,
"rotX": 0.0141254179,
"rotY": 270.0001,
"rotZ": 0.453891844,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Quantum Paradox",
"Description": "Basic Weakness",
"GMNotes": "{\n \"id\": \"09125\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Paradox.\",\n \"permanent\": false,\n \"weakness\": true\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 379149,
"SidewaysCard": false,
"CustomDeck": {
"3791": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1814412497119474921/33ED44071C8BCA7379B0E8031F47169B73639E37/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 9,
"NumHeight": 6,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "76edfa",
"Name": "Card",
"Transform": {
"posX": -4.96131039,
"posY": 1.38555515,
"posZ": 70.41942,
"rotX": 0.013228449,
"rotY": 270.000061,
"rotZ": 0.454353422,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Lurker in the Dark",
"Description": "Basic Weakness",
"GMNotes": "{\n \"id\": \"09124\",\n \"type\": \"Enemy\",\n \"class\": \"Neutral\",\n \"traits\": \"Monster. Shoggoth.\",\n \"permanent\": false,\n \"weakness\": true\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 379148,
"SidewaysCard": false,
"CustomDeck": {
"3791": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1814412497119474921/33ED44071C8BCA7379B0E8031F47169B73639E37/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 9,
"NumHeight": 6,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "0b361d",
"Name": "Deck",
"Transform": {
"posX": -20.8025589,
"posY": 1.38427436,
"posZ": 91.59856,
"rotX": 0.0208029244,
"rotY": 270.0185,
"rotZ": 180.016785,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Return to the Dunwich Legacy",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": false,
"SidewaysCard": false,
"DeckIDs": [
547319,
547319
],
"CustomDeck": {
"5473": {
"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": "",
"ContainedObjects": [
{
"GUID": "31f72f",
"Name": "Card",
"Transform": {
"posX": 80.6700058,
"posY": 1.5195359,
"posZ": 80.590004,
"rotX": 0.020808259,
"rotY": 270.0,
"rotZ": 180.016769,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Through the Gates",
"Description": "Basic Weakness",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 547319,
"SidewaysCard": false,
"CustomDeck": {
"2659": {
"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": "fd9c56",
"Name": "Card",
"Transform": {
"posX": 80.6700058,
"posY": 1.319536,
"posZ": 80.590004,
"rotX": 0.020808259,
"rotY": 270.0,
"rotZ": 180.016769,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Through the Gates",
"Description": "Basic Weakness",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 547319,
"SidewaysCard": false,
"CustomDeck": {
"2659": {
"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": "0da7f2",
"Name": "Deck",
"Transform": {
"posX": -20.8025589,
"posY": 1.38427436,
"posZ": 91.59856,
"rotX": 0.0208079219,
"rotY": 270.001556,
"rotZ": 180.016769,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "The Dunwich Legacy",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": false,
"SidewaysCard": false,
"DeckIDs": [
537506,
537506,
537507,
537507,
537505,
537505
],
"CustomDeck": {
"5375": {
"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": "",
"ContainedObjects": [
{
"GUID": "d28be6",
"Name": "Card",
"Transform": {
"posX": 84.6602859,
"posY": 1.47444046,
"posZ": 84.9897461,
"rotX": 0.0185761936,
"rotY": 269.8689,
"rotZ": 354.901,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Internal Injury",
"Description": "Basic Weakness",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 537506,
"SidewaysCard": false,
"CustomDeck": {
"2623": {
"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": "4fb446",
"Name": "Card",
"Transform": {
"posX": 84.63887,
"posY": 1.376687,
"posZ": 83.34652,
"rotX": 0.0193456579,
"rotY": 269.996979,
"rotZ": 0.0182021931,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Internal Injury",
"Description": "Basic Weakness",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 537506,
"SidewaysCard": false,
"CustomDeck": {
"2623": {
"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": "016e3c",
"Name": "Card",
"Transform": {
"posX": 80.96729,
"posY": 1.37533462,
"posZ": 83.17558,
"rotX": 0.0208096765,
"rotY": 269.9989,
"rotZ": 0.016768232,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Chronophobia",
"Description": "Basic Weakness",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 537507,
"SidewaysCard": false,
"CustomDeck": {
"2623": {
"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": "eeb330",
"Name": "Card",
"Transform": {
"posX": 77.61771,
"posY": 1.37417972,
"posZ": 83.3862152,
"rotX": 0.02080846,
"rotY": 269.998749,
"rotZ": 0.0167724155,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Chronophobia",
"Description": "Basic Weakness",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 537507,
"SidewaysCard": false,
"CustomDeck": {
"2623": {
"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": "8df93a",
"Name": "Card",
"Transform": {
"posX": 74.0187149,
"posY": 1.37291312,
"posZ": 83.52449,
"rotX": 0.0208078064,
"rotY": 269.9976,
"rotZ": 0.0167761613,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Indebted",
"Description": "Basic Weakness",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 537505,
"SidewaysCard": false,
"CustomDeck": {
"2623": {
"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": "b2ef43",
"Name": "Card",
"Transform": {
"posX": 69.6492,
"posY": 1.37130547,
"posZ": 83.45329,
"rotX": 0.02080887,
"rotY": 269.997437,
"rotZ": 0.0167718846,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Indebted",
"Description": "Basic Weakness",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 537505,
"SidewaysCard": false,
"CustomDeck": {
"2623": {
"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": "120210",
"Name": "Deck",
"Transform": {
"posX": -20.8025589,
"posY": 1.38427436,
"posZ": 91.59856,
"rotX": 0.02080841,
"rotY": 269.999878,
"rotZ": 180.016769,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Starter Decks",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": false,
"SidewaysCard": false,
"DeckIDs": [
538802,
538702,
538602,
547402,
547502
],
"CustomDeck": {
"5388": {
"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
},
"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
},
"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
},
"5474": {
"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
},
"5475": {
"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": "",
"ContainedObjects": [
{
"GUID": "a3bc7a",
"Name": "Card",
"Transform": {
"posX": -9.351385,
"posY": 3.14429832,
"posZ": 62.6353645,
"rotX": 0.0208026078,
"rotY": 270.0193,
"rotZ": 0.0167782847,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Atychiphobia",
"Description": "Basic Weakness",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 538802,
"SidewaysCard": false,
"CustomDeck": {
"5388": {
"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": "fc4168",
"Name": "Card",
"Transform": {
"posX": -9.75233,
"posY": 3.14434218,
"posZ": 63.64426,
"rotX": 0.020803066,
"rotY": 270.019348,
"rotZ": 0.01678034,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Nihilism",
"Description": "Basic Weakness",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 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": "c45e67",
"Name": "Card",
"Transform": {
"posX": -10.2776136,
"posY": 3.143537,
"posZ": 61.5452423,
"rotX": 0.0208035521,
"rotY": 270.019348,
"rotZ": 0.0167791229,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Reckless",
"Description": "Basic Weakness",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 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": "a2e7d7",
"Name": "Card",
"Transform": {
"posX": -19.7060337,
"posY": 3.22103786,
"posZ": 63.48862,
"rotX": 0.0208080374,
"rotY": 270.000183,
"rotZ": 0.0167708565,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Obsessive",
"Description": "Basic Weakness",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 547402,
"SidewaysCard": false,
"CustomDeck": {
"2662": {
"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": "2204cc",
"Name": "Card",
"Transform": {
"posX": -28.0473461,
"posY": 3.25570321,
"posZ": 67.25488,
"rotX": 0.0208080579,
"rotY": 270.000977,
"rotZ": 0.0167710315,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Self-Destructive",
"Description": "Basic Weakness",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 547502,
"SidewaysCard": false,
"CustomDeck": {
"2662": {
"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": "15e75e",
"Name": "Deck",
"Transform": {
"posX": -20.8025589,
"posY": 1.38427436,
"posZ": 91.59856,
"rotX": 0.0208084118,
"rotY": 269.999725,
"rotZ": 180.016769,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Advanced",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": false,
"SidewaysCard": false,
"DeckIDs": [
545213,
545214,
537612,
537608,
537609
],
"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
},
"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": "",
"ContainedObjects": [
{
"GUID": "39452d",
"Name": "Card",
"Transform": {
"posX": -24.4533634,
"posY": 1.39045751,
"posZ": 83.29463,
"rotX": 0.0124847172,
"rotY": 270.0,
"rotZ": 180.010345,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Fine Print",
"Description": "Weakness",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 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": "180b5b",
"Name": "Card",
"Transform": {
"posX": -24.45338,
"posY": 1.398439,
"posZ": 83.29462,
"rotX": 0.0113302972,
"rotY": 269.999573,
"rotZ": 180.429443,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Sell Your Soul",
"Description": "Weakness",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 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": "dc5b38",
"Name": "Card",
"Transform": {
"posX": -27.2329922,
"posY": 1.34537375,
"posZ": 90.58084,
"rotX": 0.0124803707,
"rotY": 270.000031,
"rotZ": 180.010025,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "The Price of Failure",
"Description": "Weakness",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 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": "85e7d9",
"Name": "Card",
"Transform": {
"posX": -26.97677,
"posY": 1.32137442,
"posZ": 90.6933746,
"rotX": 0.0208084974,
"rotY": 269.999268,
"rotZ": 180.016769,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Accursed Fate",
"Description": "Weakness",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 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": "6cbc01",
"Name": "Card",
"Transform": {
"posX": -26.8721733,
"posY": 1.28023934,
"posZ": 90.61607,
"rotX": 0.0208084024,
"rotY": 269.999939,
"rotZ": 180.016769,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "The Bell Tolls",
"Description": "Weakness",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 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": "193ddf",
"Name": "Deck",
"Transform": {
"posX": -20.8025589,
"posY": 1.38427436,
"posZ": 91.59856,
"rotX": 0.0208049733,
"rotY": 270.0115,
"rotZ": 180.016769,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "The Path to Carcosa",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": false,
"SidewaysCard": false,
"DeckIDs": [
557903,
440510,
440510,
440515
],
"CustomDeck": {
"5579": {
"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
},
"4405": {
"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": "",
"ContainedObjects": [
{
"GUID": "4bcf5a",
"Name": "Card",
"Transform": {
"posX": -20.9389229,
"posY": 1.35666931,
"posZ": 78.70664,
"rotX": 0.0124845151,
"rotY": 270.000031,
"rotZ": 180.009949,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Drawing the Sign",
"Description": "Basic Weakness",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 557903,
"SidewaysCard": false,
"CustomDeck": {
"2663": {
"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": "29766c",
"Name": "Card",
"Transform": {
"posX": 84.76986,
"posY": 1.37477219,
"posZ": 76.5368347,
"rotX": 0.0208052341,
"rotY": 270.008362,
"rotZ": 0.01677476,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Overzealous",
"Description": "Basic Weakness",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 440510,
"SidewaysCard": false,
"CustomDeck": {
"2623": {
"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": "88a9b3",
"Name": "Card",
"Transform": {
"posX": 81.0201,
"posY": 1.373406,
"posZ": 76.52217,
"rotX": 0.0208056755,
"rotY": 270.00824,
"rotZ": 0.016777223,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Overzealous",
"Description": "Basic Weakness",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 440510,
"SidewaysCard": false,
"CustomDeck": {
"2623": {
"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": "da227d",
"Name": "Card",
"Transform": {
"posX": 77.00673,
"posY": 1.37194359,
"posZ": 76.50519,
"rotX": 0.0208081231,
"rotY": 269.999054,
"rotZ": 0.0167726167,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "The Thing That Follows",
"Description": "Enemy",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 440515,
"SidewaysCard": false,
"CustomDeck": {
"2623": {
"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": "516413",
"Name": "Deck",
"Transform": {
"posX": -20.8025589,
"posY": 1.38427436,
"posZ": 91.59856,
"rotX": 0.0208085664,
"rotY": 269.999878,
"rotZ": 180.016769,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "The Innsmouth Conspiracy",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": false,
"SidewaysCard": false,
"DeckIDs": [
547633,
547632,
547633,
558034,
547632
],
"CustomDeck": {
"5476": {
"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
},
"5580": {
"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": "",
"ContainedObjects": [
{
"GUID": "92f50c",
"Name": "Card",
"Transform": {
"posX": 12.6470013,
"posY": 1.33284175,
"posZ": 53.15561,
"rotX": 0.025468139,
"rotY": 269.999939,
"rotZ": 0.0134331463,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Dread Curse",
"Description": "Basic Weakness",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 547633,
"SidewaysCard": false,
"CustomDeck": {
"2663": {
"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": "960118",
"Name": "Card",
"Transform": {
"posX": 13.032135,
"posY": 1.333963,
"posZ": 56.4778023,
"rotX": 0.0227802545,
"rotY": 269.999939,
"rotZ": 0.0163529646,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Accursed Follower",
"Description": "Basic Weakness",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 547632,
"SidewaysCard": false,
"CustomDeck": {
"2663": {
"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": "162811",
"Name": "Card",
"Transform": {
"posX": 12.64701,
"posY": 1.28197241,
"posZ": 53.1192131,
"rotX": 0.0216190983,
"rotY": 270.0002,
"rotZ": 0.0151699139,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Dread Curse",
"Description": "Basic Weakness",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 547633,
"SidewaysCard": false,
"CustomDeck": {
"2663": {
"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": "cf472b",
"Name": "Card",
"Transform": {
"posX": -20.9389153,
"posY": 1.404008,
"posZ": 55.7066345,
"rotX": 358.363617,
"rotY": 270.001068,
"rotZ": 180.009674,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Day of Reckoning",
"Description": "Basic Weakness",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 558034,
"SidewaysCard": false,
"CustomDeck": {
"2663": {
"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": "da8711",
"Name": "Card",
"Transform": {
"posX": 13.032177,
"posY": 1.28309393,
"posZ": 56.4412727,
"rotX": 0.02051827,
"rotY": 269.999329,
"rotZ": 0.0162265059,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Accursed Follower",
"Description": "Basic Weakness",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 547632,
"SidewaysCard": false,
"CustomDeck": {
"2663": {
"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": "58de9c",
"Name": "Deck",
"Transform": {
"posX": -20.8025589,
"posY": 1.38427436,
"posZ": 91.59856,
"rotX": 0.0208083186,
"rotY": 270.000031,
"rotZ": 180.016769,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Edge of the Earth",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": false,
"SidewaysCard": false,
"DeckIDs": [
378918,
378917,
378919,
378920
],
"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": "",
"ContainedObjects": [
{
"GUID": "46b4a0",
"Name": "Card",
"Transform": {
"posX": 24.911335,
"posY": 1.29365909,
"posZ": 77.74595,
"rotX": 0.0208068565,
"rotY": 270.004,
"rotZ": 0.0167718623,
"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}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 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": "8f1420",
"Name": "Card",
"Transform": {
"posX": 19.095644,
"posY": 1.30563641,
"posZ": 77.997406,
"rotX": 0.0208017416,
"rotY": 270.004,
"rotZ": 0.7507199,
"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}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 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": "93e52d",
"Name": "Card",
"Transform": {
"posX": 19.864624,
"posY": 1.29251754,
"posZ": 80.12033,
"rotX": 0.02085018,
"rotY": 270.003357,
"rotZ": 0.01662941,
"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}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 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": 18.570755,
"posY": 1.29325843,
"posZ": 84.244,
"rotX": 0.0208070017,
"rotY": 270.004,
"rotZ": 0.0167719126,
"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}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 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": "62c248",
"Name": "Deck",
"Transform": {
"posX": -20.8025589,
"posY": 1.38427436,
"posZ": 91.59856,
"rotX": 0.0208066981,
"rotY": 270.005554,
"rotZ": 180.016769,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "The Forgotten Age",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": false,
"SidewaysCard": false,
"DeckIDs": [
547714,
547713
],
"CustomDeck": {
"5477": {
"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": "",
"ContainedObjects": [
{
"GUID": "ba2ae1",
"Name": "Card",
"Transform": {
"posX": 73.57277,
"posY": 1.367833,
"posZ": 67.00315,
"rotX": 0.0171475261,
"rotY": 269.999878,
"rotZ": 0.014829508,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Doomed",
"Description": "Basic Weakness",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 547714,
"SidewaysCard": false,
"CustomDeck": {
"2623": {
"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": "dd3d09",
"Name": "Card",
"Transform": {
"posX": 73.7898941,
"posY": 1.50798833,
"posZ": 66.88923,
"rotX": 0.0198830087,
"rotY": 269.998352,
"rotZ": 0.0241802726,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Dark Pact",
"Description": "Basic Weakness",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 547713,
"SidewaysCard": false,
"CustomDeck": {
"2623": {
"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": "728f7e",
"Name": "Deck",
"Transform": {
"posX": -20.8025589,
"posY": 1.38427436,
"posZ": 91.59856,
"rotX": 0.02080852,
"rotY": 269.999481,
"rotZ": 180.016769,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Core",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": false,
"SidewaysCard": false,
"DeckIDs": [
547716,
547717,
547718,
547703,
547704,
547702,
547701,
547701,
547700,
547700
],
"CustomDeck": {
"5477": {
"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": "",
"ContainedObjects": [
{
"GUID": "b239d7",
"Name": "Card",
"Transform": {
"posX": 59.38398,
"posY": 1.36537349,
"posZ": 75.9246,
"rotX": 0.02080847,
"rotY": 269.999084,
"rotZ": 0.0167746339,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Mob Enforcer",
"Description": "Enemy",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 547716,
"SidewaysCard": false,
"CustomDeck": {
"2623": {
"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": "16a89d",
"Name": "Card",
"Transform": {
"posX": 59.2340546,
"posY": 1.36607194,
"posZ": 78.4964752,
"rotX": 0.0208077766,
"rotY": 269.999542,
"rotZ": 0.016773073,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Silver Twilight Acolyte",
"Description": "Enemy",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 547717,
"SidewaysCard": false,
"CustomDeck": {
"2623": {
"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": "4ea68b",
"Name": "Card",
"Transform": {
"posX": 59.32571,
"posY": 1.3645314,
"posZ": 73.1198349,
"rotX": 0.0208079163,
"rotY": 269.999237,
"rotZ": 0.0167740583,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Stubborn Detective",
"Description": "Enemy",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 547718,
"SidewaysCard": false,
"CustomDeck": {
"2623": {
"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": "d83baf",
"Name": "Card",
"Transform": {
"posX": 59.276104,
"posY": 1.36351478,
"posZ": 69.70881,
"rotX": 0.0208085179,
"rotY": 269.998138,
"rotZ": 0.0167739056,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Psychosis",
"Description": "Basic Weakness",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 547703,
"SidewaysCard": false,
"CustomDeck": {
"2623": {
"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": "88ee43",
"Name": "Card",
"Transform": {
"posX": 58.93588,
"posY": 1.36254549,
"posZ": 67.02983,
"rotX": 0.01864637,
"rotY": 270.010132,
"rotZ": 0.0065060514,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Hypochondria",
"Description": "Basic Weakness",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 547704,
"SidewaysCard": false,
"CustomDeck": {
"2623": {
"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": "249d83",
"Name": "Card",
"Transform": {
"posX": 59.11796,
"posY": 1.48062611,
"posZ": 64.84444,
"rotX": 0.06331021,
"rotY": 269.989655,
"rotZ": 358.374146,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Haunted",
"Description": "Basic Weakness",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 547702,
"SidewaysCard": false,
"CustomDeck": {
"2623": {
"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": "3575a3",
"Name": "Card",
"Transform": {
"posX": 60.2334442,
"posY": 1.36171019,
"posZ": 62.84418,
"rotX": 0.0131824408,
"rotY": 269.998535,
"rotZ": 0.0226880386,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Paranoia",
"Description": "Basic Weakness",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 547701,
"SidewaysCard": false,
"CustomDeck": {
"2623": {
"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": "c17498",
"Name": "Card",
"Transform": {
"posX": 59.77021,
"posY": 1.36098135,
"posZ": 60.4401855,
"rotX": 0.02080495,
"rotY": 270.007172,
"rotZ": 0.0167757,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Paranoia",
"Description": "Basic Weakness",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 547701,
"SidewaysCard": false,
"CustomDeck": {
"2623": {
"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": "8598a4",
"Name": "Card",
"Transform": {
"posX": 59.72087,
"posY": 1.36020052,
"posZ": 57.8339,
"rotX": 0.0208095219,
"rotY": 269.9957,
"rotZ": 0.01677148,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Amnesia",
"Description": "Basic Weakness",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 547700,
"SidewaysCard": false,
"CustomDeck": {
"2623": {
"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": "2210c1",
"Name": "Card",
"Transform": {
"posX": 60.0020523,
"posY": 1.35961318,
"posZ": 55.47854,
"rotX": 0.0208090711,
"rotY": 269.9957,
"rotZ": 0.0167709384,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Amnesia",
"Description": "Basic Weakness",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 547700,
"SidewaysCard": false,
"CustomDeck": {
"2623": {
"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": "9c5822",
"Name": "Deck",
"Transform": {
"posX": -20.8025589,
"posY": 1.38427436,
"posZ": 91.59856,
"rotX": 0.0208044387,
"rotY": 270.013031,
"rotZ": 180.016785,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Return to The Path to Carcosa",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": false,
"SidewaysCard": false,
"DeckIDs": [
438124,
438122,
438123
],
"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": "",
"ContainedObjects": [
{
"GUID": "a5be8b",
"Name": "Card",
"Transform": {
"posX": 80.46176,
"posY": 1.37253177,
"posZ": 73.76154,
"rotX": 0.0148119656,
"rotY": 270.004944,
"rotZ": 0.0242835376,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Unspeakable Oath (Bloodthirst)",
"Description": "Basic Weakness",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 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": "ea0fa1",
"Name": "Card",
"Transform": {
"posX": 80.61448,
"posY": 1.53051329,
"posZ": 73.92056,
"rotX": 359.5608,
"rotY": 270.008331,
"rotZ": 0.0357966721,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Unspeakable Oath (Cowardice)",
"Description": "Basic Weakness",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 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": "f6aba5",
"Name": "Card",
"Transform": {
"posX": 80.29785,
"posY": 1.53495085,
"posZ": 73.75409,
"rotX": 0.02094236,
"rotY": 269.999878,
"rotZ": 0.0147951907,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Unspeakable Oath (Curiosity)",
"Description": "Basic Weakness",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 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": "a24cb2",
"Name": "Deck",
"Transform": {
"posX": -20.8025589,
"posY": 1.38427436,
"posZ": 91.59856,
"rotX": 0.0208083373,
"rotY": 270.0,
"rotZ": 180.016769,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Return to The Circle Undone",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": false,
"SidewaysCard": false,
"DeckIDs": [
449520,
449534,
449534
],
"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": "",
"ContainedObjects": [
{
"GUID": "bad8cb",
"Name": "Card",
"Transform": {
"posX": 6.814119,
"posY": 1.28015411,
"posZ": 66.21114,
"rotX": 0.02394379,
"rotY": 270.019226,
"rotZ": -0.00456261728,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Damned",
"Description": "Basic Weakness",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 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": "7bcaf3",
"Name": "Card",
"Transform": {
"posX": 7.53534651,
"posY": 1.27956867,
"posZ": 61.9736366,
"rotX": 0.0205253065,
"rotY": 270.0191,
"rotZ": 0.0208346955,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "The Devil • XV",
"Description": "Your Shadow Hungers",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 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": "e9ae4e",
"Name": "Card",
"Transform": {
"posX": 7.808851,
"posY": 1.31374824,
"posZ": 61.9812546,
"rotX": 359.950928,
"rotY": 270.019,
"rotZ": 359.946136,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "The Devil • XV",
"Description": "Your Shadow Hungers",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 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": "c0f36d",
"Name": "Deck",
"Transform": {
"posX": -20.8025589,
"posY": 1.38427436,
"posZ": 91.59856,
"rotX": 0.0208085626,
"rotY": 269.9995,
"rotZ": 180.016769,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Return to The Forgotten Age",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": false,
"SidewaysCard": false,
"DeckIDs": [
545211,
545212
],
"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": "",
"ContainedObjects": [
{
"GUID": "121b2d",
"Name": "Card",
"Transform": {
"posX": -20.93893,
"posY": 1.35879576,
"posZ": 69.50663,
"rotX": 0.0124838371,
"rotY": 270.0,
"rotZ": 180.010132,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Dendromorphosis",
"Description": "Basic Weakness",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 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": "e27c93",
"Name": "Card",
"Transform": {
"posX": -20.93893,
"posY": 1.34903657,
"posZ": 69.50663,
"rotX": 0.02080827,
"rotY": 269.9996,
"rotZ": 180.016769,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Offer You Cannot Refuse",
"Description": "Basic Weakness",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 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": "c97be9",
"Name": "Deck",
"Transform": {
"posX": -20.8025589,
"posY": 1.38427436,
"posZ": 91.59856,
"rotX": 0.0208042488,
"rotY": 270.014221,
"rotZ": 180.016785,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "The Dream-Eaters",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": false,
"SidewaysCard": false,
"DeckIDs": [
438125,
438127,
438128,
438126
],
"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": "",
"ContainedObjects": [
{
"GUID": "eff3c8",
"Name": "Card",
"Transform": {
"posX": 82.3005,
"posY": 1.37097037,
"posZ": 66.61211,
"rotX": 0.0208081,
"rotY": 269.999756,
"rotZ": 0.0167713575,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Self-Centered",
"Description": "Basic Weakness",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 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": "57e648",
"Name": "Card",
"Transform": {
"posX": 82.24709,
"posY": 1.371798,
"posZ": 69.50579,
"rotX": 0.0208078641,
"rotY": 269.9998,
"rotZ": 0.01677146,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Narcolepsy",
"Description": "Basic Weakness",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 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": "406ab2",
"Name": "Card",
"Transform": {
"posX": 80.44901,
"posY": 1.53057539,
"posZ": 58.7713966,
"rotX": 0.0195846576,
"rotY": 269.9999,
"rotZ": 0.0153481439,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Your Worst Nightmare",
"Description": "Basic Weakness",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 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": "447a08",
"Name": "Card",
"Transform": {
"posX": 80.45187,
"posY": 1.51685083,
"posZ": 58.63176,
"rotX": 0.02240032,
"rotY": 270.002625,
"rotZ": 0.00697853556,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Kleptomania",
"Description": "Basic Weakness",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 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": "d95bd6",
"Name": "Deck",
"Transform": {
"posX": -20.8025589,
"posY": 1.38427436,
"posZ": 91.59856,
"rotX": 0.0207986459,
"rotY": 270.0347,
"rotZ": 180.016785,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "All Weaknesses",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": false,
"SidewaysCard": false,
"DeckIDs": [
379152,
379151,
379150,
379149,
379148,
378918,
378917,
378919,
378920,
449520,
449534,
449534,
290807,
438122,
547833,
290805,
290817,
290321,
290813,
554603,
547402,
290818,
290806,
547502,
438126,
290321,
290800,
290804,
290320,
438124,
290806,
291019,
438125,
290801,
547832,
290803,
290320,
290815,
290816,
438128,
538702,
438123,
290810,
545211,
558134,
290801,
538602,
290800,
290802,
290805,
291019,
438127,
545212,
538802,
290810,
547832,
547833,
290814,
290807
],
"CustomDeck": {
"3791": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1814412497119474921/33ED44071C8BCA7379B0E8031F47169B73639E37/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 9,
"NumHeight": 6,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"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
},
"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
},
"2908": {
"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
},
"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
},
"5478": {
"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
},
"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
},
"5546": {
"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
},
"5474": {
"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
},
"5475": {
"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
},
"2910": {
"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
},
"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
},
"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
},
"5581": {
"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
},
"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
},
"5388": {
"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": "",
"ContainedObjects": [
{
"GUID": "6a0d53",
"Name": "Card",
"Transform": {
"posX": -3.36223245,
"posY": 1.2740525,
"posZ": 58.89695,
"rotX": 0.02808771,
"rotY": 270.004272,
"rotZ": 359.975769,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Underprepared",
"Description": "Basic Weakness",
"GMNotes": "{\n \"id\": \"09128\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Blunder.\",\n \"permanent\": false,\n \"weakness\": true\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 379152,
"SidewaysCard": false,
"CustomDeck": {
"3791": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1814412497119474921/33ED44071C8BCA7379B0E8031F47169B73639E37/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 9,
"NumHeight": 6,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "329f2f",
"Name": "Card",
"Transform": {
"posX": -3.186288,
"posY": 1.32066584,
"posZ": 58.86388,
"rotX": 359.651764,
"rotY": 270.011139,
"rotZ": 359.8724,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Ectoplasmic Horror",
"Description": "Basic Weakness",
"GMNotes": "{\n \"id\": \"09127\",\n \"type\": \"Enemy\",\n \"class\": \"Neutral\",\n \"traits\": \"Monster. Geist.\",\n \"permanent\": false,\n \"weakness\": true\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 379151,
"SidewaysCard": false,
"CustomDeck": {
"3791": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1814412497119474921/33ED44071C8BCA7379B0E8031F47169B73639E37/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 9,
"NumHeight": 6,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "a92fa2",
"Name": "Card",
"Transform": {
"posX": -3.30567479,
"posY": 1.35135043,
"posZ": 58.8243141,
"rotX": 0.0243930537,
"rotY": 269.9956,
"rotZ": 0.0123272641,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Pay Your Due",
"Description": "Basic Weakness",
"GMNotes": "{\n \"id\": \"09126\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Pact.\",\n \"permanent\": false,\n \"weakness\": true\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 379150,
"SidewaysCard": false,
"CustomDeck": {
"3791": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1814412497119474921/33ED44071C8BCA7379B0E8031F47169B73639E37/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 9,
"NumHeight": 6,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "f549b6",
"Name": "Card",
"Transform": {
"posX": -3.25173426,
"posY": 1.35885179,
"posZ": 58.9180145,
"rotX": 0.024816012,
"rotY": 269.894073,
"rotZ": 0.0146644646,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Quantum Paradox",
"Description": "Basic Weakness",
"GMNotes": "{\n \"id\": \"09125\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Paradox.\",\n \"permanent\": false,\n \"weakness\": true\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 379149,
"SidewaysCard": false,
"CustomDeck": {
"3791": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1814412497119474921/33ED44071C8BCA7379B0E8031F47169B73639E37/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 9,
"NumHeight": 6,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "76edfa",
"Name": "Card",
"Transform": {
"posX": -3.11795545,
"posY": 1.36667824,
"posZ": 58.6476974,
"rotX": 0.0225657672,
"rotY": 270.016968,
"rotZ": 0.0144255627,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Lurker in the Dark",
"Description": "Basic Weakness",
"GMNotes": "{\n \"id\": \"09124\",\n \"type\": \"Enemy\",\n \"class\": \"Neutral\",\n \"traits\": \"Monster. Shoggoth.\",\n \"permanent\": false,\n \"weakness\": true\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 379148,
"SidewaysCard": false,
"CustomDeck": {
"3791": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1814412497119474921/33ED44071C8BCA7379B0E8031F47169B73639E37/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 9,
"NumHeight": 6,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "46b4a0",
"Name": "Card",
"Transform": {
"posX": 24.911335,
"posY": 1.29365909,
"posZ": 77.74595,
"rotX": 0.0208068565,
"rotY": 270.004,
"rotZ": 0.0167718623,
"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}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 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": "8f1420",
"Name": "Card",
"Transform": {
"posX": 19.095644,
"posY": 1.30563641,
"posZ": 77.997406,
"rotX": 0.0208017416,
"rotY": 270.004,
"rotZ": 0.7507199,
"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}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 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": "93e52d",
"Name": "Card",
"Transform": {
"posX": 19.864624,
"posY": 1.29251754,
"posZ": 80.12033,
"rotX": 0.02085018,
"rotY": 270.003357,
"rotZ": 0.01662941,
"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}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 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": 18.570755,
"posY": 1.29325843,
"posZ": 84.244,
"rotX": 0.0208070017,
"rotY": 270.004,
"rotZ": 0.0167719126,
"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}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 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": "bad8cb",
"Name": "Card",
"Transform": {
"posX": 6.814119,
"posY": 1.28015411,
"posZ": 66.21114,
"rotX": 0.02394379,
"rotY": 270.019226,
"rotZ": -0.00456261728,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Damned",
"Description": "Basic Weakness",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 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": "7bcaf3",
"Name": "Card",
"Transform": {
"posX": 7.53534651,
"posY": 1.27956867,
"posZ": 61.9736366,
"rotX": 0.0205253065,
"rotY": 270.0191,
"rotZ": 0.0208346955,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "The Devil • XV",
"Description": "Your Shadow Hungers",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 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": "e9ae4e",
"Name": "Card",
"Transform": {
"posX": 7.808851,
"posY": 1.31374824,
"posZ": 61.9812546,
"rotX": 359.950928,
"rotY": 270.019,
"rotZ": 359.946136,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "The Devil • XV",
"Description": "Your Shadow Hungers",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 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": "eeb330",
"Name": "Card",
"Transform": {
"posX": 77.61771,
"posY": 1.37417972,
"posZ": 83.3862152,
"rotX": 0.02080846,
"rotY": 269.998749,
"rotZ": 0.0167724155,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Chronophobia",
"Description": "Basic Weakness",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 290807,
"SidewaysCard": false,
"CustomDeck": {
"2623": {
"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": "ea0fa1",
"Name": "Card",
"Transform": {
"posX": 80.61448,
"posY": 1.53051329,
"posZ": 73.92056,
"rotX": 359.5608,
"rotY": 270.008331,
"rotZ": 0.0357966721,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Unspeakable Oath (Cowardice)",
"Description": "Basic Weakness",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 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": "92f50c",
"Name": "Card",
"Transform": {
"posX": 12.6470013,
"posY": 1.33284175,
"posZ": 53.15561,
"rotX": 0.025468139,
"rotY": 269.999939,
"rotZ": 0.0134331463,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Dread Curse",
"Description": "Basic Weakness",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 547833,
"SidewaysCard": false,
"CustomDeck": {
"2663": {
"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": "b2ef43",
"Name": "Card",
"Transform": {
"posX": 69.6492,
"posY": 1.37130547,
"posZ": 83.45329,
"rotX": 0.02080887,
"rotY": 269.997437,
"rotZ": 0.0167718846,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Indebted",
"Description": "Basic Weakness",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 290805,
"SidewaysCard": false,
"CustomDeck": {
"2623": {
"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": "16a89d",
"Name": "Card",
"Transform": {
"posX": 59.2340546,
"posY": 1.36607194,
"posZ": 78.4964752,
"rotX": 0.0208077766,
"rotY": 269.999542,
"rotZ": 0.016773073,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Silver Twilight Acolyte",
"Description": "Enemy",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 290817,
"SidewaysCard": false,
"CustomDeck": {
"2623": {
"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": "cebf6a",
"Name": "Card",
"Transform": {
"posX": 66.63284,
"posY": 2.37017584,
"posZ": 46.429985,
"rotX": 0.0208064131,
"rotY": 270.002472,
"rotZ": 0.0167786125,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "The 13th Vision",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 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": "dd3d09",
"Name": "Card",
"Transform": {
"posX": 73.7898941,
"posY": 1.50798833,
"posZ": 66.88923,
"rotX": 0.0198830087,
"rotY": 269.998352,
"rotZ": 0.0241802726,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Dark Pact",
"Description": "Basic Weakness",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 290813,
"SidewaysCard": false,
"CustomDeck": {
"2623": {
"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": "10407c",
"Name": "Card",
"Transform": {
"posX": -13.02613,
"posY": 3.14305687,
"posZ": 62.6867752,
"rotX": 0.0208070353,
"rotY": 270.003876,
"rotZ": 0.016772043,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Drawing the Sign",
"Description": "Basic Weakness",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 554603,
"SidewaysCard": false,
"CustomDeck": {
"2663": {
"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": "a2e7d7",
"Name": "Card",
"Transform": {
"posX": -36.2246132,
"posY": 3.13493562,
"posZ": 64.63013,
"rotX": 0.0208077282,
"rotY": 269.999237,
"rotZ": 180.016769,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Obsessive",
"Description": "Basic Weakness",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 547402,
"SidewaysCard": false,
"CustomDeck": {
"5474": {
"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": "4ea68b",
"Name": "Card",
"Transform": {
"posX": 59.32571,
"posY": 1.3645314,
"posZ": 73.1198349,
"rotX": 0.0208079163,
"rotY": 269.999237,
"rotZ": 0.0167740583,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Stubborn Detective",
"Description": "Enemy",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 290818,
"SidewaysCard": false,
"CustomDeck": {
"2623": {
"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": "d28be6",
"Name": "Card",
"Transform": {
"posX": 84.6602859,
"posY": 1.47444046,
"posZ": 84.9897461,
"rotX": 0.0185761936,
"rotY": 269.8689,
"rotZ": 354.901,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Internal Injury",
"Description": "Basic Weakness",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 290806,
"SidewaysCard": false,
"CustomDeck": {
"2623": {
"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": "2204cc",
"Name": "Card",
"Transform": {
"posX": -34.67578,
"posY": 3.13617754,
"posZ": 67.7192154,
"rotX": 0.0208087862,
"rotY": 269.999146,
"rotZ": 180.016769,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Self-Destructive",
"Description": "Basic Weakness",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 547502,
"SidewaysCard": false,
"CustomDeck": {
"5475": {
"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": "447a08",
"Name": "Card",
"Transform": {
"posX": 80.45187,
"posY": 1.51685083,
"posZ": 58.63176,
"rotX": 0.02240032,
"rotY": 270.002625,
"rotZ": 0.00697853556,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Kleptomania",
"Description": "Basic Weakness",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 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": "e42f12",
"Name": "Card",
"Transform": {
"posX": 66.89174,
"posY": 2.369952,
"posZ": 45.3254356,
"rotX": 0.0208055452,
"rotY": 270.0067,
"rotZ": 0.01677739,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "The 13th Vision",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 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": "2210c1",
"Name": "Card",
"Transform": {
"posX": 60.0020523,
"posY": 1.35961318,
"posZ": 55.47854,
"rotX": 0.0208090711,
"rotY": 269.9957,
"rotZ": 0.0167709384,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Amnesia",
"Description": "Basic Weakness",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 290800,
"SidewaysCard": false,
"CustomDeck": {
"2623": {
"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": "88ee43",
"Name": "Card",
"Transform": {
"posX": 58.93588,
"posY": 1.36254549,
"posZ": 67.02983,
"rotX": 0.01864637,
"rotY": 270.010132,
"rotZ": 0.0065060514,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Hypochondria",
"Description": "Basic Weakness",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 290804,
"SidewaysCard": false,
"CustomDeck": {
"2623": {
"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": "cc65f3",
"Name": "Card",
"Transform": {
"posX": -61.4137726,
"posY": 3.57692623,
"posZ": 5.186873,
"rotX": 0.0208082758,
"rotY": 269.9998,
"rotZ": 0.0167729743,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "The Tower • XVI",
"Description": "Circumstances Beyond Your Control",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 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": "a5be8b",
"Name": "Card",
"Transform": {
"posX": 80.46176,
"posY": 1.37253177,
"posZ": 73.76154,
"rotX": 0.0148119656,
"rotY": 270.004944,
"rotZ": 0.0242835376,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Unspeakable Oath (Bloodthirst)",
"Description": "Basic Weakness",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 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": "4fb446",
"Name": "Card",
"Transform": {
"posX": 84.63887,
"posY": 1.376687,
"posZ": 83.34652,
"rotX": 0.0193456579,
"rotY": 269.996979,
"rotZ": 0.0182021931,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Internal Injury",
"Description": "Basic Weakness",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 290806,
"SidewaysCard": false,
"CustomDeck": {
"2623": {
"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": "fd9c56",
"Name": "Card",
"Transform": {
"posX": 81.04702,
"posY": 1.51482713,
"posZ": 81.20772,
"rotX": 0.0230280347,
"rotY": 269.9986,
"rotZ": 0.0147677548,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Through the Gates",
"Description": "Basic Weakness",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 291019,
"SidewaysCard": false,
"CustomDeck": {
"2659": {
"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": "eff3c8",
"Name": "Card",
"Transform": {
"posX": 82.3005,
"posY": 1.37097037,
"posZ": 66.61211,
"rotX": 0.0208081,
"rotY": 269.999756,
"rotZ": 0.0167713575,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Self-Centered",
"Description": "Basic Weakness",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 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": "c17498",
"Name": "Card",
"Transform": {
"posX": 59.77021,
"posY": 1.36098135,
"posZ": 60.4401855,
"rotX": 0.02080495,
"rotY": 270.007172,
"rotZ": 0.0167757,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Paranoia",
"Description": "Basic Weakness",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 290801,
"SidewaysCard": false,
"CustomDeck": {
"2623": {
"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": "da8711",
"Name": "Card",
"Transform": {
"posX": 13.032177,
"posY": 1.28309393,
"posZ": 56.4412727,
"rotX": 0.02051827,
"rotY": 269.999329,
"rotZ": 0.0162265059,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Accursed Follower",
"Description": "Basic Weakness",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 547832,
"SidewaysCard": false,
"CustomDeck": {
"2663": {
"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": "d83baf",
"Name": "Card",
"Transform": {
"posX": 59.276104,
"posY": 1.36351478,
"posZ": 69.70881,
"rotX": 0.0208085179,
"rotY": 269.998138,
"rotZ": 0.0167739056,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Psychosis",
"Description": "Basic Weakness",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 290803,
"SidewaysCard": false,
"CustomDeck": {
"2623": {
"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": "d5c93d",
"Name": "Card",
"Transform": {
"posX": -65.1514359,
"posY": 3.57692623,
"posZ": 6.00838327,
"rotX": 0.0208086111,
"rotY": 269.999878,
"rotZ": 0.0167732742,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "The Tower • XVI",
"Description": "Circumstances Beyond Your Control",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 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": "da227d",
"Name": "Card",
"Transform": {
"posX": 77.00673,
"posY": 1.37194359,
"posZ": 76.50519,
"rotX": 0.0208081231,
"rotY": 269.999054,
"rotZ": 0.0167726167,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "The Thing That Follows",
"Description": "Enemy",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 290815,
"SidewaysCard": false,
"CustomDeck": {
"2623": {
"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": "b239d7",
"Name": "Card",
"Transform": {
"posX": 59.38398,
"posY": 1.36537349,
"posZ": 75.9246,
"rotX": 0.02080847,
"rotY": 269.999084,
"rotZ": 0.0167746339,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Mob Enforcer",
"Description": "Enemy",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 290816,
"SidewaysCard": false,
"CustomDeck": {
"2623": {
"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": "406ab2",
"Name": "Card",
"Transform": {
"posX": 80.44901,
"posY": 1.53057539,
"posZ": 58.7713966,
"rotX": 0.0195846576,
"rotY": 269.9999,
"rotZ": 0.0153481439,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Your Worst Nightmare",
"Description": "Basic Weakness",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 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": "fc4168",
"Name": "Card",
"Transform": {
"posX": -37.2537,
"posY": 3.134545,
"posZ": 65.7114258,
"rotX": 0.02080753,
"rotY": 269.99942,
"rotZ": 180.016769,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Nihilism",
"Description": "Basic Weakness",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 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": "f6aba5",
"Name": "Card",
"Transform": {
"posX": 80.29785,
"posY": 1.53495085,
"posZ": 73.75409,
"rotX": 0.02094236,
"rotY": 269.999878,
"rotZ": 0.0147951907,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Unspeakable Oath (Curiosity)",
"Description": "Basic Weakness",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 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": "29766c",
"Name": "Card",
"Transform": {
"posX": 84.76986,
"posY": 1.37477219,
"posZ": 76.5368347,
"rotX": 0.0208052341,
"rotY": 270.008362,
"rotZ": 0.01677476,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Overzealous",
"Description": "Basic Weakness",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 290810,
"SidewaysCard": false,
"CustomDeck": {
"2623": {
"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": "121b2d",
"Name": "Card",
"Transform": {
"posX": -37.3926,
"posY": 1.26738691,
"posZ": 76.33738,
"rotX": 0.0208084,
"rotY": 270.001,
"rotZ": 0.0167715531,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Dendromorphosis",
"Description": "Basic Weakness",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 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": "6745c1",
"Name": "Card",
"Transform": {
"posX": -24.4533882,
"posY": 1.77401829,
"posZ": 71.79459,
"rotX": 0.0124726063,
"rotY": 269.999573,
"rotZ": 180.449463,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Day of Reckoning",
"Description": "Basic Weakness",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 558134,
"SidewaysCard": false,
"CustomDeck": {
"2663": {
"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": "3575a3",
"Name": "Card",
"Transform": {
"posX": 60.2334442,
"posY": 1.36171019,
"posZ": 62.84418,
"rotX": 0.0131824408,
"rotY": 269.998535,
"rotZ": 0.0226880386,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Paranoia",
"Description": "Basic Weakness",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 290801,
"SidewaysCard": false,
"CustomDeck": {
"2623": {
"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": "c45e67",
"Name": "Card",
"Transform": {
"posX": -36.5003281,
"posY": 3.135191,
"posZ": 65.93405,
"rotX": 0.0208077282,
"rotY": 269.999329,
"rotZ": 180.016769,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Reckless",
"Description": "Basic Weakness",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 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": "8598a4",
"Name": "Card",
"Transform": {
"posX": 59.72087,
"posY": 1.36020052,
"posZ": 57.8339,
"rotX": 0.0208095219,
"rotY": 269.9957,
"rotZ": 0.01677148,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Amnesia",
"Description": "Basic Weakness",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 290800,
"SidewaysCard": false,
"CustomDeck": {
"2623": {
"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": "249d83",
"Name": "Card",
"Transform": {
"posX": 73.63656,
"posY": 1.66826892,
"posZ": 51.2949,
"rotX": 0.01472312,
"rotY": 269.998657,
"rotZ": 180.026688,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Haunted",
"Description": "Basic Weakness",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 290802,
"SidewaysCard": false,
"CustomDeck": {
"2908": {
"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": "8df93a",
"Name": "Card",
"Transform": {
"posX": 74.0187149,
"posY": 1.37291312,
"posZ": 83.52449,
"rotX": 0.0208078064,
"rotY": 269.9976,
"rotZ": 0.0167761613,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Indebted",
"Description": "Basic Weakness",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 290805,
"SidewaysCard": false,
"CustomDeck": {
"2623": {
"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": "31f72f",
"Name": "Card",
"Transform": {
"posX": 81.1103439,
"posY": 1.37475467,
"posZ": 81.38222,
"rotX": 0.0155774252,
"rotY": 269.998871,
"rotZ": 0.0148439659,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Through the Gates",
"Description": "Basic Weakness",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 291019,
"SidewaysCard": false,
"CustomDeck": {
"2659": {
"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": "57e648",
"Name": "Card",
"Transform": {
"posX": 82.24709,
"posY": 1.371798,
"posZ": 69.50579,
"rotX": 0.0208078641,
"rotY": 269.9998,
"rotZ": 0.01677146,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Narcolepsy",
"Description": "Basic Weakness",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 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": "e27c93",
"Name": "Card",
"Transform": {
"posX": -37.3926926,
"posY": 1.26807761,
"posZ": 78.69699,
"rotX": 0.0208082441,
"rotY": 269.999969,
"rotZ": 0.0167712737,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Offer You Cannot Refuse",
"Description": "Basic Weakness",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 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": "a3bc7a",
"Name": "Card",
"Transform": {
"posX": -35.9241447,
"posY": 3.13553762,
"posZ": 66.01996,
"rotX": 0.0208091866,
"rotY": 269.9995,
"rotZ": 180.016769,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Atychiphobia",
"Description": "Basic Weakness",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 538802,
"SidewaysCard": false,
"CustomDeck": {
"5388": {
"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": "88a9b3",
"Name": "Card",
"Transform": {
"posX": 81.0201,
"posY": 1.373406,
"posZ": 76.52217,
"rotX": 0.0208056755,
"rotY": 270.00824,
"rotZ": 0.016777223,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Overzealous",
"Description": "Basic Weakness",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 290810,
"SidewaysCard": false,
"CustomDeck": {
"2623": {
"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": "960118",
"Name": "Card",
"Transform": {
"posX": 13.032135,
"posY": 1.333963,
"posZ": 56.4778023,
"rotX": 0.0227802545,
"rotY": 269.999939,
"rotZ": 0.0163529646,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Accursed Follower",
"Description": "Basic Weakness",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 547832,
"SidewaysCard": false,
"CustomDeck": {
"2663": {
"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": "162811",
"Name": "Card",
"Transform": {
"posX": 12.64701,
"posY": 1.28197241,
"posZ": 53.1192131,
"rotX": 0.0216190983,
"rotY": 270.0002,
"rotZ": 0.0151699139,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Dread Curse",
"Description": "Basic Weakness",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 547833,
"SidewaysCard": false,
"CustomDeck": {
"2663": {
"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": "ba2ae1",
"Name": "Card",
"Transform": {
"posX": 73.57277,
"posY": 1.367833,
"posZ": 67.00315,
"rotX": 0.0171475261,
"rotY": 269.999878,
"rotZ": 0.014829508,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Doomed",
"Description": "Basic Weakness",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 290814,
"SidewaysCard": false,
"CustomDeck": {
"2623": {
"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": "016e3c",
"Name": "Card",
"Transform": {
"posX": 80.96729,
"posY": 1.37533462,
"posZ": 83.17558,
"rotX": 0.0208096765,
"rotY": 269.9989,
"rotZ": 0.016768232,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Chronophobia",
"Description": "Basic Weakness",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 290807,
"SidewaysCard": false,
"CustomDeck": {
"2623": {
"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": "f9215d",
"Name": "Deck",
"Transform": {
"posX": -20.8025589,
"posY": 1.38427436,
"posZ": 91.59856,
"rotX": 0.0208042078,
"rotY": 270.0141,
"rotZ": 180.016785,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "The Circle Undone",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": false,
"SidewaysCard": false,
"DeckIDs": [
290321,
290321,
290320,
290320
],
"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": "",
"ContainedObjects": [
{
"GUID": "c1ce8e",
"Name": "Card",
"Transform": {
"posX": 73.4997559,
"posY": 1.51956129,
"posZ": 58.73982,
"rotX": 0.165745556,
"rotY": 270.0014,
"rotZ": 180.12236,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "The 13th Vision",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 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": "cebf6a",
"Name": "Card",
"Transform": {
"posX": 73.50002,
"posY": 1.515151,
"posZ": 58.74,
"rotX": 0.0141672948,
"rotY": 269.999756,
"rotZ": 0.0134400167,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "The 13th Vision",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 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": "cc65f3",
"Name": "Card",
"Transform": {
"posX": 77.49475,
"posY": 1.3667146,
"posZ": 58.34255,
"rotX": 0.0165024456,
"rotY": 270.0011,
"rotZ": 0.0143494187,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "The Tower • XVI",
"Description": "Circumstances Beyond Your Control",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 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": "d5c93d",
"Name": "Card",
"Transform": {
"posX": 77.45068,
"posY": 1.511687,
"posZ": 58.2785454,
"rotX": 0.0232664831,
"rotY": 269.999329,
"rotZ": 0.008670142,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "The Tower • XVI",
"Description": "Circumstances Beyond Your Control",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 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": "0b361d",
"Name": "Deck",
"Transform": {
"posX": -20.9388752,
"posY": 1.29235625,
"posZ": 83.3067245,
"rotX": 0.020803025,
"rotY": 270.0185,
"rotZ": 180.016785,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Return to the Dunwich Legacy",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": false,
"SidewaysCard": false,
"DeckIDs": [
547319,
547319
],
"CustomDeck": {
"5473": {
"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": "",
"ContainedObjects": [
{
"GUID": "31f72f",
"Name": "Card",
"Transform": {
"posX": 80.6700058,
"posY": 1.5195359,
"posZ": 80.590004,
"rotX": 0.020808259,
"rotY": 270.0,
"rotZ": 180.016769,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Through the Gates",
"Description": "Basic Weakness",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 547319,
"SidewaysCard": false,
"CustomDeck": {
"2659": {
"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": "fd9c56",
"Name": "Card",
"Transform": {
"posX": 80.6700058,
"posY": 1.319536,
"posZ": 80.590004,
"rotX": 0.020808259,
"rotY": 270.0,
"rotZ": 180.016769,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Through the Gates",
"Description": "Basic Weakness",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 547319,
"SidewaysCard": false,
"CustomDeck": {
"2659": {
"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": "0da7f2",
"Name": "Deck",
"Transform": {
"posX": -20.9388714,
"posY": 1.31228566,
"posZ": 85.60673,
"rotX": 0.0208079424,
"rotY": 270.001556,
"rotZ": 180.016769,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "The Dunwich Legacy",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": false,
"SidewaysCard": false,
"DeckIDs": [
537506,
537506,
537507,
537507,
537505,
537505
],
"CustomDeck": {
"5375": {
"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": "",
"ContainedObjects": [
{
"GUID": "d28be6",
"Name": "Card",
"Transform": {
"posX": 84.6602859,
"posY": 1.47444046,
"posZ": 84.9897461,
"rotX": 0.0185761936,
"rotY": 269.8689,
"rotZ": 354.901,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Internal Injury",
"Description": "Basic Weakness",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 537506,
"SidewaysCard": false,
"CustomDeck": {
"2623": {
"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": "4fb446",
"Name": "Card",
"Transform": {
"posX": 84.63887,
"posY": 1.376687,
"posZ": 83.34652,
"rotX": 0.0193456579,
"rotY": 269.996979,
"rotZ": 0.0182021931,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Internal Injury",
"Description": "Basic Weakness",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 537506,
"SidewaysCard": false,
"CustomDeck": {
"2623": {
"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": "016e3c",
"Name": "Card",
"Transform": {
"posX": 80.96729,
"posY": 1.37533462,
"posZ": 83.17558,
"rotX": 0.0208096765,
"rotY": 269.9989,
"rotZ": 0.016768232,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Chronophobia",
"Description": "Basic Weakness",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 537507,
"SidewaysCard": false,
"CustomDeck": {
"2623": {
"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": "eeb330",
"Name": "Card",
"Transform": {
"posX": 77.61771,
"posY": 1.37417972,
"posZ": 83.3862152,
"rotX": 0.02080846,
"rotY": 269.998749,
"rotZ": 0.0167724155,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Chronophobia",
"Description": "Basic Weakness",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 537507,
"SidewaysCard": false,
"CustomDeck": {
"2623": {
"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": "8df93a",
"Name": "Card",
"Transform": {
"posX": 74.0187149,
"posY": 1.37291312,
"posZ": 83.52449,
"rotX": 0.0208078064,
"rotY": 269.9976,
"rotZ": 0.0167761613,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Indebted",
"Description": "Basic Weakness",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 537505,
"SidewaysCard": false,
"CustomDeck": {
"2623": {
"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": "b2ef43",
"Name": "Card",
"Transform": {
"posX": 69.6492,
"posY": 1.37130547,
"posZ": 83.45329,
"rotX": 0.02080887,
"rotY": 269.997437,
"rotZ": 0.0167718846,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Indebted",
"Description": "Basic Weakness",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 537505,
"SidewaysCard": false,
"CustomDeck": {
"2623": {
"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": "120210",
"Name": "Deck",
"Transform": {
"posX": -24.4533329,
"posY": 1.30417073,
"posZ": 78.6900253,
"rotX": 0.0208083913,
"rotY": 269.999878,
"rotZ": 180.016769,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Starter Decks",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": false,
"SidewaysCard": false,
"DeckIDs": [
538802,
538702,
538602,
547402,
547502
],
"CustomDeck": {
"5388": {
"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
},
"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
},
"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
},
"5474": {
"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
},
"5475": {
"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": "",
"ContainedObjects": [
{
"GUID": "a3bc7a",
"Name": "Card",
"Transform": {
"posX": -9.351385,
"posY": 3.14429832,
"posZ": 62.6353645,
"rotX": 0.0208026078,
"rotY": 270.0193,
"rotZ": 0.0167782847,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Atychiphobia",
"Description": "Basic Weakness",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 538802,
"SidewaysCard": false,
"CustomDeck": {
"5388": {
"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": "fc4168",
"Name": "Card",
"Transform": {
"posX": -9.75233,
"posY": 3.14434218,
"posZ": 63.64426,
"rotX": 0.020803066,
"rotY": 270.019348,
"rotZ": 0.01678034,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Nihilism",
"Description": "Basic Weakness",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 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": "c45e67",
"Name": "Card",
"Transform": {
"posX": -10.2776136,
"posY": 3.143537,
"posZ": 61.5452423,
"rotX": 0.0208035521,
"rotY": 270.019348,
"rotZ": 0.0167791229,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Reckless",
"Description": "Basic Weakness",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 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": "a2e7d7",
"Name": "Card",
"Transform": {
"posX": -19.7060337,
"posY": 3.22103786,
"posZ": 63.48862,
"rotX": 0.0208080374,
"rotY": 270.000183,
"rotZ": 0.0167708565,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Obsessive",
"Description": "Basic Weakness",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 547402,
"SidewaysCard": false,
"CustomDeck": {
"2662": {
"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": "2204cc",
"Name": "Card",
"Transform": {
"posX": -28.0473461,
"posY": 3.25570321,
"posZ": 67.25488,
"rotX": 0.0208080579,
"rotY": 270.000977,
"rotZ": 0.0167710315,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Self-Destructive",
"Description": "Basic Weakness",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 547502,
"SidewaysCard": false,
"CustomDeck": {
"2662": {
"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": "15e75e",
"Name": "Deck",
"Transform": {
"posX": -24.4533653,
"posY": 1.30551851,
"posZ": 83.29463,
"rotX": 0.0208085645,
"rotY": 269.999725,
"rotZ": 180.016769,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Advanced",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": false,
"SidewaysCard": false,
"DeckIDs": [
545213,
545214,
537612,
537608,
537609
],
"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
},
"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": "",
"ContainedObjects": [
{
"GUID": "39452d",
"Name": "Card",
"Transform": {
"posX": -24.4533634,
"posY": 1.39045751,
"posZ": 83.29463,
"rotX": 0.0124847172,
"rotY": 270.0,
"rotZ": 180.010345,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Fine Print",
"Description": "Weakness",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 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": "180b5b",
"Name": "Card",
"Transform": {
"posX": -24.45338,
"posY": 1.398439,
"posZ": 83.29462,
"rotX": 0.0113302972,
"rotY": 269.999573,
"rotZ": 180.429443,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Sell Your Soul",
"Description": "Weakness",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 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": "dc5b38",
"Name": "Card",
"Transform": {
"posX": -27.2329922,
"posY": 1.34537375,
"posZ": 90.58084,
"rotX": 0.0124803707,
"rotY": 270.000031,
"rotZ": 180.010025,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "The Price of Failure",
"Description": "Weakness",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 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": "85e7d9",
"Name": "Card",
"Transform": {
"posX": -26.97677,
"posY": 1.32137442,
"posZ": 90.6933746,
"rotX": 0.0208084974,
"rotY": 269.999268,
"rotZ": 180.016769,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Accursed Fate",
"Description": "Weakness",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 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": "6cbc01",
"Name": "Card",
"Transform": {
"posX": -26.8721733,
"posY": 1.28023934,
"posZ": 90.61607,
"rotX": 0.0208084024,
"rotY": 269.999939,
"rotZ": 180.016769,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "The Bell Tolls",
"Description": "Weakness",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 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": "193ddf",
"Name": "Deck",
"Transform": {
"posX": -20.9388752,
"posY": 1.30063784,
"posZ": 78.7067261,
"rotX": 0.0208050646,
"rotY": 270.0115,
"rotZ": 180.016769,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "The Path to Carcosa",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": false,
"SidewaysCard": false,
"DeckIDs": [
557903,
440510,
440510,
440515
],
"CustomDeck": {
"5579": {
"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
},
"4405": {
"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": "",
"ContainedObjects": [
{
"GUID": "4bcf5a",
"Name": "Card",
"Transform": {
"posX": -20.9389229,
"posY": 1.35666931,
"posZ": 78.70664,
"rotX": 0.0124845151,
"rotY": 270.000031,
"rotZ": 180.009949,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Drawing the Sign",
"Description": "Basic Weakness",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 557903,
"SidewaysCard": false,
"CustomDeck": {
"2663": {
"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": "29766c",
"Name": "Card",
"Transform": {
"posX": 84.76986,
"posY": 1.37477219,
"posZ": 76.5368347,
"rotX": 0.0208052341,
"rotY": 270.008362,
"rotZ": 0.01677476,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Overzealous",
"Description": "Basic Weakness",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 440510,
"SidewaysCard": false,
"CustomDeck": {
"2623": {
"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": "88a9b3",
"Name": "Card",
"Transform": {
"posX": 81.0201,
"posY": 1.373406,
"posZ": 76.52217,
"rotX": 0.0208056755,
"rotY": 270.00824,
"rotZ": 0.016777223,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Overzealous",
"Description": "Basic Weakness",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 440510,
"SidewaysCard": false,
"CustomDeck": {
"2623": {
"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": "da227d",
"Name": "Card",
"Transform": {
"posX": 77.00673,
"posY": 1.37194359,
"posZ": 76.50519,
"rotX": 0.0208081231,
"rotY": 269.999054,
"rotZ": 0.0167726167,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "The Thing That Follows",
"Description": "Enemy",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 440515,
"SidewaysCard": false,
"CustomDeck": {
"2623": {
"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": "516413",
"Name": "Deck",
"Transform": {
"posX": -20.9388847,
"posY": 1.29804623,
"posZ": 53.40665,
"rotX": 0.0208085664,
"rotY": 269.999878,
"rotZ": 180.016769,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "The Innsmouth Conspiracy",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": false,
"SidewaysCard": false,
"DeckIDs": [
547633,
547632,
547633,
558034,
547632
],
"CustomDeck": {
"5476": {
"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
},
"5580": {
"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": "",
"ContainedObjects": [
{
"GUID": "92f50c",
"Name": "Card",
"Transform": {
"posX": 12.6470013,
"posY": 1.33284175,
"posZ": 53.15561,
"rotX": 0.025468139,
"rotY": 269.999939,
"rotZ": 0.0134331463,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Dread Curse",
"Description": "Basic Weakness",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 547633,
"SidewaysCard": false,
"CustomDeck": {
"2663": {
"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": "960118",
"Name": "Card",
"Transform": {
"posX": 13.032135,
"posY": 1.333963,
"posZ": 56.4778023,
"rotX": 0.0227802545,
"rotY": 269.999939,
"rotZ": 0.0163529646,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Accursed Follower",
"Description": "Basic Weakness",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 547632,
"SidewaysCard": false,
"CustomDeck": {
"2663": {
"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": "162811",
"Name": "Card",
"Transform": {
"posX": 12.64701,
"posY": 1.28197241,
"posZ": 53.1192131,
"rotX": 0.0216190983,
"rotY": 270.0002,
"rotZ": 0.0151699139,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Dread Curse",
"Description": "Basic Weakness",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 547633,
"SidewaysCard": false,
"CustomDeck": {
"2663": {
"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": "cf472b",
"Name": "Card",
"Transform": {
"posX": -20.9389153,
"posY": 1.404008,
"posZ": 55.7066345,
"rotX": 358.363617,
"rotY": 270.001068,
"rotZ": 180.009674,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Day of Reckoning",
"Description": "Basic Weakness",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 558034,
"SidewaysCard": false,
"CustomDeck": {
"2663": {
"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": "da8711",
"Name": "Card",
"Transform": {
"posX": 13.032177,
"posY": 1.28309393,
"posZ": 56.4412727,
"rotX": 0.02051827,
"rotY": 269.999329,
"rotZ": 0.0162265059,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Accursed Follower",
"Description": "Basic Weakness",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 547632,
"SidewaysCard": false,
"CustomDeck": {
"2663": {
"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": "58de9c",
"Name": "Deck",
"Transform": {
"posX": -24.453371,
"posY": 1.29733825,
"posZ": 71.79461,
"rotX": 0.0208083186,
"rotY": 270.000031,
"rotZ": 180.016769,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Edge of the Earth",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": false,
"SidewaysCard": false,
"DeckIDs": [
378918,
378917,
378919,
378920
],
"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": "",
"ContainedObjects": [
{
"GUID": "46b4a0",
"Name": "Card",
"Transform": {
"posX": 24.911335,
"posY": 1.29365909,
"posZ": 77.74595,
"rotX": 0.0208068565,
"rotY": 270.004,
"rotZ": 0.0167718623,
"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}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 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": "8f1420",
"Name": "Card",
"Transform": {
"posX": 19.095644,
"posY": 1.30563641,
"posZ": 77.997406,
"rotX": 0.0208017416,
"rotY": 270.004,
"rotZ": 0.7507199,
"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}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 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": "93e52d",
"Name": "Card",
"Transform": {
"posX": 19.864624,
"posY": 1.29251754,
"posZ": 80.12033,
"rotX": 0.02085018,
"rotY": 270.003357,
"rotZ": 0.01662941,
"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}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 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": 18.570755,
"posY": 1.29325843,
"posZ": 84.244,
"rotX": 0.0208070017,
"rotY": 270.004,
"rotZ": 0.0167719126,
"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}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 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": "62c248",
"Name": "Deck",
"Transform": {
"posX": -20.9388733,
"posY": 1.28899,
"posZ": 71.8067245,
"rotX": 0.0208068322,
"rotY": 270.005554,
"rotZ": 180.016769,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "The Forgotten Age",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": false,
"SidewaysCard": false,
"DeckIDs": [
547714,
547713
],
"CustomDeck": {
"5477": {
"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": "",
"ContainedObjects": [
{
"GUID": "ba2ae1",
"Name": "Card",
"Transform": {
"posX": 73.57277,
"posY": 1.367833,
"posZ": 67.00315,
"rotX": 0.0171475261,
"rotY": 269.999878,
"rotZ": 0.014829508,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Doomed",
"Description": "Basic Weakness",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 547714,
"SidewaysCard": false,
"CustomDeck": {
"2623": {
"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": "dd3d09",
"Name": "Card",
"Transform": {
"posX": 73.7898941,
"posY": 1.50798833,
"posZ": 66.88923,
"rotX": 0.0198830087,
"rotY": 269.998352,
"rotZ": 0.0241802726,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Dark Pact",
"Description": "Basic Weakness",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 547713,
"SidewaysCard": false,
"CustomDeck": {
"2623": {
"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": "728f7e",
"Name": "Deck",
"Transform": {
"posX": -24.45336,
"posY": 1.330262,
"posZ": 85.59462,
"rotX": 0.02080827,
"rotY": 269.999481,
"rotZ": 180.016769,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Core",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": false,
"SidewaysCard": false,
"DeckIDs": [
547716,
547717,
547718,
547703,
547704,
547702,
547701,
547701,
547700,
547700
],
"CustomDeck": {
"5477": {
"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": "",
"ContainedObjects": [
{
"GUID": "b239d7",
"Name": "Card",
"Transform": {
"posX": 59.38398,
"posY": 1.36537349,
"posZ": 75.9246,
"rotX": 0.02080847,
"rotY": 269.999084,
"rotZ": 0.0167746339,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Mob Enforcer",
"Description": "Enemy",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 547716,
"SidewaysCard": false,
"CustomDeck": {
"2623": {
"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": "16a89d",
"Name": "Card",
"Transform": {
"posX": 59.2340546,
"posY": 1.36607194,
"posZ": 78.4964752,
"rotX": 0.0208077766,
"rotY": 269.999542,
"rotZ": 0.016773073,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Silver Twilight Acolyte",
"Description": "Enemy",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 547717,
"SidewaysCard": false,
"CustomDeck": {
"2623": {
"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": "4ea68b",
"Name": "Card",
"Transform": {
"posX": 59.32571,
"posY": 1.3645314,
"posZ": 73.1198349,
"rotX": 0.0208079163,
"rotY": 269.999237,
"rotZ": 0.0167740583,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Stubborn Detective",
"Description": "Enemy",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 547718,
"SidewaysCard": false,
"CustomDeck": {
"2623": {
"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": "d83baf",
"Name": "Card",
"Transform": {
"posX": 59.276104,
"posY": 1.36351478,
"posZ": 69.70881,
"rotX": 0.0208085179,
"rotY": 269.998138,
"rotZ": 0.0167739056,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Psychosis",
"Description": "Basic Weakness",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 547703,
"SidewaysCard": false,
"CustomDeck": {
"2623": {
"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": "88ee43",
"Name": "Card",
"Transform": {
"posX": 58.93588,
"posY": 1.36254549,
"posZ": 67.02983,
"rotX": 0.01864637,
"rotY": 270.010132,
"rotZ": 0.0065060514,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Hypochondria",
"Description": "Basic Weakness",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 547704,
"SidewaysCard": false,
"CustomDeck": {
"2623": {
"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": "249d83",
"Name": "Card",
"Transform": {
"posX": 59.11796,
"posY": 1.48062611,
"posZ": 64.84444,
"rotX": 0.06331021,
"rotY": 269.989655,
"rotZ": 358.374146,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Haunted",
"Description": "Basic Weakness",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 547702,
"SidewaysCard": false,
"CustomDeck": {
"2623": {
"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": "3575a3",
"Name": "Card",
"Transform": {
"posX": 60.2334442,
"posY": 1.36171019,
"posZ": 62.84418,
"rotX": 0.0131824408,
"rotY": 269.998535,
"rotZ": 0.0226880386,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Paranoia",
"Description": "Basic Weakness",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 547701,
"SidewaysCard": false,
"CustomDeck": {
"2623": {
"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": "c17498",
"Name": "Card",
"Transform": {
"posX": 59.77021,
"posY": 1.36098135,
"posZ": 60.4401855,
"rotX": 0.02080495,
"rotY": 270.007172,
"rotZ": 0.0167757,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Paranoia",
"Description": "Basic Weakness",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 547701,
"SidewaysCard": false,
"CustomDeck": {
"2623": {
"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": "8598a4",
"Name": "Card",
"Transform": {
"posX": 59.72087,
"posY": 1.36020052,
"posZ": 57.8339,
"rotX": 0.0208095219,
"rotY": 269.9957,
"rotZ": 0.01677148,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Amnesia",
"Description": "Basic Weakness",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 547700,
"SidewaysCard": false,
"CustomDeck": {
"2623": {
"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": "2210c1",
"Name": "Card",
"Transform": {
"posX": 60.0020523,
"posY": 1.35961318,
"posZ": 55.47854,
"rotX": 0.0208090711,
"rotY": 269.9957,
"rotZ": 0.0167709384,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Amnesia",
"Description": "Basic Weakness",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 547700,
"SidewaysCard": false,
"CustomDeck": {
"2623": {
"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": "9c5822",
"Name": "Deck",
"Transform": {
"posX": -20.9388733,
"posY": 1.29515052,
"posZ": 76.40672,
"rotX": 0.0208047386,
"rotY": 270.013031,
"rotZ": 180.016785,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Return to The Path to Carcosa",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": false,
"SidewaysCard": false,
"DeckIDs": [
438124,
438122,
438123
],
"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": "",
"ContainedObjects": [
{
"GUID": "a5be8b",
"Name": "Card",
"Transform": {
"posX": 80.46176,
"posY": 1.37253177,
"posZ": 73.76154,
"rotX": 0.0148119656,
"rotY": 270.004944,
"rotZ": 0.0242835376,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Unspeakable Oath (Bloodthirst)",
"Description": "Basic Weakness",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 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": "ea0fa1",
"Name": "Card",
"Transform": {
"posX": 80.61448,
"posY": 1.53051329,
"posZ": 73.92056,
"rotX": 359.5608,
"rotY": 270.008331,
"rotZ": 0.0357966721,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Unspeakable Oath (Cowardice)",
"Description": "Basic Weakness",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 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": "f6aba5",
"Name": "Card",
"Transform": {
"posX": 80.29785,
"posY": 1.53495085,
"posZ": 73.75409,
"rotX": 0.02094236,
"rotY": 269.999878,
"rotZ": 0.0147951907,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Unspeakable Oath (Curiosity)",
"Description": "Basic Weakness",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 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": "a24cb2",
"Name": "Deck",
"Transform": {
"posX": -20.93891,
"posY": 1.29111111,
"posZ": 62.606575,
"rotX": 0.0208083373,
"rotY": 270.0,
"rotZ": 180.016769,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Return to The Circle Undone",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": false,
"SidewaysCard": false,
"DeckIDs": [
449520,
449534,
449534
],
"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": "",
"ContainedObjects": [
{
"GUID": "bad8cb",
"Name": "Card",
"Transform": {
"posX": 6.814119,
"posY": 1.28015411,
"posZ": 66.21114,
"rotX": 0.02394379,
"rotY": 270.019226,
"rotZ": -0.00456261728,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Damned",
"Description": "Basic Weakness",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 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": "7bcaf3",
"Name": "Card",
"Transform": {
"posX": 7.53534651,
"posY": 1.27956867,
"posZ": 61.9736366,
"rotX": 0.0205253065,
"rotY": 270.0191,
"rotZ": 0.0208346955,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "The Devil • XV",
"Description": "Your Shadow Hungers",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 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": "e9ae4e",
"Name": "Card",
"Transform": {
"posX": 7.808851,
"posY": 1.31374824,
"posZ": 61.9812546,
"rotX": 359.950928,
"rotY": 270.019,
"rotZ": 359.946136,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "The Devil • XV",
"Description": "Your Shadow Hungers",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 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": "c0f36d",
"Name": "Deck",
"Transform": {
"posX": -20.9388771,
"posY": 1.28831685,
"posZ": 69.50692,
"rotX": 0.0208085626,
"rotY": 269.9995,
"rotZ": 180.016769,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Return to The Forgotten Age",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": false,
"SidewaysCard": false,
"DeckIDs": [
545211,
545212
],
"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": "",
"ContainedObjects": [
{
"GUID": "121b2d",
"Name": "Card",
"Transform": {
"posX": -20.93893,
"posY": 1.35879576,
"posZ": 69.50663,
"rotX": 0.0124838371,
"rotY": 270.0,
"rotZ": 180.010132,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Dendromorphosis",
"Description": "Basic Weakness",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 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": "e27c93",
"Name": "Card",
"Transform": {
"posX": -20.93893,
"posY": 1.34903657,
"posZ": 69.50663,
"rotX": 0.02080827,
"rotY": 269.9996,
"rotZ": 180.016769,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Offer You Cannot Refuse",
"Description": "Basic Weakness",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 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": "c276cb",
"Name": "Deck",
"Transform": {
"posX": -24.4534111,
"posY": 1.30013251,
"posZ": 64.89456,
"rotX": 0.0208084024,
"rotY": 269.999939,
"rotZ": 180.016769,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "The Scarlet Keys",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": false,
"SidewaysCard": false,
"DeckIDs": [
379152,
379151,
379150,
379149,
379148
],
"CustomDeck": {
"3791": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1814412497119474921/33ED44071C8BCA7379B0E8031F47169B73639E37/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 9,
"NumHeight": 6,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "6a0d53",
"Name": "Card",
"Transform": {
"posX": -5.305324,
"posY": 1.277402,
"posZ": 70.74118,
"rotX": 0.0208082665,
"rotY": 270.0012,
"rotZ": 0.0167716891,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Underprepared",
"Description": "Basic Weakness",
"GMNotes": "{\n \"id\": \"09128\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Blunder.\",\n \"permanent\": false,\n \"weakness\": true\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 379152,
"SidewaysCard": false,
"CustomDeck": {
"3791": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1814412497119474921/33ED44071C8BCA7379B0E8031F47169B73639E37/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 9,
"NumHeight": 6,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "329f2f",
"Name": "Card",
"Transform": {
"posX": -5.048062,
"posY": 1.51179326,
"posZ": 70.38751,
"rotX": 0.0170229655,
"rotY": 270.0004,
"rotZ": 11.0057287,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Ectoplasmic Horror",
"Description": "Basic Weakness",
"GMNotes": "{\n \"id\": \"09127\",\n \"type\": \"Enemy\",\n \"class\": \"Neutral\",\n \"traits\": \"Monster. Geist.\",\n \"permanent\": false,\n \"weakness\": true\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 379151,
"SidewaysCard": false,
"CustomDeck": {
"3791": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1814412497119474921/33ED44071C8BCA7379B0E8031F47169B73639E37/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 9,
"NumHeight": 6,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "a92fa2",
"Name": "Card",
"Transform": {
"posX": -5.260252,
"posY": 1.36498022,
"posZ": 70.17065,
"rotX": 0.018081082,
"rotY": 270.000183,
"rotZ": 359.967682,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Pay Your Due",
"Description": "Basic Weakness",
"GMNotes": "{\n \"id\": \"09126\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Pact.\",\n \"permanent\": false,\n \"weakness\": true\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 379150,
"SidewaysCard": false,
"CustomDeck": {
"3791": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1814412497119474921/33ED44071C8BCA7379B0E8031F47169B73639E37/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 9,
"NumHeight": 6,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "f549b6",
"Name": "Card",
"Transform": {
"posX": -5.284719,
"posY": 1.37558913,
"posZ": 70.532486,
"rotX": 0.0141254179,
"rotY": 270.0001,
"rotZ": 0.453891844,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Quantum Paradox",
"Description": "Basic Weakness",
"GMNotes": "{\n \"id\": \"09125\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Paradox.\",\n \"permanent\": false,\n \"weakness\": true\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 379149,
"SidewaysCard": false,
"CustomDeck": {
"3791": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1814412497119474921/33ED44071C8BCA7379B0E8031F47169B73639E37/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 9,
"NumHeight": 6,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "76edfa",
"Name": "Card",
"Transform": {
"posX": -4.96131039,
"posY": 1.38555515,
"posZ": 70.41942,
"rotX": 0.013228449,
"rotY": 270.000061,
"rotZ": 0.454353422,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Lurker in the Dark",
"Description": "Basic Weakness",
"GMNotes": "{\n \"id\": \"09124\",\n \"type\": \"Enemy\",\n \"class\": \"Neutral\",\n \"traits\": \"Monster. Shoggoth.\",\n \"permanent\": false,\n \"weakness\": true\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 379148,
"SidewaysCard": false,
"CustomDeck": {
"3791": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1814412497119474921/33ED44071C8BCA7379B0E8031F47169B73639E37/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 9,
"NumHeight": 6,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "c97be9",
"Name": "Deck",
"Transform": {
"posX": -20.93889,
"posY": 1.29457867,
"posZ": 58.0065536,
"rotX": 0.0208042227,
"rotY": 270.014221,
"rotZ": 180.016785,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "The Dream-Eaters",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": false,
"SidewaysCard": false,
"DeckIDs": [
438125,
438127,
438128,
438126
],
"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": "",
"ContainedObjects": [
{
"GUID": "eff3c8",
"Name": "Card",
"Transform": {
"posX": 82.3005,
"posY": 1.37097037,
"posZ": 66.61211,
"rotX": 0.0208081,
"rotY": 269.999756,
"rotZ": 0.0167713575,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Self-Centered",
"Description": "Basic Weakness",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 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": "57e648",
"Name": "Card",
"Transform": {
"posX": 82.24709,
"posY": 1.371798,
"posZ": 69.50579,
"rotX": 0.0208078641,
"rotY": 269.9998,
"rotZ": 0.01677146,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Narcolepsy",
"Description": "Basic Weakness",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 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": "406ab2",
"Name": "Card",
"Transform": {
"posX": 80.44901,
"posY": 1.53057539,
"posZ": 58.7713966,
"rotX": 0.0195846576,
"rotY": 269.9999,
"rotZ": 0.0153481439,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Your Worst Nightmare",
"Description": "Basic Weakness",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 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": "447a08",
"Name": "Card",
"Transform": {
"posX": 80.45187,
"posY": 1.51685083,
"posZ": 58.63176,
"rotX": 0.02240032,
"rotY": 270.002625,
"rotZ": 0.00697853556,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Kleptomania",
"Description": "Basic Weakness",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 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": "d95bd6",
"Name": "Deck",
"Transform": {
"posX": -24.453392,
"posY": 1.5580709,
"posZ": 57.9945068,
"rotX": 0.0207992345,
"rotY": 270.0347,
"rotZ": 180.0168,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "All Weaknesses",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": false,
"SidewaysCard": false,
"DeckIDs": [
379152,
379151,
379150,
379149,
379148,
378918,
378917,
378919,
378920,
449520,
449534,
449534,
290807,
438122,
547833,
290805,
290817,
290321,
290813,
554603,
547402,
290818,
290806,
547502,
438126,
290321,
290800,
290804,
290320,
438124,
290806,
291019,
438125,
290801,
547832,
290803,
290320,
290815,
290816,
438128,
538702,
438123,
290810,
545211,
558134,
290801,
538602,
290800,
290802,
290805,
291019,
438127,
545212,
538802,
290810,
547832,
547833,
290814,
290807
],
"CustomDeck": {
"3791": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1814412497119474921/33ED44071C8BCA7379B0E8031F47169B73639E37/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 9,
"NumHeight": 6,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"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
},
"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
},
"2908": {
"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
},
"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
},
"5478": {
"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
},
"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
},
"5546": {
"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
},
"5474": {
"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
},
"5475": {
"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
},
"2910": {
"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
},
"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
},
"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
},
"5581": {
"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
},
"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
},
"5388": {
"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": "",
"ContainedObjects": [
{
"GUID": "6a0d53",
"Name": "Card",
"Transform": {
"posX": -3.36223245,
"posY": 1.2740525,
"posZ": 58.89695,
"rotX": 0.02808771,
"rotY": 270.004272,
"rotZ": 359.975769,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Underprepared",
"Description": "Basic Weakness",
"GMNotes": "{\n \"id\": \"09128\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Blunder.\",\n \"permanent\": false,\n \"weakness\": true\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 379152,
"SidewaysCard": false,
"CustomDeck": {
"3791": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1814412497119474921/33ED44071C8BCA7379B0E8031F47169B73639E37/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 9,
"NumHeight": 6,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "329f2f",
"Name": "Card",
"Transform": {
"posX": -3.186288,
"posY": 1.32066584,
"posZ": 58.86388,
"rotX": 359.651764,
"rotY": 270.011139,
"rotZ": 359.8724,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Ectoplasmic Horror",
"Description": "Basic Weakness",
"GMNotes": "{\n \"id\": \"09127\",\n \"type\": \"Enemy\",\n \"class\": \"Neutral\",\n \"traits\": \"Monster. Geist.\",\n \"permanent\": false,\n \"weakness\": true\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 379151,
"SidewaysCard": false,
"CustomDeck": {
"3791": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1814412497119474921/33ED44071C8BCA7379B0E8031F47169B73639E37/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 9,
"NumHeight": 6,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "a92fa2",
"Name": "Card",
"Transform": {
"posX": -3.30567479,
"posY": 1.35135043,
"posZ": 58.8243141,
"rotX": 0.0243930537,
"rotY": 269.9956,
"rotZ": 0.0123272641,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Pay Your Due",
"Description": "Basic Weakness",
"GMNotes": "{\n \"id\": \"09126\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Pact.\",\n \"permanent\": false,\n \"weakness\": true\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 379150,
"SidewaysCard": false,
"CustomDeck": {
"3791": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1814412497119474921/33ED44071C8BCA7379B0E8031F47169B73639E37/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 9,
"NumHeight": 6,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "f549b6",
"Name": "Card",
"Transform": {
"posX": -3.25173426,
"posY": 1.35885179,
"posZ": 58.9180145,
"rotX": 0.024816012,
"rotY": 269.894073,
"rotZ": 0.0146644646,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Quantum Paradox",
"Description": "Basic Weakness",
"GMNotes": "{\n \"id\": \"09125\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Paradox.\",\n \"permanent\": false,\n \"weakness\": true\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 379149,
"SidewaysCard": false,
"CustomDeck": {
"3791": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1814412497119474921/33ED44071C8BCA7379B0E8031F47169B73639E37/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 9,
"NumHeight": 6,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "76edfa",
"Name": "Card",
"Transform": {
"posX": -3.11795545,
"posY": 1.36667824,
"posZ": 58.6476974,
"rotX": 0.0225657672,
"rotY": 270.016968,
"rotZ": 0.0144255627,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Lurker in the Dark",
"Description": "Basic Weakness",
"GMNotes": "{\n \"id\": \"09124\",\n \"type\": \"Enemy\",\n \"class\": \"Neutral\",\n \"traits\": \"Monster. Shoggoth.\",\n \"permanent\": false,\n \"weakness\": true\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 379148,
"SidewaysCard": false,
"CustomDeck": {
"3791": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1814412497119474921/33ED44071C8BCA7379B0E8031F47169B73639E37/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 9,
"NumHeight": 6,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "46b4a0",
"Name": "Card",
"Transform": {
"posX": 24.911335,
"posY": 1.29365909,
"posZ": 77.74595,
"rotX": 0.0208068565,
"rotY": 270.004,
"rotZ": 0.0167718623,
"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}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 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": "8f1420",
"Name": "Card",
"Transform": {
"posX": 19.095644,
"posY": 1.30563641,
"posZ": 77.997406,
"rotX": 0.0208017416,
"rotY": 270.004,
"rotZ": 0.7507199,
"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}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 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": "93e52d",
"Name": "Card",
"Transform": {
"posX": 19.864624,
"posY": 1.29251754,
"posZ": 80.12033,
"rotX": 0.02085018,
"rotY": 270.003357,
"rotZ": 0.01662941,
"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}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 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": 18.570755,
"posY": 1.29325843,
"posZ": 84.244,
"rotX": 0.0208070017,
"rotY": 270.004,
"rotZ": 0.0167719126,
"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}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 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": "bad8cb",
"Name": "Card",
"Transform": {
"posX": 6.814119,
"posY": 1.28015411,
"posZ": 66.21114,
"rotX": 0.02394379,
"rotY": 270.019226,
"rotZ": -0.00456261728,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Damned",
"Description": "Basic Weakness",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 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": "7bcaf3",
"Name": "Card",
"Transform": {
"posX": 7.53534651,
"posY": 1.27956867,
"posZ": 61.9736366,
"rotX": 0.0205253065,
"rotY": 270.0191,
"rotZ": 0.0208346955,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "The Devil • XV",
"Description": "Your Shadow Hungers",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 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": "e9ae4e",
"Name": "Card",
"Transform": {
"posX": 7.808851,
"posY": 1.31374824,
"posZ": 61.9812546,
"rotX": 359.950928,
"rotY": 270.019,
"rotZ": 359.946136,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "The Devil • XV",
"Description": "Your Shadow Hungers",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 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": "eeb330",
"Name": "Card",
"Transform": {
"posX": 77.61771,
"posY": 1.37417972,
"posZ": 83.3862152,
"rotX": 0.02080846,
"rotY": 269.998749,
"rotZ": 0.0167724155,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Chronophobia",
"Description": "Basic Weakness",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 290807,
"SidewaysCard": false,
"CustomDeck": {
"2623": {
"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": "ea0fa1",
"Name": "Card",
"Transform": {
"posX": 80.61448,
"posY": 1.53051329,
"posZ": 73.92056,
"rotX": 359.5608,
"rotY": 270.008331,
"rotZ": 0.0357966721,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Unspeakable Oath (Cowardice)",
"Description": "Basic Weakness",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 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": "92f50c",
"Name": "Card",
"Transform": {
"posX": 12.6470013,
"posY": 1.33284175,
"posZ": 53.15561,
"rotX": 0.025468139,
"rotY": 269.999939,
"rotZ": 0.0134331463,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Dread Curse",
"Description": "Basic Weakness",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 547833,
"SidewaysCard": false,
"CustomDeck": {
"2663": {
"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": "b2ef43",
"Name": "Card",
"Transform": {
"posX": 69.6492,
"posY": 1.37130547,
"posZ": 83.45329,
"rotX": 0.02080887,
"rotY": 269.997437,
"rotZ": 0.0167718846,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Indebted",
"Description": "Basic Weakness",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 290805,
"SidewaysCard": false,
"CustomDeck": {
"2623": {
"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": "16a89d",
"Name": "Card",
"Transform": {
"posX": 59.2340546,
"posY": 1.36607194,
"posZ": 78.4964752,
"rotX": 0.0208077766,
"rotY": 269.999542,
"rotZ": 0.016773073,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Silver Twilight Acolyte",
"Description": "Enemy",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 290817,
"SidewaysCard": false,
"CustomDeck": {
"2623": {
"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": "cebf6a",
"Name": "Card",
"Transform": {
"posX": 66.63284,
"posY": 2.37017584,
"posZ": 46.429985,
"rotX": 0.0208064131,
"rotY": 270.002472,
"rotZ": 0.0167786125,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "The 13th Vision",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 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": "dd3d09",
"Name": "Card",
"Transform": {
"posX": 73.7898941,
"posY": 1.50798833,
"posZ": 66.88923,
"rotX": 0.0198830087,
"rotY": 269.998352,
"rotZ": 0.0241802726,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Dark Pact",
"Description": "Basic Weakness",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 290813,
"SidewaysCard": false,
"CustomDeck": {
"2623": {
"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": "10407c",
"Name": "Card",
"Transform": {
"posX": -13.02613,
"posY": 3.14305687,
"posZ": 62.6867752,
"rotX": 0.0208070353,
"rotY": 270.003876,
"rotZ": 0.016772043,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Drawing the Sign",
"Description": "Basic Weakness",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 554603,
"SidewaysCard": false,
"CustomDeck": {
"2663": {
"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": "a2e7d7",
"Name": "Card",
"Transform": {
"posX": -36.2246132,
"posY": 3.13493562,
"posZ": 64.63013,
"rotX": 0.0208077282,
"rotY": 269.999237,
"rotZ": 180.016769,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Obsessive",
"Description": "Basic Weakness",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 547402,
"SidewaysCard": false,
"CustomDeck": {
"5474": {
"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": "4ea68b",
"Name": "Card",
"Transform": {
"posX": 59.32571,
"posY": 1.3645314,
"posZ": 73.1198349,
"rotX": 0.0208079163,
"rotY": 269.999237,
"rotZ": 0.0167740583,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Stubborn Detective",
"Description": "Enemy",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 290818,
"SidewaysCard": false,
"CustomDeck": {
"2623": {
"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": "d28be6",
"Name": "Card",
"Transform": {
"posX": 84.6602859,
"posY": 1.47444046,
"posZ": 84.9897461,
"rotX": 0.0185761936,
"rotY": 269.8689,
"rotZ": 354.901,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Internal Injury",
"Description": "Basic Weakness",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 290806,
"SidewaysCard": false,
"CustomDeck": {
"2623": {
"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": "2204cc",
"Name": "Card",
"Transform": {
"posX": -34.67578,
"posY": 3.13617754,
"posZ": 67.7192154,
"rotX": 0.0208087862,
"rotY": 269.999146,
"rotZ": 180.016769,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Self-Destructive",
"Description": "Basic Weakness",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 547502,
"SidewaysCard": false,
"CustomDeck": {
"5475": {
"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": "447a08",
"Name": "Card",
"Transform": {
"posX": 80.45187,
"posY": 1.51685083,
"posZ": 58.63176,
"rotX": 0.02240032,
"rotY": 270.002625,
"rotZ": 0.00697853556,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Kleptomania",
"Description": "Basic Weakness",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 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": "e42f12",
"Name": "Card",
"Transform": {
"posX": 66.89174,
"posY": 2.369952,
"posZ": 45.3254356,
"rotX": 0.0208055452,
"rotY": 270.0067,
"rotZ": 0.01677739,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "The 13th Vision",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 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": "2210c1",
"Name": "Card",
"Transform": {
"posX": 60.0020523,
"posY": 1.35961318,
"posZ": 55.47854,
"rotX": 0.0208090711,
"rotY": 269.9957,
"rotZ": 0.0167709384,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Amnesia",
"Description": "Basic Weakness",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 290800,
"SidewaysCard": false,
"CustomDeck": {
"2623": {
"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": "88ee43",
"Name": "Card",
"Transform": {
"posX": 58.93588,
"posY": 1.36254549,
"posZ": 67.02983,
"rotX": 0.01864637,
"rotY": 270.010132,
"rotZ": 0.0065060514,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Hypochondria",
"Description": "Basic Weakness",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 290804,
"SidewaysCard": false,
"CustomDeck": {
"2623": {
"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": "cc65f3",
"Name": "Card",
"Transform": {
"posX": -61.4137726,
"posY": 3.57692623,
"posZ": 5.186873,
"rotX": 0.0208082758,
"rotY": 269.9998,
"rotZ": 0.0167729743,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "The Tower • XVI",
"Description": "Circumstances Beyond Your Control",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 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": "a5be8b",
"Name": "Card",
"Transform": {
"posX": 80.46176,
"posY": 1.37253177,
"posZ": 73.76154,
"rotX": 0.0148119656,
"rotY": 270.004944,
"rotZ": 0.0242835376,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Unspeakable Oath (Bloodthirst)",
"Description": "Basic Weakness",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 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": "4fb446",
"Name": "Card",
"Transform": {
"posX": 84.63887,
"posY": 1.376687,
"posZ": 83.34652,
"rotX": 0.0193456579,
"rotY": 269.996979,
"rotZ": 0.0182021931,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Internal Injury",
"Description": "Basic Weakness",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 290806,
"SidewaysCard": false,
"CustomDeck": {
"2623": {
"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": "fd9c56",
"Name": "Card",
"Transform": {
"posX": 81.04702,
"posY": 1.51482713,
"posZ": 81.20772,
"rotX": 0.0230280347,
"rotY": 269.9986,
"rotZ": 0.0147677548,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Through the Gates",
"Description": "Basic Weakness",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 291019,
"SidewaysCard": false,
"CustomDeck": {
"2659": {
"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": "eff3c8",
"Name": "Card",
"Transform": {
"posX": 82.3005,
"posY": 1.37097037,
"posZ": 66.61211,
"rotX": 0.0208081,
"rotY": 269.999756,
"rotZ": 0.0167713575,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Self-Centered",
"Description": "Basic Weakness",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 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": "c17498",
"Name": "Card",
"Transform": {
"posX": 59.77021,
"posY": 1.36098135,
"posZ": 60.4401855,
"rotX": 0.02080495,
"rotY": 270.007172,
"rotZ": 0.0167757,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Paranoia",
"Description": "Basic Weakness",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 290801,
"SidewaysCard": false,
"CustomDeck": {
"2623": {
"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": "da8711",
"Name": "Card",
"Transform": {
"posX": 13.032177,
"posY": 1.28309393,
"posZ": 56.4412727,
"rotX": 0.02051827,
"rotY": 269.999329,
"rotZ": 0.0162265059,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Accursed Follower",
"Description": "Basic Weakness",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 547832,
"SidewaysCard": false,
"CustomDeck": {
"2663": {
"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": "d83baf",
"Name": "Card",
"Transform": {
"posX": 59.276104,
"posY": 1.36351478,
"posZ": 69.70881,
"rotX": 0.0208085179,
"rotY": 269.998138,
"rotZ": 0.0167739056,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Psychosis",
"Description": "Basic Weakness",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 290803,
"SidewaysCard": false,
"CustomDeck": {
"2623": {
"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": "d5c93d",
"Name": "Card",
"Transform": {
"posX": -65.1514359,
"posY": 3.57692623,
"posZ": 6.00838327,
"rotX": 0.0208086111,
"rotY": 269.999878,
"rotZ": 0.0167732742,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "The Tower • XVI",
"Description": "Circumstances Beyond Your Control",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 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": "da227d",
"Name": "Card",
"Transform": {
"posX": 77.00673,
"posY": 1.37194359,
"posZ": 76.50519,
"rotX": 0.0208081231,
"rotY": 269.999054,
"rotZ": 0.0167726167,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "The Thing That Follows",
"Description": "Enemy",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 290815,
"SidewaysCard": false,
"CustomDeck": {
"2623": {
"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": "b239d7",
"Name": "Card",
"Transform": {
"posX": 59.38398,
"posY": 1.36537349,
"posZ": 75.9246,
"rotX": 0.02080847,
"rotY": 269.999084,
"rotZ": 0.0167746339,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Mob Enforcer",
"Description": "Enemy",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 290816,
"SidewaysCard": false,
"CustomDeck": {
"2623": {
"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": "406ab2",
"Name": "Card",
"Transform": {
"posX": 80.44901,
"posY": 1.53057539,
"posZ": 58.7713966,
"rotX": 0.0195846576,
"rotY": 269.9999,
"rotZ": 0.0153481439,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Your Worst Nightmare",
"Description": "Basic Weakness",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 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": "fc4168",
"Name": "Card",
"Transform": {
"posX": -37.2537,
"posY": 3.134545,
"posZ": 65.7114258,
"rotX": 0.02080753,
"rotY": 269.99942,
"rotZ": 180.016769,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Nihilism",
"Description": "Basic Weakness",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 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": "f6aba5",
"Name": "Card",
"Transform": {
"posX": 80.29785,
"posY": 1.53495085,
"posZ": 73.75409,
"rotX": 0.02094236,
"rotY": 269.999878,
"rotZ": 0.0147951907,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Unspeakable Oath (Curiosity)",
"Description": "Basic Weakness",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 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": "29766c",
"Name": "Card",
"Transform": {
"posX": 84.76986,
"posY": 1.37477219,
"posZ": 76.5368347,
"rotX": 0.0208052341,
"rotY": 270.008362,
"rotZ": 0.01677476,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Overzealous",
"Description": "Basic Weakness",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 290810,
"SidewaysCard": false,
"CustomDeck": {
"2623": {
"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": "121b2d",
"Name": "Card",
"Transform": {
"posX": -37.3926,
"posY": 1.26738691,
"posZ": 76.33738,
"rotX": 0.0208084,
"rotY": 270.001,
"rotZ": 0.0167715531,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Dendromorphosis",
"Description": "Basic Weakness",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 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": "6745c1",
"Name": "Card",
"Transform": {
"posX": -24.4533882,
"posY": 1.77401829,
"posZ": 71.79459,
"rotX": 0.0124726063,
"rotY": 269.999573,
"rotZ": 180.449463,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Day of Reckoning",
"Description": "Basic Weakness",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 558134,
"SidewaysCard": false,
"CustomDeck": {
"2663": {
"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": "3575a3",
"Name": "Card",
"Transform": {
"posX": 60.2334442,
"posY": 1.36171019,
"posZ": 62.84418,
"rotX": 0.0131824408,
"rotY": 269.998535,
"rotZ": 0.0226880386,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Paranoia",
"Description": "Basic Weakness",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 290801,
"SidewaysCard": false,
"CustomDeck": {
"2623": {
"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": "c45e67",
"Name": "Card",
"Transform": {
"posX": -36.5003281,
"posY": 3.135191,
"posZ": 65.93405,
"rotX": 0.0208077282,
"rotY": 269.999329,
"rotZ": 180.016769,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Reckless",
"Description": "Basic Weakness",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 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": "8598a4",
"Name": "Card",
"Transform": {
"posX": 59.72087,
"posY": 1.36020052,
"posZ": 57.8339,
"rotX": 0.0208095219,
"rotY": 269.9957,
"rotZ": 0.01677148,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Amnesia",
"Description": "Basic Weakness",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 290800,
"SidewaysCard": false,
"CustomDeck": {
"2623": {
"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": "249d83",
"Name": "Card",
"Transform": {
"posX": 73.63656,
"posY": 1.66826892,
"posZ": 51.2949,
"rotX": 0.01472312,
"rotY": 269.998657,
"rotZ": 180.026688,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Haunted",
"Description": "Basic Weakness",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 290802,
"SidewaysCard": false,
"CustomDeck": {
"2908": {
"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": "8df93a",
"Name": "Card",
"Transform": {
"posX": 74.0187149,
"posY": 1.37291312,
"posZ": 83.52449,
"rotX": 0.0208078064,
"rotY": 269.9976,
"rotZ": 0.0167761613,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Indebted",
"Description": "Basic Weakness",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 290805,
"SidewaysCard": false,
"CustomDeck": {
"2623": {
"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": "31f72f",
"Name": "Card",
"Transform": {
"posX": 81.1103439,
"posY": 1.37475467,
"posZ": 81.38222,
"rotX": 0.0155774252,
"rotY": 269.998871,
"rotZ": 0.0148439659,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Through the Gates",
"Description": "Basic Weakness",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 291019,
"SidewaysCard": false,
"CustomDeck": {
"2659": {
"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": "57e648",
"Name": "Card",
"Transform": {
"posX": 82.24709,
"posY": 1.371798,
"posZ": 69.50579,
"rotX": 0.0208078641,
"rotY": 269.9998,
"rotZ": 0.01677146,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Narcolepsy",
"Description": "Basic Weakness",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 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": "e27c93",
"Name": "Card",
"Transform": {
"posX": -37.3926926,
"posY": 1.26807761,
"posZ": 78.69699,
"rotX": 0.0208082441,
"rotY": 269.999969,
"rotZ": 0.0167712737,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Offer You Cannot Refuse",
"Description": "Basic Weakness",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 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": "a3bc7a",
"Name": "Card",
"Transform": {
"posX": -35.9241447,
"posY": 3.13553762,
"posZ": 66.01996,
"rotX": 0.0208091866,
"rotY": 269.9995,
"rotZ": 180.016769,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Atychiphobia",
"Description": "Basic Weakness",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 538802,
"SidewaysCard": false,
"CustomDeck": {
"5388": {
"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": "88a9b3",
"Name": "Card",
"Transform": {
"posX": 81.0201,
"posY": 1.373406,
"posZ": 76.52217,
"rotX": 0.0208056755,
"rotY": 270.00824,
"rotZ": 0.016777223,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Overzealous",
"Description": "Basic Weakness",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 290810,
"SidewaysCard": false,
"CustomDeck": {
"2623": {
"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": "960118",
"Name": "Card",
"Transform": {
"posX": 13.032135,
"posY": 1.333963,
"posZ": 56.4778023,
"rotX": 0.0227802545,
"rotY": 269.999939,
"rotZ": 0.0163529646,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Accursed Follower",
"Description": "Basic Weakness",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 547832,
"SidewaysCard": false,
"CustomDeck": {
"2663": {
"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": "162811",
"Name": "Card",
"Transform": {
"posX": 12.64701,
"posY": 1.28197241,
"posZ": 53.1192131,
"rotX": 0.0216190983,
"rotY": 270.0002,
"rotZ": 0.0151699139,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Dread Curse",
"Description": "Basic Weakness",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 547833,
"SidewaysCard": false,
"CustomDeck": {
"2663": {
"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": "ba2ae1",
"Name": "Card",
"Transform": {
"posX": 73.57277,
"posY": 1.367833,
"posZ": 67.00315,
"rotX": 0.0171475261,
"rotY": 269.999878,
"rotZ": 0.014829508,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Doomed",
"Description": "Basic Weakness",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 290814,
"SidewaysCard": false,
"CustomDeck": {
"2623": {
"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": "016e3c",
"Name": "Card",
"Transform": {
"posX": 80.96729,
"posY": 1.37533462,
"posZ": 83.17558,
"rotX": 0.0208096765,
"rotY": 269.9989,
"rotZ": 0.016768232,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Chronophobia",
"Description": "Basic Weakness",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 290807,
"SidewaysCard": false,
"CustomDeck": {
"2623": {
"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": "f9215d",
"Name": "Deck",
"Transform": {
"posX": -20.93888,
"posY": 1.29659843,
"posZ": 64.90667,
"rotX": 0.0208041575,
"rotY": 270.0141,
"rotZ": 180.016785,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "The Circle Undone",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": false,
"SidewaysCard": false,
"DeckIDs": [
290321,
290321,
290320,
290320
],
"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": "",
"ContainedObjects": [
{
"GUID": "c1ce8e",
"Name": "Card",
"Transform": {
"posX": 73.4997559,
"posY": 1.51956129,
"posZ": 58.73982,
"rotX": 0.165745556,
"rotY": 270.0014,
"rotZ": 180.12236,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "The 13th Vision",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 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": "cebf6a",
"Name": "Card",
"Transform": {
"posX": 73.50002,
"posY": 1.515151,
"posZ": 58.74,
"rotX": 0.0141672948,
"rotY": 269.999756,
"rotZ": 0.0134400167,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "The 13th Vision",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 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": "cc65f3",
"Name": "Card",
"Transform": {
"posX": 77.49475,
"posY": 1.3667146,
"posZ": 58.34255,
"rotX": 0.0165024456,
"rotY": 270.0011,
"rotZ": 0.0143494187,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "The Tower • XVI",
"Description": "Circumstances Beyond Your Control",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 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": "d5c93d",
"Name": "Card",
"Transform": {
"posX": 77.45068,
"posY": 1.511687,
"posZ": 58.2785454,
"rotX": 0.0232664831,
"rotY": 269.999329,
"rotZ": 0.008670142,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "The Tower • XVI",
"Description": "Circumstances Beyond Your Control",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 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": "c5261f",
"Name": "Custom_Model_Bag",
"Transform": {
"posX": -33.8014336,
"posY": 1.37955487,
"posZ": 91.6034,
"rotX": 0.02080869,
"rotY": 270.011353,
"rotZ": 0.0167739782,
"scaleX": 1.2,
"scaleY": 1.2,
"scaleZ": 1.2
},
"Nickname": "Bonded",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "https://pastebin.com/raw/ALrYhQGb",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/784110538847770224/4D6AB235B353C755559B14FF6B92C257DBEC075B/",
"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=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by 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\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=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={-1,0.1,-2.1}, rotation={0,0,0}, height=350, width=900,\r\n font_size=250, 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,0.1,-3.7}, rotation={0,0,0}, height=350, width=900,\r\n font_size=250, 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,0.1,-2.1}, rotation={0,0,0}, height=350, width=900,\r\n font_size=250, 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,0.1,-3.7}, rotation={0,0,0}, height=350, width=900,\r\n font_size=250, 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,0.1,-2.9}, rotation={0,0,0}, height=350, width=900,\r\n font_size=250, 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,0.1,-2.9}, rotation={0,0,0}, height=350, width=900,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj, 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,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\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=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=\"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\":{\"100e24\":{\"lock\":false,\"pos\":{\"x\":-33.8782,\"y\":1.3296,\"z\":69.509},\"rot\":{\"x\":0.0208,\"y\":269.9948,\"z\":0.0168}},\"143e38\":{\"lock\":false,\"pos\":{\"x\":-33.8782,\"y\":1.3269,\"z\":60.3088},\"rot\":{\"x\":0.0208,\"y\":269.9949,\"z\":0.0168}},\"14c7e0\":{\"lock\":false,\"pos\":{\"x\":-33.8782,\"y\":1.333,\"z\":81.009},\"rot\":{\"x\":0.0208,\"y\":269.9948,\"z\":0.0168}},\"20570c\":{\"lock\":false,\"pos\":{\"x\":-33.8782,\"y\":1.3337,\"z\":83.309},\"rot\":{\"x\":0.0208,\"y\":269.9898,\"z\":0.0168}},\"29f699\":{\"lock\":false,\"pos\":{\"x\":-33.8782,\"y\":1.3323,\"z\":78.709},\"rot\":{\"x\":0.0208,\"y\":269.9948,\"z\":0.0168}},\"406a2b\":{\"lock\":false,\"pos\":{\"x\":-33.8782,\"y\":1.3303,\"z\":71.809},\"rot\":{\"x\":0.0208,\"y\":269.9946,\"z\":0.0168}},\"4a8eef\":{\"lock\":false,\"pos\":{\"x\":-33.8782,\"y\":1.329,\"z\":67.209},\"rot\":{\"x\":0.0208,\"y\":269.9872,\"z\":0.0168}},\"4cc413\":{\"lock\":false,\"pos\":{\"x\":-33.8782,\"y\":1.3316,\"z\":76.409},\"rot\":{\"x\":0.0208,\"y\":269.9948,\"z\":0.0168}},\"4da36d\":{\"lock\":false,\"pos\":{\"x\":-33.8782,\"y\":1.3276,\"z\":62.6088},\"rot\":{\"x\":0.0208,\"y\":269.9948,\"z\":0.0168}},\"506382\":{\"lock\":false,\"pos\":{\"x\":-33.8782,\"y\":1.3283,\"z\":64.909},\"rot\":{\"x\":0.0208,\"y\":269.9948,\"z\":0.0168}},\"6ad46b\":{\"lock\":false,\"pos\":{\"x\":-33.8782,\"y\":1.331,\"z\":74.109},\"rot\":{\"x\":0.0208,\"y\":269.9683,\"z\":0.0168}},\"6ced1f\":{\"lock\":false,\"pos\":{\"x\":-33.8782,\"y\":1.3343,\"z\":85.609},\"rot\":{\"x\":0.0208,\"y\":269.9947,\"z\":0.0168}},\"cb91bd\":{\"lock\":false,\"pos\":{\"x\":-33.8782,\"y\":1.3263,\"z\":58.0087},\"rot\":{\"x\":0.0208,\"y\":270.021,\"z\":0.0168}},\"fa4c1e\":{\"lock\":false,\"pos\":{\"x\":-33.8782,\"y\":1.2675,\"z\":55.7088},\"rot\":{\"x\":0.0208,\"y\":270,\"z\":0.0168}}}}",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "100e24",
"Name": "Card",
"Transform": {
"posX": -33.8781929,
"posY": 1.26666451,
"posZ": 69.50901,
"rotX": 0.0208093319,
"rotY": 269.9948,
"rotZ": 0.0167691167,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Guardian of the Crystallizer",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 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": "143e38",
"Name": "Card",
"Transform": {
"posX": -33.8781929,
"posY": 1.26397145,
"posZ": 60.3088036,
"rotX": 0.0208102111,
"rotY": 269.9949,
"rotZ": 0.0167699475,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Augur",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 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": "14c7e0",
"Name": "Card",
"Transform": {
"posX": -33.8781929,
"posY": 1.27003062,
"posZ": 81.00901,
"rotX": 0.0208094344,
"rotY": 269.9948,
"rotZ": 0.0167691223,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Bloodlust",
"Description": "Treachery",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 449225,
"SidewaysCard": false,
"CustomDeck": {
"4492": {
"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": "20570c",
"Name": "Card",
"Transform": {
"posX": -33.8781929,
"posY": 1.27070391,
"posZ": 83.3090057,
"rotX": 0.0208111182,
"rotY": 269.9898,
"rotZ": 0.0167672466,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Wish Eater",
"Description": "Jewel of the Gods",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 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": "29f699",
"Name": "Card",
"Transform": {
"posX": -33.8781929,
"posY": 1.26935744,
"posZ": 78.70901,
"rotX": 0.0208093151,
"rotY": 269.9948,
"rotZ": 0.0167691279,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Pendant of the Queen",
"Description": "Of Nothing at All",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 449327,
"SidewaysCard": false,
"CustomDeck": {
"4493": {
"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": "406a2b",
"Name": "Card",
"Transform": {
"posX": -33.8781929,
"posY": 1.26733768,
"posZ": 71.8090057,
"rotX": 0.020809561,
"rotY": 269.9946,
"rotZ": 0.0167688411,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "The Stars Are Right",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 449423,
"SidewaysCard": false,
"CustomDeck": {
"4494": {
"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": "4a8eef",
"Name": "Card",
"Transform": {
"posX": -33.8781929,
"posY": 1.26599121,
"posZ": 67.20901,
"rotX": 0.0208116248,
"rotY": 269.9872,
"rotZ": 0.01676636,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Unbound Beast",
"Description": "Monster. Extradimensional. Tindalos.",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 449136,
"SidewaysCard": false,
"CustomDeck": {
"4491": {
"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": "4cc413",
"Name": "Card",
"Transform": {
"posX": -33.8781929,
"posY": 1.26868415,
"posZ": 76.4090042,
"rotX": 0.0208094567,
"rotY": 269.9948,
"rotZ": 0.01676904,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Blood-Rite",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 848021,
"SidewaysCard": false,
"CustomDeck": {
"8480": {
"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": "4da36d",
"Name": "Card",
"Transform": {
"posX": -33.8781929,
"posY": 1.26464462,
"posZ": 62.6088028,
"rotX": 0.0208101347,
"rotY": 269.9948,
"rotZ": 0.0167700425,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Hope",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 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": "506382",
"Name": "Card",
"Transform": {
"posX": -33.8781929,
"posY": 1.26531792,
"posZ": 64.9090042,
"rotX": 0.0208093952,
"rotY": 269.9948,
"rotZ": 0.0167692732,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Zeal",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 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": "6ad46b",
"Name": "Card",
"Transform": {
"posX": -33.8781929,
"posY": 1.268011,
"posZ": 74.10901,
"rotX": 0.0208171755,
"rotY": 269.9683,
"rotZ": 0.0167594384,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Essence of the Dream",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 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": "6ced1f",
"Name": "Card",
"Transform": {
"posX": -33.8781929,
"posY": 1.27137721,
"posZ": 85.60901,
"rotX": 0.0208094139,
"rotY": 269.99472,
"rotZ": 0.0167690776,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Soothing Melody",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 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": "cb91bd",
"Name": "Card",
"Transform": {
"posX": -33.8781929,
"posY": 1.26329815,
"posZ": 58.0087051,
"rotX": 0.02080272,
"rotY": 270.021,
"rotZ": 0.0167795476,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Dream Parasite",
"Description": "Weakness",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 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": "fa4c1e",
"Name": "Card",
"Transform": {
"posX": -33.8782,
"posY": 1.262625,
"posZ": 55.7088,
"rotX": 0.0208087,
"rotY": 270.0,
"rotZ": 0.01677124,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Dream-Gate",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 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": "b7af15",
"Name": "BlockRectangle",
"Transform": {
"posX": -29.2571526,
"posY": 1.350883,
"posZ": -70.29073,
"rotX": 359.983215,
"rotY": 0.019387763,
"rotZ": 0.0213188957,
"scaleX": 0.09185542,
"scaleY": 0.112467624,
"scaleZ": 22.9546661
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "721ba2",
"Name": "Custom_Token",
"Transform": {
"posX": -27.9361,
"posY": 1.5704,
"posZ": -0.0344,
"rotX": 359.9201,
"rotY": 270.027771,
"rotZ": 0.0168,
"scaleX": 10.0,
"scaleY": 1.0,
"scaleZ": 10.0
},
"Nickname": "Playarea",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": true,
"Grid": true,
"Snap": true,
"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/998015670465071049/FFAE162920D67CF38045EFBD3B85AD0F916147B2/",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "-- set true to enable debug logging\r\nDEBUG = false\r\n\r\n-- we use this to turn off collision handling (for clue spawning)\r\n-- until after load is complete (probably a better way to do this)\r\nCOLLISION_ENABLED = false\r\n\r\n-- TODO get the log function from global instead\r\n-- log = Global.call('getLogFunction', this)\r\nfunction getLogFunction(object)\r\n return function (message)\r\n if DEBUG then\r\n print(message)\r\n end\r\n end\r\nend\r\n\r\nlog = getLogFunction(self)\r\n\r\nfunction onload(save_state)\r\n self.interactable = DEBUG\r\n local dataHelper = getObjectFromGUID('708279')\r\n LOCATIONS = dataHelper.getTable('LOCATIONS_DATA')\r\n\r\n TOKEN_PLAYER_ONE = Global.getTable('tokenplayerone')\r\n COUNTER = getObjectFromGUID('f182ee')\r\n log('attempting to load state: ' .. save_state)\r\n if save_state ~= '' then\r\n SPAWNED_LOCATION_GUIDS = JSON.decode(save_state)\r\n end\r\n\r\n COLLISION_ENABLED = true\r\nend\r\n\r\nfunction onSave()\r\n local spawned_locations = JSON.encode(SPAWNED_LOCATION_GUIDS)\r\n self.script_state = spawned_locations\r\nend\r\n\r\n--[[\r\nrecords locations we have spawned clues for, we write this to the save\r\nfile onsave() so we don't spawn clues again after a load\r\n]]\r\nSPAWNED_LOCATION_GUIDS = {}\r\n\r\nfunction isAlreadySpawned(object)\r\n return SPAWNED_LOCATION_GUIDS[object.getGUID()] ~= nil\r\nend\r\n\r\nfunction markSpawned(object)\r\n SPAWNED_LOCATION_GUIDS[object.getGUID()] = 1\r\nend\r\n\r\nfunction buildKey(object)\r\n return object.getName() .. '_' .. object.getGUID()\r\nend\r\n\r\n-- try the compound key then the name alone as default\r\nfunction getLocation(object)\r\n return LOCATIONS[buildKey(object)] or LOCATIONS[object.getName()]\r\nend\r\n\r\nfunction isLocationWithClues(object)\r\n return getLocation(object) ~= nil\r\nend\r\n\r\n--[[\r\nReturn the number of clues to spawn on this location\r\n]]\r\nfunction getClueCount(object, isFaceDown, playerCount)\r\n if not isLocationWithClues(object) then\r\n error('attempted to get clue for unexpected object: ' .. object.getName())\r\n end\r\n local details = getLocation(object)\r\n log(object.getName() .. ' : ' .. details['type'] .. ' : ' .. details['value'] .. ' : ' .. details['clueSide'])\r\n if ((isFaceDown and details['clueSide'] == 'back')\r\n or (not isFaceDown and details['clueSide'] == 'front')) then\r\n if details['type'] == 'fixed' then\r\n return details['value']\r\n elseif details['type'] == 'perPlayer' then\r\n return details['value'] * playerCount\r\n end\r\n error('unexpected location type: ' .. details['type'])\r\n end\r\n return 0\r\nend\r\n\r\nfunction spawnToken(position, number)\r\n local obj_parameters = {\r\n position = position,\r\n rotation = {3.87674022, -90, 0.239081308}\r\n }\r\n local custom = {\r\n thickness = 0.1,\r\n stackable = true\r\n }\r\n\r\n if number == '1' or number == '2' then\r\n obj_parameters.type = 'Custom_Token'\r\n custom.merge_distance = 5.0\r\n local token = spawnObject(obj_parameters)\r\n if number == '1' then\r\n custom.image = TOKEN_PLAYER_ONE.damageone\r\n token.setCustomObject(custom)\r\n token.scale {0.17, 1, 0.17}\r\n return token\r\n end\r\n\r\n if number == '2' then\r\n custom.image = TOKEN_PLAYER_ONE.damagethree\r\n token.setCustomObject(custom)\r\n token.scale {0.18, 1, 0.18}\r\n return token\r\n end\r\n end\r\n\r\n if number == '3' or number == '4' then\r\n obj_parameters.type = 'Custom_Tile'\r\n custom.type = 2\r\n local token = spawnObject(obj_parameters)\r\n if number == '3' then\r\n custom.image = TOKEN_PLAYER_ONE.clue\r\n custom.image_bottom = TOKEN_PLAYER_ONE.doom\r\n token.setCustomObject(custom)\r\n token.scale {0.25, 1, 0.25}\r\n token.use_snap_points=false\r\n return token\r\n end\r\n\r\n if number == '4' then\r\n custom.image = TOKEN_PLAYER_ONE.doom\r\n custom.image_bottom = TOKEN_PLAYER_ONE.clue\r\n token.setCustomObject(custom)\r\n token.scale {0.25, 1, 0.25}\r\n token.use_snap_points=false\r\n return token\r\n end\r\n end\r\n\r\nend\r\n\r\n\r\nfunction spawnCluesAtLocation(clueCount, collision_info)\r\n local object = collision_info.collision_object\r\n if isAlreadySpawned(object) then\r\n error('tried to spawn clue for already spawned location:' .. object.getName())\r\n end\r\n\r\n local obj_parameters = {}\r\n obj_parameters.type = 'Custom_Token'\r\n obj_parameters.position = {\r\n object.getPosition()[1],\r\n object.getPosition()[2] + 1,\r\n object.getPosition()[3]\r\n }\r\n\r\n log('spawning clues for ' .. object.getName() .. '_' .. object.getGUID())\r\n local playerCount = COUNTER.getVar('val')\r\n log('player count is ' .. playerCount .. ', clue count is ' .. clueCount)\r\n -- mark this location as spawned, can't happen again\r\n markSpawned(object)\r\n i = 0\r\n while i < clueCount do\r\n if i < 4 then\r\n obj_parameters.position = {\r\n collision_info.collision_object.getPosition()[1] + 0.3,\r\n collision_info.collision_object.getPosition()[2] + 0.2,\r\n collision_info.collision_object.getPosition()[3] - 0.8 + (0.55 * i)\r\n }\r\n elseif i < 8 then\r\n obj_parameters.position = {\r\n collision_info.collision_object.getPosition()[1] + 0.85,\r\n collision_info.collision_object.getPosition()[2] + 0.2,\r\n collision_info.collision_object.getPosition()[3] - 3 + (0.55 * i)\r\n }\r\n else\r\n obj_parameters.position = {\r\n collision_info.collision_object.getPosition()[1] + 0.575,\r\n collision_info.collision_object.getPosition()[2] + 0.4,\r\n collision_info.collision_object.getPosition()[3] - 5.2 + (0.55 * i)}\r\n end\r\n spawnToken(obj_parameters.position, '3')\r\n i = i + 1\r\n end\r\nend\r\n\r\n\r\nfunction updateLocations(args)\r\n local custom_data_helper = getObjectFromGUID(args[1])\r\n data_locations = custom_data_helper.getTable(\"LOCATIONS_DATA\")\r\n for k, v in pairs(data_locations) do\r\n LOCATIONS[k] = v\r\n end\r\nend\r\n\r\nfunction onCollisionEnter(collision_info)\r\n -- short circuit all collision stuff until we've loaded state\r\n if not COLLISION_ENABLED then\r\n return\r\n end\r\n\r\n -- check if we should spawn clues here\r\n local object = collision_info.collision_object\r\n if isLocationWithClues(object) and not isAlreadySpawned(object) then\r\n -- this isn't an either/or as down/up here means at a relatively low angle\r\n -- local isFaceUp = not object.is_face_down\r\n -- local isFaceDown = (object.getRotation()[3] > 160 and object.getRotation()[3] < 200)\r\n local playerCount = COUNTER.getVar('val')\r\n local clueCount = getClueCount(object, object.is_face_down, playerCount)\r\n if clueCount > 0 then\r\n spawnCluesAtLocation(clueCount, collision_info)\r\n end\r\n end\r\nend",
"LuaScriptState": "[]",
"XmlUI": ""
},
{
"GUID": "184810",
"Name": "3DText",
"Transform": {
"posX": -26.7878284,
"posY": 1.49997556,
"posZ": 78.69054,
"rotX": 90.0,
"rotY": 90.0,
"rotZ": 0.0,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "Starter Decks",
"colorstate": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"fontSize": 64
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "40dbd9",
"Name": "BlockRectangle",
"Transform": {
"posX": 62.280014,
"posY": 1.47204912,
"posZ": -70.6183853,
"rotX": 359.983215,
"rotY": 3.41881423E-05,
"rotZ": 0.0222879089,
"scaleX": 0.09185542,
"scaleY": 0.112466812,
"scaleZ": 24.3591213
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "ed4ca7",
"Name": "Custom_Model_Bag",
"Transform": {
"posX": -33.337738,
"posY": 1.28831172,
"posZ": -86.7757645,
"rotX": 0.0208102129,
"rotY": 270.000183,
"rotZ": 0.016770618,
"scaleX": 0.5,
"scaleY": 0.139652729,
"scaleZ": 0.5
},
"Nickname": "Community-Created Player Cards/Investigators",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"MaterialIndex": -1,
"MeshIndex": -1,
"CustomMesh": {
"MeshURL": "https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/core_h_MSH.obj",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/1597044073919513962/49846EAC1BFF6C62218A7933D1754ED37F4C72C8/",
"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": "58ddca",
"Name": "Custom_Model",
"Transform": {
"posX": -20.93933,
"posY": 2.00877357,
"posZ": 81.00678,
"rotX": 358.9801,
"rotY": 270.010956,
"rotZ": 0.0212039985,
"scaleX": 1.3633405,
"scaleY": 0.2837723,
"scaleZ": 1.49288893
},
"Nickname": "Weird West Custom Investigators",
"Description": "Created by Samirashul",
"GMNotes": "fancreations/investigators_weird_west.json",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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/1697276706767572704/331469F5EAD01108E83C7662B9949F4AC3D00313/",
"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\":{\"05e2c0\":{\"lock\":false,\"pos\":{\"x\":-26.3001842498779,\"y\":1.47353863716125,\"z\":-76.9456405639648},\"rot\":{\"x\":0.0208083260804415,\"y\":270.001403808594,\"z\":180.01676940918}},\"09ad66\":{\"lock\":false,\"pos\":{\"x\":-22.615743637085,\"y\":1.30868756771088,\"z\":-76.9460296630859},\"rot\":{\"x\":0.0208102352917194,\"y\":269.995422363281,\"z\":0.0167690441012383}},\"3212ba\":{\"lock\":false,\"pos\":{\"x\":-22.7136993408203,\"y\":1.30798888206482,\"z\":-79.2113952636719},\"rot\":{\"x\":0.0208046901971102,\"y\":270.013366699219,\"z\":0.0167759861797094}},\"4a4add\":{\"lock\":false,\"pos\":{\"x\":-22.7518444061279,\"y\":1.31493735313416,\"z\":-55.4262008666992},\"rot\":{\"x\":0.0208011120557785,\"y\":270.025115966797,\"z\":0.0167802777141333}},\"560bdb\":{\"lock\":false,\"pos\":{\"x\":-22.6168918609619,\"y\":1.3063827753067,\"z\":-84.818489074707},\"rot\":{\"x\":0.0208111274987459,\"y\":269.991058349609,\"z\":0.0167677570134401}},\"598416\":{\"lock\":false,\"pos\":{\"x\":-26.3000087738037,\"y\":1.48041987419128,\"z\":-53.4368515014648},\"rot\":{\"x\":0.0208082254976034,\"y\":270.000610351563,\"z\":180.01676940918}},\"60c34e\":{\"lock\":false,\"pos\":{\"x\":-22.6686191558838,\"y\":1.30925226211548,\"z\":-74.9513778686523},\"rot\":{\"x\":0.0208004489541054,\"y\":270.027587890625,\"z\":0.0167813859879971}},\"652771\":{\"lock\":false,\"pos\":{\"x\":-22.6169414520264,\"y\":1.31328415870667,\"z\":-61.2413673400879},\"rot\":{\"x\":0.0208116583526134,\"y\":269.990875244141,\"z\":0.0167675074189901}},\"6a79ce\":{\"lock\":false,\"pos\":{\"x\":-22.7609882354736,\"y\":1.31608760356903,\"z\":-51.4852142333984},\"rot\":{\"x\":0.0208025313913822,\"y\":270.020202636719,\"z\":0.0167785175144672}},\"6a93db\":{\"lock\":false,\"pos\":{\"x\":-19.3000030517578,\"y\":1.31677353382111,\"z\":-53.4358215332031},\"rot\":{\"x\":0.02080830745399,\"y\":270.000762939453,\"z\":0.0167714785784483}},\"701c64\":{\"lock\":false,\"pos\":{\"x\":-26.300142288208,\"y\":1.50220584869385,\"z\":-61.2409629821777},\"rot\":{\"x\":0.0208188965916634,\"y\":269.965393066406,\"z\":180.01676940918}},\"730956\":{\"lock\":false,\"pos\":{\"x\":-19.3000602722168,\"y\":1.31449115276337,\"z\":-61.2332382202148},\"rot\":{\"x\":0.0208089556545019,\"y\":269.998840332031,\"z\":0.0167708117514849}},\"805c5d\":{\"lock\":false,\"pos\":{\"x\":-22.7589092254639,\"y\":1.3069132566452,\"z\":-82.8301010131836},\"rot\":{\"x\":0.0208124294877052,\"y\":269.987060546875,\"z\":0.0167664363980293}},\"80c874\":{\"lock\":false,\"pos\":{\"x\":-22.5390548706055,\"y\":1.31388795375824,\"z\":-59.2751998901367},\"rot\":{\"x\":0.0208148751407862,\"y\":269.978088378906,\"z\":0.0167632009834051}},\"8782a0\":{\"lock\":false,\"pos\":{\"x\":-22.7289066314697,\"y\":1.31035208702087,\"z\":-71.1191024780273},\"rot\":{\"x\":0.0208046063780785,\"y\":270.013366699219,\"z\":0.0167760066688061}},\"8903f5\":{\"lock\":false,\"pos\":{\"x\":-22.7560520172119,\"y\":1.31155574321747,\"z\":-66.9736251831055},\"rot\":{\"x\":0.0208087116479874,\"y\":269.998748779297,\"z\":0.0167708247900009}},\"a0221f\":{\"lock\":false,\"pos\":{\"x\":-26.3001880645752,\"y\":1.47584664821625,\"z\":-69.0605850219727},\"rot\":{\"x\":0.0208174251019955,\"y\":269.968963623047,\"z\":180.01676940918}},\"a98e88\":{\"lock\":false,\"pos\":{\"x\":-22.6028499603271,\"y\":1.31268572807312,\"z\":-63.3029747009277},\"rot\":{\"x\":0.0208002626895905,\"y\":270.028137207031,\"z\":0.0167814139276743}},\"ad33a4\":{\"lock\":false,\"pos\":{\"x\":-22.6156806945801,\"y\":1.31099140644073,\"z\":-69.0756072998047},\"rot\":{\"x\":0.020808132365346,\"y\":270.002166748047,\"z\":0.0167719703167677}},\"be922f\":{\"lock\":false,\"pos\":{\"x\":-22.7915019989014,\"y\":1.30566263198853,\"z\":-87.0623779296875},\"rot\":{\"x\":0.0208004154264927,\"y\":270.027099609375,\"z\":0.0167809296399355}},\"beae03\":{\"lock\":false,\"pos\":{\"x\":-22.613883972168,\"y\":1.31556940078735,\"z\":-53.4381103515625},\"rot\":{\"x\":0.0208098795264959,\"y\":269.995910644531,\"z\":0.0167693924158812}},\"caefe0\":{\"lock\":false,\"pos\":{\"x\":-19.2935924530029,\"y\":1.30989539623261,\"z\":-76.941535949707},\"rot\":{\"x\":0.0208082757890224,\"y\":270.0009765625,\"z\":0.0167715456336737}},\"cd9447\":{\"lock\":false,\"pos\":{\"x\":-26.2995929718018,\"y\":1.47123456001282,\"z\":-84.8179931640625},\"rot\":{\"x\":0.0208129994571209,\"y\":269.984710693359,\"z\":180.01676940918}},\"db4063\":{\"lock\":false,\"pos\":{\"x\":-19.2958602905273,\"y\":1.31220149993896,\"z\":-69.0606918334961},\"rot\":{\"x\":0.0208044555038214,\"y\":270.014404296875,\"z\":0.0167763326317072}},\"f49f9a\":{\"lock\":false,\"pos\":{\"x\":-19.299768447876,\"y\":1.30758762359619,\"z\":-84.8181686401367},\"rot\":{\"x\":0.0208086315542459,\"y\":270.000061035156,\"z\":0.0167712438851595}}}}",
"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": "c5c294",
"Name": "Custom_Model",
"Transform": {
"posX": -35.716568,
"posY": 1.97299767,
"posZ": -126.280449,
"rotX": 0.0208078455,
"rotY": 269.999847,
"rotZ": 0.0167706553,
"scaleX": 1.754106,
"scaleY": 0.365108132,
"scaleZ": 1.92078626
},
"Nickname": "Touhou Project Investigators",
"Description": "",
"GMNotes": "fancreations/investigators_touhou_project.json",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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/1697277697641042816/D60194A8F22DA3032E6C2AC2EE040E6321A2B259/",
"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\":{\"0115c9\":{\"lock\":false,\"pos\":{\"x\":-19.2997627258301,\"y\":1.30758762359619,\"z\":-84.8181610107422},\"rot\":{\"x\":0.0208086222410202,\"y\":270.000122070313,\"z\":0.0167708657681942}},\"0869b0\":{\"lock\":false,\"pos\":{\"x\":-16.6232986450195,\"y\":1.3645213842392,\"z\":-52.1352844238281},\"rot\":{\"x\":0.0208164509385824,\"y\":269.999725341797,\"z\":0.0167680736631155}},\"0a0573\":{\"lock\":false,\"pos\":{\"x\":-26.3001403808594,\"y\":1.27108871936798,\"z\":-69.0605621337891},\"rot\":{\"x\":359.979156494141,\"y\":89.999755859375,\"z\":359.983245849609}},\"1342d8\":{\"lock\":false,\"pos\":{\"x\":-16.6233005523682,\"y\":1.36150372028351,\"z\":-62.4441528320313},\"rot\":{\"x\":0.0208265371620655,\"y\":269.965148925781,\"z\":0.0167555063962936}},\"13d5ca\":{\"lock\":false,\"pos\":{\"x\":-16.6233386993408,\"y\":1.36186385154724,\"z\":-61.2142486572266},\"rot\":{\"x\":0.0208137799054384,\"y\":270.010925292969,\"z\":0.0167719274759293}},\"1b5323\":{\"lock\":false,\"pos\":{\"x\":-16.6233882904053,\"y\":1.3569039106369,\"z\":-78.1589050292969},\"rot\":{\"x\":0.0208134669810534,\"y\":270.008728027344,\"z\":0.0167714152485132}},\"281a12\":{\"lock\":false,\"pos\":{\"x\":-16.6235446929932,\"y\":1.35957205295563,\"z\":-69.0435638427734},\"rot\":{\"x\":0.0208162851631641,\"y\":269.999542236328,\"z\":0.0167678333818913}},\"2b6fc7\":{\"lock\":false,\"pos\":{\"x\":-16.6234893798828,\"y\":1.35495936870575,\"z\":-84.8014602661133},\"rot\":{\"x\":0.0208100788295269,\"y\":270.022277832031,\"z\":0.0167760886251926}},\"2f94db\":{\"lock\":false,\"pos\":{\"x\":-22.6168899536133,\"y\":1.3063827753067,\"z\":-84.8184814453125},\"rot\":{\"x\":0.0167733915150166,\"y\":180.006057739258,\"z\":359.979187011719}},\"36536d\":{\"lock\":false,\"pos\":{\"x\":-19.3000545501709,\"y\":1.31449115276337,\"z\":-61.2332344055176},\"rot\":{\"x\":0.0208088923245668,\"y\":270.000030517578,\"z\":0.0167707651853561}},\"47b3b0\":{\"lock\":false,\"pos\":{\"x\":-16.6235466003418,\"y\":1.35762691497803,\"z\":-75.6886901855469},\"rot\":{\"x\":0.0208199042826891,\"y\":269.987365722656,\"z\":0.0167634058743715}},\"500c37\":{\"lock\":false,\"pos\":{\"x\":-16.622652053833,\"y\":1.35460841655731,\"z\":-86.0018463134766},\"rot\":{\"x\":0.0208170153200626,\"y\":269.999633789063,\"z\":0.0167679078876972}},\"503494\":{\"lock\":false,\"pos\":{\"x\":-19.293586730957,\"y\":1.30989539623261,\"z\":-76.9415283203125},\"rot\":{\"x\":0.0208088792860508,\"y\":270.000091552734,\"z\":0.0167709421366453}},\"51e457\":{\"lock\":false,\"pos\":{\"x\":-16.621789932251,\"y\":1.35533368587494,\"z\":-83.5248031616211},\"rot\":{\"x\":0.0208167061209679,\"y\":269.998016357422,\"z\":0.0167672149837017}},\"589aa6\":{\"lock\":false,\"pos\":{\"x\":-17.1323127746582,\"y\":1.3304169178009,\"z\":-48.3126525878906},\"rot\":{\"x\":0.0208026915788651,\"y\":269.992309570313,\"z\":0.0167681984603405}},\"665ba2\":{\"lock\":false,\"pos\":{\"x\":-22.6713542938232,\"y\":1.30378520488739,\"z\":-47.1474685668945},\"rot\":{\"x\":0.0208087246865034,\"y\":269.999694824219,\"z\":0.0167711805552244}},\"6a5902\":{\"lock\":false,\"pos\":{\"x\":-16.6233062744141,\"y\":1.36415886878967,\"z\":-53.3736763000488},\"rot\":{\"x\":0.0208215937018394,\"y\":269.983764648438,\"z\":0.0167623329907656}},\"7122c7\":{\"lock\":false,\"pos\":{\"x\":-26.3001747131348,\"y\":1.26878070831299,\"z\":-76.9456329345703},\"rot\":{\"x\":359.979156494141,\"y\":89.9993057250977,\"z\":359.983215332031}},\"768f18\":{\"lock\":false,\"pos\":{\"x\":-26.29958152771,\"y\":1.26647710800171,\"z\":-84.817985534668},\"rot\":{\"x\":359.979156494141,\"y\":90.0005798339844,\"z\":359.983215332031}},\"78041d\":{\"lock\":false,\"pos\":{\"x\":-26.3001346588135,\"y\":1.27337789535522,\"z\":-61.2409591674805},\"rot\":{\"x\":359.979156494141,\"y\":89.9918670654297,\"z\":359.983245849609}},\"8b68e0\":{\"lock\":false,\"pos\":{\"x\":-19.2999973297119,\"y\":1.31677353382111,\"z\":-53.4358177185059},\"rot\":{\"x\":0.020808944478631,\"y\":270.000030517578,\"z\":0.0167707353830338}},\"8d3616\":{\"lock\":false,\"pos\":{\"x\":-26.2999992370605,\"y\":1.27566230297089,\"z\":-53.436840057373},\"rot\":{\"x\":359.979156494141,\"y\":90.0000076293945,\"z\":359.983245849609}},\"96c54e\":{\"lock\":false,\"pos\":{\"x\":-16.6233100891113,\"y\":1.36379873752594,\"z\":-54.6039886474609},\"rot\":{\"x\":0.020816121250391,\"y\":270.000244140625,\"z\":0.0167683251202106}},\"a6c471\":{\"lock\":false,\"pos\":{\"x\":-22.6138801574707,\"y\":1.31556940078735,\"z\":-53.4381103515625},\"rot\":{\"x\":0.0167721062898636,\"y\":180.002349853516,\"z\":359.979187011719}},\"cc9de1\":{\"lock\":false,\"pos\":{\"x\":-22.6169376373291,\"y\":1.31328415870667,\"z\":-61.2413673400879},\"rot\":{\"x\":0.0167721807956696,\"y\":180.001998901367,\"z\":359.979187011719}},\"ccd02d\":{\"lock\":false,\"pos\":{\"x\":-16.6233386993408,\"y\":1.36222386360168,\"z\":-59.9842529296875},\"rot\":{\"x\":0.0208138879388571,\"y\":270.010620117188,\"z\":0.0167719721794128}},\"d01288\":{\"lock\":false,\"pos\":{\"x\":-16.6233234405518,\"y\":1.35921192169189,\"z\":-70.2738494873047},\"rot\":{\"x\":0.0208166427910328,\"y\":269.999420166016,\"z\":0.0167679861187935}},\"dde8a8\":{\"lock\":false,\"pos\":{\"x\":-16.6228141784668,\"y\":1.35726404190063,\"z\":-76.9289321899414},\"rot\":{\"x\":0.0208161640912294,\"y\":269.999725341797,\"z\":0.016768041998148}},\"f01f56\":{\"lock\":false,\"pos\":{\"x\":-19.2958545684814,\"y\":1.31220149993896,\"z\":-69.0606842041016},\"rot\":{\"x\":0.0208088848739862,\"y\":270.000122070313,\"z\":0.0167712066322565}},\"f0b6f4\":{\"lock\":false,\"pos\":{\"x\":-16.6233520507813,\"y\":1.35993504524231,\"z\":-67.803825378418},\"rot\":{\"x\":0.0208160504698753,\"y\":269.999847412109,\"z\":0.0167683139443398}},\"ff2498\":{\"lock\":false,\"pos\":{\"x\":-22.6156692504883,\"y\":1.31099128723145,\"z\":-69.0755920410156},\"rot\":{\"x\":0.0167712494730949,\"y\":180.000106811523,\"z\":359.979187011719}},\"fffb0c\":{\"lock\":false,\"pos\":{\"x\":-22.6157398223877,\"y\":1.30868756771088,\"z\":-76.9460220336914},\"rot\":{\"x\":0.0167720932513475,\"y\":180.002090454102,\"z\":359.979187011719}}}}",
"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": "d78bd2",
"Name": "Custom_Model",
"Transform": {
"posX": -17.4335384,
"posY": 2.82624221,
"posZ": -101.730057,
"rotX": 0.0208087452,
"rotY": 270.0,
"rotZ": 0.0167706832,
"scaleX": 1.3633405,
"scaleY": 0.2837723,
"scaleZ": 1.49288893
},
"Nickname": "Strange Aeons Custom Investigators",
"Description": "",
"GMNotes": "fancreations/investigators_strange_aeons.json",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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\":{\"089a45\":{\"lock\":false,\"pos\":{\"x\":-19.2959,\"y\":1.3122,\"z\":-69.0607},\"rot\":{\"x\":0.0208,\"y\":270.0001,\"z\":0.0168}},\"0d2913\":{\"lock\":false,\"pos\":{\"x\":-19.2998,\"y\":1.3076,\"z\":-84.8182},\"rot\":{\"x\":0.0208,\"y\":270,\"z\":0.0168}},\"1f4db7\":{\"lock\":false,\"pos\":{\"x\":-19.3,\"y\":1.4902,\"z\":-91.0572},\"rot\":{\"x\":0.0208,\"y\":270,\"z\":0.0168}},\"23d41e\":{\"lock\":false,\"pos\":{\"x\":-19.3,\"y\":1.32,\"z\":-47.118},\"rot\":{\"x\":0.0208,\"y\":270.0002,\"z\":0.0168}},\"29cf64\":{\"lock\":false,\"pos\":{\"x\":-19.2936,\"y\":1.3099,\"z\":-76.9416},\"rot\":{\"x\":0.0208,\"y\":270.0001,\"z\":0.0168}},\"3465a5\":{\"lock\":false,\"pos\":{\"x\":-19.3,\"y\":1.3168,\"z\":-53.4358},\"rot\":{\"x\":0.0208,\"y\":270.0001,\"z\":0.0168}},\"3aa40a\":{\"lock\":false,\"pos\":{\"x\":-19.3001,\"y\":1.3145,\"z\":-61.2333},\"rot\":{\"x\":0.0208,\"y\":270.0002,\"z\":0.0168}},\"3f56a4\":{\"lock\":false,\"pos\":{\"x\":-22.6169,\"y\":1.3282,\"z\":-84.8185},\"rot\":{\"x\":0.0208,\"y\":270.0002,\"z\":0.0168}},\"55c805\":{\"lock\":false,\"pos\":{\"x\":-22.6158,\"y\":1.3305,\"z\":-76.946},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"7634fc\":{\"lock\":false,\"pos\":{\"x\":-22.61,\"y\":1.34,\"z\":-47.12},\"rot\":{\"x\":0.0208,\"y\":269.9998,\"z\":0.0168}},\"8d39b5\":{\"lock\":false,\"pos\":{\"x\":-22.6157,\"y\":1.3328,\"z\":-69.0756},\"rot\":{\"x\":0.0208,\"y\":270.0002,\"z\":0.0168}},\"a57210\":{\"lock\":false,\"pos\":{\"x\":-22.6139,\"y\":1.3373,\"z\":-53.4381},\"rot\":{\"x\":0.0208,\"y\":270,\"z\":0.0168}},\"ff2949\":{\"lock\":false,\"pos\":{\"x\":-22.617,\"y\":1.3351,\"z\":-61.2414},\"rot\":{\"x\":0.0208,\"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": "b06fd9",
"Name": "Custom_Model",
"Transform": {
"posX": -44.3396263,
"posY": 1.97348189,
"posZ": -111.047,
"rotX": 0.0208100341,
"rotY": 269.998657,
"rotZ": 0.0167715214,
"scaleX": 2.21,
"scaleY": 0.46,
"scaleZ": 2.42
},
"Nickname": "Signature Replacements",
"Description": "By Mint Tea Fan",
"GMNotes": "fancreations/investigators_replacements.json",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.352941036,
"g": 0.349019468,
"b": 0.349019468
},
"LayoutGroupSortIndex": 0,
"Value": 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/1754686449895581106/83D855A76FC7568415189A03882317685F6B55EE/",
"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\":{\"098d30\":{\"lock\":false,\"pos\":{\"x\":6.9713,\"y\":1.3044,\"z\":-81.9249},\"rot\":{\"x\":0.0208,\"y\":270.0001,\"z\":0.0168}},\"62d0d7\":{\"lock\":false,\"pos\":{\"x\":6.9713,\"y\":1.3104,\"z\":-61.2247},\"rot\":{\"x\":0.0208,\"y\":270.0001,\"z\":0.0168}},\"7da10d\":{\"lock\":false,\"pos\":{\"x\":6.9713,\"y\":1.3064,\"z\":-75.0248},\"rot\":{\"x\":0.0208,\"y\":270,\"z\":0.0168}},\"9ad488\":{\"lock\":false,\"pos\":{\"x\":6.9713,\"y\":1.3084,\"z\":-68.1247},\"rot\":{\"x\":0.0208,\"y\":270.0001,\"z\":0.0168}},\"a93c12\":{\"lock\":false,\"pos\":{\"x\":17.4327,\"y\":1.3008,\"z\":-54.6873},\"rot\":{\"x\":359.7432,\"y\":269.9996,\"z\":0.0168}},\"c96f3f\":{\"lock\":false,\"pos\":{\"x\":25.599,\"y\":1.4603,\"z\":-35.711},\"rot\":{\"x\":359.9201,\"y\":270.0024,\"z\":0.0169}},\"ec74df\":{\"lock\":false,\"pos\":{\"x\":6.9713,\"y\":1.3124,\"z\":-54.3247},\"rot\":{\"x\":0.0208,\"y\":270,\"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": "2e5eef",
"Name": "Custom_Model",
"Transform": {
"posX": -17.1204433,
"posY": 3.270087,
"posZ": -93.31837,
"rotX": 1.74793922E-06,
"rotY": 269.996155,
"rotZ": -1.62352626E-05,
"scaleX": 2.21,
"scaleY": 0.46,
"scaleZ": 2.42
},
"Nickname": "The Shadows of Arkham Player Cards",
"Description": "",
"GMNotes": "fancreations/investigators_shadows_of_arkham.json",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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/1697282751257289223/D03666A291CC5705A3656865488583FF4AB762B4/",
"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": "function 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\":{\"00ec68\":{\"lock\":false,\"position\":{\"x\":52.9890174865723,\"y\":1.29333806037903,\"z\":-93.6057357788086},\"rotation\":{\"x\":0.0199895389378071,\"y\":269.998107910156,\"z\":0.0199991464614868}},\"0316b8\":{\"lock\":false,\"position\":{\"x\":53.2300033569336,\"y\":1.30450367927551,\"z\":78.6399993896484},\"rotation\":{\"x\":0.0199890565127134,\"y\":269.999969482422,\"z\":0.0199999362230301}},\"037bc1\":{\"lock\":false,\"position\":{\"x\":58.3800010681152,\"y\":1.30066311359406,\"z\":62.4900016784668},\"rotation\":{\"x\":0.0199890714138746,\"y\":270.000061035156,\"z\":0.0200001243501902}},\"046176\":{\"lock\":false,\"position\":{\"x\":58.3800010681152,\"y\":1.31029713153839,\"z\":90.0899963378906},\"rotation\":{\"x\":0.0199889130890369,\"y\":270.000061035156,\"z\":0.0199998635798693}},\"07d486\":{\"lock\":false,\"position\":{\"x\":-19.3082790374756,\"y\":1.30661237239838,\"z\":-84.7379150390625},\"rotation\":{\"x\":0.0199892167001963,\"y\":270,\"z\":0.0199996847659349}},\"084441\":{\"lock\":false,\"position\":{\"x\":49.2799987792969,\"y\":1.30174660682678,\"z\":-65.8099975585938},\"rotation\":{\"x\":0.0199889466166496,\"y\":270.000030517578,\"z\":0.0199998766183853}},\"0b7b88\":{\"lock\":false,\"position\":{\"x\":32.9900016784668,\"y\":1.29445779323578,\"z\":-70.4100036621094},\"rotation\":{\"x\":0.0199888814240694,\"y\":270.000030517578,\"z\":0.0199998747557402}},\"0be9f3\":{\"lock\":false,\"position\":{\"x\":40.2900009155273,\"y\":1.30422675609589,\"z\":-49.7200012207031},\"rotation\":{\"x\":0.0199888404458761,\"y\":270.000030517578,\"z\":0.0199997909367085}},\"0cebea\":{\"lock\":false,\"position\":{\"x\":37.4199981689453,\"y\":1.29899501800537,\"z\":78.6600036621094},\"rotation\":{\"x\":0.0199889577925205,\"y\":269.999938964844,\"z\":0.0199999120086432}},\"0ffb49\":{\"lock\":false,\"position\":{\"x\":36.620002746582,\"y\":1.29251289367676,\"z\":-79.6100006103516},\"rotation\":{\"x\":0.0199891477823257,\"y\":270,\"z\":0.0199997574090958}},\"180ad1\":{\"lock\":false,\"position\":{\"x\":58.379997253418,\"y\":1.29745161533356,\"z\":53.2899971008301},\"rotation\":{\"x\":0.0199890490621328,\"y\":269.999969482422,\"z\":0.0200000181794167}},\"1cbd7b\":{\"lock\":false,\"position\":{\"x\":49.5600051879883,\"y\":1.30001544952393,\"z\":69.4499969482422},\"rotation\":{\"x\":0.0199890844523907,\"y\":269.999938964844,\"z\":0.0199999641627073}},\"1cd8ab\":{\"lock\":false,\"position\":{\"x\":32.9900016784668,\"y\":1.29124653339386,\"z\":-79.6100006103516},\"rotation\":{\"x\":0.0199889782816172,\"y\":270,\"z\":0.0199996642768383}},\"1cde85\":{\"lock\":false,\"position\":{\"x\":40.9600028991699,\"y\":1.30183231830597,\"z\":83.25},\"rotation\":{\"x\":0.0199889782816172,\"y\":269.999938964844,\"z\":0.0199997965246439}},\"1f2d61\":{\"lock\":false,\"position\":{\"x\":52.9399948120117,\"y\":1.30382287502289,\"z\":-63.5199928283691},\"rotation\":{\"x\":0.0199888907372952,\"y\":269.999969482422,\"z\":0.0199997611343861}},\"20032d\":{\"lock\":false,\"position\":{\"x\":40.9599990844727,\"y\":1.29460656642914,\"z\":62.5499992370605},\"rotation\":{\"x\":0.0199888497591019,\"y\":270,\"z\":0.019999835640192}},\"24ceaa\":{\"lock\":false,\"position\":{\"x\":40.2900009155273,\"y\":1.2953953742981,\"z\":-75.0199966430664},\"rotation\":{\"x\":0.0199888348579407,\"y\":270,\"z\":0.0199998505413532}},\"254e1c\":{\"lock\":false,\"position\":{\"x\":49.560001373291,\"y\":1.30483257770538,\"z\":83.25},\"rotation\":{\"x\":0.0199889410287142,\"y\":270.000030517578,\"z\":0.0200001746416092}},\"27c7a8\":{\"lock\":false,\"position\":{\"x\":52.9400024414063,\"y\":1.30783712863922,\"z\":-52.0199966430664},\"rotation\":{\"x\":0.0199888460338116,\"y\":270,\"z\":0.0199999995529652}},\"27f23d\":{\"lock\":false,\"position\":{\"x\":40.9599761962891,\"y\":1.28978943824768,\"z\":48.7499160766602},\"rotation\":{\"x\":0.0199898928403854,\"y\":269.996948242188,\"z\":0.019998911768198}},\"2802c1\":{\"lock\":false,\"position\":{\"x\":40.2900009155273,\"y\":1.29298686981201,\"z\":-81.9199981689453},\"rotation\":{\"x\":0.0199889708310366,\"y\":270,\"z\":0.0199997909367085}},\"2b4ccd\":{\"lock\":false,\"position\":{\"x\":58.3794555664063,\"y\":1.30306661128998,\"z\":69.3763885498047},\"rotation\":{\"x\":0.019983533769846,\"y\":270.015502929688,\"z\":0.0200053323060274}},\"2c6a8e\":{\"lock\":false,\"position\":{\"x\":33.8600006103516,\"y\":1.29212963581085,\"z\":62.5499992370605},\"rotation\":{\"x\":0.0199890900403261,\"y\":270,\"z\":0.0199998486787081}},\"2d49cf\":{\"lock\":false,\"position\":{\"x\":53.2300033569336,\"y\":1.30370080471039,\"z\":76.3399963378906},\"rotation\":{\"x\":0.0199890248477459,\"y\":269.999938964844,\"z\":0.0199999548494816}},\"2f5e39\":{\"lock\":false,\"position\":{\"x\":40.2899971008301,\"y\":1.29619824886322,\"z\":-72.7200088500977},\"rotation\":{\"x\":0.0199888180941343,\"y\":270,\"z\":0.0199999939650297}},\"3282d4\":{\"lock\":false,\"position\":{\"x\":36.620002746582,\"y\":1.29492139816284,\"z\":-72.7099990844727},\"rotation\":{\"x\":0.0199890546500683,\"y\":270,\"z\":0.0199999008327723}},\"361151\":{\"lock\":false,\"position\":{\"x\":-19.2999992370605,\"y\":1.3175402879715,\"z\":-53.439998626709},\"rotation\":{\"x\":0.019978741183877,\"y\":270.030609130859,\"z\":0.0200103744864464}},\"377f65\":{\"lock\":false,\"position\":{\"x\":25.5706024169922,\"y\":1.29965567588806,\"z\":92.3952865600586},\"rotation\":{\"x\":0.0199942197650671,\"y\":269.984924316406,\"z\":0.0199946351349354}},\"384dfa\":{\"lock\":false,\"position\":{\"x\":58.3800048828125,\"y\":1.31110000610352,\"z\":92.3899993896484},\"rotation\":{\"x\":0.0199889671057463,\"y\":269.999938964844,\"z\":0.0199998449534178}},\"3ae6c4\":{\"lock\":false,\"position\":{\"x\":40.9599990844727,\"y\":1.29380369186401,\"z\":60.25},\"rotation\":{\"x\":0.0199888423085213,\"y\":270,\"z\":0.0199998654425144}},\"3b983b\":{\"lock\":false,\"position\":{\"x\":-19.2918758392334,\"y\":1.31209874153137,\"z\":-69.0368881225586},\"rotation\":{\"x\":0.0199905168265104,\"y\":269.996307373047,\"z\":0.019998399540782}},\"427789\":{\"lock\":false,\"position\":{\"x\":-22.6200008392334,\"y\":1.31092262268066,\"z\":-69.0800018310547},\"rotation\":{\"x\":0.0199892036616802,\"y\":269.999877929688,\"z\":0.0199997294694185}},\"463ad7\":{\"lock\":false,\"position\":{\"x\":49.2799949645996,\"y\":1.30495798587799,\"z\":-56.6100044250488},\"rotation\":{\"x\":0.0199889857321978,\"y\":270,\"z\":0.0199998263269663}},\"4a3cb4\":{\"lock\":false,\"position\":{\"x\":53.2300033569336,\"y\":1.30851793289185,\"z\":90.1399993896484},\"rotation\":{\"x\":0.0199890285730362,\"y\":269.999938964844,\"z\":0.0199999492615461}},\"4a92af\":{\"lock\":false,\"position\":{\"x\":40.9599990844727,\"y\":1.29300093650818,\"z\":57.9500007629395},\"rotation\":{\"x\":0.0199889596551657,\"y\":270,\"z\":0.0199998430907726}},\"4b4086\":{\"lock\":false,\"position\":{\"x\":58.3254814147949,\"y\":1.51360487937927,\"z\":42.2086868286133},\"rotation\":{\"x\":9.23278457776178E-06,\"y\":269.997741699219,\"z\":1.04533889100367E-07}},\"4b880b\":{\"lock\":false,\"position\":{\"x\":52.9400024414063,\"y\":1.30302000045776,\"z\":-65.8199996948242},\"rotation\":{\"x\":0.0199885722249746,\"y\":270.000793457031,\"z\":0.0200000759214163}},\"4b9cb9\":{\"lock\":false,\"position\":{\"x\":41.0037727355957,\"y\":1.28888833522797,\"z\":46.1245384216309},\"rotation\":{\"x\":0.019988689571619,\"y\":270.000671386719,\"z\":0.0200000945478678}},\"4d49f7\":{\"lock\":false,\"position\":{\"x\":37.4199981689453,\"y\":1.29176950454712,\"z\":57.9599990844727},\"rotation\":{\"x\":0.0199888795614243,\"y\":270,\"z\":0.0200000703334808}},\"50cc1a\":{\"lock\":false,\"position\":{\"x\":32.9899978637695,\"y\":1.28883790969849,\"z\":-86.510009765625},\"rotation\":{\"x\":0.0199888162314892,\"y\":270.000030517578,\"z\":0.0200000032782555}},\"51d058\":{\"lock\":false,\"position\":{\"x\":-22.6099987030029,\"y\":1.31638550758362,\"z\":-53.4399948120117},\"rotation\":{\"x\":0.0199892148375511,\"y\":269.999877929688,\"z\":0.0199998188763857}},\"51e6f7\":{\"lock\":false,\"position\":{\"x\":36.598518371582,\"y\":1.2876660823822,\"z\":-93.4732894897461},\"rotation\":{\"x\":0.0199889671057463,\"y\":269.999938964844,\"z\":0.0200000815093517}},\"54a1c3\":{\"lock\":false,\"position\":{\"x\":40.2900009155273,\"y\":1.30502963066101,\"z\":-47.4199981689453},\"rotation\":{\"x\":0.0199889913201332,\"y\":270.000030517578,\"z\":0.0199998654425144}},\"55f7ad\":{\"lock\":false,\"position\":{\"x\":52.939998626709,\"y\":1.30864000320435,\"z\":-49.7200012207031},\"rotation\":{\"x\":0.019989000633359,\"y\":270,\"z\":0.0199998654425144}},\"56a480\":{\"lock\":false,\"position\":{\"x\":40.2899971008301,\"y\":1.29700112342834,\"z\":-70.4200057983398},\"rotation\":{\"x\":0.0199890546500683,\"y\":270,\"z\":0.0199998579919338}},\"58391c\":{\"lock\":false,\"position\":{\"x\":58.0999984741211,\"y\":1.31122553348541,\"z\":-47.4700012207031},\"rotation\":{\"x\":0.0199897903949022,\"y\":269.9970703125,\"z\":0.0199989173561335}},\"5a45af\":{\"lock\":false,\"position\":{\"x\":58.0999984741211,\"y\":1.29918277263641,\"z\":-81.9700012207031},\"rotation\":{\"x\":0.0199890248477459,\"y\":270.000030517578,\"z\":0.0199997220188379}},\"5b57aa\":{\"lock\":false,\"position\":{\"x\":40.9600028991699,\"y\":1.29862082004547,\"z\":74.0500030517578},\"rotation\":{\"x\":0.0199890341609716,\"y\":269.999938964844,\"z\":0.0199998673051596}},\"608e80\":{\"lock\":false,\"position\":{\"x\":58.1001319885254,\"y\":1.30801498889923,\"z\":-56.6675224304199},\"rotation\":{\"x\":0.0199854355305433,\"y\":270.01025390625,\"z\":0.020003417506814}},\"60cad6\":{\"lock\":false,\"position\":{\"x\":58.370002746582,\"y\":1.29582846164703,\"z\":48.6500015258789},\"rotation\":{\"x\":0.0199897009879351,\"y\":269.997650146484,\"z\":0.0199992582201958}},\"6199c4\":{\"lock\":false,\"position\":{\"x\":40.2899971008301,\"y\":1.29940962791443,\"z\":-63.52001953125},\"rotation\":{\"x\":0.019988814368844,\"y\":270,\"z\":0.019999897107482}},\"6296e1\":{\"lock\":false,\"position\":{\"x\":36.6099967956543,\"y\":1.28930139541626,\"z\":-88.8000106811523},\"rotation\":{\"x\":0.0199889745563269,\"y\":270.000061035156,\"z\":0.019999697804451}},\"64e584\":{\"lock\":false,\"position\":{\"x\":45.9799957275391,\"y\":1.30358362197876,\"z\":83.2499923706055},\"rotation\":{\"x\":0.0199889298528433,\"y\":270.000061035156,\"z\":0.0199998896569014}},\"69243f\":{\"lock\":false,\"position\":{\"x\":-22.6200008392334,\"y\":1.30542838573456,\"z\":-84.8199996948242},\"rotation\":{\"x\":0.0199893899261951,\"y\":269.999877929688,\"z\":0.0199998654425144}},\"695e58\":{\"lock\":false,\"position\":{\"x\":36.6199951171875,\"y\":1.29732990264893,\"z\":-65.8100051879883},\"rotation\":{\"x\":0.0199890527874231,\"y\":270,\"z\":0.0199998524039984}},\"6b88b1\":{\"lock\":false,\"position\":{\"x\":49.2800025939941,\"y\":1.30736660957336,\"z\":-49.7099952697754},\"rotation\":{\"x\":0.0199889950454235,\"y\":269.999938964844,\"z\":0.0199998300522566}},\"6ca16c\":{\"lock\":false,\"position\":{\"x\":49.560001373291,\"y\":1.30563545227051,\"z\":85.5500030517578},\"rotation\":{\"x\":0.0199889410287142,\"y\":270,\"z\":0.0199998021125793}},\"6d003a\":{\"lock\":false,\"position\":{\"x\":-22.6199989318848,\"y\":1.31365931034088,\"z\":-61.2399978637695},\"rotation\":{\"x\":0.0199891235679388,\"y\":269.999877929688,\"z\":0.0199997890740633}},\"6e58a2\":{\"lock\":false,\"position\":{\"x\":45.9800033569336,\"y\":1.30438649654388,\"z\":85.5500030517578},\"rotation\":{\"x\":0.0199888721108437,\"y\":269.999938964844,\"z\":0.0200000405311584}},\"6fc778\":{\"lock\":false,\"position\":{\"x\":36.6199989318848,\"y\":1.29171001911163,\"z\":-81.9100036621094},\"rotation\":{\"x\":0.0199888665229082,\"y\":270.000030517578,\"z\":0.0199997052550316}},\"6fd7e8\":{\"lock\":false,\"position\":{\"x\":58.0999946594238,\"y\":1.30319702625275,\"z\":-70.4700088500977},\"rotation\":{\"x\":0.0199889298528433,\"y\":270,\"z\":0.0199999194592237}},\"6fe6b0\":{\"lock\":false,\"position\":{\"x\":40.2899971008301,\"y\":1.29138112068176,\"z\":-86.5200042724609},\"rotation\":{\"x\":0.0199888497591019,\"y\":270,\"z\":0.0200000405311584}},\"70e3b0\":{\"lock\":false,\"position\":{\"x\":53.2299995422363,\"y\":1.30691230297089,\"z\":85.5400009155273},\"rotation\":{\"x\":0.0199889615178108,\"y\":269.999969482422,\"z\":0.0199999772012234}},\"7114ca\":{\"lock\":false,\"position\":{\"x\":36.6199951171875,\"y\":1.30054140090942,\"z\":-56.6100044250488},\"rotation\":{\"x\":0.0199888497591019,\"y\":270,\"z\":0.0199999287724495}},\"7141a7\":{\"lock\":false,\"position\":{\"x\":40.9600028991699,\"y\":1.2994236946106,\"z\":76.3499984741211},\"rotation\":{\"x\":0.019988851621747,\"y\":270,\"z\":0.0199999567121267}},\"756f99\":{\"lock\":false,\"position\":{\"x\":49.560001373291,\"y\":1.30322682857513,\"z\":78.6500015258789},\"rotation\":{\"x\":0.019988976418972,\"y\":270,\"z\":0.0200000368058681}},\"75b89c\":{\"lock\":false,\"position\":{\"x\":49.2800025939941,\"y\":1.30816948413849,\"z\":-47.4099960327148},\"rotation\":{\"x\":0.0199861433357,\"y\":270.007598876953,\"z\":0.020002568140626}},\"76f23d\":{\"lock\":false,\"position\":{\"x\":53.2299995422363,\"y\":1.30048942565918,\"z\":67.1399993896484},\"rotation\":{\"x\":0.0199889130890369,\"y\":270,\"z\":0.0200000330805779}},\"770882\":{\"lock\":false,\"position\":{\"x\":40.2899971008301,\"y\":1.2986067533493,\"z\":-65.8200225830078},\"rotation\":{\"x\":0.0199889186769724,\"y\":270,\"z\":0.0199999790638685}},\"773624\":{\"lock\":false,\"position\":{\"x\":53.2300109863281,\"y\":1.30289804935455,\"z\":74.0402526855469},\"rotation\":{\"x\":0.019988315179944,\"y\":270.001586914063,\"z\":0.0200003776699305}},\"778a96\":{\"lock\":false,\"position\":{\"x\":40.9598579406738,\"y\":1.30424046516418,\"z\":90.1491775512695},\"rotation\":{\"x\":0.019989512860775,\"y\":269.999938964844,\"z\":0.02000049687922}},\"779fd0\":{\"lock\":false,\"position\":{\"x\":37.4200019836426,\"y\":1.30381226539612,\"z\":92.4599990844727},\"rotation\":{\"x\":0.0199889428913593,\"y\":269.999877929688,\"z\":0.0199997518211603}},\"77b826\":{\"lock\":false,\"position\":{\"x\":37.4199981689453,\"y\":1.29257225990295,\"z\":60.2599983215332},\"rotation\":{\"x\":0.0199889149516821,\"y\":270,\"z\":0.0200002063065767}},\"7a2e26\":{\"lock\":false,\"position\":{\"x\":49.2799987792969,\"y\":1.30254948139191,\"z\":-63.5099983215332},\"rotation\":{\"x\":0.019988851621747,\"y\":270.000732421875,\"z\":0.020000271499157}},\"7c7931\":{\"lock\":false,\"position\":{\"x\":-25.8119049072266,\"y\":1.30920231342316,\"z\":-70.8182373046875},\"rotation\":{\"x\":0.0199853219091892,\"y\":270.0107421875,\"z\":0.0200036633759737}},\"7ff457\":{\"lock\":false,\"position\":{\"x\":-25.8259696960449,\"y\":1.33209419250488,\"z\":-67.5839462280273},\"rotation\":{\"x\":0.0199849028140306,\"y\":270.011932373047,\"z\":0.0200038161128759}},\"81a6e1\":{\"lock\":false,\"position\":{\"x\":-25.863733291626,\"y\":1.30753016471863,\"z\":-75.5568389892578},\"rotation\":{\"x\":0.0199889112263918,\"y\":269.999694824219,\"z\":0.0199999287724495}},\"847b3d\":{\"lock\":false,\"position\":{\"x\":40.2900009155273,\"y\":1.29378974437714,\"z\":-79.620002746582},\"rotation\":{\"x\":0.0199889149516821,\"y\":270,\"z\":0.0199999324977398}},\"84f5d6\":{\"lock\":false,\"position\":{\"x\":36.6199951171875,\"y\":1.29010426998138,\"z\":-86.510009765625},\"rotation\":{\"x\":0.0199888981878757,\"y\":270,\"z\":0.0199999623000622}},\"860f3c\":{\"lock\":false,\"position\":{\"x\":-26.045352935791,\"y\":1.30354130268097,\"z\":-86.8024368286133},\"rotation\":{\"x\":0.0199937485158443,\"y\":269.986572265625,\"z\":0.0199953615665436}},\"89dd2b\":{\"lock\":false,\"position\":{\"x\":58.3900032043457,\"y\":1.2990608215332,\"z\":57.8900032043457},\"rotation\":{\"x\":0.0199890565127134,\"y\":270,\"z\":0.0200000386685133}},\"8b681a\":{\"lock\":false,\"position\":{\"x\":5.53419923782349,\"y\":1.33791208267212,\"z\":72.7426147460938},\"rotation\":{\"x\":359.980010986328,\"y\":89.992546081543,\"z\":359.980010986328}},\"8b9844\":{\"lock\":false,\"position\":{\"x\":25.5706005096436,\"y\":1.29885721206665,\"z\":90.1077499389648},\"rotation\":{\"x\":0.0199910085648298,\"y\":269.994018554688,\"z\":0.0199977327138186}},\"8c7658\":{\"lock\":false,\"position\":{\"x\":49.2641258239746,\"y\":1.29203510284424,\"z\":-93.61572265625},\"rotation\":{\"x\":0.019987940788269,\"y\":270.002502441406,\"z\":0.0200008489191532}},\"8cdefb\":{\"lock\":false,\"position\":{\"x\":33.8418960571289,\"y\":1.29453921318054,\"z\":69.4711685180664},\"rotation\":{\"x\":0.0199848040938377,\"y\":270.011749267578,\"z\":0.0200043004006147}},\"8d8e9d\":{\"lock\":false,\"position\":{\"x\":49.6114349365234,\"y\":1.30248034000397,\"z\":76.4601821899414},\"rotation\":{\"x\":0.0199729725718498,\"y\":270.045928955078,\"z\":0.0200158730149269}},\"8e2e9c\":{\"lock\":false,\"position\":{\"x\":52.9399948120117,\"y\":1.29579436779022,\"z\":-86.5200042724609},\"rotation\":{\"x\":0.0199889522045851,\"y\":270.000061035156,\"z\":0.0199999958276749}},\"9040da\":{\"lock\":false,\"position\":{\"x\":37.4199981689453,\"y\":1.29498076438904,\"z\":67.1600036621094},\"rotation\":{\"x\":0.01998888887465,\"y\":270,\"z\":0.0199998095631599}},\"92173a\":{\"lock\":false,\"position\":{\"x\":40.2900047302246,\"y\":1.30342388153076,\"z\":-52.0199966430664},\"rotation\":{\"x\":0.0199889540672302,\"y\":270,\"z\":0.0199998710304499}},\"95cac6\":{\"lock\":false,\"position\":{\"x\":49.2799949645996,\"y\":1.30014097690582,\"z\":-70.4100112915039},\"rotation\":{\"x\":0.0199887398630381,\"y\":270,\"z\":0.0199999324977398}},\"96217c\":{\"lock\":false,\"position\":{\"x\":-25.9478569030762,\"y\":1.31202936172485,\"z\":-62.5836143493652},\"rotation\":{\"x\":0.019984308630228,\"y\":270.013763427734,\"z\":0.0200045593082905}},\"96cbfb\":{\"lock\":false,\"position\":{\"x\":58.0999984741211,\"y\":1.29998564720154,\"z\":-79.6699981689453},\"rotation\":{\"x\":0.0199890434741974,\"y\":270.000030517578,\"z\":0.0199999138712883}},\"9794d9\":{\"lock\":false,\"position\":{\"x\":52.939998626709,\"y\":1.30542850494385,\"z\":-58.9199981689453},\"rotation\":{\"x\":0.0199899319559336,\"y\":269.997253417969,\"z\":0.019998911768198}},\"9ab6ec\":{\"lock\":false,\"position\":{\"x\":52.939998626709,\"y\":1.30061149597168,\"z\":-72.7200012207031},\"rotation\":{\"x\":0.0199889615178108,\"y\":270.000061035156,\"z\":0.0200000870972872}},\"9bd52b\":{\"lock\":false,\"position\":{\"x\":52.939998626709,\"y\":1.30944287776947,\"z\":-47.4199981689453},\"rotation\":{\"x\":0.0199889428913593,\"y\":270.000030517578,\"z\":0.019999835640192}},\"9bfe46\":{\"lock\":false,\"position\":{\"x\":53.2099990844727,\"y\":1.29406309127808,\"z\":48.75},\"rotation\":{\"x\":0.0199889931827784,\"y\":270,\"z\":0.0199998896569014}},\"9d1e7f\":{\"lock\":false,\"position\":{\"x\":-19.2818336486816,\"y\":1.3093523979187,\"z\":-76.9148406982422},\"rotation\":{\"x\":0.0199888311326504,\"y\":270.001007080078,\"z\":0.020000284537673}},\"9d7ea2\":{\"lock\":false,\"position\":{\"x\":52.939998626709,\"y\":1.30623137950897,\"z\":-56.6199989318848},\"rotation\":{\"x\":0.019989987835288,\"y\":269.997314453125,\"z\":0.0199990179389715}},\"9d9325\":{\"lock\":false,\"position\":{\"x\":36.6199989318848,\"y\":1.29572427272797,\"z\":-70.4100036621094},\"rotation\":{\"x\":0.0199888944625854,\"y\":270.000061035156,\"z\":0.0200000405311584}},\"9f7f04\":{\"lock\":false,\"position\":{\"x\":37.4199981689453,\"y\":1.29337513446808,\"z\":62.560001373291},\"rotation\":{\"x\":0.0199891049414873,\"y\":270,\"z\":0.0199999343603849}},\"a01cdf\":{\"lock\":false,\"position\":{\"x\":37.4200019836426,\"y\":1.30140364170074,\"z\":85.5599975585938},\"rotation\":{\"x\":0.0199888423085213,\"y\":269.999969482422,\"z\":0.0199998095631599}},\"a30199\":{\"lock\":false,\"position\":{\"x\":49.560001373291,\"y\":1.30804395675659,\"z\":92.4499969482422},\"rotation\":{\"x\":0.0199890043586493,\"y\":270.000030517578,\"z\":0.0199999455362558}},\"aa6e09\":{\"lock\":false,\"position\":{\"x\":40.9600028991699,\"y\":1.3026350736618,\"z\":85.5500030517578},\"rotation\":{\"x\":0.0199889969080687,\"y\":269.999938964844,\"z\":0.0199998710304499}},\"ab9bbb\":{\"lock\":false,\"position\":{\"x\":40.9599990844727,\"y\":1.29701519012451,\"z\":69.4499969482422},\"rotation\":{\"x\":0.0199888106435537,\"y\":270.000030517578,\"z\":0.0199999678879976}},\"ad03f0\":{\"lock\":false,\"position\":{\"x\":-22.6199989318848,\"y\":1.30817544460297,\"z\":-76.9499969482422},\"rotation\":{\"x\":0.0199892818927765,\"y\":269.999877929688,\"z\":0.019999798387289}},\"ad9546\":{\"lock\":false,\"position\":{\"x\":36.6199951171875,\"y\":1.2997385263443,\"z\":-58.9100036621094},\"rotation\":{\"x\":0.0199887491762638,\"y\":270,\"z\":0.0199999324977398}},\"aee7f5\":{\"lock\":false,\"position\":{\"x\":53.2299995422363,\"y\":1.29888379573822,\"z\":62.5400009155273},\"rotation\":{\"x\":0.0199876055121422,\"y\":270.004028320313,\"z\":0.020001370459795}},\"b02709\":{\"lock\":false,\"position\":{\"x\":7.71186399459839,\"y\":1.27614212036133,\"z\":86.3208999633789},\"rotation\":{\"x\":0.0400094911456108,\"y\":270.001373291016,\"z\":0.0200004633516073}},\"b0eee0\":{\"lock\":false,\"position\":{\"x\":53.2299995422363,\"y\":1.3012923002243,\"z\":69.4400024414063},\"rotation\":{\"x\":0.0199890024960041,\"y\":270,\"z\":0.0200000703334808}},\"b1597a\":{\"lock\":false,\"position\":{\"x\":58.379997253418,\"y\":1.30628287792206,\"z\":78.5899887084961},\"rotation\":{\"x\":0.0199889522045851,\"y\":270,\"z\":0.0199997089803219}},\"b21f05\":{\"lock\":false,\"position\":{\"x\":52.939998626709,\"y\":1.30141425132751,\"z\":-70.4199981689453},\"rotation\":{\"x\":0.0199947394430637,\"y\":269.983703613281,\"z\":0.0199943017214537}},\"b38ed5\":{\"lock\":false,\"position\":{\"x\":36.620002746582,\"y\":1.29411852359772,\"z\":-75.0100021362305},\"rotation\":{\"x\":0.0199889410287142,\"y\":270,\"z\":0.0199998822063208}},\"b66a7d\":{\"lock\":false,\"position\":{\"x\":12.3254795074463,\"y\":1.28831422328949,\"z\":73.1418762207031},\"rotation\":{\"x\":0.0199928712099791,\"y\":270.002166748047,\"z\":0.0200013890862465}},\"bc5495\":{\"lock\":false,\"position\":{\"x\":-25.8703365325928,\"y\":1.31469368934631,\"z\":-55.0283317565918},\"rotation\":{\"x\":0.0199836567044258,\"y\":270.015075683594,\"z\":0.0200051311403513}},\"bd9272\":{\"lock\":false,\"position\":{\"x\":40.2700004577637,\"y\":1.29057478904724,\"z\":-88.8099975585938},\"rotation\":{\"x\":0.0199889149516821,\"y\":270.000030517578,\"z\":0.0199999082833529}},\"bdae2a\":{\"lock\":false,\"position\":{\"x\":53.2300033569336,\"y\":1.30932080745697,\"z\":92.4400024414063},\"rotation\":{\"x\":0.0199889373034239,\"y\":269.999938964844,\"z\":0.0199998822063208}},\"bf10b7\":{\"lock\":false,\"position\":{\"x\":53.2299995422363,\"y\":1.2980809211731,\"z\":60.2400016784668},\"rotation\":{\"x\":0.019997775554657,\"y\":269.974517822266,\"z\":0.019990861415863}},\"c022a5\":{\"lock\":false,\"position\":{\"x\":58.379997253418,\"y\":1.29825448989868,\"z\":55.5899963378906},\"rotation\":{\"x\":0.019989101216197,\"y\":270,\"z\":0.0200001448392868}},\"c61276\":{\"lock\":false,\"position\":{\"x\":40.9599990844727,\"y\":1.29621231555939,\"z\":67.1500015258789},\"rotation\":{\"x\":0.0199887827038765,\"y\":270,\"z\":0.0199998337775469}},\"c68875\":{\"lock\":false,\"position\":{\"x\":58.1000022888184,\"y\":1.30560553073883,\"z\":-63.569995880127},\"rotation\":{\"x\":0.0199887491762638,\"y\":270.000030517578,\"z\":0.0199999455362558}},\"cb8f72\":{\"lock\":false,\"position\":{\"x\":49.5600051879883,\"y\":1.2992125749588,\"z\":67.1500015258789},\"rotation\":{\"x\":0.0199891608208418,\"y\":269.999816894531,\"z\":0.0199998822063208}},\"cdaca2\":{\"lock\":false,\"position\":{\"x\":37.4199981689453,\"y\":1.29819214344025,\"z\":76.3600006103516},\"rotation\":{\"x\":0.0199891142547131,\"y\":270,\"z\":0.0199999343603849}},\"cddffe\":{\"lock\":false,\"position\":{\"x\":37.4200019836426,\"y\":1.3030092716217,\"z\":90.1600036621094},\"rotation\":{\"x\":0.0199888814240694,\"y\":269.999847412109,\"z\":0.0199998188763857}},\"d4cf15\":{\"lock\":false,\"position\":{\"x\":40.2186698913574,\"y\":1.28893339633942,\"z\":-93.4611511230469},\"rotation\":{\"x\":0.0199874341487885,\"y\":270.004272460938,\"z\":0.0200016312301159}},\"da1495\":{\"lock\":false,\"position\":{\"x\":-26.0381469726563,\"y\":1.32164466381073,\"z\":-83.5166168212891},\"rotation\":{\"x\":0.019985293969512,\"y\":270.01123046875,\"z\":0.0200037676841021}},\"da681d\":{\"lock\":false,\"position\":{\"x\":40.9600067138672,\"y\":1.3268084526062,\"z\":78.6500091552734},\"rotation\":{\"x\":0.0199894458055496,\"y\":269.999694824219,\"z\":0.0199996717274189}},\"dd00d1\":{\"lock\":false,\"position\":{\"x\":37.4199981689453,\"y\":1.29578363895416,\"z\":69.4599990844727},\"rotation\":{\"x\":0.0199887715280056,\"y\":270,\"z\":0.0199999623000622}},\"dd0cc6\":{\"lock\":false,\"position\":{\"x\":49.5600051879883,\"y\":1.30162119865417,\"z\":74.0500030517578},\"rotation\":{\"x\":0.0199889969080687,\"y\":269.999938964844,\"z\":0.0199998840689659}},\"e570e3\":{\"lock\":false,\"position\":{\"x\":-19.2999992370605,\"y\":1.31482100486755,\"z\":-61.2299995422363},\"rotation\":{\"x\":0.0195435732603073,\"y\":271.262908935547,\"z\":0.0204352717846632}},\"e5aac0\":{\"lock\":false,\"position\":{\"x\":53.2299995422363,\"y\":1.30610942840576,\"z\":83.2399978637695},\"rotation\":{\"x\":0.0199887715280056,\"y\":270,\"z\":0.0199999026954174}},\"e68a2a\":{\"lock\":false,\"position\":{\"x\":58.0999984741211,\"y\":1.31042265892029,\"z\":-49.7700004577637},\"rotation\":{\"x\":0.0199888292700052,\"y\":269.999877929688,\"z\":0.0199999064207077}},\"e6b6bf\":{\"lock\":false,\"position\":{\"x\":36.620002746582,\"y\":1.29813289642334,\"z\":-63.5097312927246},\"rotation\":{\"x\":0.0199888367205858,\"y\":270.000549316406,\"z\":0.0200001262128353}},\"e732c3\":{\"lock\":false,\"position\":{\"x\":45.9799995422363,\"y\":1.30197787284851,\"z\":78.6500015258789},\"rotation\":{\"x\":0.019989000633359,\"y\":269.999969482422,\"z\":0.0199998822063208}},\"e7d788\":{\"lock\":false,\"position\":{\"x\":-25.8039722442627,\"y\":1.33271718025208,\"z\":-52.0299491882324},\"rotation\":{\"x\":0.0199853088706732,\"y\":270.011352539063,\"z\":0.0200038943439722}},\"ec1719\":{\"lock\":false,\"position\":{\"x\":40.9599571228027,\"y\":1.30504357814789,\"z\":92.4499053955078},\"rotation\":{\"x\":0.0199895668774843,\"y\":269.997985839844,\"z\":0.0199991296976805}},\"f3cc51\":{\"lock\":false,\"position\":{\"x\":-25.860538482666,\"y\":1.30648255348206,\"z\":-78.5612335205078},\"rotation\":{\"x\":0.0199850853532553,\"y\":270.010681152344,\"z\":0.0200036037713289}},\"f4b556\":{\"lock\":false,\"position\":{\"x\":-25.9067420959473,\"y\":1.34442949295044,\"z\":-59.7475433349609},\"rotation\":{\"x\":0.0199818555265665,\"y\":270.021331787109,\"z\":0.020007137209177}},\"f51b8a\":{\"lock\":false,\"position\":{\"x\":40.2900047302246,\"y\":1.3018182516098,\"z\":-56.6199951171875},\"rotation\":{\"x\":0.019988875836134,\"y\":270,\"z\":0.0200000926852226}},\"f73973\":{\"lock\":false,\"position\":{\"x\":40.2900047302246,\"y\":1.30101537704468,\"z\":-58.919994354248},\"rotation\":{\"x\":0.0199887547641993,\"y\":270.000030517578,\"z\":0.0199999343603849}},\"f7dc68\":{\"lock\":false,\"position\":{\"x\":58.3800048828125,\"y\":1.29986023902893,\"z\":60.1900024414063},\"rotation\":{\"x\":0.0199885349720716,\"y\":270.001037597656,\"z\":0.0200002156198025}},\"fb9ed6\":{\"lock\":false,\"position\":{\"x\":58.0999984741211,\"y\":1.29838001728058,\"z\":-84.2699966430664},\"rotation\":{\"x\":0.01998888887465,\"y\":270.000030517578,\"z\":0.0199998803436756}},\"fbfc81\":{\"lock\":false,\"position\":{\"x\":58.1000022888184,\"y\":1.30961978435516,\"z\":-52.069995880127},\"rotation\":{\"x\":0.0199889782816172,\"y\":269.999969482422,\"z\":0.0199998859316111}},\"fcc08c\":{\"lock\":false,\"position\":{\"x\":52.939998626709,\"y\":1.2982029914856,\"z\":-79.620002746582},\"rotation\":{\"x\":0.0199889056384563,\"y\":270,\"z\":0.0199999623000622}}}}",
"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": "b7ff06",
"Name": "Custom_Model",
"Transform": {
"posX": -44.3137245,
"posY": 1.97348177,
"posZ": -114.791939,
"rotX": 0.0208087713,
"rotY": 269.999359,
"rotZ": 0.0167682152,
"scaleX": 2.21,
"scaleY": 0.46,
"scaleZ": 2.42
},
"Nickname": "Rabbit Hole Expansion",
"Description": "Mint Tea Fan",
"GMNotes": "fancreations/investigators_rabbit_hole.json",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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/1862800022614300553/046FEA88FB8D4DB6BE0AC9898149058EF32BFD0A/",
"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\":{\"00dd71\":{\"lock\":false,\"pos\":{\"x\":-26.2173,\"y\":1.3086,\"z\":-72.6577},\"rot\":{\"x\":0.0208,\"y\":269.9999,\"z\":0.0168}},\"02c883\":{\"lock\":false,\"pos\":{\"x\":32.9852867126465,\"y\":1.29030799865723,\"z\":-84.2082672119141},\"rot\":{\"x\":0.0208085179328918,\"y\":269.999694824219,\"z\":0.0167710538953543}},\"02fc01\":{\"lock\":false,\"pos\":{\"x\":40.2900657653809,\"y\":1.29565036296844,\"z\":-75.0199737548828},\"rot\":{\"x\":0.0208079405128956,\"y\":270.002380371094,\"z\":0.016771974042058}},\"04b54a\":{\"lock\":false,\"pos\":{\"x\":32.9853057861328,\"y\":1.28963470458984,\"z\":-86.5082473754883},\"rot\":{\"x\":0.0208087041974068,\"y\":269.999176025391,\"z\":0.0167708452790976}},\"099880\":{\"lock\":false,\"pos\":{\"x\":52.9442138671875,\"y\":1.30697846412659,\"z\":-52.020336151123},\"rot\":{\"x\":0.0208041202276945,\"y\":270.0146484375,\"z\":0.0167763698846102}},\"0a5bc6\":{\"lock\":false,\"pos\":{\"x\":32.9852905273438,\"y\":1.30107951164246,\"z\":-47.4095573425293},\"rot\":{\"x\":0.0208172313868999,\"y\":269.969665527344,\"z\":0.0167601872235537}},\"0d6af3\":{\"lock\":false,\"pos\":{\"x\":32.9853057861328,\"y\":1.29300093650818,\"z\":-75.0083694458008},\"rot\":{\"x\":0.0208143349736929,\"y\":269.979888916016,\"z\":0.0167639516294003}},\"10020b\":{\"lock\":false,\"pos\":{\"x\":40.2900772094727,\"y\":1.30238282680511,\"z\":-52.0199775695801},\"rot\":{\"x\":0.0208036676049232,\"y\":270.016662597656,\"z\":0.0167774055153131}},\"19633b\":{\"lock\":false,\"pos\":{\"x\":58.0997085571289,\"y\":1.29873728752136,\"z\":-86.5708847045898},\"rot\":{\"x\":0.0208085551857948,\"y\":269.999694824219,\"z\":0.0167710352689028}},\"1dae6f\":{\"lock\":false,\"pos\":{\"x\":49.278491973877,\"y\":1.29555189609528,\"z\":-86.5086517333984},\"rot\":{\"x\":0.0208086501806974,\"y\":269.999603271484,\"z\":0.0167709235101938}},\"1f94f7\":{\"lock\":false,\"pos\":{\"x\":52.9442329406738,\"y\":1.30832493305206,\"z\":-47.4203338623047},\"rot\":{\"x\":0.020806897431612,\"y\":270.005187988281,\"z\":0.016773022711277}},\"23c1b4\":{\"lock\":false,\"pos\":{\"x\":-16.8891,\"y\":1.349,\"z\":-70.5804},\"rot\":{\"x\":0.0208,\"y\":269.9834,\"z\":0.0168}},\"267a1b\":{\"lock\":false,\"pos\":{\"x\":52.9442253112793,\"y\":1.30159246921539,\"z\":-70.4201965332031},\"rot\":{\"x\":0.0208076927810907,\"y\":270.002288818359,\"z\":0.0167718902230263}},\"268843\":{\"lock\":false,\"pos\":{\"x\":25.6118,\"y\":1.4599,\"z\":-36.9581},\"rot\":{\"x\":359.9201,\"y\":270.0034,\"z\":0.0169}},\"269ab3\":{\"lock\":false,\"pos\":{\"x\":29.3400764465332,\"y\":1.29369676113129,\"z\":-68.1084594726563},\"rot\":{\"x\":0.020807845517993,\"y\":270.002258300781,\"z\":0.016771798953414}},\"2be496\":{\"lock\":false,\"pos\":{\"x\":49.2784957885742,\"y\":1.30161106586456,\"z\":-65.8086547851563},\"rot\":{\"x\":0.0208078343421221,\"y\":270.002349853516,\"z\":0.0167720001190901}},\"2cb6e7\":{\"lock\":false,\"pos\":{\"x\":32.969612121582,\"y\":1.28895890712738,\"z\":-88.7976989746094},\"rot\":{\"x\":0.0208085589110851,\"y\":270,\"z\":0.0167711675167084}},\"2f3aba\":{\"lock\":false,\"pos\":{\"x\":32.9852867126465,\"y\":1.2923276424408,\"z\":-77.3083038330078},\"rot\":{\"x\":0.0208077318966389,\"y\":270.002258300781,\"z\":0.0167720075696707}},\"337650\":{\"lock\":false,\"pos\":{\"x\":49.2784957885742,\"y\":1.29622519016266,\"z\":-84.2086486816406},\"rot\":{\"x\":0.0208088215440512,\"y\":269.999420166016,\"z\":0.0167708713561296}},\"33eb6e\":{\"lock\":false,\"pos\":{\"x\":49.2784957885742,\"y\":1.30632376670837,\"z\":-49.7088050842285},\"rot\":{\"x\":0.0208075325936079,\"y\":270.003967285156,\"z\":0.0167726073414087}},\"340ad1\":{\"lock\":false,\"pos\":{\"x\":49.2784957885742,\"y\":1.30699694156647,\"z\":-47.4087791442871},\"rot\":{\"x\":0.020807271823287,\"y\":270.003662109375,\"z\":0.0167726241052151}},\"349045\":{\"lock\":false,\"pos\":{\"x\":29.3400764465332,\"y\":1.29100382328033,\"z\":-77.3084869384766},\"rot\":{\"x\":0.0208077188581228,\"y\":270.00244140625,\"z\":0.0167720038443804}},\"3752df\":{\"lock\":false,\"pos\":{\"x\":52.9442253112793,\"y\":1.29889953136444,\"z\":-79.620231628418},\"rot\":{\"x\":0.0208082459867001,\"y\":270.001159667969,\"z\":0.016771487891674}},\"395a86\":{\"lock\":false,\"pos\":{\"x\":-26.2173,\"y\":1.308,\"z\":-74.9452},\"rot\":{\"x\":0.0208,\"y\":269.9999,\"z\":0.0168}},\"3d228c\":{\"lock\":false,\"pos\":{\"x\":40.290111541748,\"y\":1.2922842502594,\"z\":-86.519889831543},\"rot\":{\"x\":0.0208086185157299,\"y\":269.999420166016,\"z\":0.0167709197849035}},\"3d5eba\":{\"lock\":false,\"pos\":{\"x\":32.9853057861328,\"y\":1.29434740543365,\"z\":-70.4082565307617},\"rot\":{\"x\":0.0208110846579075,\"y\":269.991394042969,\"z\":0.0167681761085987}},\"3e7287\":{\"lock\":false,\"pos\":{\"x\":32.9853057861328,\"y\":1.29502069950104,\"z\":-68.1082534790039},\"rot\":{\"x\":0.020812900736928,\"y\":269.984924316406,\"z\":0.0167657155543566}},\"3f0180\":{\"lock\":false,\"pos\":{\"x\":29.3400592803955,\"y\":1.29908239841461,\"z\":-49.7096290588379},\"rot\":{\"x\":0.0208098068833351,\"y\":269.99609375,\"z\":0.0167696662247181}},\"412cf1\":{\"lock\":false,\"pos\":{\"x\":49.2784957885742,\"y\":1.30295753479004,\"z\":-61.2087898254395},\"rot\":{\"x\":0.0208124928176403,\"y\":269.986267089844,\"z\":0.0167661942541599}},\"41ee84\":{\"lock\":false,\"pos\":{\"x\":36.6243591308594,\"y\":1.29297626018524,\"z\":-79.608268737793},\"rot\":{\"x\":0.0208076797425747,\"y\":270.002807617188,\"z\":0.0167722273617983}},\"43ad41\":{\"lock\":false,\"pos\":{\"x\":52.9441375732422,\"y\":1.29755306243896,\"z\":-84.2202224731445},\"rot\":{\"x\":0.0208086110651493,\"y\":269.999877929688,\"z\":0.016771350055933}},\"43c2c3\":{\"lock\":false,\"pos\":{\"x\":52.9442291259766,\"y\":1.30293905735016,\"z\":-65.8201904296875},\"rot\":{\"x\":0.0208077672868967,\"y\":270.00244140625,\"z\":0.0167718306183815}},\"459f81\":{\"lock\":false,\"pos\":{\"x\":45.6394691467285,\"y\":1.29759645462036,\"z\":-75.0087127685547},\"rot\":{\"x\":0.0208079051226377,\"y\":270.002746582031,\"z\":0.0167721528559923}},\"4634ae\":{\"lock\":false,\"pos\":{\"x\":40.2742729187012,\"y\":1.29160833358765,\"z\":-88.8093566894531},\"rot\":{\"x\":0.0208088494837284,\"y\":269.999267578125,\"z\":0.0167710669338703}},\"465927\":{\"lock\":false,\"pos\":{\"x\":49.2785148620605,\"y\":1.30363082885742,\"z\":-58.9087753295898},\"rot\":{\"x\":0.0208077151328325,\"y\":270.002380371094,\"z\":0.0167719814926386}},\"473c08\":{\"lock\":false,\"pos\":{\"x\":52.9442253112793,\"y\":1.29957282543182,\"z\":-77.3202285766602},\"rot\":{\"x\":0.0208078902214766,\"y\":270.002258300781,\"z\":0.0167719908058643}},\"48009b\":{\"lock\":false,\"pos\":{\"x\":45.6394691467285,\"y\":1.29423034191132,\"z\":-86.5085906982422},\"rot\":{\"x\":0.0208089146763086,\"y\":269.999267578125,\"z\":0.0167709197849035}},\"487284\":{\"lock\":false,\"pos\":{\"x\":36.6086502075195,\"y\":1.29028046131134,\"z\":-88.7977523803711},\"rot\":{\"x\":0.0208086613565683,\"y\":269.9990234375,\"z\":0.0167708974331617}},\"4b6428\":{\"lock\":false,\"pos\":{\"x\":58.0996742248535,\"y\":1.30479645729065,\"z\":-65.8708190917969},\"rot\":{\"x\":0.0208076778799295,\"y\":270.002380371094,\"z\":0.0167720541357994}},\"4c0584\":{\"lock\":false,\"pos\":{\"x\":33.201171875,\"y\":1.28776490688324,\"z\":-93.1638031005859},\"rot\":{\"x\":0.0208169016987085,\"y\":269.971801757813,\"z\":0.0167610067874193}},\"4d182c\":{\"lock\":false,\"pos\":{\"x\":58.0995712280273,\"y\":1.29941058158875,\"z\":-84.270866394043},\"rot\":{\"x\":0.0208090059459209,\"y\":269.999145507813,\"z\":0.0167708732187748}},\"4d5596\":{\"lock\":false,\"pos\":{\"x\":58.0996742248535,\"y\":1.3021035194397,\"z\":-75.0709533691406},\"rot\":{\"x\":0.0208080522716045,\"y\":270.001251220703,\"z\":0.0167717095464468}},\"4f1c7e\":{\"lock\":false,\"pos\":{\"x\":32.9853057861328,\"y\":1.29569387435913,\"z\":-65.8082504272461},\"rot\":{\"x\":0.0208077598363161,\"y\":270.002380371094,\"z\":0.0167720690369606}},\"5cbb02\":{\"lock\":false,\"pos\":{\"x\":58.0996894836426,\"y\":1.3074893951416,\"z\":-56.6709594726563},\"rot\":{\"x\":0.0208077803254128,\"y\":270.002288818359,\"z\":0.016772024333477}},\"5ccbc7\":{\"lock\":false,\"pos\":{\"x\":32.9852867126465,\"y\":1.29771363735199,\"z\":-58.9083366394043},\"rot\":{\"x\":0.0208077672868967,\"y\":270.002349853516,\"z\":0.0167721454054117}},\"5db5fb\":{\"lock\":false,\"pos\":{\"x\":58.099681854248,\"y\":1.31018245220184,\"z\":-47.4709625244141},\"rot\":{\"x\":0.0208116956055164,\"y\":269.989166259766,\"z\":0.0167670231312513}},\"5ff300\":{\"lock\":false,\"pos\":{\"x\":45.6394691467285,\"y\":1.29490351676941,\"z\":-84.2085876464844},\"rot\":{\"x\":0.0208088960498571,\"y\":269.999053955078,\"z\":0.0167708117514849}},\"639ceb\":{\"lock\":false,\"pos\":{\"x\":36.624340057373,\"y\":1.29364931583405,\"z\":-77.3083343505859},\"rot\":{\"x\":0.0208080504089594,\"y\":270.001586914063,\"z\":0.0167716555297375}},\"68fe73\":{\"lock\":false,\"pos\":{\"x\":49.2784957885742,\"y\":1.30093789100647,\"z\":-68.1086578369141},\"rot\":{\"x\":0.0208076797425747,\"y\":270.002410888672,\"z\":0.0167721286416054}},\"6bbf22\":{\"lock\":false,\"pos\":{\"x\":40.2900543212891,\"y\":1.2976701259613,\"z\":-68.1198654174805},\"rot\":{\"x\":0.0208079926669598,\"y\":270.002349853516,\"z\":0.0167719889432192}},\"70235c\":{\"lock\":false,\"pos\":{\"x\":29.3400764465332,\"y\":1.29840910434723,\"z\":-52.0096168518066},\"rot\":{\"x\":0.0208064876496792,\"y\":270.007263183594,\"z\":0.0167736392468214}},\"75f24b\":{\"lock\":false,\"pos\":{\"x\":58.099681854248,\"y\":1.30950915813446,\"z\":-49.7709503173828},\"rot\":{\"x\":0.0208070166409016,\"y\":270.004638671875,\"z\":0.0167729146778584}},\"788f24\":{\"lock\":false,\"pos\":{\"x\":40.2899627685547,\"y\":1.29295754432678,\"z\":-84.2198944091797},\"rot\":{\"x\":0.0208088979125023,\"y\":269.998901367188,\"z\":0.016770713031292}},\"7cb35b\":{\"lock\":false,\"pos\":{\"x\":40.2900505065918,\"y\":1.29430389404297,\"z\":-79.6199035644531},\"rot\":{\"x\":0.0208076313138008,\"y\":270.002807617188,\"z\":0.0167723186314106}},\"7d5da5\":{\"lock\":false,\"pos\":{\"x\":36.6243591308594,\"y\":1.29432249069214,\"z\":-75.0083999633789},\"rot\":{\"x\":0.0208078008145094,\"y\":270.00244140625,\"z\":0.0167720336467028}},\"7ea4af\":{\"lock\":false,\"pos\":{\"x\":32.9853057861328,\"y\":1.30040621757507,\"z\":-49.709545135498},\"rot\":{\"x\":0.0208124816417694,\"y\":269.987060546875,\"z\":0.016766419634223}},\"7f2a9e\":{\"lock\":false,\"pos\":{\"x\":32.9852867126465,\"y\":1.29973292350769,\"z\":-52.0095558166504},\"rot\":{\"x\":0.0208073686808348,\"y\":270.004211425781,\"z\":0.0167726278305054}},\"7fd726\":{\"lock\":false,\"pos\":{\"x\":52.9442329406738,\"y\":1.30495870113373,\"z\":-58.9203338623047},\"rot\":{\"x\":0.0208077188581228,\"y\":270.002380371094,\"z\":0.0167720317840576}},\"83824b\":{\"lock\":false,\"pos\":{\"x\":-26.2173,\"y\":1.3093,\"z\":-70.3702},\"rot\":{\"x\":0.0208,\"y\":270.0191,\"z\":0.0168}},\"886a80\":{\"lock\":false,\"pos\":{\"x\":40.2900695800781,\"y\":1.29497718811035,\"z\":-77.3198776245117},\"rot\":{\"x\":0.0208077095448971,\"y\":270.002380371094,\"z\":0.0167721137404442}},\"8b4374\":{\"lock\":false,\"pos\":{\"x\":36.6243591308594,\"y\":1.2956690788269,\"z\":-70.4082870483398},\"rot\":{\"x\":0.0208064690232277,\"y\":270.007598876953,\"z\":0.0167738925665617}},\"8b8aa1\":{\"lock\":false,\"pos\":{\"x\":29.3400764465332,\"y\":1.2930234670639,\"z\":-70.4084625244141},\"rot\":{\"x\":0.0208078846335411,\"y\":270.002380371094,\"z\":0.0167720504105091}},\"911810\":{\"lock\":false,\"pos\":{\"x\":52.9284477233887,\"y\":1.29620397090912,\"z\":-88.809684753418},\"rot\":{\"x\":0.0208090245723724,\"y\":269.998962402344,\"z\":0.0167707987129688}},\"97fcaf\":{\"lock\":false,\"pos\":{\"x\":40.2900695800781,\"y\":1.29699695110321,\"z\":-70.4198455810547},\"rot\":{\"x\":0.0208094101399183,\"y\":269.996856689453,\"z\":0.0167702175676823}},\"98fdce\":{\"lock\":false,\"pos\":{\"x\":40.2901344299316,\"y\":1.30373060703278,\"z\":-47.415901184082},\"rot\":{\"x\":0.0208132360130548,\"y\":269.983825683594,\"z\":0.0167652443051338}},\"9c599b\":{\"lock\":false,\"pos\":{\"x\":29.6464405059814,\"y\":1.28647398948669,\"z\":-93.163818359375},\"rot\":{\"x\":0.0208141412585974,\"y\":269.98095703125,\"z\":0.0167641583830118}},\"9d3cb8\":{\"lock\":false,\"pos\":{\"x\":40.2900276184082,\"y\":1.30305814743042,\"z\":-49.7128028869629},\"rot\":{\"x\":0.020798534154892,\"y\":270.034362792969,\"z\":0.0167835876345634}},\"9d50cf\":{\"lock\":false,\"pos\":{\"x\":36.6243591308594,\"y\":1.296342253685,\"z\":-68.108283996582},\"rot\":{\"x\":0.0208082608878613,\"y\":270.000854492188,\"z\":0.0167714674025774}},\"9f71b2\":{\"lock\":false,\"pos\":{\"x\":49.2785148620605,\"y\":1.30565047264099,\"z\":-52.0087585449219},\"rot\":{\"x\":0.020803464576602,\"y\":270.017059326172,\"z\":0.016777329146862}},\"9facb8\":{\"lock\":false,\"pos\":{\"x\":49.2785148620605,\"y\":1.29757165908813,\"z\":-79.6086196899414},\"rot\":{\"x\":0.0208079144358635,\"y\":270.00244140625,\"z\":0.0167720317840576}},\"9feaf2\":{\"lock\":false,\"pos\":{\"x\":29.3400802612305,\"y\":1.29975557327271,\"z\":-47.4096183776855},\"rot\":{\"x\":0.0208071246743202,\"y\":270.004577636719,\"z\":0.0167729370296001}},\"a06986\":{\"lock\":false,\"pos\":{\"x\":-16.8891,\"y\":1.3493,\"z\":-69.5747},\"rot\":{\"x\":0.0208,\"y\":269.989,\"z\":0.0168}},\"a46c2b\":{\"lock\":false,\"pos\":{\"x\":29.3400764465332,\"y\":1.29706299304962,\"z\":-56.6083946228027},\"rot\":{\"x\":0.0208078809082508,\"y\":270.002349853516,\"z\":0.0167719107121229}},\"a6306e\":{\"lock\":false,\"pos\":{\"x\":49.2785148620605,\"y\":1.30430400371552,\"z\":-56.608772277832},\"rot\":{\"x\":0.0208077989518642,\"y\":270.002380371094,\"z\":0.0167720001190901}},\"a8db40\":{\"lock\":false,\"pos\":{\"x\":45.6394691467285,\"y\":1.30298244953156,\"z\":-56.6086692810059},\"rot\":{\"x\":0.0208078250288963,\"y\":270.002349853516,\"z\":0.0167721584439278}},\"a9a0c8\":{\"lock\":false,\"pos\":{\"x\":49.2628059387207,\"y\":1.29487609863281,\"z\":-88.7981033325195},\"rot\":{\"x\":0.0208089780062437,\"y\":269.998779296875,\"z\":0.0167707093060017}},\"ad0691\":{\"lock\":false,\"pos\":{\"x\":40.2900619506836,\"y\":1.30103635787964,\"z\":-56.6199951171875},\"rot\":{\"x\":0.0208078436553478,\"y\":270.002380371094,\"z\":0.0167722105979919}},\"ad7249\":{\"lock\":false,\"pos\":{\"x\":-26.2173,\"y\":1.31,\"z\":-68.0826},\"rot\":{\"x\":0.0208,\"y\":269.9904,\"z\":0.0168}},\"ad95fd\":{\"lock\":false,\"pos\":{\"x\":36.6243591308594,\"y\":1.3017281293869,\"z\":-49.7084465026855},\"rot\":{\"x\":0.0208177231252193,\"y\":269.96923828125,\"z\":0.0167600549757481}},\"b06863\":{\"lock\":false,\"pos\":{\"x\":-19.2959,\"y\":1.3122,\"z\":-69.0607},\"rot\":{\"x\":0.0208,\"y\":269.9965,\"z\":0.0168}},\"b0dd94\":{\"lock\":false,\"pos\":{\"x\":40.2900695800781,\"y\":1.29968988895416,\"z\":-61.2199897766113},\"rot\":{\"x\":0.0208128429949284,\"y\":269.986083984375,\"z\":0.0167661905288696}},\"b221a7\":{\"lock\":false,\"pos\":{\"x\":29.3400592803955,\"y\":1.29436993598938,\"z\":-65.808479309082},\"rot\":{\"x\":0.0208077821880579,\"y\":270.002380371094,\"z\":0.0167720317840576}},\"b3d984\":{\"lock\":false,\"pos\":{\"x\":36.624340057373,\"y\":1.30105495452881,\"z\":-52.0084228515625},\"rot\":{\"x\":0.0208045300096273,\"y\":270.013397216797,\"z\":0.0167760979384184}},\"b47adf\":{\"lock\":false,\"pos\":{\"x\":58.0996742248535,\"y\":1.30412328243256,\"z\":-68.1708221435547},\"rot\":{\"x\":0.0208166688680649,\"y\":269.972290039063,\"z\":0.0167610011994839}},\"b826dd\":{\"lock\":false,\"pos\":{\"x\":49.2785148620605,\"y\":1.30026459693909,\"z\":-70.4086456298828},\"rot\":{\"x\":0.020807733759284,\"y\":270.002532958984,\"z\":0.0167719628661871}},\"bae0d4\":{\"lock\":false,\"pos\":{\"x\":36.6243591308594,\"y\":1.29701554775238,\"z\":-65.8082809448242},\"rot\":{\"x\":0.020808219909668,\"y\":270.000854492188,\"z\":0.0167713537812233}},\"bb7677\":{\"lock\":false,\"pos\":{\"x\":-22.6157,\"y\":1.311,\"z\":-69.0756},\"rot\":{\"x\":0.0208,\"y\":270.0023,\"z\":0.0168}},\"bf9817\":{\"lock\":false,\"pos\":{\"x\":36.624340057373,\"y\":1.29903519153595,\"z\":-58.9084396362305},\"rot\":{\"x\":0.0208145510405302,\"y\":269.979431152344,\"z\":0.0167637746781111}},\"c24c0f\":{\"lock\":false,\"pos\":{\"x\":26.107120513916,\"y\":1.28520059585571,\"z\":-93.1228866577148},\"rot\":{\"x\":0.020803477615118,\"y\":270.016937255859,\"z\":0.0167773775756359}},\"c27ee4\":{\"lock\":false,\"pos\":{\"x\":52.9442367553711,\"y\":1.30563199520111,\"z\":-56.6203308105469},\"rot\":{\"x\":0.0208133868873119,\"y\":269.9833984375,\"z\":0.0167651195079088}},\"c6629b\":{\"lock\":false,\"pos\":{\"x\":52.944221496582,\"y\":1.30024600028992,\"z\":-75.0203247070313},\"rot\":{\"x\":0.0208077225834131,\"y\":270.002410888672,\"z\":0.0167720802128315}},\"c9bc29\":{\"lock\":false,\"pos\":{\"x\":-16.8891,\"y\":1.3496,\"z\":-68.5691},\"rot\":{\"x\":0.0208,\"y\":270.0074,\"z\":0.0168}},\"cc9f3e\":{\"lock\":false,\"pos\":{\"x\":52.944206237793,\"y\":1.30428540706635,\"z\":-61.2203483581543},\"rot\":{\"x\":0.0208137333393097,\"y\":269.982269287109,\"z\":0.0167646743357182}},\"ccd2d7\":{\"lock\":false,\"pos\":{\"x\":29.3400802612305,\"y\":1.29638969898224,\"z\":-58.9083938598633},\"rot\":{\"x\":0.0208111088722944,\"y\":269.991333007813,\"z\":0.0167681202292442}},\"d5060d\":{\"lock\":false,\"pos\":{\"x\":32.9852867126465,\"y\":1.2916544675827,\"z\":-79.6082611083984},\"rot\":{\"x\":0.0208071451634169,\"y\":270.004455566406,\"z\":0.016772773116827}},\"d5a551\":{\"lock\":false,\"pos\":{\"x\":58.0996742248535,\"y\":1.3014303445816,\"z\":-77.3708572387695},\"rot\":{\"x\":0.0208079069852829,\"y\":270.002288818359,\"z\":0.0167720541357994}},\"d7edae\":{\"lock\":false,\"pos\":{\"x\":41.3516998291016,\"y\":1.43921434879303,\"z\":-32.6269416809082},\"rot\":{\"x\":359.920135498047,\"y\":270.003204345703,\"z\":0.0168775394558907}},\"d92dde\":{\"lock\":false,\"pos\":{\"x\":40.2900581359863,\"y\":1.30036306381226,\"z\":-58.9199981689453},\"rot\":{\"x\":0.0208116788417101,\"y\":269.988830566406,\"z\":0.0167670734226704}},\"dc8ab9\":{\"lock\":false,\"pos\":{\"x\":29.3400592803955,\"y\":1.29167699813843,\"z\":-75.0085983276367},\"rot\":{\"x\":0.0208077263087034,\"y\":270.002380371094,\"z\":0.0167721174657345}},\"dd5a8d\":{\"lock\":false,\"pos\":{\"x\":29.3400764465332,\"y\":1.29571652412415,\"z\":-61.2084007263184},\"rot\":{\"x\":0.0208144672214985,\"y\":269.979370117188,\"z\":0.0167636964470148}},\"e10da6\":{\"lock\":false,\"pos\":{\"x\":36.624340057373,\"y\":1.29095637798309,\"z\":-86.50830078125},\"rot\":{\"x\":0.0208088885992765,\"y\":269.998687744141,\"z\":0.016770800575614}},\"e338d7\":{\"lock\":false,\"pos\":{\"x\":-26.2173,\"y\":1.3113,\"z\":-63.5077},\"rot\":{\"x\":0.0208,\"y\":270.0022,\"z\":0.0168}},\"e4fc98\":{\"lock\":false,\"pos\":{\"x\":32.9853057861328,\"y\":1.29704034328461,\"z\":-61.2083282470703},\"rot\":{\"x\":0.0208131168037653,\"y\":269.984497070313,\"z\":0.016765546053648}},\"e5bd5d\":{\"lock\":false,\"pos\":{\"x\":49.2784957885742,\"y\":1.29891812801361,\"z\":-75.0087738037109},\"rot\":{\"x\":0.0208078045397997,\"y\":270.002319335938,\"z\":0.0167719461023808}},\"e618ab\":{\"lock\":false,\"pos\":{\"x\":36.624340057373,\"y\":1.29162955284119,\"z\":-84.2082977294922},\"rot\":{\"x\":0.0208089463412762,\"y\":269.998657226563,\"z\":0.0167708601802588}},\"e7c879\":{\"lock\":false,\"pos\":{\"x\":49.2784957885742,\"y\":1.29824483394623,\"z\":-77.3086853027344},\"rot\":{\"x\":0.0208076257258654,\"y\":270.00244140625,\"z\":0.0167721770703793}},\"e910b0\":{\"lock\":false,\"pos\":{\"x\":-16.8891,\"y\":1.3499,\"z\":-67.5635},\"rot\":{\"x\":0.0208,\"y\":269.9978,\"z\":0.0168}},\"e969d6\":{\"lock\":false,\"pos\":{\"x\":36.624340057373,\"y\":1.29836189746857,\"z\":-61.2084426879883},\"rot\":{\"x\":0.0208120793104172,\"y\":269.987731933594,\"z\":0.0167666524648666}},\"ebc809\":{\"lock\":false,\"pos\":{\"x\":-26.2173,\"y\":1.3106,\"z\":-65.7951},\"rot\":{\"x\":0.0208,\"y\":269.9984,\"z\":0.0168}},\"ed565f\":{\"lock\":false,\"pos\":{\"x\":52.9442481994629,\"y\":1.29687976837158,\"z\":-86.520263671875},\"rot\":{\"x\":0.0208090785890818,\"y\":269.998687744141,\"z\":0.0167706850916147}},\"ef4d67\":{\"lock\":false,\"pos\":{\"x\":32.9852867126465,\"y\":1.29838681221008,\"z\":-56.6083335876465},\"rot\":{\"x\":0.0208145845681429,\"y\":269.979370117188,\"z\":0.0167634636163712}},\"f328e1\":{\"lock\":false,\"pos\":{\"x\":52.9442367553711,\"y\":1.30765187740326,\"z\":-49.7196083068848},\"rot\":{\"x\":0.0208082105964422,\"y\":270.001281738281,\"z\":0.0167715921998024}},\"f883a7\":{\"lock\":false,\"pos\":{\"x\":40.2900733947754,\"y\":1.29834342002869,\"z\":-65.8198394775391},\"rot\":{\"x\":0.0208077020943165,\"y\":270.002410888672,\"z\":0.0167720913887024}},\"f8e834\":{\"lock\":false,\"pos\":{\"x\":36.624340057373,\"y\":1.29970848560333,\"z\":-56.6084365844727},\"rot\":{\"x\":0.0208153408020735,\"y\":269.976440429688,\"z\":0.016762575134635}},\"f9302c\":{\"lock\":false,\"pos\":{\"x\":40.2985038757324,\"y\":1.2903425693512,\"z\":-93.1637954711914},\"rot\":{\"x\":0.0208130273967981,\"y\":269.984436035156,\"z\":0.0167654659599066}},\"f93232\":{\"lock\":false,\"pos\":{\"x\":29.3400592803955,\"y\":1.28898406028748,\"z\":-84.2084732055664},\"rot\":{\"x\":0.0208086147904396,\"y\":269.999938964844,\"z\":0.0167710352689028}},\"fa6c1a\":{\"lock\":false,\"pos\":{\"x\":36.7542610168457,\"y\":1.28905892372131,\"z\":-93.1517944335938},\"rot\":{\"x\":0.0208184327930212,\"y\":269.96630859375,\"z\":0.0167590919882059}},\"faed96\":{\"lock\":false,\"pos\":{\"x\":36.6243591308594,\"y\":1.30240142345428,\"z\":-47.4084205627441},\"rot\":{\"x\":0.0208073873072863,\"y\":270.004211425781,\"z\":0.0167727507650852}},\"fde4dd\":{\"lock\":false,\"pos\":{\"x\":52.9442291259766,\"y\":1.30226576328278,\"z\":-68.1201934814453},\"rot\":{\"x\":0.0208078939467669,\"y\":270.002471923828,\"z\":0.0167719721794128}}}}",
"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": "1fb7ce",
"Name": "Custom_Model",
"Transform": {
"posX": -20.9389172,
"posY": 1.96267283,
"posZ": 81.00668,
"rotX": 0.021822514,
"rotY": 270.000031,
"rotZ": 0.009714767,
"scaleX": 1.3633405,
"scaleY": 0.2837723,
"scaleZ": 1.49288893
},
"Nickname": "Pokemon: Eldritch Edition Custom Investigators",
"Description": "",
"GMNotes": "fancreations/investigators_pokemon_eldritch_edition.json",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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\":{\"02dd21\":{\"lock\":false,\"pos\":{\"x\":-26.2999973297119,\"y\":1.27566242218018,\"z\":-53.4368362426758},\"rot\":{\"x\":359.979156494141,\"y\":89.9969024658203,\"z\":359.983245849609}},\"0de2c4\":{\"lock\":false,\"pos\":{\"x\":-16.640100479126,\"y\":1.35992407798767,\"z\":-67.8206024169922},\"rot\":{\"x\":0.0208164416253567,\"y\":269.999755859375,\"z\":0.0167678892612457}},\"0f241b\":{\"lock\":false,\"pos\":{\"x\":-22.6168975830078,\"y\":1.3063827753067,\"z\":-84.8184967041016},\"rot\":{\"x\":0.016771724447608,\"y\":179.999954223633,\"z\":359.979187011719}},\"1aebf8\":{\"lock\":false,\"pos\":{\"x\":-26.3001308441162,\"y\":1.27108907699585,\"z\":-69.0606002807617},\"rot\":{\"x\":359.979156494141,\"y\":89.9996719360352,\"z\":359.983245849609}},\"226716\":{\"lock\":false,\"pos\":{\"x\":-16.640100479126,\"y\":1.35920107364655,\"z\":-70.2906036376953},\"rot\":{\"x\":0.0208164621144533,\"y\":269.999572753906,\"z\":0.0167677756398916}},\"2a0151\":{\"lock\":false,\"pos\":{\"x\":-26.29958152771,\"y\":1.26647675037384,\"z\":-84.817985534668},\"rot\":{\"x\":359.979156494141,\"y\":90.0002746582031,\"z\":359.983215332031}},\"2d7917\":{\"lock\":false,\"pos\":{\"x\":-22.6168994903564,\"y\":1.31328415870667,\"z\":-61.2414016723633},\"rot\":{\"x\":0.016771299764514,\"y\":179.999923706055,\"z\":359.979187011719}},\"307044\":{\"lock\":false,\"pos\":{\"x\":-16.6401996612549,\"y\":1.3549485206604,\"z\":-84.8181991577148},\"rot\":{\"x\":0.0208103768527508,\"y\":270.022247314453,\"z\":0.016776017844677}},\"3ddfeb\":{\"lock\":false,\"pos\":{\"x\":-16.6394004821777,\"y\":1.35459744930267,\"z\":-86.0186004638672},\"rot\":{\"x\":0.0208164379000664,\"y\":269.999572753906,\"z\":0.0167675726115704}},\"3f0e28\":{\"lock\":false,\"pos\":{\"x\":-19.2959003448486,\"y\":1.31220149993896,\"z\":-69.0606994628906},\"rot\":{\"x\":0.0208025686442852,\"y\":270.020874023438,\"z\":0.0167785324156284}},\"41bfc7\":{\"lock\":false,\"pos\":{\"x\":-16.640100479126,\"y\":1.3618528842926,\"z\":-61.2309989929199},\"rot\":{\"x\":0.0208135135471821,\"y\":270.010925292969,\"z\":0.0167720373719931}},\"4ad11b\":{\"lock\":false,\"pos\":{\"x\":-16.6396007537842,\"y\":1.357253074646,\"z\":-76.9456024169922},\"rot\":{\"x\":0.0208168551325798,\"y\":269.999694824219,\"z\":0.0167679917067289}},\"4d0a50\":{\"lock\":false,\"pos\":{\"x\":-22.613899230957,\"y\":1.31556940078735,\"z\":-53.4380989074707},\"rot\":{\"x\":0.0167713351547718,\"y\":179.999938964844,\"z\":359.979187011719}},\"543164\":{\"lock\":false,\"pos\":{\"x\":-16.6403007507324,\"y\":1.35956108570099,\"z\":-69.060302734375},\"rot\":{\"x\":0.0208166968077421,\"y\":269.999481201172,\"z\":0.0167676880955696}},\"6330da\":{\"lock\":false,\"pos\":{\"x\":-16.640100479126,\"y\":1.36378788948059,\"z\":-54.6207008361816},\"rot\":{\"x\":0.0208167098462582,\"y\":270.000457763672,\"z\":0.0167684089392424}},\"779aa6\":{\"lock\":false,\"pos\":{\"x\":-16.638500213623,\"y\":1.35532283782959,\"z\":-83.5414962768555},\"rot\":{\"x\":0.0208173394203186,\"y\":269.998016357422,\"z\":0.0167670622467995}},\"808696\":{\"lock\":false,\"pos\":{\"x\":-19.3001003265381,\"y\":1.31449115276337,\"z\":-61.2332000732422},\"rot\":{\"x\":0.0208018757402897,\"y\":270.022583007813,\"z\":0.0167793910950422}},\"810d82\":{\"lock\":false,\"pos\":{\"x\":-19.2997989654541,\"y\":1.3075875043869,\"z\":-84.8181991577148},\"rot\":{\"x\":0.0208041854202747,\"y\":270.022644042969,\"z\":0.0167822297662497}},\"8a01b9\":{\"lock\":false,\"pos\":{\"x\":-19.2936000823975,\"y\":1.30989551544189,\"z\":-76.9414978027344},\"rot\":{\"x\":0.020802179351449,\"y\":270.023406982422,\"z\":0.0167793575674295}},\"9e80b9\":{\"lock\":false,\"pos\":{\"x\":-16.640100479126,\"y\":1.36414813995361,\"z\":-53.3903999328613},\"rot\":{\"x\":0.0208209455013275,\"y\":269.983947753906,\"z\":0.0167623087763786}},\"a01c9b\":{\"lock\":false,\"pos\":{\"x\":-19.2999992370605,\"y\":1.31677353382111,\"z\":-53.4357986450195},\"rot\":{\"x\":0.0208026729524136,\"y\":270.021057128906,\"z\":0.0167783722281456}},\"bde4a6\":{\"lock\":false,\"pos\":{\"x\":-16.640100479126,\"y\":1.36451041698456,\"z\":-52.1520004272461},\"rot\":{\"x\":0.020816758275032,\"y\":269.999816894531,\"z\":0.0167679078876972}},\"bfb635\":{\"lock\":false,\"pos\":{\"x\":-26.3001384735107,\"y\":1.26878118515015,\"z\":-76.9456481933594},\"rot\":{\"x\":359.979156494141,\"y\":89.9997406005859,\"z\":359.983215332031}},\"cfcb92\":{\"lock\":false,\"pos\":{\"x\":-26.2994804382324,\"y\":1.27337789535522,\"z\":-61.2407188415527},\"rot\":{\"x\":359.979156494141,\"y\":90,\"z\":359.983245849609}},\"d6fdbf\":{\"lock\":false,\"pos\":{\"x\":-16.6399993896484,\"y\":1.36149287223816,\"z\":-62.4608993530273},\"rot\":{\"x\":0.0208269897848368,\"y\":269.965240478516,\"z\":0.0167553834617138}},\"d92dda\":{\"lock\":false,\"pos\":{\"x\":-22.6156997680664,\"y\":1.30868768692017,\"z\":-76.9459991455078},\"rot\":{\"x\":0.0167711619287729,\"y\":179.999893188477,\"z\":359.979187011719}},\"d9fb86\":{\"lock\":false,\"pos\":{\"x\":-16.640100479126,\"y\":1.35689294338226,\"z\":-78.1755981445313},\"rot\":{\"x\":0.0208139065653086,\"y\":270.008666992188,\"z\":0.0167710781097412}},\"ddb016\":{\"lock\":false,\"pos\":{\"x\":-22.6156997680664,\"y\":1.31099140644073,\"z\":-69.0755996704102},\"rot\":{\"x\":0.0167711619287729,\"y\":179.999893188477,\"z\":359.979187011719}},\"de216f\":{\"lock\":false,\"pos\":{\"x\":-16.640100479126,\"y\":1.36221301555634,\"z\":-60.0009994506836},\"rot\":{\"x\":0.0208135861903429,\"y\":270.010711669922,\"z\":0.0167716089636087}},\"e04b48\":{\"lock\":false,\"pos\":{\"x\":-16.6403007507324,\"y\":1.35761606693268,\"z\":-75.7053985595703},\"rot\":{\"x\":0.0208202619105577,\"y\":269.987365722656,\"z\":0.0167635194957256}}}}",
"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": "e32a71",
"Name": "Custom_Model",
"Transform": {
"posX": -45.87122,
"posY": 1.972617,
"posZ": -114.770966,
"rotX": 0.0208113324,
"rotY": 269.989319,
"rotZ": 0.01676401,
"scaleX": 1.39590466,
"scaleY": 0.2905503,
"scaleZ": 1.52854741
},
"Nickname": "Nightmare Pack - EN",
"Description": "by The Popest",
"GMNotes": "fancreations/investigators_nightmare_town.json",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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/ftafgpa.pnghttps://i.imgur.com/ftafgpa.png",
"NormalURL": "",
"ColliderURL": "",
"Convex": true,
"MaterialIndex": 2,
"TypeIndex": 0,
"CustomShader": {
"SpecularColor": {
"r": 0.735294163,
"g": 0.735294163,
"b": 0.735294163
},
"SpecularIntensity": 0.3,
"SpecularSharpness": 8.0,
"FresnelStrength": 0.4999999
},
"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\":{\"0088ba\":{\"lock\":false,\"pos\":{\"x\":-6.92639875411987,\"y\":97.6375579833984,\"z\":2.96812868118286},\"rot\":{\"x\":359.5029296875,\"y\":180.023330688477,\"z\":0.330624610185623}},\"0195d3\":{\"lock\":false,\"pos\":{\"x\":-5.3164,\"y\":1.7026,\"z\":0.3783},\"rot\":{\"x\":359.9197,\"y\":270.0199,\"z\":0.0168}},\"02dd21\":{\"lock\":false,\"pos\":{\"x\":-26.2999973297119,\"y\":1.27566242218018,\"z\":-53.4368362426758},\"rot\":{\"x\":359.979156494141,\"y\":89.9969024658203,\"z\":359.983245849609}},\"0745af\":{\"lock\":false,\"pos\":{\"x\":-16.6232299804688,\"y\":1.3615038394928,\"z\":-62.4441375732422},\"rot\":{\"x\":0.0208165217190981,\"y\":269.999938964844,\"z\":0.0167675279080868}},\"0be33e\":{\"lock\":false,\"pos\":{\"x\":-19.2455997467041,\"y\":1.29233181476593,\"z\":-90.5261001586914},\"rot\":{\"x\":0.0208136830478907,\"y\":269.986114501953,\"z\":0.0167653951793909}},\"0de2c4\":{\"lock\":false,\"pos\":{\"x\":-16.640100479126,\"y\":1.35992407798767,\"z\":-67.8206024169922},\"rot\":{\"x\":0.0208164416253567,\"y\":269.999755859375,\"z\":0.0167678892612457}},\"0f241b\":{\"lock\":false,\"pos\":{\"x\":-22.6168975830078,\"y\":1.3063827753067,\"z\":-84.8184967041016},\"rot\":{\"x\":0.016771724447608,\"y\":179.999954223633,\"z\":359.979187011719}},\"11dbe4\":{\"lock\":false,\"pos\":{\"x\":-19.3039,\"y\":1.294,\"z\":-84.8224},\"rot\":{\"x\":0.0208,\"y\":269.9865,\"z\":0.0168}},\"1842b6\":{\"lock\":false,\"pos\":{\"x\":-26.3059005737305,\"y\":1.27565884590149,\"z\":-53.4418983459473},\"rot\":{\"x\":359.979187011719,\"y\":90.0104064941406,\"z\":359.983215332031}},\"19a0c4\":{\"lock\":false,\"pos\":{\"x\":-19.30419921875,\"y\":1.30316603183746,\"z\":-53.4401016235352},\"rot\":{\"x\":0.0208098273724318,\"y\":270.000091552734,\"z\":0.0167705342173576}},\"1a160c\":{\"lock\":false,\"pos\":{\"x\":-22.1548,\"y\":1.3655,\"z\":-53.4315},\"rot\":{\"x\":0.02,\"y\":270.018,\"z\":0.0165}},\"1aebf8\":{\"lock\":false,\"pos\":{\"x\":-26.3001308441162,\"y\":1.27108907699585,\"z\":-69.0606002807617},\"rot\":{\"x\":359.979156494141,\"y\":89.9996719360352,\"z\":359.983245849609}},\"1b0fdd\":{\"lock\":false,\"pos\":{\"x\":-16.5254249572754,\"y\":1.35332095623016,\"z\":-90.5208129882813},\"rot\":{\"x\":359.983215332031,\"y\":3.27318957715761E-05,\"z\":0.0208062957972288}},\"1dee2f\":{\"lock\":false,\"pos\":{\"x\":-6.90673065185547,\"y\":97.6462097167969,\"z\":1.91000008583069},\"rot\":{\"x\":359.501251220703,\"y\":180.003860473633,\"z\":0.333155572414398}},\"1f8fcf\":{\"lock\":false,\"pos\":{\"x\":-16.6235466003418,\"y\":1.35957205295563,\"z\":-69.0435256958008},\"rot\":{\"x\":0.0208160616457462,\"y\":270.00048828125,\"z\":0.0167686101049185}},\"226716\":{\"lock\":false,\"pos\":{\"x\":-16.640100479126,\"y\":1.35920107364655,\"z\":-70.2906036376953},\"rot\":{\"x\":0.0208164621144533,\"y\":269.999572753906,\"z\":0.0167677756398916}},\"24660b\":{\"lock\":false,\"pos\":{\"x\":-16.6233291625977,\"y\":1.36415886878967,\"z\":-53.3736343383789},\"rot\":{\"x\":0.0208165738731623,\"y\":270.000305175781,\"z\":0.0167682748287916}},\"2a0151\":{\"lock\":false,\"pos\":{\"x\":-26.29958152771,\"y\":1.26647675037384,\"z\":-84.817985534668},\"rot\":{\"x\":359.979156494141,\"y\":90.0002746582031,\"z\":359.983215332031}},\"2d7917\":{\"lock\":false,\"pos\":{\"x\":-22.6168994903564,\"y\":1.31328415870667,\"z\":-61.2414016723633},\"rot\":{\"x\":0.016771299764514,\"y\":179.999923706055,\"z\":359.979187011719}},\"307044\":{\"lock\":false,\"pos\":{\"x\":-16.6401996612549,\"y\":1.3549485206604,\"z\":-84.8181991577148},\"rot\":{\"x\":0.0208103768527508,\"y\":270.022247314453,\"z\":0.016776017844677}},\"3b2bad\":{\"lock\":false,\"pos\":{\"x\":-22.6207008361816,\"y\":1.31328284740448,\"z\":-61.2412986755371},\"rot\":{\"x\":0.0208657011389732,\"y\":269.805206298828,\"z\":0.0167002454400063}},\"3c3607\":{\"lock\":false,\"pos\":{\"x\":-16.6233367919922,\"y\":1.36186385154724,\"z\":-61.2142333984375},\"rot\":{\"x\":0.0208165049552917,\"y\":269.99951171875,\"z\":0.0167678613215685}},\"3ddfeb\":{\"lock\":false,\"pos\":{\"x\":-16.6394004821777,\"y\":1.35459744930267,\"z\":-86.0186004638672},\"rot\":{\"x\":0.0208164379000664,\"y\":269.999572753906,\"z\":0.0167675726115704}},\"3f0e28\":{\"lock\":false,\"pos\":{\"x\":-19.2959003448486,\"y\":1.31220149993896,\"z\":-69.0606994628906},\"rot\":{\"x\":0.0208025686442852,\"y\":270.020874023438,\"z\":0.0167785324156284}},\"41bfc7\":{\"lock\":false,\"pos\":{\"x\":-16.640100479126,\"y\":1.3618528842926,\"z\":-61.2309989929199},\"rot\":{\"x\":0.0208135135471821,\"y\":270.010925292969,\"z\":0.0167720373719931}},\"437a37\":{\"lock\":false,\"pos\":{\"x\":-22.6156997680664,\"y\":1.30868768692017,\"z\":-76.9459991455078},\"rot\":{\"x\":0.0208149589598179,\"y\":269.979187011719,\"z\":0.0167635623365641}},\"4722e6\":{\"lock\":false,\"pos\":{\"x\":-26.3049983978271,\"y\":1.2733747959137,\"z\":-61.2458000183105},\"rot\":{\"x\":359.979156494141,\"y\":89.9815063476563,\"z\":359.983245849609}},\"4ad11b\":{\"lock\":false,\"pos\":{\"x\":-16.6396007537842,\"y\":1.357253074646,\"z\":-76.9456024169922},\"rot\":{\"x\":0.0208168551325798,\"y\":269.999694824219,\"z\":0.0167679917067289}},\"4d0a50\":{\"lock\":false,\"pos\":{\"x\":-22.613899230957,\"y\":1.31556940078735,\"z\":-53.4380989074707},\"rot\":{\"x\":0.0167713351547718,\"y\":179.999938964844,\"z\":359.979187011719}},\"4f37be\":{\"lock\":false,\"pos\":{\"x\":-19.3001,\"y\":1.3145,\"z\":-61.2334},\"rot\":{\"x\":0.0208,\"y\":270,\"z\":0.0168}},\"51f42c\":{\"lock\":false,\"pos\":{\"x\":-22.6139,\"y\":1.3156,\"z\":-53.4381},\"rot\":{\"x\":0.0208,\"y\":270.018,\"z\":0.0166}},\"543164\":{\"lock\":false,\"pos\":{\"x\":-16.6403007507324,\"y\":1.35956108570099,\"z\":-69.060302734375},\"rot\":{\"x\":0.0208166968077421,\"y\":269.999481201172,\"z\":0.0167676880955696}},\"5c7b14\":{\"lock\":false,\"pos\":{\"x\":-26.3050994873047,\"y\":1.27108597755432,\"z\":-69.0654067993164},\"rot\":{\"x\":359.979187011719,\"y\":90.010009765625,\"z\":359.983215332031}},\"607bc5\":{\"lock\":false,\"pos\":{\"x\":-22.621000289917,\"y\":1.30638003349304,\"z\":-84.8227005004883},\"rot\":{\"x\":0.0208084154874086,\"y\":270.001800537109,\"z\":0.0167717579752207}},\"6330da\":{\"lock\":false,\"pos\":{\"x\":-16.640100479126,\"y\":1.36378788948059,\"z\":-54.6207008361816},\"rot\":{\"x\":0.0208167098462582,\"y\":270.000457763672,\"z\":0.0167684089392424}},\"698808\":{\"lock\":false,\"pos\":{\"x\":-26.3044986724854,\"y\":1.26647329330444,\"z\":-84.8228073120117},\"rot\":{\"x\":359.979156494141,\"y\":90,\"z\":359.983215332031}},\"69f0d8\":{\"lock\":false,\"pos\":{\"x\":-22.617992401123,\"y\":1.33252048492432,\"z\":-53.4420967102051},\"rot\":{\"x\":0.0208107884973288,\"y\":269.996887207031,\"z\":0.0167698599398136}},\"6d91e6\":{\"lock\":false,\"pos\":{\"x\":-19.2978000640869,\"y\":1.29628801345825,\"z\":-76.94580078125},\"rot\":{\"x\":0.0208093039691448,\"y\":270,\"z\":0.0167701654136181}},\"7069c2\":{\"lock\":false,\"pos\":{\"x\":-16.6233425140381,\"y\":1.3569039106369,\"z\":-78.1588287353516},\"rot\":{\"x\":0.020816657692194,\"y\":270.000732421875,\"z\":0.0167684201151133}},\"709107\":{\"lock\":false,\"pos\":{\"x\":-9.4013557434082,\"y\":97.5541839599609,\"z\":7.28238010406494},\"rot\":{\"x\":359.660949707031,\"y\":269.990417480469,\"z\":359.491882324219}},\"73bbe6\":{\"lock\":false,\"pos\":{\"x\":-6.95197439193726,\"y\":97.6284790039063,\"z\":4.007155418396},\"rot\":{\"x\":359.502532958984,\"y\":180.026397705078,\"z\":0.33254799246788}},\"757716\":{\"lock\":false,\"pos\":{\"x\":-16.6233501434326,\"y\":1.35993504524231,\"z\":-67.803825378418},\"rot\":{\"x\":0.0208157859742641,\"y\":270.00048828125,\"z\":0.0167686063796282}},\"767abd\":{\"lock\":false,\"pos\":{\"x\":-11.8665,\"y\":14.5262,\"z\":4.6576},\"rot\":{\"x\":0.0801,\"y\":90,\"z\":359.9514}},\"778482\":{\"lock\":false,\"pos\":{\"x\":-19.3043,\"y\":1.3009,\"z\":-61.2375},\"rot\":{\"x\":0.0208,\"y\":270.0001,\"z\":0.0168}},\"779aa6\":{\"lock\":false,\"pos\":{\"x\":-16.638500213623,\"y\":1.35532283782959,\"z\":-83.5414962768555},\"rot\":{\"x\":0.0208173394203186,\"y\":269.998016357422,\"z\":0.0167670622467995}},\"7ae4a4\":{\"lock\":false,\"pos\":{\"x\":-16.6233386993408,\"y\":1.36222386360168,\"z\":-59.9842376708984},\"rot\":{\"x\":0.0208168067038059,\"y\":269.999603271484,\"z\":0.0167678035795689}},\"7c476f\":{\"lock\":false,\"pos\":{\"x\":-16.5496215820313,\"y\":1.35362160205841,\"z\":-89.4637145996094},\"rot\":{\"x\":359.983215332031,\"y\":-2.15352629311383E-05,\"z\":0.0208078436553478}},\"7d0121\":{\"lock\":false,\"pos\":{\"x\":-16.6235332489014,\"y\":1.35762691497803,\"z\":-75.6886291503906},\"rot\":{\"x\":0.0208214167505503,\"y\":269.981994628906,\"z\":0.0167614575475454}},\"808696\":{\"lock\":false,\"pos\":{\"x\":-19.3001003265381,\"y\":1.31449115276337,\"z\":-61.2332000732422},\"rot\":{\"x\":0.0208018757402897,\"y\":270.022583007813,\"z\":0.0167793910950422}},\"810d82\":{\"lock\":false,\"pos\":{\"x\":-19.2997989654541,\"y\":1.3075875043869,\"z\":-84.8181991577148},\"rot\":{\"x\":0.0208041854202747,\"y\":270.022644042969,\"z\":0.0167822297662497}},\"8a01b9\":{\"lock\":false,\"pos\":{\"x\":-19.2936000823975,\"y\":1.30989551544189,\"z\":-76.9414978027344},\"rot\":{\"x\":0.020802179351449,\"y\":270.023406982422,\"z\":0.0167793575674295}},\"90165e\":{\"lock\":false,\"pos\":{\"x\":-16.6233406066895,\"y\":1.36379873752594,\"z\":-54.6039276123047},\"rot\":{\"x\":0.0208164323121309,\"y\":270.000213623047,\"z\":0.016768142580986}},\"91d56f\":{\"lock\":false,\"pos\":{\"x\":-19.2936,\"y\":1.3099,\"z\":-76.9416},\"rot\":{\"x\":0.0208,\"y\":270.0001,\"z\":0.0168}},\"928835\":{\"lock\":false,\"pos\":{\"x\":-19.2998,\"y\":1.3076,\"z\":-84.8182},\"rot\":{\"x\":0.0208,\"y\":270,\"z\":0.0168}},\"9c5af7\":{\"lock\":false,\"pos\":{\"x\":-26.3050975799561,\"y\":1.26877748966217,\"z\":-76.9504089355469},\"rot\":{\"x\":359.979156494141,\"y\":90,\"z\":359.983215332031}},\"9e80b9\":{\"lock\":false,\"pos\":{\"x\":-16.640100479126,\"y\":1.36414813995361,\"z\":-53.3903999328613},\"rot\":{\"x\":0.0208209455013275,\"y\":269.983947753906,\"z\":0.0167623087763786}},\"a01c9b\":{\"lock\":false,\"pos\":{\"x\":-19.2999992370605,\"y\":1.31677353382111,\"z\":-53.4357986450195},\"rot\":{\"x\":0.0208026729524136,\"y\":270.021057128906,\"z\":0.0167783722281456}},\"a52a3a\":{\"lock\":false,\"pos\":{\"x\":-16.6228427886963,\"y\":1.35726404190063,\"z\":-76.9288330078125},\"rot\":{\"x\":0.02081648260355,\"y\":270.00048828125,\"z\":0.0167677849531174}},\"aaf149\":{\"lock\":false,\"pos\":{\"x\":-22.6139,\"y\":1.3325,\"z\":-53.438},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"b6b36e\":{\"lock\":false,\"pos\":{\"x\":-16.6233329772949,\"y\":1.35921192169189,\"z\":-70.2738342285156},\"rot\":{\"x\":0.0208173170685768,\"y\":269.998687744141,\"z\":0.0167677458375692}},\"b95256\":{\"lock\":false,\"pos\":{\"x\":-19.2959,\"y\":1.3122,\"z\":-69.0607},\"rot\":{\"x\":0.0208,\"y\":270.0001,\"z\":0.0168}},\"bde4a6\":{\"lock\":false,\"pos\":{\"x\":-16.640100479126,\"y\":1.36451041698456,\"z\":-52.1520004272461},\"rot\":{\"x\":0.020816758275032,\"y\":269.999816894531,\"z\":0.0167679078876972}},\"be44cf\":{\"lock\":false,\"pos\":{\"x\":-16.6268348693848,\"y\":1.35460567474365,\"z\":-86.0060272216797},\"rot\":{\"x\":0.0208113081753254,\"y\":270.017486572266,\"z\":0.0167743507772684}},\"bfb635\":{\"lock\":false,\"pos\":{\"x\":-26.3001384735107,\"y\":1.26878118515015,\"z\":-76.9456481933594},\"rot\":{\"x\":359.979156494141,\"y\":89.9997406005859,\"z\":359.983215332031}},\"c1bb90\":{\"lock\":false,\"pos\":{\"x\":-16.6234188079834,\"y\":1.35495948791504,\"z\":-84.8014526367188},\"rot\":{\"x\":0.0208165608346462,\"y\":270.000305175781,\"z\":0.0167681518942118}},\"ce1ca7\":{\"lock\":false,\"pos\":{\"x\":-9.40235042572021,\"y\":97.6034851074219,\"z\":3.199223279953},\"rot\":{\"x\":359.660064697266,\"y\":269.992919921875,\"z\":359.493011474609}},\"cf0fa6\":{\"lock\":false,\"pos\":{\"x\":-16.6233367919922,\"y\":1.36452126502991,\"z\":-52.1352310180664},\"rot\":{\"x\":0.0208160765469074,\"y\":270.000213623047,\"z\":0.0167679488658905}},\"cfcb92\":{\"lock\":false,\"pos\":{\"x\":-26.2994804382324,\"y\":1.27337789535522,\"z\":-61.2407188415527},\"rot\":{\"x\":359.979156494141,\"y\":90,\"z\":359.983245849609}},\"d6fdbf\":{\"lock\":false,\"pos\":{\"x\":-16.6399993896484,\"y\":1.36149287223816,\"z\":-62.4608993530273},\"rot\":{\"x\":0.0208269897848368,\"y\":269.965240478516,\"z\":0.0167553834617138}},\"d92dda\":{\"lock\":false,\"pos\":{\"x\":-22.6156997680664,\"y\":1.30868768692017,\"z\":-76.9459991455078},\"rot\":{\"x\":0.0167711619287729,\"y\":179.999893188477,\"z\":359.979187011719}},\"d9fb86\":{\"lock\":false,\"pos\":{\"x\":-16.640100479126,\"y\":1.35689294338226,\"z\":-78.1755981445313},\"rot\":{\"x\":0.0208139065653086,\"y\":270.008666992188,\"z\":0.0167710781097412}},\"db82b2\":{\"lock\":false,\"pos\":{\"x\":-19.3001,\"y\":1.2986,\"z\":-69.0649},\"rot\":{\"x\":0.0208,\"y\":270.0001,\"z\":0.0168}},\"ddb016\":{\"lock\":false,\"pos\":{\"x\":-22.6156997680664,\"y\":1.31099140644073,\"z\":-69.0755996704102},\"rot\":{\"x\":0.0167711619287729,\"y\":179.999893188477,\"z\":359.979187011719}},\"de216f\":{\"lock\":false,\"pos\":{\"x\":-16.640100479126,\"y\":1.36221301555634,\"z\":-60.0009994506836},\"rot\":{\"x\":0.0208135861903429,\"y\":270.010711669922,\"z\":0.0167716089636087}},\"e04b48\":{\"lock\":false,\"pos\":{\"x\":-16.6403007507324,\"y\":1.35761606693268,\"z\":-75.7053985595703},\"rot\":{\"x\":0.0208202619105577,\"y\":269.987365722656,\"z\":0.0167635194957256}},\"e4c465\":{\"lock\":false,\"pos\":{\"x\":-16.6260395050049,\"y\":1.35533106327057,\"z\":-83.5289001464844},\"rot\":{\"x\":0.020870653912425,\"y\":269.815185546875,\"z\":0.0167007204145193}},\"e6c6ea\":{\"lock\":false,\"pos\":{\"x\":-22.6138916015625,\"y\":1.33252322673798,\"z\":-53.4379997253418},\"rot\":{\"x\":0.0208101626485586,\"y\":269.99951171875,\"z\":0.0167707949876785}},\"eb67db\":{\"lock\":false,\"pos\":{\"x\":-22.619800567627,\"y\":1.31098866462708,\"z\":-69.0798034667969},\"rot\":{\"x\":0.0208089426159859,\"y\":270,\"z\":0.0167712215334177}},\"ee2ffa\":{\"lock\":false,\"pos\":{\"x\":-22.6136,\"y\":1.3325,\"z\":-53.4377},\"rot\":{\"x\":0.0208,\"y\":270.0079,\"z\":0.0168}},\"f94edc\":{\"lock\":false,\"pos\":{\"x\":-19.3,\"y\":1.3168,\"z\":-53.4358},\"rot\":{\"x\":0.0208,\"y\":270.0001,\"z\":0.0168}},\"f9adc0\":{\"lock\":false,\"pos\":{\"x\":-22.6197929382324,\"y\":1.32563877105713,\"z\":-76.9501953125},\"rot\":{\"x\":0.0208151005208492,\"y\":269.97607421875,\"z\":0.0167624745517969}},\"fed3c5\":{\"lock\":false,\"pos\":{\"x\":-16.523323059082,\"y\":1.35301625728607,\"z\":-91.5646133422852},\"rot\":{\"x\":359.983215332031,\"y\":5.10707141074818E-05,\"z\":0.0208062138408422}},\"ff3f4e\":{\"lock\":false,\"pos\":{\"x\":-22.63450050354,\"y\":1.30471432209015,\"z\":-90.496696472168},\"rot\":{\"x\":0.02080880664289,\"y\":270.000091552734,\"z\":0.0167712885886431}}}}",
"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": "4608c8",
"Name": "Custom_Model",
"Transform": {
"posX": -20.9389172,
"posY": 1.962583,
"posZ": 81.00668,
"rotX": 0.0218271166,
"rotY": 270.000061,
"rotZ": 0.009676192,
"scaleX": 1.3633405,
"scaleY": 0.2837723,
"scaleZ": 1.49288893
},
"Nickname": "Maximillion Pegasus Custom Investigator",
"Description": "By Game#0398",
"GMNotes": "fancreations/investigators_maximillion_pegasus.json",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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/1684870715280907223/1E9DE758F089D7F880ADC8CA594F9AA938743F8B/",
"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\":{\"043636\":{\"lock\":false,\"pos\":{\"x\":-19.2958831787109,\"y\":1.31220149993896,\"z\":-69.0607070922852},\"rot\":{\"x\":0.0208086650818586,\"y\":270,\"z\":0.0167712047696114}},\"38e58a\":{\"lock\":false,\"pos\":{\"x\":-22.6156921386719,\"y\":1.31099140644073,\"z\":-69.0756149291992},\"rot\":{\"x\":0.0208094250410795,\"y\":269.999908447266,\"z\":0.0167717207223177}},\"728c1e\":{\"lock\":false,\"pos\":{\"x\":-26.3002033233643,\"y\":1.34105360507965,\"z\":-69.0606002807617},\"rot\":{\"x\":0.0208094790577888,\"y\":270.003631591797,\"z\":0.016773009672761}},\"e1aefa\":{\"lock\":false,\"pos\":{\"x\":-16.6402912139893,\"y\":1.31316602230072,\"z\":-69.0602951049805},\"rot\":{\"x\":0.0208082552999258,\"y\":270.000030517578,\"z\":0.0167675074189901}}}}",
"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": "b82c6f",
"Name": "Custom_Model",
"Transform": {
"posX": -20.9389172,
"posY": 1.96242046,
"posZ": 81.00668,
"rotX": 0.0218358934,
"rotY": 270.000824,
"rotZ": 0.009607792,
"scaleX": 1.3633405,
"scaleY": 0.2837723,
"scaleZ": 1.49288893
},
"Nickname": "Mass Effect Investigators",
"Description": "",
"GMNotes": "fancreations/investigators_mass_effect.json",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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/1667985852037525429/FFCBAFD8EF7EFD1127F4482DF01FFD8AE9638B4D/",
"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\":{\"08d3e3\":{\"lock\":false,\"pos\":{\"x\":13.7846,\"y\":1.1313,\"z\":-49.5292},\"rot\":{\"x\":0.0208,\"y\":270.0289,\"z\":0.0168}},\"0bb6e8\":{\"lock\":false,\"pos\":{\"x\":10.0417,\"y\":1.3206,\"z\":-76.9242},\"rot\":{\"x\":0.0208,\"y\":270,\"z\":0.0168}},\"0ccbc7\":{\"lock\":false,\"pos\":{\"x\":1.8744,\"y\":1.3711,\"z\":-86.5372},\"rot\":{\"x\":359.9789,\"y\":90.0433,\"z\":359.9843}},\"17f1f6\":{\"lock\":false,\"pos\":{\"x\":13.7266,\"y\":1.3242,\"z\":-69.0544},\"rot\":{\"x\":0.0208,\"y\":269.9988,\"z\":0.0168}},\"1850a0\":{\"lock\":false,\"pos\":{\"x\":10.1154,\"y\":1.13,\"z\":-49.5287},\"rot\":{\"x\":0.0208,\"y\":270.0003,\"z\":0.0168}},\"1a4d37\":{\"lock\":false,\"pos\":{\"x\":13.727,\"y\":1.3219,\"z\":-76.9246},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"2b6cc2\":{\"lock\":false,\"pos\":{\"x\":2.5928,\"y\":1.3179,\"z\":-76.9188},\"rot\":{\"x\":0.0208,\"y\":270,\"z\":0.0168}},\"31a747\":{\"lock\":false,\"pos\":{\"x\":6.2777,\"y\":1.3215,\"z\":-69.0494},\"rot\":{\"x\":0.0208,\"y\":270,\"z\":0.0168}},\"4fd5ba\":{\"lock\":false,\"pos\":{\"x\":13.7264,\"y\":1.3288,\"z\":-53.4163},\"rot\":{\"x\":0.0208,\"y\":269.9996,\"z\":0.0168}},\"513d5a\":{\"lock\":false,\"pos\":{\"x\":10.0422,\"y\":1.3274,\"z\":-53.4154},\"rot\":{\"x\":0.0208,\"y\":269.9999,\"z\":0.0168}},\"547fe6\":{\"lock\":false,\"pos\":{\"x\":13.7252,\"y\":1.3265,\"z\":-61.2201},\"rot\":{\"x\":0.0208,\"y\":270.0005,\"z\":0.0168}},\"570e85\":{\"lock\":false,\"pos\":{\"x\":2.6965,\"y\":1.1181,\"z\":-80.8667},\"rot\":{\"x\":0.0208,\"y\":270.0195,\"z\":0.0168}},\"60fa35\":{\"lock\":false,\"pos\":{\"x\":6.3792,\"y\":1.1263,\"z\":-57.3239},\"rot\":{\"x\":0.0208,\"y\":270.0177,\"z\":0.0168}},\"6d5e35\":{\"lock\":false,\"pos\":{\"x\":13.7587,\"y\":1.1267,\"z\":-65.2426},\"rot\":{\"x\":0.0208,\"y\":270.0178,\"z\":0.0168}},\"6fd13b\":{\"lock\":false,\"pos\":{\"x\":2.5897,\"y\":1.1204,\"z\":-72.9237},\"rot\":{\"x\":0.0208,\"y\":270.0206,\"z\":0.0168}},\"71818d\":{\"lock\":false,\"pos\":{\"x\":6.3664,\"y\":1.1286,\"z\":-49.5291},\"rot\":{\"x\":0.0208,\"y\":270.0194,\"z\":0.0168}},\"80b260\":{\"lock\":false,\"pos\":{\"x\":2.62,\"y\":1.1272,\"z\":-49.5292},\"rot\":{\"x\":0.0208,\"y\":270.0222,\"z\":0.0168}},\"80fbd7\":{\"lock\":false,\"pos\":{\"x\":13.8384,\"y\":1.1221,\"z\":-80.8671},\"rot\":{\"x\":0.0208,\"y\":270.0192,\"z\":0.0168}},\"821d26\":{\"lock\":false,\"pos\":{\"x\":6.2777,\"y\":1.3192,\"z\":-76.9192},\"rot\":{\"x\":0.0208,\"y\":270.0001,\"z\":0.0167}},\"828364\":{\"lock\":false,\"pos\":{\"x\":6.2797,\"y\":1.3261,\"z\":-53.4113},\"rot\":{\"x\":0.0208,\"y\":269.9999,\"z\":0.0168}},\"858c12\":{\"lock\":false,\"pos\":{\"x\":10.1694,\"y\":1.1208,\"z\":-80.8667},\"rot\":{\"x\":0.0208,\"y\":270.0009,\"z\":0.0168}},\"87c700\":{\"lock\":false,\"pos\":{\"x\":2.5934,\"y\":1.3202,\"z\":-69.0337},\"rot\":{\"x\":0.0208,\"y\":270.0001,\"z\":0.0168}},\"8c43cc\":{\"lock\":false,\"pos\":{\"x\":6.2767,\"y\":1.3169,\"z\":-84.7916},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"8d56c2\":{\"lock\":false,\"pos\":{\"x\":13.7254,\"y\":1.3196,\"z\":-84.7972},\"rot\":{\"x\":0.0208,\"y\":270.0055,\"z\":0.0168}},\"947614\":{\"lock\":false,\"pos\":{\"x\":13.7557,\"y\":1.1244,\"z\":-72.9234},\"rot\":{\"x\":0.0208,\"y\":270.0186,\"z\":0.0168}},\"9db582\":{\"lock\":false,\"pos\":{\"x\":6.2766,\"y\":1.3238,\"z\":-61.2146},\"rot\":{\"x\":0.0208,\"y\":270,\"z\":0.0168}},\"b0675e\":{\"lock\":false,\"pos\":{\"x\":2.5933,\"y\":1.3224,\"z\":-61.2141},\"rot\":{\"x\":0.0208,\"y\":270.0001,\"z\":0.0168}},\"b6b587\":{\"lock\":false,\"pos\":{\"x\":2.5939,\"y\":1.1226,\"z\":-65.2427},\"rot\":{\"x\":0.0208,\"y\":270.021,\"z\":0.0168}},\"b6e8bc\":{\"lock\":false,\"pos\":{\"x\":6.336,\"y\":1.1217,\"z\":-72.9236},\"rot\":{\"x\":0.0208,\"y\":270.0179,\"z\":0.0168}},\"b9aa5d\":{\"lock\":false,\"pos\":{\"x\":10.0851,\"y\":1.1231,\"z\":-72.923},\"rot\":{\"x\":0.0208,\"y\":270.0019,\"z\":0.0168}},\"bced27\":{\"lock\":false,\"pos\":{\"x\":10.1282,\"y\":1.1277,\"z\":-57.3233},\"rot\":{\"x\":0.0208,\"y\":270.0015,\"z\":0.0168}},\"be4e02\":{\"lock\":false,\"pos\":{\"x\":10.0425,\"y\":1.3183,\"z\":-84.7966},\"rot\":{\"x\":0.0208,\"y\":270,\"z\":0.0168}},\"c1cdf9\":{\"lock\":false,\"pos\":{\"x\":6.3705,\"y\":1.124,\"z\":-65.2395},\"rot\":{\"x\":0.0208,\"y\":270.0005,\"z\":0.0168}},\"c75ea5\":{\"lock\":false,\"pos\":{\"x\":10.0417,\"y\":1.3252,\"z\":-61.2201},\"rot\":{\"x\":0.0208,\"y\":270,\"z\":0.0168}},\"daf913\":{\"lock\":false,\"pos\":{\"x\":10.0419,\"y\":1.3229,\"z\":-69.0393},\"rot\":{\"x\":0.0208,\"y\":270,\"z\":0.0168}},\"dc76bd\":{\"lock\":false,\"pos\":{\"x\":0.1399,\"y\":1.4643,\"z\":-89.6423},\"rot\":{\"x\":0.0186,\"y\":270.0274,\"z\":0.0196}},\"e82a8b\":{\"lock\":false,\"pos\":{\"x\":10.0893,\"y\":1.1254,\"z\":-65.2422},\"rot\":{\"x\":0.0208,\"y\":270.0003,\"z\":0.0168}},\"ed77db\":{\"lock\":false,\"pos\":{\"x\":2.6329,\"y\":1.125,\"z\":-57.3239},\"rot\":{\"x\":0.0208,\"y\":270.0218,\"z\":0.0168}},\"f36d20\":{\"lock\":false,\"pos\":{\"x\":2.5934,\"y\":1.3247,\"z\":-53.4101},\"rot\":{\"x\":0.0208,\"y\":269.9967,\"z\":0.0168}},\"fc82f2\":{\"lock\":false,\"pos\":{\"x\":13.7976,\"y\":1.129,\"z\":-57.3239},\"rot\":{\"x\":0.0208,\"y\":270.0198,\"z\":0.0168}},\"fe3578\":{\"lock\":false,\"pos\":{\"x\":6.4201,\"y\":1.1194,\"z\":-80.8671},\"rot\":{\"x\":0.0208,\"y\":270.0186,\"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": "197f36",
"Name": "Custom_Model",
"Transform": {
"posX": -33.92647,
"posY": 1.97348154,
"posZ": -99.8147049,
"rotX": 0.020803865,
"rotY": 270.013855,
"rotZ": 0.0167759024,
"scaleX": 2.21,
"scaleY": 0.46,
"scaleZ": 2.42
},
"Nickname": "Lola Hayes Rework",
"Description": "By Mint Tea Fan",
"GMNotes": "fancreations/investigators_lola_hayes_rework.json",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.352941036,
"g": 0.349019468,
"b": 0.349019468
},
"LayoutGroupSortIndex": 0,
"Value": 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/1754686449895663371/D5D8A1205E220C2ED2D0CA50705FBADE82C053BF/",
"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\":{\"019d9e\":{\"lock\":false,\"pos\":{\"x\":3.92140078544617,\"y\":1.32441914081573,\"z\":-56.127498626709},\"rot\":{\"x\":0.0208084993064404,\"y\":269.999938964844,\"z\":0.0167712345719337}},\"01a7a5\":{\"lock\":false,\"pos\":{\"x\":3.91159749031067,\"y\":1.32307767868042,\"z\":-60.6982879638672},\"rot\":{\"x\":0.0208089128136635,\"y\":269.999206542969,\"z\":0.0167708117514849}},\"08377f\":{\"lock\":false,\"pos\":{\"x\":26.8402538299561,\"y\":1.29663562774658,\"z\":-54.9671783447266},\"rot\":{\"x\":0.0208043605089188,\"y\":270.015258789063,\"z\":0.0167764481157064}},\"092130\":{\"lock\":false,\"pos\":{\"x\":6.99819850921631,\"y\":1.31993222236633,\"z\":-75.2736968994141},\"rot\":{\"x\":0.0208056177943945,\"y\":270.010589599609,\"z\":0.0167749170213938}},\"0b0905\":{\"lock\":false,\"pos\":{\"x\":32.6690406799316,\"y\":1.29989576339722,\"z\":-51.0611038208008},\"rot\":{\"x\":0.0208149328827858,\"y\":269.978942871094,\"z\":0.0167632307857275}},\"1da0bd\":{\"lock\":false,\"pos\":{\"x\":28.7816009521484,\"y\":1.29809892177582,\"z\":-52.3765258789063},\"rot\":{\"x\":0.0208087395876646,\"y\":269.999755859375,\"z\":0.0167710147798061}},\"1dae6f\":{\"lock\":false,\"pos\":{\"x\":3.83579897880554,\"y\":1.31878364086151,\"z\":-75.2736968994141},\"rot\":{\"x\":0.0208085812628269,\"y\":270.000152587891,\"z\":0.0167712830007076}},\"201fbe\":{\"lock\":false,\"pos\":{\"x\":26.8402519226074,\"y\":1.29891097545624,\"z\":-47.1935005187988},\"rot\":{\"x\":0.0208149291574955,\"y\":269.979064941406,\"z\":0.0167632326483727}},\"20afe9\":{\"lock\":false,\"pos\":{\"x\":10.4299983978271,\"y\":1.32745599746704,\"z\":-53.8278999328613},\"rot\":{\"x\":0.0208123754709959,\"y\":269.986633300781,\"z\":0.0167661476880312}},\"277df0\":{\"lock\":false,\"pos\":{\"x\":31.3143997192383,\"y\":1.34831249713898,\"z\":-76.6369018554688},\"rot\":{\"x\":359.979187011719,\"y\":90,\"z\":359.983215332031}},\"28fa8c\":{\"lock\":false,\"pos\":{\"x\":26.8402538299561,\"y\":1.29701471328735,\"z\":-53.6715660095215},\"rot\":{\"x\":0.0208039134740829,\"y\":270.016815185547,\"z\":0.0167769882827997}},\"2af612\":{\"lock\":false,\"pos\":{\"x\":32.5227279663086,\"y\":1.29066693782806,\"z\":-82.408088684082},\"rot\":{\"x\":0.0208140984177589,\"y\":269.982452392578,\"z\":0.0167647134512663}},\"2c10a3\":{\"lock\":false,\"pos\":{\"x\":7.19640207290649,\"y\":1.32562005519867,\"z\":-56.0881004333496},\"rot\":{\"x\":0.0208084769546986,\"y\":270.000122070313,\"z\":0.0167713537812233}},\"2cad41\":{\"lock\":false,\"pos\":{\"x\":3.94159936904907,\"y\":1.32711923122406,\"z\":-46.9281005859375},\"rot\":{\"x\":0.0208085831254721,\"y\":270,\"z\":0.0167712792754173}},\"2e8dc6\":{\"lock\":false,\"pos\":{\"x\":13.6491098403931,\"y\":1.32728123664856,\"z\":-58.4188995361328},\"rot\":{\"x\":0.0208083242177963,\"y\":270.000640869141,\"z\":0.0167717356234789}},\"2ec821\":{\"lock\":false,\"pos\":{\"x\":16.9171943664551,\"y\":1.29402875900269,\"z\":-51.5610733032227},\"rot\":{\"x\":0.0208087023347616,\"y\":270.000091552734,\"z\":0.0167712494730949}},\"354f96\":{\"lock\":false,\"pos\":{\"x\":16.9165992736816,\"y\":1.29269909858704,\"z\":-56.1026000976563},\"rot\":{\"x\":0.0208089090883732,\"y\":269.998504638672,\"z\":0.0167705900967121}},\"372afe\":{\"lock\":false,\"pos\":{\"x\":30.7249565124512,\"y\":1.29994642734528,\"z\":-48.4757537841797},\"rot\":{\"x\":0.0208044350147247,\"y\":270.014526367188,\"z\":0.0167762991040945}},\"3d460f\":{\"lock\":false,\"pos\":{\"x\":16.9165992736816,\"y\":1.29202950000763,\"z\":-58.3900985717773},\"rot\":{\"x\":0.0208089165389538,\"y\":269.998596191406,\"z\":0.0167706254869699}},\"3fc00d\":{\"lock\":false,\"pos\":{\"x\":30.724967956543,\"y\":1.29805028438568,\"z\":-54.9538269042969},\"rot\":{\"x\":0.0208147000521421,\"y\":269.98046875,\"z\":0.0167639553546906}},\"46aed1\":{\"lock\":false,\"pos\":{\"x\":7.19505834579468,\"y\":1.3242734670639,\"z\":-60.686767578125},\"rot\":{\"x\":0.0208175051957369,\"y\":269.969879150391,\"z\":0.0167601872235537}},\"4f6abf\":{\"lock\":false,\"pos\":{\"x\":10.4300022125244,\"y\":1.32812559604645,\"z\":-51.5404014587402},\"rot\":{\"x\":0.0208125319331884,\"y\":269.986633300781,\"z\":0.0167664457112551}},\"50de30\":{\"lock\":false,\"pos\":{\"x\":16.9101371765137,\"y\":1.29136097431183,\"z\":-60.6665916442871},\"rot\":{\"x\":0.0208124779164791,\"y\":269.986663818359,\"z\":0.016766257584095}},\"538240\":{\"lock\":false,\"pos\":{\"x\":7.19639539718628,\"y\":1.32628977298737,\"z\":-53.8004989624023},\"rot\":{\"x\":0.0208128653466702,\"y\":269.984405517578,\"z\":0.0167652033269405}},\"53cd6f\":{\"lock\":false,\"pos\":{\"x\":32.6690406799316,\"y\":1.30103349685669,\"z\":-47.1742553710938},\"rot\":{\"x\":0.0208085309714079,\"y\":269.999938964844,\"z\":0.0167711097747087}},\"567067\":{\"lock\":false,\"pos\":{\"x\":24.8910350799561,\"y\":1.29668068885803,\"z\":-52.3944778442383},\"rot\":{\"x\":0.0208133831620216,\"y\":269.983703613281,\"z\":0.0167649667710066}},\"5887cc\":{\"lock\":false,\"pos\":{\"x\":10.4299983978271,\"y\":1.32678639888763,\"z\":-56.1153984069824},\"rot\":{\"x\":0.0208130050450563,\"y\":269.984985351563,\"z\":0.0167658366262913}},\"59a93c\":{\"lock\":false,\"pos\":{\"x\":32.6690406799316,\"y\":1.29875802993774,\"z\":-54.9479560852051},\"rot\":{\"x\":0.0208092629909515,\"y\":269.998657226563,\"z\":0.0167708080261946}},\"5c93be\":{\"lock\":false,\"pos\":{\"x\":26.8402538299561,\"y\":1.2973940372467,\"z\":-52.3759536743164},\"rot\":{\"x\":0.0208149068057537,\"y\":269.979309082031,\"z\":0.0167634282261133}},\"5eed1b\":{\"lock\":false,\"pos\":{\"x\":13.6441516876221,\"y\":1.32661664485931,\"z\":-60.683422088623},\"rot\":{\"x\":0.0208079162985086,\"y\":270.001403808594,\"z\":0.0167719349265099}},\"610887\":{\"lock\":false,\"pos\":{\"x\":3.94160103797913,\"y\":1.32578003406525,\"z\":-51.503101348877},\"rot\":{\"x\":0.0208084210753441,\"y\":270.000061035156,\"z\":0.016771275550127}},\"6119f3\":{\"lock\":false,\"pos\":{\"x\":7.81915473937988,\"y\":1.31534194946289,\"z\":-91.9738616943359},\"rot\":{\"x\":0.0208124257624149,\"y\":269.985778808594,\"z\":0.0167659912258387}},\"61f8a6\":{\"lock\":false,\"pos\":{\"x\":24.8910350799561,\"y\":1.29592227935791,\"z\":-54.9857063293457},\"rot\":{\"x\":0.0208087246865034,\"y\":269.999755859375,\"z\":0.0167709402740002}},\"6930e1\":{\"lock\":false,\"pos\":{\"x\":32.6690406799316,\"y\":1.30065429210663,\"z\":-48.4698715209961},\"rot\":{\"x\":0.0208149123936892,\"y\":269.978820800781,\"z\":0.0167637094855309}},\"6eae6f\":{\"lock\":false,\"pos\":{\"x\":24.8910350799561,\"y\":1.2978184223175,\"z\":-48.5076332092285},\"rot\":{\"x\":0.020815022289753,\"y\":269.979156494141,\"z\":0.016763512045145}},\"702b7f\":{\"lock\":false,\"pos\":{\"x\":28.7816009521484,\"y\":1.29847812652588,\"z\":-51.0809097290039},\"rot\":{\"x\":0.0208148676902056,\"y\":269.979949951172,\"z\":0.0167637690901756}},\"728070\":{\"lock\":false,\"pos\":{\"x\":28.7816009521484,\"y\":1.29771971702576,\"z\":-53.6721382141113},\"rot\":{\"x\":0.0208141338080168,\"y\":269.981689453125,\"z\":0.0167641006410122}},\"747a1a\":{\"lock\":false,\"pos\":{\"x\":13.6926002502441,\"y\":1.32997536659241,\"z\":-49.268798828125},\"rot\":{\"x\":0.0208126474171877,\"y\":269.985595703125,\"z\":0.0167661849409342}},\"7b8100\":{\"lock\":false,\"pos\":{\"x\":28.7816028594971,\"y\":1.29734039306641,\"z\":-54.9677543640137},\"rot\":{\"x\":0.020811952650547,\"y\":269.988464355469,\"z\":0.0167668182402849}},\"7f7f75\":{\"lock\":false,\"pos\":{\"x\":6.22623920440674,\"y\":1.37304794788361,\"z\":-85.519287109375},\"rot\":{\"x\":359.979187011719,\"y\":89.9835586547852,\"z\":359.983245849609}},\"83355d\":{\"lock\":false,\"pos\":{\"x\":3.92138838768005,\"y\":1.32374942302704,\"z\":-58.4151992797852},\"rot\":{\"x\":0.0208090972155333,\"y\":269.998596191406,\"z\":0.0167706105858088}},\"8504ab\":{\"lock\":false,\"pos\":{\"x\":10.4300117492676,\"y\":1.32611680030823,\"z\":-58.4029006958008},\"rot\":{\"x\":0.0208083558827639,\"y\":270.000610351563,\"z\":0.0167714022099972}},\"865252\":{\"lock\":false,\"pos\":{\"x\":7.19640111923218,\"y\":1.32695925235748,\"z\":-51.5130004882813},\"rot\":{\"x\":0.0208086855709553,\"y\":269.999542236328,\"z\":0.0167709346860647}},\"8bc619\":{\"lock\":false,\"pos\":{\"x\":3.94160294532776,\"y\":1.32644963264465,\"z\":-49.2155990600586},\"rot\":{\"x\":0.0208084024488926,\"y\":269.999938964844,\"z\":0.0167711675167084}},\"8dd1fd\":{\"lock\":false,\"pos\":{\"x\":28.7816009521484,\"y\":1.29885733127594,\"z\":-49.7852935791016},\"rot\":{\"x\":0.0208091344684362,\"y\":269.999725341797,\"z\":0.0167706590145826}},\"8deccc\":{\"lock\":false,\"pos\":{\"x\":6.99819993972778,\"y\":1.31926262378693,\"z\":-77.5612030029297},\"rot\":{\"x\":0.0208084024488926,\"y\":270,\"z\":0.0167710911482573}},\"8f0604\":{\"lock\":false,\"pos\":{\"x\":7.19640207290649,\"y\":1.32495045661926,\"z\":-58.3755989074707},\"rot\":{\"x\":0.0208088997751474,\"y\":269.998352050781,\"z\":0.0167705584317446}},\"93db19\":{\"lock\":false,\"pos\":{\"x\":16.9171943664551,\"y\":1.29469835758209,\"z\":-49.2735748291016},\"rot\":{\"x\":0.02080905623734,\"y\":269.998504638672,\"z\":0.0167706962674856}},\"94d024\":{\"lock\":false,\"pos\":{\"x\":26.8402538299561,\"y\":1.29815244674683,\"z\":-49.784725189209},\"rot\":{\"x\":0.0208147242665291,\"y\":269.978881835938,\"z\":0.0167635474354029}},\"96dc11\":{\"lock\":false,\"pos\":{\"x\":24.8910350799561,\"y\":1.29630148410797,\"z\":-53.6900901794434},\"rot\":{\"x\":0.0208086483180523,\"y\":269.999603271484,\"z\":0.0167705751955509}},\"97cea6\":{\"lock\":false,\"pos\":{\"x\":16.9165992736816,\"y\":1.29336869716644,\"z\":-53.8151016235352},\"rot\":{\"x\":0.0208126399666071,\"y\":269.985687255859,\"z\":0.0167660601437092}},\"9bff41\":{\"lock\":false,\"pos\":{\"x\":7.19640207290649,\"y\":1.3282984495163,\"z\":-46.9379997253418},\"rot\":{\"x\":0.0208085980266333,\"y\":270.000122070313,\"z\":0.0167712979018688}},\"a05b8d\":{\"lock\":false,\"pos\":{\"x\":16.4209995269775,\"y\":1.3429182767868,\"z\":-76.586799621582},\"rot\":{\"x\":359.979187011719,\"y\":90,\"z\":359.983215332031}},\"a10a31\":{\"lock\":false,\"pos\":{\"x\":32.6513633728027,\"y\":1.29770743846893,\"z\":-58.5151557922363},\"rot\":{\"x\":0.0208142809569836,\"y\":269.981781005859,\"z\":0.016764285042882}},\"a55c84\":{\"lock\":false,\"pos\":{\"x\":26.8402538299561,\"y\":1.29777324199677,\"z\":-51.0803375244141},\"rot\":{\"x\":0.0208055581897497,\"y\":270.010009765625,\"z\":0.0167748406529427}},\"a5a5fd\":{\"lock\":false,\"pos\":{\"x\":30.7249565124512,\"y\":1.29956722259521,\"z\":-49.771369934082},\"rot\":{\"x\":0.0208145193755627,\"y\":269.979766845703,\"z\":0.0167634915560484}},\"a60082\":{\"lock\":false,\"pos\":{\"x\":28.7816009521484,\"y\":1.29961585998535,\"z\":-47.1940612792969},\"rot\":{\"x\":0.0208147093653679,\"y\":269.97900390625,\"z\":0.0167633593082428}},\"a9e612\":{\"lock\":false,\"pos\":{\"x\":16.9171943664551,\"y\":1.29536783695221,\"z\":-46.9860725402832},\"rot\":{\"x\":0.0208084620535374,\"y\":270.000244140625,\"z\":0.0167713891714811}},\"aa5286\":{\"lock\":false,\"pos\":{\"x\":13.6491022109985,\"y\":1.32795083522797,\"z\":-56.1313018798828},\"rot\":{\"x\":0.0208085123449564,\"y\":270.000091552734,\"z\":0.0167715921998024}},\"ac8f67\":{\"lock\":false,\"pos\":{\"x\":3.81709909439087,\"y\":1.3211362361908,\"z\":-67.2136001586914},\"rot\":{\"x\":0.0208126436918974,\"y\":269.985717773438,\"z\":0.0167659427970648}},\"acc5be\":{\"lock\":false,\"pos\":{\"x\":7.48732423782349,\"y\":1.32246577739716,\"z\":-67.2249984741211},\"rot\":{\"x\":0.020813025534153,\"y\":269.985778808594,\"z\":0.0167660154402256}},\"b102c3\":{\"lock\":false,\"pos\":{\"x\":13.6926012039185,\"y\":1.3306450843811,\"z\":-46.981201171875},\"rot\":{\"x\":0.0208125654608011,\"y\":269.98583984375,\"z\":0.0167661607265472}},\"b45739\":{\"lock\":false,\"pos\":{\"x\":30.7249660491943,\"y\":1.30032575130463,\"z\":-47.1801376342773},\"rot\":{\"x\":0.02080905623734,\"y\":270.000061035156,\"z\":0.0167709086090326}},\"b4fc98\":{\"lock\":false,\"pos\":{\"x\":24.8910350799561,\"y\":1.29819762706757,\"z\":-47.2120208740234},\"rot\":{\"x\":0.0208149868994951,\"y\":269.979248046875,\"z\":0.0167633313685656}},\"b811d0\":{\"lock\":false,\"pos\":{\"x\":16.9150009155273,\"y\":1.28909361362457,\"z\":-68.4179992675781},\"rot\":{\"x\":0.0208075027912855,\"y\":270.003295898438,\"z\":0.0167724974453449}},\"bb0dc0\":{\"lock\":false,\"pos\":{\"x\":13.6490983963013,\"y\":1.32929003238678,\"z\":-51.5563011169434},\"rot\":{\"x\":0.0208124667406082,\"y\":269.985534667969,\"z\":0.0167663432657719}},\"bb684e\":{\"lock\":false,\"pos\":{\"x\":3.8357982635498,\"y\":1.31811416149139,\"z\":-77.5612030029297},\"rot\":{\"x\":0.0208063647150993,\"y\":270.007354736328,\"z\":0.0167737249284983}},\"bb9641\":{\"lock\":false,\"pos\":{\"x\":3.94159889221191,\"y\":1.32511055469513,\"z\":-53.790599822998},\"rot\":{\"x\":0.0208086203783751,\"y\":269.999969482422,\"z\":0.0167711712419987}},\"be227d\":{\"lock\":false,\"pos\":{\"x\":26.8402538299561,\"y\":1.29853177070618,\"z\":-48.4891090393066},\"rot\":{\"x\":0.02081498503685,\"y\":269.97900390625,\"z\":0.016763050109148}},\"c04c67\":{\"lock\":false,\"pos\":{\"x\":32.6513633728027,\"y\":1.29732823371887,\"z\":-59.8107566833496},\"rot\":{\"x\":0.0208146143704653,\"y\":269.979461669922,\"z\":0.0167633686214685}},\"c5fe5b\":{\"lock\":false,\"pos\":{\"x\":30.7249565124512,\"y\":1.29918801784515,\"z\":-51.0669860839844},\"rot\":{\"x\":0.0208047740161419,\"y\":270.014007568359,\"z\":0.0167763773351908}},\"c7e3cf\":{\"lock\":false,\"pos\":{\"x\":30.7249565124512,\"y\":1.29880881309509,\"z\":-52.3625946044922},\"rot\":{\"x\":0.0208084918558598,\"y\":270.000427246094,\"z\":0.0167708285152912}},\"c95de1\":{\"lock\":false,\"pos\":{\"x\":32.6690406799316,\"y\":1.29951655864716,\"z\":-52.3567237854004},\"rot\":{\"x\":0.0208088513463736,\"y\":269.999328613281,\"z\":0.0167709048837423}},\"d3d7fb\":{\"lock\":false,\"pos\":{\"x\":32.6690406799316,\"y\":1.29913723468781,\"z\":-53.6523399353027},\"rot\":{\"x\":0.0208129361271858,\"y\":269.984558105469,\"z\":0.0167655125260353}},\"d45a1d\":{\"lock\":false,\"pos\":{\"x\":5.17509365081787,\"y\":1.31438422203064,\"z\":-91.9651794433594},\"rot\":{\"x\":0.0208127330988646,\"y\":269.985626220703,\"z\":0.0167658533900976}},\"d9a805\":{\"lock\":false,\"pos\":{\"x\":7.19639825820923,\"y\":1.32762885093689,\"z\":-49.2254981994629},\"rot\":{\"x\":0.0208087023347616,\"y\":269.999694824219,\"z\":0.0167710371315479}},\"dc6a2c\":{\"lock\":false,\"pos\":{\"x\":16.9150009155273,\"y\":1.28976321220398,\"z\":-66.130500793457},\"rot\":{\"x\":0.0208083242177963,\"y\":270.000732421875,\"z\":0.0167713966220617}},\"ddccf9\":{\"lock\":false,\"pos\":{\"x\":10.4736061096191,\"y\":1.32881104946136,\"z\":-49.2528991699219},\"rot\":{\"x\":0.0208082422614098,\"y\":270.001403808594,\"z\":0.016771525144577}},\"e0bf2d\":{\"lock\":false,\"pos\":{\"x\":10.4073534011841,\"y\":1.32543790340424,\"z\":-60.6943244934082},\"rot\":{\"x\":0.0208086799830198,\"y\":269.999328613281,\"z\":0.0167710985988379}},\"e26ddc\":{\"lock\":false,\"pos\":{\"x\":24.8910350799561,\"y\":1.29705989360809,\"z\":-51.0988616943359},\"rot\":{\"x\":0.020803939551115,\"y\":270.015869140625,\"z\":0.0167766232043505}},\"e4377f\":{\"lock\":false,\"pos\":{\"x\":10.4736051559448,\"y\":1.32948064804077,\"z\":-46.9654006958008},\"rot\":{\"x\":0.0208081118762493,\"y\":270.001190185547,\"z\":0.0167714916169643}},\"e86c65\":{\"lock\":false,\"pos\":{\"x\":13.6491022109985,\"y\":1.32862043380737,\"z\":-53.8437995910645},\"rot\":{\"x\":0.0208083298057318,\"y\":270.000091552734,\"z\":0.0167714711278677}},\"ebc4d9\":{\"lock\":false,\"pos\":{\"x\":28.7816009521484,\"y\":1.29923665523529,\"z\":-48.4896774291992},\"rot\":{\"x\":0.0208099763840437,\"y\":269.996398925781,\"z\":0.0167694985866547}},\"ef116e\":{\"lock\":false,\"pos\":{\"x\":30.7249565124512,\"y\":1.29842948913574,\"z\":-53.6582107543945},\"rot\":{\"x\":0.0208144132047892,\"y\":269.979614257813,\"z\":0.0167637132108212}},\"f317ac\":{\"lock\":false,\"pos\":{\"x\":32.6690406799316,\"y\":1.30027496814728,\"z\":-49.7654914855957},\"rot\":{\"x\":0.0208088606595993,\"y\":269.999816894531,\"z\":0.0167711395770311}},\"fa142f\":{\"lock\":false,\"pos\":{\"x\":24.8910350799561,\"y\":1.29743921756744,\"z\":-49.8032493591309},\"rot\":{\"x\":0.0208056848496199,\"y\":270.010162353516,\"z\":0.0167747549712658}}}}",
"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": "64ad17",
"Name": "Custom_Model",
"Transform": {
"posX": -34.6854973,
"posY": 2.82714152,
"posZ": -108.225174,
"rotX": 0.0208085254,
"rotY": 270.000031,
"rotZ": 0.0167708658,
"scaleX": 2.21,
"scaleY": 0.46,
"scaleZ": 2.42
},
"Nickname": "Kaimonogatari Player cards",
"Description": "version 1.5",
"GMNotes": "fancreations/investigators_kaimonogatari.json",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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/1644335793265681039/FD6A85925D62077C37F89B6AD082D15D90244D13/",
"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": "function 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\":{\"00b7d1\":{\"lock\":false,\"pos\":{\"x\":-0.7817,\"y\":1.2838,\"z\":87.0133},\"rot\":{\"x\":0.0208,\"y\":270.0003,\"z\":0.0168}},\"03a35e\":{\"lock\":false,\"pos\":{\"x\":-8.9869,\"y\":1.283,\"z\":94.4496},\"rot\":{\"x\":0.0208,\"y\":270.0348,\"z\":0.0168}},\"03bf91\":{\"lock\":false,\"pos\":{\"x\":-8.987,\"y\":1.2763,\"z\":71.4496},\"rot\":{\"x\":0.0208,\"y\":269.9999,\"z\":0.0168}},\"040cf6\":{\"lock\":false,\"pos\":{\"x\":19.4901,\"y\":1.2959,\"z\":92.0494},\"rot\":{\"x\":0.0208,\"y\":269.9989,\"z\":0.0168}},\"0441cb\":{\"lock\":false,\"pos\":{\"x\":-8.9837,\"y\":1.2729,\"z\":59.9495},\"rot\":{\"x\":0.0208,\"y\":269.9796,\"z\":0.0168}},\"0a6180\":{\"lock\":false,\"pos\":{\"x\":-5.4322,\"y\":1.2843,\"z\":94.4496},\"rot\":{\"x\":0.0208,\"y\":270.0153,\"z\":0.0168}},\"0cb1df\":{\"lock\":false,\"pos\":{\"x\":15.5652,\"y\":1.2891,\"z\":73.8366},\"rot\":{\"x\":0.0208,\"y\":270.0189,\"z\":0.0168}},\"0cbe7d\":{\"lock\":false,\"pos\":{\"x\":-19.3011,\"y\":1.3122,\"z\":-69.0606},\"rot\":{\"x\":0.0206,\"y\":270.5735,\"z\":0.017}},\"0fd66c\":{\"lock\":false,\"pos\":{\"x\":15.5652,\"y\":1.2925,\"z\":85.3358},\"rot\":{\"x\":0.0208,\"y\":269.9999,\"z\":0.0168}},\"0fd992\":{\"lock\":false,\"pos\":{\"x\":-19.3151,\"y\":1.3336,\"z\":-55.1488},\"rot\":{\"x\":0.0208,\"y\":270.0051,\"z\":0.9269}},\"133340\":{\"lock\":false,\"pos\":{\"x\":-5.4322,\"y\":1.2776,\"z\":71.4496},\"rot\":{\"x\":0.0208,\"y\":270.0128,\"z\":0.0168}},\"1483d9\":{\"lock\":false,\"pos\":{\"x\":-1.8791,\"y\":1.2849,\"z\":92.1617},\"rot\":{\"x\":0.0208,\"y\":269.9772,\"z\":0.0168}},\"166196\":{\"lock\":false,\"pos\":{\"x\":-0.7817,\"y\":1.2771,\"z\":64.0133},\"rot\":{\"x\":0.0208,\"y\":270.0005,\"z\":0.0168}},\"16c15b\":{\"lock\":false,\"pos\":{\"x\":-7.879,\"y\":1.2629,\"z\":70.9133},\"rot\":{\"x\":0.0208,\"y\":270.0198,\"z\":0.0168}},\"1a7b02\":{\"lock\":false,\"pos\":{\"x\":-4.3259,\"y\":1.2798,\"z\":77.8253},\"rot\":{\"x\":0.0208,\"y\":270.0033,\"z\":0.0168}},\"1bd191\":{\"lock\":false,\"pos\":{\"x\":-11.4337,\"y\":1.2779,\"z\":80.1133},\"rot\":{\"x\":0.0208,\"y\":270.0249,\"z\":0.0168}},\"1be073\":{\"lock\":false,\"pos\":{\"x\":-11.4337,\"y\":1.3032,\"z\":75.5133},\"rot\":{\"x\":0.0208,\"y\":270,\"z\":0.0168}},\"1be35a\":{\"lock\":false,\"pos\":{\"x\":-16.6402,\"y\":1.3086,\"z\":-84.8182},\"rot\":{\"x\":0.0168,\"y\":180.0001,\"z\":359.9792}},\"1c6b3a\":{\"lock\":false,\"pos\":{\"x\":5.6423,\"y\":1.2829,\"z\":76.0596},\"rot\":{\"x\":0.0208,\"y\":269.9926,\"z\":0.0168}},\"1c87fe\":{\"lock\":false,\"pos\":{\"x\":-5.4322,\"y\":1.2816,\"z\":85.2496},\"rot\":{\"x\":0.0208,\"y\":270.0196,\"z\":0.0168}},\"202a96\":{\"lock\":false,\"pos\":{\"x\":-1.8791,\"y\":1.2829,\"z\":85.2616},\"rot\":{\"x\":0.0208,\"y\":269.9774,\"z\":0.0168}},\"21ced3\":{\"lock\":false,\"pos\":{\"x\":-19.3034,\"y\":1.3168,\"z\":-53.4359},\"rot\":{\"x\":0.0209,\"y\":270.0017,\"z\":0.0163}},\"2450c5\":{\"lock\":false,\"pos\":{\"x\":5.6423,\"y\":1.2802,\"z\":66.8594},\"rot\":{\"x\":0.0208,\"y\":270.0025,\"z\":0.0168}},\"24581f\":{\"lock\":false,\"pos\":{\"x\":-4.3259,\"y\":1.2758,\"z\":64.0253},\"rot\":{\"x\":0.0208,\"y\":270.0003,\"z\":0.0168}},\"273674\":{\"lock\":false,\"pos\":{\"x\":-22.6157,\"y\":1.3087,\"z\":-76.946},\"rot\":{\"x\":0.0208,\"y\":270.0039,\"z\":0.0168}},\"27aba8\":{\"lock\":false,\"pos\":{\"x\":-4.3259,\"y\":1.2785,\"z\":73.2253},\"rot\":{\"x\":0.0208,\"y\":270.0192,\"z\":0.0168}},\"27ba20\":{\"lock\":false,\"pos\":{\"x\":-5.4322,\"y\":1.2796,\"z\":78.3496},\"rot\":{\"x\":0.0208,\"y\":269.9618,\"z\":0.0168}},\"27ed55\":{\"lock\":false,\"pos\":{\"x\":-16.6401,\"y\":1.3178,\"z\":-53.3904},\"rot\":{\"x\":0.0168,\"y\":180.0039,\"z\":359.9792}},\"2848ab\":{\"lock\":false,\"pos\":{\"x\":-1.8791,\"y\":1.2842,\"z\":89.8616},\"rot\":{\"x\":0.0208,\"y\":269.9774,\"z\":0.0168}},\"2872fc\":{\"lock\":false,\"pos\":{\"x\":1.7635,\"y\":1.2782,\"z\":64.5743},\"rot\":{\"x\":0.0208,\"y\":270.0121,\"z\":0.0168}},\"28e0b4\":{\"lock\":false,\"pos\":{\"x\":5.6424,\"y\":1.2809,\"z\":69.1595},\"rot\":{\"x\":0.0208,\"y\":269.978,\"z\":0.0168}},\"2a2c03\":{\"lock\":false,\"pos\":{\"x\":-0.7817,\"y\":1.2777,\"z\":66.3133},\"rot\":{\"x\":0.0208,\"y\":270.0127,\"z\":0.0168}},\"2a9a02\":{\"lock\":false,\"pos\":{\"x\":10.8335,\"y\":1.3194,\"z\":70.1049},\"rot\":{\"x\":0.0208,\"y\":269.9723,\"z\":0.0168}},\"2b5584\":{\"lock\":false,\"pos\":{\"x\":25.9535,\"y\":1.2989,\"z\":94.3343},\"rot\":{\"x\":0.0208,\"y\":269.9986,\"z\":0.0168}},\"2cf882\":{\"lock\":false,\"pos\":{\"x\":-0.7817,\"y\":1.2798,\"z\":73.2133},\"rot\":{\"x\":0.0208,\"y\":270.0112,\"z\":0.0168}},\"2d8ecc\":{\"lock\":false,\"pos\":{\"x\":5.6423,\"y\":1.2796,\"z\":64.5596},\"rot\":{\"x\":0.0208,\"y\":269.9966,\"z\":0.0168}},\"2fecde\":{\"lock\":false,\"pos\":{\"x\":-22.6169,\"y\":1.3064,\"z\":-84.8185},\"rot\":{\"x\":0.0208,\"y\":270.0159,\"z\":0.0168}},\"30c749\":{\"lock\":false,\"pos\":{\"x\":-1.8791,\"y\":1.2789,\"z\":71.4616},\"rot\":{\"x\":0.0208,\"y\":269.9828,\"z\":0.0168}},\"31c14d\":{\"lock\":false,\"pos\":{\"x\":-4.3259,\"y\":1.2812,\"z\":82.4253},\"rot\":{\"x\":0.0208,\"y\":270.0004,\"z\":0.0168}},\"320094\":{\"lock\":false,\"pos\":{\"x\":-8.987,\"y\":1.2776,\"z\":76.0496},\"rot\":{\"x\":0.0208,\"y\":270.0482,\"z\":0.0168}},\"3450cc\":{\"lock\":false,\"pos\":{\"x\":15.5652,\"y\":1.2952,\"z\":94.5358},\"rot\":{\"x\":0.0208,\"y\":270,\"z\":0.0168}},\"345d3c\":{\"lock\":false,\"pos\":{\"x\":5.6423,\"y\":1.2816,\"z\":71.4596},\"rot\":{\"x\":0.0208,\"y\":269.9965,\"z\":0.0168}},\"363a78\":{\"lock\":false,\"pos\":{\"x\":-5.4322,\"y\":1.2789,\"z\":76.0496},\"rot\":{\"x\":0.0208,\"y\":270.0044,\"z\":0.0168}},\"36dbe9\":{\"lock\":false,\"pos\":{\"x\":-12.6031,\"y\":1.2803,\"z\":89.8237},\"rot\":{\"x\":0.0208,\"y\":269.9794,\"z\":0.0168}},\"3b3d81\":{\"lock\":false,\"pos\":{\"x\":15.5652,\"y\":1.2932,\"z\":87.6358},\"rot\":{\"x\":0.0208,\"y\":269.9999,\"z\":0.0168}},\"3c12da\":{\"lock\":false,\"pos\":{\"x\":12.7277,\"y\":1.2928,\"z\":89.9201},\"rot\":{\"x\":0.0208,\"y\":269.9804,\"z\":0.0168}},\"3d079d\":{\"lock\":false,\"pos\":{\"x\":-1.8791,\"y\":1.2809,\"z\":78.3616},\"rot\":{\"x\":0.0208,\"y\":269.9798,\"z\":0.0168}},\"3e5de2\":{\"lock\":false,\"pos\":{\"x\":1.7635,\"y\":1.2802,\"z\":71.4743},\"rot\":{\"x\":0.0208,\"y\":270,\"z\":0.0168}},\"3ff589\":{\"lock\":false,\"pos\":{\"x\":-5.429,\"y\":1.2742,\"z\":59.9495},\"rot\":{\"x\":0.0208,\"y\":270.0281,\"z\":0.0168}},\"416008\":{\"lock\":false,\"pos\":{\"x\":-4.3259,\"y\":1.2832,\"z\":89.3253},\"rot\":{\"x\":0.0208,\"y\":270.0187,\"z\":0.0168}},\"4402a1\":{\"lock\":false,\"pos\":{\"x\":-22.6179,\"y\":1.3461,\"z\":-53.4373},\"rot\":{\"x\":1.1625,\"y\":269.9696,\"z\":0.0168}},\"47bdc1\":{\"lock\":false,\"pos\":{\"x\":-8.987,\"y\":1.2743,\"z\":64.5497},\"rot\":{\"x\":0.0208,\"y\":270.0215,\"z\":0.0168}},\"47ddb0\":{\"lock\":false,\"pos\":{\"x\":22.669,\"y\":1.295,\"z\":85.135},\"rot\":{\"x\":0.0208,\"y\":269.9999,\"z\":0.0168}},\"488fce\":{\"lock\":false,\"pos\":{\"x\":-8.987,\"y\":1.2783,\"z\":78.3496},\"rot\":{\"x\":0.0208,\"y\":270.0379,\"z\":0.0168}},\"4c56c4\":{\"lock\":false,\"pos\":{\"x\":25.9535,\"y\":1.2962,\"z\":85.1343},\"rot\":{\"x\":0.0208,\"y\":269.9999,\"z\":0.0168}},\"519e24\":{\"lock\":false,\"pos\":{\"x\":1.7638,\"y\":1.2869,\"z\":94.475},\"rot\":{\"x\":0.0208,\"y\":270.0354,\"z\":0.0168}},\"55769f\":{\"lock\":false,\"pos\":{\"x\":-1.8791,\"y\":1.2795,\"z\":73.7616},\"rot\":{\"x\":0.0208,\"y\":269.9561,\"z\":0.0168}},\"58bf2c\":{\"lock\":false,\"pos\":{\"x\":-5.4322,\"y\":1.2823,\"z\":87.5496},\"rot\":{\"x\":0.0208,\"y\":269.9702,\"z\":0.0168}},\"592017\":{\"lock\":false,\"pos\":{\"x\":-1.8791,\"y\":1.2802,\"z\":76.0616},\"rot\":{\"x\":0.0208,\"y\":269.972,\"z\":0.0168}},\"5925a5\":{\"lock\":false,\"pos\":{\"x\":5.6423,\"y\":1.2782,\"z\":59.9594},\"rot\":{\"x\":0.0208,\"y\":269.9965,\"z\":0.0168}},\"595894\":{\"lock\":false,\"pos\":{\"x\":-12.6025,\"y\":1.2817,\"z\":94.4237},\"rot\":{\"x\":0.0208,\"y\":269.99,\"z\":0.0168}},\"599b2e\":{\"lock\":false,\"pos\":{\"x\":5.6423,\"y\":1.2836,\"z\":78.3596},\"rot\":{\"x\":0.0208,\"y\":269.9924,\"z\":0.0168}},\"5a02fe\":{\"lock\":false,\"pos\":{\"x\":-4.3259,\"y\":1.2825,\"z\":87.0253},\"rot\":{\"x\":0.0208,\"y\":270.0186,\"z\":0.0168}},\"5a418b\":{\"lock\":false,\"pos\":{\"x\":-11.4337,\"y\":1.2752,\"z\":70.9133},\"rot\":{\"x\":0.0168,\"y\":179.9918,\"z\":359.9792}},\"5a4b91\":{\"lock\":false,\"pos\":{\"x\":-12.603,\"y\":1.279,\"z\":85.2172},\"rot\":{\"x\":0.0208,\"y\":269.9775,\"z\":0.0168}},\"5a7432\":{\"lock\":false,\"pos\":{\"x\":-16.6403,\"y\":1.3132,\"z\":-69.0603},\"rot\":{\"x\":0.0168,\"y\":179.9955,\"z\":359.9792}},\"5c2d70\":{\"lock\":false,\"pos\":{\"x\":-12.603,\"y\":1.2797,\"z\":87.5237},\"rot\":{\"x\":0.0208,\"y\":269.9663,\"z\":0.0168}},\"5d6157\":{\"lock\":false,\"pos\":{\"x\":12.4059,\"y\":1.2933,\"z\":92.1521},\"rot\":{\"x\":0.0208,\"y\":269.9875,\"z\":0.0168}},\"5df58d\":{\"lock\":false,\"pos\":{\"x\":-16.6396,\"y\":1.3109,\"z\":-76.9456},\"rot\":{\"x\":0.0168,\"y\":180,\"z\":359.9792}},\"5ff3e1\":{\"lock\":false,\"pos\":{\"x\":-11.4337,\"y\":1.2786,\"z\":82.4133},\"rot\":{\"x\":0.0208,\"y\":270.0186,\"z\":0.0168}},\"60af01\":{\"lock\":false,\"pos\":{\"x\":-16.6401,\"y\":1.3155,\"z\":-61.231},\"rot\":{\"x\":0.0168,\"y\":179.9924,\"z\":359.9792}},\"62d7b6\":{\"lock\":false,\"pos\":{\"x\":22.669,\"y\":1.2964,\"z\":89.735},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"65091e\":{\"lock\":false,\"pos\":{\"x\":-5.4322,\"y\":1.2829,\"z\":89.8496},\"rot\":{\"x\":0.0208,\"y\":270.0009,\"z\":0.0168}},\"6793a3\":{\"lock\":false,\"pos\":{\"x\":-8.9869,\"y\":1.2796,\"z\":82.9496},\"rot\":{\"x\":0.0208,\"y\":270.0181,\"z\":0.0168}},\"67ffbf\":{\"lock\":false,\"pos\":{\"x\":-26.3001,\"y\":1.3119,\"z\":-61.241},\"rot\":{\"x\":0.0208,\"y\":269.9922,\"z\":0.0168}},\"69aef7\":{\"lock\":false,\"pos\":{\"x\":-19.2507,\"y\":1.3294,\"z\":-86.424},\"rot\":{\"x\":0.159,\"y\":270.0175,\"z\":0.9902}},\"6cd869\":{\"lock\":false,\"pos\":{\"x\":-8.9931,\"y\":1.2749,\"z\":66.8824},\"rot\":{\"x\":0.0208,\"y\":269.9902,\"z\":0.0168}},\"71abe6\":{\"lock\":false,\"pos\":{\"x\":-5.4322,\"y\":1.2803,\"z\":80.6496},\"rot\":{\"x\":0.0208,\"y\":269.9639,\"z\":0.0168}},\"729701\":{\"lock\":false,\"pos\":{\"x\":-1.8791,\"y\":1.2822,\"z\":82.9616},\"rot\":{\"x\":0.0208,\"y\":269.9788,\"z\":0.0168}},\"74493a\":{\"lock\":false,\"pos\":{\"x\":-0.7817,\"y\":1.2852,\"z\":91.6133},\"rot\":{\"x\":0.0208,\"y\":270.019,\"z\":0.0168}},\"74658f\":{\"lock\":false,\"pos\":{\"x\":-11.4337,\"y\":1.2813,\"z\":91.6133},\"rot\":{\"x\":0.0208,\"y\":270.0141,\"z\":0.0168}},\"769e65\":{\"lock\":false,\"pos\":{\"x\":-5.4322,\"y\":1.2809,\"z\":82.9496},\"rot\":{\"x\":0.0208,\"y\":270.0154,\"z\":0.0168}},\"7970d2\":{\"lock\":false,\"pos\":{\"x\":-5.4321,\"y\":1.2749,\"z\":62.2497},\"rot\":{\"x\":0.0208,\"y\":270.0382,\"z\":0.0168}},\"7a29a7\":{\"lock\":false,\"pos\":{\"x\":-0.7817,\"y\":1.2811,\"z\":77.8133},\"rot\":{\"x\":0.0208,\"y\":270.0003,\"z\":0.0168}},\"7ce81c\":{\"lock\":false,\"pos\":{\"x\":19.4901,\"y\":1.2966,\"z\":94.3494},\"rot\":{\"x\":0.0208,\"y\":269.9988,\"z\":0.0168}},\"7cf799\":{\"lock\":false,\"pos\":{\"x\":5.6423,\"y\":1.2843,\"z\":80.6596},\"rot\":{\"x\":0.0208,\"y\":269.9926,\"z\":0.0168}},\"7cf99b\":{\"lock\":false,\"pos\":{\"x\":-11.4337,\"y\":1.2806,\"z\":89.3133},\"rot\":{\"x\":0.0208,\"y\":270.0039,\"z\":0.0168}},\"7d3855\":{\"lock\":false,\"pos\":{\"x\":5.6428,\"y\":1.2876,\"z\":92.1596},\"rot\":{\"x\":0.0208,\"y\":270.0381,\"z\":0.0168}},\"7d4931\":{\"lock\":false,\"pos\":{\"x\":1.7635,\"y\":1.2795,\"z\":69.1743},\"rot\":{\"x\":0.0208,\"y\":270.0142,\"z\":0.0168}},\"805888\":{\"lock\":false,\"pos\":{\"x\":-26.3002,\"y\":1.3097,\"z\":-69.0606},\"rot\":{\"x\":0.0208,\"y\":270.0825,\"z\":0.0168}},\"8249b7\":{\"lock\":false,\"pos\":{\"x\":15.5652,\"y\":1.2918,\"z\":83.0358},\"rot\":{\"x\":0.0208,\"y\":269.9907,\"z\":0.0168}},\"830efe\":{\"lock\":false,\"pos\":{\"x\":-19.3021,\"y\":1.3145,\"z\":-61.2332},\"rot\":{\"x\":0.0208,\"y\":269.8826,\"z\":0.0167}},\"85cbad\":{\"lock\":false,\"pos\":{\"x\":1.7635,\"y\":1.2862,\"z\":92.1743},\"rot\":{\"x\":0.0208,\"y\":270.0354,\"z\":0.0168}},\"88c948\":{\"lock\":false,\"pos\":{\"x\":-1.8791,\"y\":1.2782,\"z\":69.1616},\"rot\":{\"x\":0.0208,\"y\":269.9563,\"z\":0.0168}},\"8a2863\":{\"lock\":false,\"pos\":{\"x\":-8.9869,\"y\":1.2817,\"z\":89.8496},\"rot\":{\"x\":0.0208,\"y\":269.9993,\"z\":0.0168}},\"8ab0aa\":{\"lock\":false,\"pos\":{\"x\":1.7635,\"y\":1.2809,\"z\":73.7744},\"rot\":{\"x\":0.0208,\"y\":270,\"z\":0.0168}},\"8adb9e\":{\"lock\":false,\"pos\":{\"x\":-0.7817,\"y\":1.2845,\"z\":89.3133},\"rot\":{\"x\":0.0208,\"y\":270.0004,\"z\":0.0168}},\"8bc00c\":{\"lock\":false,\"pos\":{\"x\":12.7277,\"y\":1.2915,\"z\":85.3209},\"rot\":{\"x\":0.0208,\"y\":269.9714,\"z\":0.0168}},\"8cd646\":{\"lock\":false,\"pos\":{\"x\":15.5652,\"y\":1.2938,\"z\":89.9358},\"rot\":{\"x\":0.0208,\"y\":269.9993,\"z\":0.0168}},\"8df09a\":{\"lock\":false,\"pos\":{\"x\":-19.3032,\"y\":1.3076,\"z\":-84.8182},\"rot\":{\"x\":0.0209,\"y\":269.8336,\"z\":0.0167}},\"8ec9e8\":{\"lock\":false,\"pos\":{\"x\":-26.3,\"y\":1.3142,\"z\":-53.4369},\"rot\":{\"x\":0.0208,\"y\":270.0057,\"z\":0.0168}},\"90adc7\":{\"lock\":false,\"pos\":{\"x\":-8.9868,\"y\":1.2736,\"z\":62.2497},\"rot\":{\"x\":0.0208,\"y\":269.9756,\"z\":0.0168}},\"9284f6\":{\"lock\":false,\"pos\":{\"x\":12.7274,\"y\":1.2941,\"z\":94.5185},\"rot\":{\"x\":0.0208,\"y\":269.9738,\"z\":0.0168}},\"92a8c8\":{\"lock\":false,\"pos\":{\"x\":-8.9869,\"y\":1.281,\"z\":87.5496},\"rot\":{\"x\":0.0208,\"y\":269.9668,\"z\":0.0168}},\"9663f1\":{\"lock\":false,\"pos\":{\"x\":5.6423,\"y\":1.287,\"z\":89.8596},\"rot\":{\"x\":0.0208,\"y\":269.9928,\"z\":0.0168}},\"96fb56\":{\"lock\":false,\"pos\":{\"x\":-19.3331,\"y\":1.3285,\"z\":-78.5001},\"rot\":{\"x\":0.0188,\"y\":270.002,\"z\":1.0175}},\"98d59a\":{\"lock\":false,\"pos\":{\"x\":1.7635,\"y\":1.2849,\"z\":87.5744},\"rot\":{\"x\":0.0208,\"y\":270.0286,\"z\":0.0168}},\"99751d\":{\"lock\":false,\"pos\":{\"x\":19.4901,\"y\":1.2952,\"z\":89.7494},\"rot\":{\"x\":0.0208,\"y\":269.999,\"z\":0.0168}},\"9d7db7\":{\"lock\":false,\"pos\":{\"x\":5.6423,\"y\":1.2823,\"z\":73.7596},\"rot\":{\"x\":0.0208,\"y\":269.9927,\"z\":0.0168}},\"a03156\":{\"lock\":false,\"pos\":{\"x\":19.5868,\"y\":1.2508,\"z\":69.6144},\"rot\":{\"x\":359.9792,\"y\":89.9929,\"z\":359.9832}},\"a311eb\":{\"lock\":false,\"pos\":{\"x\":12.4068,\"y\":1.294,\"z\":94.5291},\"rot\":{\"x\":0.0208,\"y\":270.0088,\"z\":0.0168}},\"a4ca98\":{\"lock\":false,\"pos\":{\"x\":5.6429,\"y\":1.2883,\"z\":94.4596},\"rot\":{\"x\":0.0208,\"y\":269.9978,\"z\":0.0168}},\"a4d6ce\":{\"lock\":false,\"pos\":{\"x\":12.7274,\"y\":1.2921,\"z\":87.6185},\"rot\":{\"x\":0.0208,\"y\":269.9931,\"z\":0.0168}},\"a50220\":{\"lock\":false,\"pos\":{\"x\":-8.9869,\"y\":1.2803,\"z\":85.2496},\"rot\":{\"x\":0.0208,\"y\":270.0254,\"z\":0.0168}},\"aa4203\":{\"lock\":false,\"pos\":{\"x\":5.6423,\"y\":1.2856,\"z\":85.2596},\"rot\":{\"x\":0.0208,\"y\":269.9926,\"z\":0.0168}},\"ab19ea\":{\"lock\":false,\"pos\":{\"x\":-0.7817,\"y\":1.2825,\"z\":82.4133},\"rot\":{\"x\":0.0208,\"y\":270.0214,\"z\":0.0168}},\"acf78b\":{\"lock\":false,\"pos\":{\"x\":15.5652,\"y\":1.2898,\"z\":76.1357},\"rot\":{\"x\":0.0208,\"y\":270.0255,\"z\":0.0168}},\"af287c\":{\"lock\":false,\"pos\":{\"x\":-4.3259,\"y\":1.2819,\"z\":84.7253},\"rot\":{\"x\":0.0208,\"y\":270.0006,\"z\":0.0168}},\"b1ab4a\":{\"lock\":false,\"pos\":{\"x\":25.9535,\"y\":1.2975,\"z\":89.7342},\"rot\":{\"x\":0.0208,\"y\":270.0007,\"z\":0.0168}},\"b3612e\":{\"lock\":false,\"pos\":{\"x\":-0.7817,\"y\":1.2804,\"z\":75.5133},\"rot\":{\"x\":0.0208,\"y\":270.0006,\"z\":0.0168}},\"bb2d8c\":{\"lock\":false,\"pos\":{\"x\":-1.8791,\"y\":1.2816,\"z\":80.6616},\"rot\":{\"x\":0.0208,\"y\":269.9734,\"z\":0.0168}},\"bbd9b9\":{\"lock\":false,\"pos\":{\"x\":19.4901,\"y\":1.2939,\"z\":85.1494},\"rot\":{\"x\":0.0208,\"y\":269.9991,\"z\":0.0168}},\"bea40c\":{\"lock\":false,\"pos\":{\"x\":-11.4337,\"y\":1.2799,\"z\":87.0133},\"rot\":{\"x\":0.0208,\"y\":270.0187,\"z\":0.0168}},\"bed1c4\":{\"lock\":false,\"pos\":{\"x\":-4.3259,\"y\":1.2765,\"z\":66.3253},\"rot\":{\"x\":0.0208,\"y\":270.0004,\"z\":0.0168}},\"bf1297\":{\"lock\":false,\"pos\":{\"x\":-22.6157,\"y\":1.311,\"z\":-69.0756},\"rot\":{\"x\":0.0208,\"y\":270.0037,\"z\":0.0168}},\"c0e8e4\":{\"lock\":false,\"pos\":{\"x\":12.7274,\"y\":1.2935,\"z\":92.2185},\"rot\":{\"x\":0.0208,\"y\":269.9789,\"z\":0.0168}},\"c25061\":{\"lock\":false,\"pos\":{\"x\":9.221,\"y\":1.2896,\"z\":94.5498},\"rot\":{\"x\":0.0208,\"y\":269.985,\"z\":0.0168}},\"c48fc3\":{\"lock\":false,\"pos\":{\"x\":-8.987,\"y\":1.279,\"z\":80.6496},\"rot\":{\"x\":0.0208,\"y\":270.0384,\"z\":0.0168}},\"c53e8d\":{\"lock\":false,\"pos\":{\"x\":-5.4322,\"y\":1.2782,\"z\":73.7496},\"rot\":{\"x\":0.0208,\"y\":269.9773,\"z\":0.0168}},\"c6ef37\":{\"lock\":false,\"pos\":{\"x\":25.9413,\"y\":1.2982,\"z\":92.0275},\"rot\":{\"x\":0.0208,\"y\":270.0007,\"z\":0.0168}},\"c821e9\":{\"lock\":false,\"pos\":{\"x\":5.6423,\"y\":1.285,\"z\":82.9596},\"rot\":{\"x\":0.0208,\"y\":270.0027,\"z\":0.0168}},\"c9c916\":{\"lock\":false,\"pos\":{\"x\":1.7635,\"y\":1.2788,\"z\":66.8742},\"rot\":{\"x\":0.0208,\"y\":270.0125,\"z\":0.0168}},\"ca55a3\":{\"lock\":false,\"pos\":{\"x\":5.6423,\"y\":1.2863,\"z\":87.5596},\"rot\":{\"x\":0.0208,\"y\":270.0103,\"z\":0.0168}},\"cad5d5\":{\"lock\":false,\"pos\":{\"x\":-0.7817,\"y\":1.2831,\"z\":84.7133},\"rot\":{\"x\":0.0208,\"y\":270.0192,\"z\":0.0168}},\"cc2723\":{\"lock\":false,\"pos\":{\"x\":-0.7817,\"y\":1.2784,\"z\":68.6133},\"rot\":{\"x\":0.0208,\"y\":270.0134,\"z\":0.0168}},\"ce6e77\":{\"lock\":false,\"pos\":{\"x\":22.669,\"y\":1.2957,\"z\":87.435},\"rot\":{\"x\":0.0208,\"y\":269.9996,\"z\":0.0168}},\"cf1b06\":{\"lock\":false,\"pos\":{\"x\":-26.3002,\"y\":1.3073,\"z\":-76.9456},\"rot\":{\"x\":0.0208,\"y\":270.0413,\"z\":0.0168}},\"d40f7c\":{\"lock\":false,\"pos\":{\"x\":22.669,\"y\":1.297,\"z\":92.035},\"rot\":{\"x\":0.0208,\"y\":269.9996,\"z\":0.0168}},\"d490f4\":{\"lock\":false,\"pos\":{\"x\":-1.8791,\"y\":1.2856,\"z\":94.4616},\"rot\":{\"x\":0.0208,\"y\":269.9772,\"z\":0.0168}},\"d49971\":{\"lock\":false,\"pos\":{\"x\":-8.987,\"y\":1.2749,\"z\":66.8496},\"rot\":{\"x\":0.0208,\"y\":270.0309,\"z\":0.0168}},\"d8c089\":{\"lock\":false,\"pos\":{\"x\":1.7635,\"y\":1.2829,\"z\":80.6744},\"rot\":{\"x\":0.0208,\"y\":270.0127,\"z\":0.0168}},\"d90685\":{\"lock\":false,\"pos\":{\"x\":-5.4322,\"y\":1.2836,\"z\":92.1496},\"rot\":{\"x\":0.0208,\"y\":270.0153,\"z\":0.0168}},\"d921bc\":{\"lock\":false,\"pos\":{\"x\":15.5652,\"y\":1.2945,\"z\":92.2358},\"rot\":{\"x\":0.0208,\"y\":270,\"z\":0.0168}},\"dabd8d\":{\"lock\":false,\"pos\":{\"x\":-8.9869,\"y\":1.2823,\"z\":92.1496},\"rot\":{\"x\":0.0208,\"y\":270.0178,\"z\":0.0168}},\"db5369\":{\"lock\":false,\"pos\":{\"x\":1.7635,\"y\":1.2842,\"z\":85.2744},\"rot\":{\"x\":0.0208,\"y\":269.9992,\"z\":0.0168}},\"dba2a6\":{\"lock\":false,\"pos\":{\"x\":-5.4323,\"y\":1.2762,\"z\":66.8496},\"rot\":{\"x\":0.0208,\"y\":269.9579,\"z\":0.0168}},\"dda3dc\":{\"lock\":false,\"pos\":{\"x\":-26.2996,\"y\":1.305,\"z\":-84.818},\"rot\":{\"x\":0.0208,\"y\":270.0212,\"z\":0.0168}},\"ddcdcc\":{\"lock\":false,\"pos\":{\"x\":25.9559,\"y\":1.2969,\"z\":87.4343},\"rot\":{\"x\":0.0208,\"y\":270.0002,\"z\":0.0168}},\"dedfbb\":{\"lock\":false,\"pos\":{\"x\":22.669,\"y\":1.2977,\"z\":94.335},\"rot\":{\"x\":0.0208,\"y\":269.9993,\"z\":0.0168}},\"df828a\":{\"lock\":false,\"pos\":{\"x\":15.565,\"y\":1.2905,\"z\":78.4206},\"rot\":{\"x\":0.0208,\"y\":269.9646,\"z\":0.0168}},\"e10b00\":{\"lock\":false,\"pos\":{\"x\":-0.7817,\"y\":1.2791,\"z\":70.9133},\"rot\":{\"x\":0.0208,\"y\":270.0049,\"z\":0.0168}},\"e1f933\":{\"lock\":false,\"pos\":{\"x\":-1.8791,\"y\":1.2775,\"z\":66.8616},\"rot\":{\"x\":0.0208,\"y\":269.9755,\"z\":0.0168}},\"e4f0d2\":{\"lock\":false,\"pos\":{\"x\":15.5652,\"y\":1.2911,\"z\":80.7358},\"rot\":{\"x\":0.0208,\"y\":269.9763,\"z\":0.0168}},\"e5ebfc\":{\"lock\":false,\"pos\":{\"x\":-5.4323,\"y\":1.2769,\"z\":69.1496},\"rot\":{\"x\":0.0208,\"y\":270.0253,\"z\":0.0168}},\"e94aa3\":{\"lock\":false,\"pos\":{\"x\":9.1791,\"y\":1.2889,\"z\":92.162},\"rot\":{\"x\":0.0208,\"y\":269.9738,\"z\":0.0168}},\"e9746a\":{\"lock\":false,\"pos\":{\"x\":-8.9914,\"y\":1.283,\"z\":94.459},\"rot\":{\"x\":0.0208,\"y\":270,\"z\":0.0168}},\"e9d7dc\":{\"lock\":false,\"pos\":{\"x\":-1.8791,\"y\":1.2762,\"z\":62.2617},\"rot\":{\"x\":0.0208,\"y\":269.9798,\"z\":0.0168}},\"ee3b9e\":{\"lock\":false,\"pos\":{\"x\":-4.3259,\"y\":1.2839,\"z\":91.6253},\"rot\":{\"x\":0.0208,\"y\":270.0003,\"z\":0.0168}},\"f20025\":{\"lock\":false,\"pos\":{\"x\":1.7635,\"y\":1.2856,\"z\":89.8744},\"rot\":{\"x\":0.0208,\"y\":270.0287,\"z\":0.0168}},\"f424b5\":{\"lock\":false,\"pos\":{\"x\":-19.2956,\"y\":1.3099,\"z\":-76.9414},\"rot\":{\"x\":0.0208,\"y\":269.9008,\"z\":0.0167}},\"f52130\":{\"lock\":false,\"pos\":{\"x\":19.4901,\"y\":1.2945,\"z\":87.4494},\"rot\":{\"x\":0.0208,\"y\":269.9991,\"z\":0.0168}},\"f5d683\":{\"lock\":false,\"pos\":{\"x\":-8.9869,\"y\":1.2769,\"z\":73.7496},\"rot\":{\"x\":0.0208,\"y\":270.0284,\"z\":0.0168}},\"f5dde8\":{\"lock\":false,\"pos\":{\"x\":-12.6025,\"y\":1.281,\"z\":92.1235},\"rot\":{\"x\":0.0208,\"y\":269.9702,\"z\":0.0168}},\"f67bb7\":{\"lock\":false,\"pos\":{\"x\":-1.8791,\"y\":1.2768,\"z\":64.5617},\"rot\":{\"x\":0.0208,\"y\":269.975,\"z\":0.0168}},\"f81d7c\":{\"lock\":false,\"pos\":{\"x\":-8.987,\"y\":1.2756,\"z\":69.1496},\"rot\":{\"x\":0.0208,\"y\":270.034,\"z\":0.0168}},\"f91daf\":{\"lock\":false,\"pos\":{\"x\":1.7635,\"y\":1.2836,\"z\":82.9744},\"rot\":{\"x\":0.0208,\"y\":270.0137,\"z\":0.0168}},\"facdd4\":{\"lock\":false,\"pos\":{\"x\":1.7635,\"y\":1.2815,\"z\":76.0744},\"rot\":{\"x\":0.0208,\"y\":270.0117,\"z\":0.0168}},\"fc5916\":{\"lock\":false,\"pos\":{\"x\":5.6423,\"y\":1.2789,\"z\":62.2596},\"rot\":{\"x\":0.0208,\"y\":269.9967,\"z\":0.0168}},\"fd5d1b\":{\"lock\":false,\"pos\":{\"x\":-5.4323,\"y\":1.2755,\"z\":64.5497},\"rot\":{\"x\":0.0208,\"y\":270.0133,\"z\":0.0168}},\"fd989b\":{\"lock\":false,\"pos\":{\"x\":1.7635,\"y\":1.2822,\"z\":78.3744},\"rot\":{\"x\":0.0208,\"y\":270.0119,\"z\":0.0168}},\"fe6cd0\":{\"lock\":false,\"pos\":{\"x\":-11.4337,\"y\":1.2793,\"z\":84.7133},\"rot\":{\"x\":0.0208,\"y\":270.0186,\"z\":0.0168}},\"feac86\":{\"lock\":false,\"pos\":{\"x\":-1.8791,\"y\":1.2836,\"z\":87.5616},\"rot\":{\"x\":0.0208,\"y\":269.9852,\"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": "991ff9",
"Name": "Custom_Model",
"Transform": {
"posX": -21.834631,
"posY": 1.973376,
"posZ": 81.63506,
"rotX": 0.0222348273,
"rotY": 270.0,
"rotZ": 0.0144922156,
"scaleX": 1.3633405,
"scaleY": 0.2837723,
"scaleZ": 1.49288893
},
"Nickname": "Idol Thoughts Custom Investigators",
"Description": "",
"GMNotes": "fancreations/investigators_idol_thoughts.json",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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\":{\"057e04\":{\"lock\":false,\"pos\":{\"x\":-16.6395988464355,\"y\":1.31085813045502,\"z\":-76.9456481933594},\"rot\":{\"x\":0.0208098888397217,\"y\":269.999450683594,\"z\":0.0167720001190901}},\"06fcb2\":{\"lock\":false,\"pos\":{\"x\":-22.6157550811768,\"y\":1.3256413936615,\"z\":-76.9460372924805},\"rot\":{\"x\":0.020808782428503,\"y\":270.000274658203,\"z\":0.0167717132717371}},\"08ab92\":{\"lock\":false,\"pos\":{\"x\":-19.2936096191406,\"y\":1.30989539623261,\"z\":-76.9415512084961},\"rot\":{\"x\":0.0208085216581821,\"y\":270.000030517578,\"z\":0.0167711414396763}},\"212311\":{\"lock\":false,\"pos\":{\"x\":-22.6156845092773,\"y\":1.32794523239136,\"z\":-69.0756072998047},\"rot\":{\"x\":0.0208083000034094,\"y\":269.999816894531,\"z\":0.0167704597115517}},\"3c216d\":{\"lock\":false,\"pos\":{\"x\":-16.6402435302734,\"y\":1.30855345726013,\"z\":-84.8182067871094},\"rot\":{\"x\":0.0208111256361008,\"y\":269.999206542969,\"z\":0.0167727693915367}},\"55809d\":{\"lock\":false,\"pos\":{\"x\":-19.3000640869141,\"y\":1.31449115276337,\"z\":-61.2332420349121},\"rot\":{\"x\":0.0208084266632795,\"y\":269.999938964844,\"z\":0.0167710799723864}},\"600e41\":{\"lock\":false,\"pos\":{\"x\":-22.6139163970947,\"y\":1.33252322673798,\"z\":-53.4381370544434},\"rot\":{\"x\":0.0208081752061844,\"y\":270.001251220703,\"z\":0.0167707018554211}},\"6011c1\":{\"lock\":false,\"pos\":{\"x\":-22.61696434021,\"y\":1.33023798465729,\"z\":-61.2413864135742},\"rot\":{\"x\":0.0208087377250195,\"y\":269.999908447266,\"z\":0.016770888119936}},\"6e7ea8\":{\"lock\":false,\"pos\":{\"x\":-19.295877456665,\"y\":1.31220149993896,\"z\":-69.0607070922852},\"rot\":{\"x\":0.0208094604313374,\"y\":270,\"z\":0.0167710334062576}},\"b1256b\":{\"lock\":false,\"pos\":{\"x\":-16.6400871276855,\"y\":1.31545794010162,\"z\":-61.2309913635254},\"rot\":{\"x\":0.0208090264350176,\"y\":269.998779296875,\"z\":0.0167700741440058}},\"c72bdd\":{\"lock\":false,\"pos\":{\"x\":-16.6400699615479,\"y\":1.31775283813477,\"z\":-53.3904228210449},\"rot\":{\"x\":0.0208091754466295,\"y\":269.999816894531,\"z\":0.0167703349143267}},\"d2913a\":{\"lock\":false,\"pos\":{\"x\":-16.6403007507324,\"y\":1.31316590309143,\"z\":-69.0603103637695},\"rot\":{\"x\":0.020810903981328,\"y\":270,\"z\":0.0167728774249554}},\"ecaa8c\":{\"lock\":false,\"pos\":{\"x\":-19.2997856140137,\"y\":1.30758762359619,\"z\":-84.8181838989258},\"rot\":{\"x\":0.0208093598484993,\"y\":270,\"z\":0.0167709905654192}},\"f89508\":{\"lock\":false,\"pos\":{\"x\":-19.3000202178955,\"y\":1.31677353382111,\"z\":-53.4358367919922},\"rot\":{\"x\":0.0208089053630829,\"y\":270.000122070313,\"z\":0.0167711284011602}},\"f9d436\":{\"lock\":false,\"pos\":{\"x\":-22.6169204711914,\"y\":1.32333660125732,\"z\":-84.8185119628906},\"rot\":{\"x\":0.0208087246865034,\"y\":270.000030517578,\"z\":0.0167713966220617}}}}",
"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": "c19cfa",
"Name": "Custom_Model",
"Transform": {
"posX": -47.19211,
"posY": 2.827945,
"posZ": -121.3411,
"rotX": 0.0208095,
"rotY": 269.998016,
"rotZ": 0.0167700127,
"scaleX": 0.960666358,
"scaleY": 0.268319339,
"scaleZ": 0.960666358
},
"Nickname": "The Ghosts Of Onigawa (Investigator Expansion)",
"Description": "https://arkham.cards",
"GMNotes": "fancreations/investigators_onigawa.json",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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://dl.airtable.com/.attachmentThumbnails/e9dd0f33f26dcf0a628d962e0806de04/b41b19e1",
"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": "",
"XmlUI": ""
},
{
"GUID": "33272e",
"Name": "Custom_Model",
"Transform": {
"posX": -20.9389057,
"posY": 1.97757506,
"posZ": 81.00666,
"rotX": 0.020891523,
"rotY": 270.0,
"rotZ": 0.0161905736,
"scaleX": 1.3633405,
"scaleY": 0.2837723,
"scaleZ": 1.49288893
},
"Nickname": "Gender Swapped Investigators",
"Description": "By /u/corpboy",
"GMNotes": "fancreations/investigators_gender_swapped.json",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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/1597044073919531303/A7A92208CADC509C2546E65242ADDC8EF88FEAB8/",
"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\":{\"169f5f\":{\"lock\":false,\"pos\":{\"x\":-19.3000202178955,\"y\":1.35298359394073,\"z\":-53.4358367919922},\"rot\":{\"x\":0.02080955542624,\"y\":270.001556396484,\"z\":0.0167712271213531}},\"1abe52\":{\"lock\":false,\"pos\":{\"x\":-19.2997913360596,\"y\":1.34861159324646,\"z\":-84.8181838989258},\"rot\":{\"x\":0.020808843895793,\"y\":270.000122070313,\"z\":0.0167707651853561}},\"23ea9a\":{\"lock\":false,\"pos\":{\"x\":-16.6402473449707,\"y\":1.3495774269104,\"z\":-84.8182144165039},\"rot\":{\"x\":0.0208143834024668,\"y\":269.999816894531,\"z\":0.0167734380811453}},\"260c46\":{\"lock\":false,\"pos\":{\"x\":-16.6403007507324,\"y\":1.34937584400177,\"z\":-69.0603103637695},\"rot\":{\"x\":0.0208140630275011,\"y\":270.000244140625,\"z\":0.0167755950242281}},\"6b77d7\":{\"lock\":false,\"pos\":{\"x\":-16.8499145507813,\"y\":1.30698132514954,\"z\":-91.5999984741211},\"rot\":{\"x\":0.0208082087337971,\"y\":270.000122070313,\"z\":0.0167680568993092}},\"6be340\":{\"lock\":false,\"pos\":{\"x\":-19.3000755310059,\"y\":1.35551571846008,\"z\":-61.2332572937012},\"rot\":{\"x\":0.0208098944276571,\"y\":269.999114990234,\"z\":0.0167708061635494}},\"77ba63\":{\"lock\":false,\"pos\":{\"x\":-22.6157627105713,\"y\":1.3086873292923,\"z\":-76.946044921875},\"rot\":{\"x\":0.0208086930215359,\"y\":270.000091552734,\"z\":0.0167710520327091}},\"7c3d2e\":{\"lock\":false,\"pos\":{\"x\":-19.293607711792,\"y\":1.35573351383209,\"z\":-76.9415588378906},\"rot\":{\"x\":0.0208112671971321,\"y\":269.999816894531,\"z\":0.0167707577347755}},\"7d5120\":{\"lock\":false,\"pos\":{\"x\":-22.6139030456543,\"y\":1.31556940078735,\"z\":-53.4381294250488},\"rot\":{\"x\":0.0208085980266333,\"y\":270.000030517578,\"z\":180.01676940918}},\"981000\":{\"lock\":false,\"pos\":{\"x\":-16.6400699615479,\"y\":1.35396289825439,\"z\":-53.3904228210449},\"rot\":{\"x\":0.0208099316805601,\"y\":270.000030517578,\"z\":0.0167689602822065}},\"b5091c\":{\"lock\":false,\"pos\":{\"x\":-26.3147144317627,\"y\":1.30734384059906,\"z\":-76.9476318359375},\"rot\":{\"x\":0.0208098907023668,\"y\":269.99560546875,\"z\":0.0167696326971054}},\"c61dd3\":{\"lock\":false,\"pos\":{\"x\":-16.6400871276855,\"y\":1.3564817905426,\"z\":-61.2309913635254},\"rot\":{\"x\":0.0208104159682989,\"y\":269.999847412109,\"z\":0.0167675204575062}},\"d8bab9\":{\"lock\":false,\"pos\":{\"x\":-19.2999992370605,\"y\":1.32235062122345,\"z\":-91.5984573364258},\"rot\":{\"x\":0.0208081062883139,\"y\":270.000061035156,\"z\":0.0167712885886431}},\"e22086\":{\"lock\":false,\"pos\":{\"x\":-16.6396045684814,\"y\":1.35669600963593,\"z\":-76.9456558227539},\"rot\":{\"x\":0.0208145752549171,\"y\":269.999847412109,\"z\":0.0167776327580214}},\"eff7e4\":{\"lock\":false,\"pos\":{\"x\":-19.2958831787109,\"y\":1.3484114408493,\"z\":-69.0607070922852},\"rot\":{\"x\":0.0208063907921314,\"y\":270.008483886719,\"z\":0.016773846000433}}}}",
"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": -20.9389019,
"posY": 1.97754586,
"posZ": 81.00665,
"rotX": 0.0218735468,
"rotY": 269.996765,
"rotZ": 0.0154761421,
"scaleX": 2.21,
"scaleY": 0.46,
"scaleZ": 2.42
},
"Nickname": "Fortune or Folly - Parallel Rex Murphy Set",
"Description": "By Davi",
"GMNotes": "fancreations/investigators_fortune_or_folly_parallel_rex.json",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "84c153",
"Name": "Custom_Model",
"Transform": {
"posX": -20.9389172,
"posY": 1.96270132,
"posZ": 81.00668,
"rotX": 0.0218216814,
"rotY": 269.993347,
"rotZ": 0.009705813,
"scaleX": 1.3633405,
"scaleY": 0.2837723,
"scaleZ": 1.49288893
},
"Nickname": "Elspeth Baudin Custom Investigator",
"Description": "By Donelloth. As Seen in Bad Blood!",
"GMNotes": "fancreations/investigators_elspeth_baudin.json",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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/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\":{\"1b6773\":{\"lock\":false,\"pos\":{\"x\":-19.5467624664307,\"y\":1.31306660175323,\"z\":-65.7938537597656},\"rot\":{\"x\":0.0208032466471195,\"y\":270.018371582031,\"z\":0.0167777892202139}},\"41424c\":{\"lock\":false,\"pos\":{\"x\":-22.5805168151855,\"y\":1.31255412101746,\"z\":-63.7807502746582},\"rot\":{\"x\":0.020810954272747,\"y\":269.991149902344,\"z\":0.0167674999684095}},\"647b40\":{\"lock\":false,\"pos\":{\"x\":-22.6028251647949,\"y\":1.31024301052094,\"z\":-71.6484832763672},\"rot\":{\"x\":0.0208107922226191,\"y\":269.991149902344,\"z\":0.016767431050539}},\"9a67bf\":{\"lock\":false,\"pos\":{\"x\":-22.6425685882568,\"y\":1.30951547622681,\"z\":-74.0846176147461},\"rot\":{\"x\":0.0208108704537153,\"y\":269.9912109375,\"z\":0.0167674385011196}},\"9e4397\":{\"lock\":false,\"pos\":{\"x\":-22.5964412689209,\"y\":1.31179511547089,\"z\":-66.3536529541016},\"rot\":{\"x\":0.0208110846579075,\"y\":269.99072265625,\"z\":0.0167671237140894}},\"d467b7\":{\"lock\":false,\"pos\":{\"x\":-19.7298603057861,\"y\":1.31206059455872,\"z\":-69.0034790039063},\"rot\":{\"x\":0.0207998398691416,\"y\":270.028869628906,\"z\":0.0167793389409781}},\"dd312f\":{\"lock\":false,\"pos\":{\"x\":-19.5082302093506,\"y\":1.31121933460236,\"z\":-72.1525039672852},\"rot\":{\"x\":0.0167680606245995,\"y\":179.991668701172,\"z\":359.979187011719}},\"e43300\":{\"lock\":false,\"pos\":{\"x\":-22.6156921386719,\"y\":1.31099140644073,\"z\":-69.0756149291992},\"rot\":{\"x\":0.0208105240017176,\"y\":269.993041992188,\"z\":0.0167687423527241}}}}",
"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": "2e69d0",
"Name": "Custom_Model",
"Transform": {
"posX": -20.9389038,
"posY": 1.97775245,
"posZ": 81.00666,
"rotX": 0.0208776072,
"rotY": 270.0,
"rotZ": 0.0162953325,
"scaleX": 1.3633405,
"scaleY": 0.2837723,
"scaleZ": 1.49288893
},
"Nickname": "Don't Starve Investigators",
"Description": "",
"GMNotes": "fancreations/investigators_dont_starve.json",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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\":{\"049651\":{\"lock\":false,\"pos\":{\"x\":-39.9984016418457,\"y\":1.30796504020691,\"z\":-57.847900390625},\"rot\":{\"x\":0.0208088103681803,\"y\":269.999420166016,\"z\":0.0167709793895483}},\"05534d\":{\"lock\":false,\"pos\":{\"x\":-40.433277130127,\"y\":1.30174255371094,\"z\":-78.5659561157227},\"rot\":{\"x\":0.0208085998892784,\"y\":270.000030517578,\"z\":0.0167712327092886}},\"0b4057\":{\"lock\":false,\"pos\":{\"x\":-54.2104759216309,\"y\":1.29435074329376,\"z\":-86.7248611450195},\"rot\":{\"x\":0.0208057351410389,\"y\":270.009887695313,\"z\":0.0167745146900415}},\"0de265\":{\"lock\":false,\"pos\":{\"x\":-50.5162010192871,\"y\":1.30271863937378,\"z\":-62.7216987609863},\"rot\":{\"x\":0.0208138264715672,\"y\":269.981567382813,\"z\":0.0167644713073969}},\"10aa14\":{\"lock\":false,\"pos\":{\"x\":-40.0200996398926,\"y\":1.3072521686554,\"z\":-60.2564010620117},\"rot\":{\"x\":0.0208086967468262,\"y\":269.999725341797,\"z\":0.0167712494730949}},\"144811\":{\"lock\":false,\"pos\":{\"x\":-50.831672668457,\"y\":1.29631996154785,\"z\":-84.1897583007813},\"rot\":{\"x\":0.0208147037774324,\"y\":269.978698730469,\"z\":0.0167634543031454}},\"16e931\":{\"lock\":false,\"pos\":{\"x\":-54.2816009521484,\"y\":1.32870221138,\"z\":-60.0937995910645},\"rot\":{\"x\":0.0208068005740643,\"y\":270.006652832031,\"z\":0.0167733412235975}},\"181416\":{\"lock\":false,\"pos\":{\"x\":-47.2076797485352,\"y\":1.29929566383362,\"z\":-78.5202560424805},\"rot\":{\"x\":0.0208087675273418,\"y\":269.999847412109,\"z\":0.0167711023241282}},\"208789\":{\"lock\":false,\"pos\":{\"x\":-46.9576988220215,\"y\":1.30474603176117,\"z\":-60.2104988098145},\"rot\":{\"x\":0.0208103526383638,\"y\":269.993927001953,\"z\":0.0167688690125942}},\"23d08a\":{\"lock\":false,\"pos\":{\"x\":-43.5625,\"y\":1.30455183982849,\"z\":-65.0863037109375},\"rot\":{\"x\":0.0208085887134075,\"y\":270.000183105469,\"z\":0.0167711470276117}},\"2ab220\":{\"lock\":false,\"pos\":{\"x\":-54.1502075195313,\"y\":1.29681360721588,\"z\":-78.3857879638672},\"rot\":{\"x\":0.0208087991923094,\"y\":270.000122070313,\"z\":0.0167712289839983}},\"2e6779\":{\"lock\":false,\"pos\":{\"x\":-40.3589744567871,\"y\":1.29947459697723,\"z\":-86.4064559936523},\"rot\":{\"x\":0.0208109170198441,\"y\":269.992004394531,\"z\":0.0167681444436312}},\"374e9c\":{\"lock\":false,\"pos\":{\"x\":-50.3554992675781,\"y\":1.30513906478882,\"z\":-54.6520004272461},\"rot\":{\"x\":0.0208085868507624,\"y\":269.999969482422,\"z\":0.0167713407427073}},\"3b7f5e\":{\"lock\":false,\"pos\":{\"x\":-46.8041000366211,\"y\":1.30546891689301,\"z\":-57.9314002990723},\"rot\":{\"x\":0.0208088327199221,\"y\":269.999969482422,\"z\":0.0167714394629002}},\"415ff5\":{\"lock\":false,\"pos\":{\"x\":-54.3089752197266,\"y\":1.31680154800415,\"z\":-84.2695617675781},\"rot\":{\"x\":0.0208021737635136,\"y\":270.023040771484,\"z\":0.0167790465056896}},\"4506c2\":{\"lock\":false,\"pos\":{\"x\":-53.8877983093262,\"y\":1.30392014980316,\"z\":-54.4329986572266},\"rot\":{\"x\":0.0208087544888258,\"y\":269.999969482422,\"z\":0.0167711414396763}},\"4eef97\":{\"lock\":false,\"pos\":{\"x\":-46.9905014038086,\"y\":1.30403566360474,\"z\":-62.5960998535156},\"rot\":{\"x\":0.0208025723695755,\"y\":270.020385742188,\"z\":0.016778577119112}},\"5244b7\":{\"lock\":false,\"pos\":{\"x\":-47.1529731750488,\"y\":1.29834735393524,\"z\":-81.8277587890625},\"rot\":{\"x\":0.0208089258521795,\"y\":270.000457763672,\"z\":0.0167709905654192}},\"6006fa\":{\"lock\":false,\"pos\":{\"x\":-54.1425323486328,\"y\":1.29582250118256,\"z\":-81.781364440918},\"rot\":{\"x\":0.0208027269691229,\"y\":270.020263671875,\"z\":0.0167777054011822}},\"6187b2\":{\"lock\":false,\"pos\":{\"x\":-47.2170753479004,\"y\":1.29763412475586,\"z\":-84.1847610473633},\"rot\":{\"x\":0.0208086259663105,\"y\":270.000274658203,\"z\":0.0167711470276117}},\"682335\":{\"lock\":false,\"pos\":{\"x\":-54.2879981994629,\"y\":1.30139410495758,\"z\":-62.5666007995605},\"rot\":{\"x\":0.0208084508776665,\"y\":270.000030517578,\"z\":0.0167711470276117}},\"6f5590\":{\"lock\":false,\"pos\":{\"x\":-43.7762794494629,\"y\":1.30053281784058,\"z\":-78.5510559082031},\"rot\":{\"x\":0.0208086557686329,\"y\":270,\"z\":0.0167711842805147}},\"70de23\":{\"lock\":false,\"pos\":{\"x\":-50.7880744934082,\"y\":1.29562640190125,\"z\":-86.6133575439453},\"rot\":{\"x\":0.0208112765103579,\"y\":269.990905761719,\"z\":0.0167677998542786}},\"8d7ecb\":{\"lock\":false,\"pos\":{\"x\":-47.2175750732422,\"y\":1.29692459106445,\"z\":-86.6082611083984},\"rot\":{\"x\":0.0208085309714079,\"y\":270.000244140625,\"z\":0.0167712103575468}},\"8e009f\":{\"lock\":false,\"pos\":{\"x\":-43.7559013366699,\"y\":1.3065721988678,\"z\":-57.9441986083984},\"rot\":{\"x\":0.0208087880164385,\"y\":269.999633789063,\"z\":0.0167710371315479}},\"93503f\":{\"lock\":false,\"pos\":{\"x\":-50.5890769958496,\"y\":1.29805994033813,\"z\":-78.546760559082},\"rot\":{\"x\":0.0208088085055351,\"y\":269.999938964844,\"z\":0.0167711973190308}},\"a067d0\":{\"lock\":false,\"pos\":{\"x\":-40.1133995056152,\"y\":1.30650424957275,\"z\":-62.6950988769531},\"rot\":{\"x\":0.0208086110651493,\"y\":269.999755859375,\"z\":0.0167712140828371}},\"a96330\":{\"lock\":false,\"pos\":{\"x\":-50.5937004089355,\"y\":1.30409467220306,\"z\":-57.9240989685059},\"rot\":{\"x\":0.0208087433129549,\"y\":270.000122070313,\"z\":0.0167710352689028}},\"aea08f\":{\"lock\":false,\"pos\":{\"x\":-50.5124015808105,\"y\":1.30345153808594,\"z\":-60.2220993041992},\"rot\":{\"x\":0.0208103451877832,\"y\":269.993713378906,\"z\":0.01676887832582}},\"b54d99\":{\"lock\":false,\"pos\":{\"x\":-43.7377738952637,\"y\":1.29892361164093,\"z\":-84.0963592529297},\"rot\":{\"x\":0.0208086259663105,\"y\":270.000061035156,\"z\":0.0167712867259979}},\"b679ff\":{\"lock\":false,\"pos\":{\"x\":-50.6292724609375,\"y\":1.29708194732666,\"z\":-81.8374557495117},\"rot\":{\"x\":0.02080905623734,\"y\":270.000183105469,\"z\":0.0167706366628408}},\"ba6a4f\":{\"lock\":false,\"pos\":{\"x\":-43.7175750732422,\"y\":1.29820847511292,\"z\":-86.5645599365234},\"rot\":{\"x\":0.0208099484443665,\"y\":269.995758056641,\"z\":0.0167698338627815}},\"c91bbc\":{\"lock\":false,\"pos\":{\"x\":-39.9734992980957,\"y\":1.30901253223419,\"z\":-54.2999000549316},\"rot\":{\"x\":0.0208084303885698,\"y\":270.000366210938,\"z\":0.016771299764514}},\"c96866\":{\"lock\":false,\"pos\":{\"x\":-43.6356010437012,\"y\":1.30764770507813,\"z\":-54.418701171875},\"rot\":{\"x\":0.0208086762577295,\"y\":270,\"z\":0.0167712662369013}},\"c972bd\":{\"lock\":false,\"pos\":{\"x\":-53.9467010498047,\"y\":1.30288803577423,\"z\":-57.8862991333008},\"rot\":{\"x\":0.020808694884181,\"y\":270.000030517578,\"z\":0.0167707893997431}},\"d4879a\":{\"lock\":false,\"pos\":{\"x\":-40.2654724121094,\"y\":1.30021071434021,\"z\":-84.0074615478516},\"rot\":{\"x\":0.0208088830113411,\"y\":269.998901367188,\"z\":0.0167706571519375}},\"dab2b7\":{\"lock\":false,\"pos\":{\"x\":-43.6455993652344,\"y\":1.30521702766418,\"z\":-62.7103004455566},\"rot\":{\"x\":0.0208085291087627,\"y\":270,\"z\":0.0167709551751614}},\"dd39cd\":{\"lock\":false,\"pos\":{\"x\":-43.7768745422363,\"y\":1.29958915710449,\"z\":-81.7739562988281},\"rot\":{\"x\":0.0208089090883732,\"y\":270.000183105469,\"z\":0.0167705938220024}},\"dfc083\":{\"lock\":false,\"pos\":{\"x\":-43.4954986572266,\"y\":1.30599534511566,\"z\":-60.2380981445313},\"rot\":{\"x\":0.0208085048943758,\"y\":270,\"z\":0.0167709179222584}},\"e7003e\":{\"lock\":false,\"pos\":{\"x\":-40.5401725769043,\"y\":1.30076205730438,\"z\":-81.7831573486328},\"rot\":{\"x\":0.020809093490243,\"y\":270.000213623047,\"z\":0.0167709477245808}},\"ea2ee7\":{\"lock\":false,\"pos\":{\"x\":-46.9766998291016,\"y\":1.30641329288483,\"z\":-54.4903984069824},\"rot\":{\"x\":0.020808657631278,\"y\":270,\"z\":0.0167710781097412}}}}",
"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": "84be1d",
"Name": "Custom_Model",
"Transform": {
"posX": -33.84915,
"posY": 2.00075769,
"posZ": -87.5673141,
"rotX": 0.0218770951,
"rotY": 270.000122,
"rotZ": 0.0135460282,
"scaleX": 1.3633405,
"scaleY": 0.2837723,
"scaleZ": 1.49288893
},
"Nickname": "Delta Green Convergence Custom Investigators",
"Description": "",
"GMNotes": "fancreations/investigators_delta_green_convergence.json",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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\":{\"03052d\":{\"lock\":false,\"pos\":{\"x\":-16.6400871276855,\"y\":1.31545794010162,\"z\":-61.2309913635254},\"rot\":{\"x\":0.0208080485463142,\"y\":270.002471923828,\"z\":0.0167713277041912}},\"0d7398\":{\"lock\":false,\"pos\":{\"x\":-19.2936096191406,\"y\":1.30989539623261,\"z\":-76.9415588378906},\"rot\":{\"x\":0.0208107028156519,\"y\":269.995147705078,\"z\":0.0167693216353655}},\"171e82\":{\"lock\":false,\"pos\":{\"x\":-22.6169109344482,\"y\":1.32333660125732,\"z\":-84.8184967041016},\"rot\":{\"x\":0.0208145696669817,\"y\":269.982055664063,\"z\":0.0167649257928133}},\"359a15\":{\"lock\":false,\"pos\":{\"x\":-16.6400699615479,\"y\":1.31775295734406,\"z\":-53.3904228210449},\"rot\":{\"x\":0.0208138208836317,\"y\":269.982574462891,\"z\":0.0167645756155252}},\"37589e\":{\"lock\":false,\"pos\":{\"x\":-22.6139087677002,\"y\":1.33252322673798,\"z\":-53.4381332397461},\"rot\":{\"x\":0.0208039656281471,\"y\":270.015686035156,\"z\":0.0167767275124788}},\"498a00\":{\"lock\":false,\"pos\":{\"x\":-16.6403007507324,\"y\":1.31316554546356,\"z\":-69.0603103637695},\"rot\":{\"x\":0.0208092965185642,\"y\":270.000244140625,\"z\":0.0167721156030893}},\"597c69\":{\"lock\":false,\"pos\":{\"x\":-16.6395988464355,\"y\":1.31085801124573,\"z\":-76.9456481933594},\"rot\":{\"x\":0.0208100099116564,\"y\":269.999908447266,\"z\":0.01677231118083}},\"6e601f\":{\"lock\":false,\"pos\":{\"x\":-19.3000774383545,\"y\":1.31449115276337,\"z\":-61.2332534790039},\"rot\":{\"x\":0.0208101477473974,\"y\":269.995147705078,\"z\":0.0167695451527834}},\"74db2c\":{\"lock\":false,\"pos\":{\"x\":-16.6402435302734,\"y\":1.30855345726013,\"z\":-84.8182067871094},\"rot\":{\"x\":0.0208147522062063,\"y\":269.981872558594,\"z\":0.0167650897055864}},\"76d8e1\":{\"lock\":false,\"pos\":{\"x\":-19.2997856140137,\"y\":1.30758762359619,\"z\":-84.8181838989258},\"rot\":{\"x\":0.0208103209733963,\"y\":269.995147705078,\"z\":0.0167695097625256}},\"acefbf\":{\"lock\":false,\"pos\":{\"x\":-19.3000202178955,\"y\":1.31677353382111,\"z\":-53.4358367919922},\"rot\":{\"x\":0.0208102278411388,\"y\":269.995147705078,\"z\":0.0167693123221397}},\"c45c7a\":{\"lock\":false,\"pos\":{\"x\":-22.6156978607178,\"y\":1.32794523239136,\"z\":-69.0756225585938},\"rot\":{\"x\":0.0208086371421814,\"y\":269.999908447266,\"z\":0.0167715176939964}},\"eb9311\":{\"lock\":false,\"pos\":{\"x\":-22.6169662475586,\"y\":1.33023798465729,\"z\":-61.2413864135742},\"rot\":{\"x\":0.0208078268915415,\"y\":270.002685546875,\"z\":0.016772011294961}},\"f1b636\":{\"lock\":false,\"pos\":{\"x\":-22.615758895874,\"y\":1.3256413936615,\"z\":-76.9460372924805},\"rot\":{\"x\":0.0208090450614691,\"y\":269.999298095703,\"z\":0.0167714692652225}},\"f64ead\":{\"lock\":false,\"pos\":{\"x\":-19.2958679199219,\"y\":1.31220149993896,\"z\":-69.0606918334961},\"rot\":{\"x\":0.0208100024610758,\"y\":269.995178222656,\"z\":0.0167694520205259}}}}",
"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": "524fbc",
"Name": "Custom_Model",
"Transform": {
"posX": -34.45549,
"posY": 2.000842,
"posZ": -86.8016739,
"rotX": 0.0244435761,
"rotY": 270.011353,
"rotZ": 0.0143345632,
"scaleX": 0.5,
"scaleY": 0.139652729,
"scaleZ": 0.5
},
"Nickname": "Cartoon Investigators",
"Description": "",
"GMNotes": "fancreations/investigators_cartoon_funtime.json",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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/1785092789057549667/7230A58735443DF70B24F5BAFD93B4FBBC1B28D7/",
"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\":{\"04945b\":{\"lock\":false,\"pos\":{\"x\":-19.6592,\"y\":1.3154,\"z\":-57.5937},\"rot\":{\"x\":0.0208,\"y\":269.9937,\"z\":0.0168}},\"0636ab\":{\"lock\":false,\"pos\":{\"x\":-25.9113,\"y\":1.2681,\"z\":-79.7757},\"rot\":{\"x\":359.9792,\"y\":90.0033,\"z\":359.9832}},\"123caa\":{\"lock\":false,\"pos\":{\"x\":-22.4528,\"y\":1.3058,\"z\":-86.9656},\"rot\":{\"x\":0.0208,\"y\":270.0191,\"z\":0.0168}},\"14bef8\":{\"lock\":false,\"pos\":{\"x\":-22.5761,\"y\":1.3166,\"z\":-50.0492},\"rot\":{\"x\":0.0208,\"y\":270.0168,\"z\":0.0168}},\"20ff4c\":{\"lock\":false,\"pos\":{\"x\":-25.7759,\"y\":1.2746,\"z\":-57.6721},\"rot\":{\"x\":359.9792,\"y\":90.0001,\"z\":359.9832}},\"27a0b8\":{\"lock\":false,\"pos\":{\"x\":-19.5361,\"y\":1.3069,\"z\":-86.8433},\"rot\":{\"x\":0.0208,\"y\":269.9789,\"z\":0.0168}},\"287b34\":{\"lock\":false,\"pos\":{\"x\":-22.2417,\"y\":1.3059,\"z\":-86.9506},\"rot\":{\"x\":0.0208,\"y\":270.0191,\"z\":0.0168}},\"33566f\":{\"lock\":false,\"pos\":{\"x\":-22.594,\"y\":1.3121,\"z\":-65.4763},\"rot\":{\"x\":0.0208,\"y\":270.0115,\"z\":0.0168}},\"3446fd\":{\"lock\":false,\"pos\":{\"x\":-22.5687,\"y\":1.3143,\"z\":-57.8367},\"rot\":{\"x\":0.0208,\"y\":270.017,\"z\":0.0168}},\"46d9c7\":{\"lock\":false,\"pos\":{\"x\":-19.6502,\"y\":1.3131,\"z\":-65.5617},\"rot\":{\"x\":0.0208,\"y\":270.0117,\"z\":0.0168}},\"5b6db3\":{\"lock\":false,\"pos\":{\"x\":-22.4189,\"y\":1.3144,\"z\":-57.5627},\"rot\":{\"x\":0.0208,\"y\":270.017,\"z\":0.0168}},\"7200cf\":{\"lock\":false,\"pos\":{\"x\":-25.8249,\"y\":1.266,\"z\":-86.9147},\"rot\":{\"x\":359.9792,\"y\":89.9983,\"z\":359.9832}},\"73d2da\":{\"lock\":false,\"pos\":{\"x\":-25.9665,\"y\":1.2702,\"z\":-72.4131},\"rot\":{\"x\":359.9792,\"y\":89.9862,\"z\":359.9832}},\"7b0461\":{\"lock\":false,\"pos\":{\"x\":-19.5429,\"y\":1.3178,\"z\":-49.6959},\"rot\":{\"x\":0.0208,\"y\":270.003,\"z\":0.0168}},\"8a8776\":{\"lock\":false,\"pos\":{\"x\":-19.639,\"y\":1.3112,\"z\":-71.9966},\"rot\":{\"x\":0.0208,\"y\":269.9857,\"z\":0.0168}},\"948d48\":{\"lock\":false,\"pos\":{\"x\":-22.5272,\"y\":1.3166,\"z\":-50.0108},\"rot\":{\"x\":0.0208,\"y\":269.9997,\"z\":0.0168}},\"9ad519\":{\"lock\":false,\"pos\":{\"x\":-22.5767,\"y\":1.3101,\"z\":-72.195},\"rot\":{\"x\":0.0208,\"y\":269.9999,\"z\":0.0168}},\"9ceaf0\":{\"lock\":false,\"pos\":{\"x\":-25.6646,\"y\":1.2769,\"z\":-50.1079},\"rot\":{\"x\":359.9792,\"y\":89.9992,\"z\":359.9832}},\"a99c28\":{\"lock\":false,\"pos\":{\"x\":-22.5172,\"y\":1.3102,\"z\":-72.038},\"rot\":{\"x\":0.0208,\"y\":270.0114,\"z\":0.0168}},\"bccab4\":{\"lock\":false,\"pos\":{\"x\":-22.2837,\"y\":1.3081,\"z\":-79.3587},\"rot\":{\"x\":0.0208,\"y\":270.0239,\"z\":0.0168}},\"c1f881\":{\"lock\":false,\"pos\":{\"x\":-22.497,\"y\":1.308,\"z\":-79.5444},\"rot\":{\"x\":0.0208,\"y\":270.0158,\"z\":0.0168}},\"d213c3\":{\"lock\":false,\"pos\":{\"x\":-19.3052,\"y\":1.3092,\"z\":-79.339},\"rot\":{\"x\":0.0208,\"y\":270.0067,\"z\":0.0168}},\"dc27c7\":{\"lock\":false,\"pos\":{\"x\":-25.8464,\"y\":1.2723,\"z\":-65.495},\"rot\":{\"x\":359.9792,\"y\":89.9999,\"z\":359.9832}}}}",
"XmlUI": ""
},
{
"GUID": "2f8332",
"Name": "Custom_Model",
"Transform": {
"posX": -34.3139572,
"posY": 2.00050187,
"posZ": -85.68712,
"rotX": 0.0390783846,
"rotY": 270.000824,
"rotZ": 0.00264191488,
"scaleX": 2.21,
"scaleY": 0.46,
"scaleZ": 2.42
},
"Nickname": "Artifact Expansion 1.3",
"Description": "By Mint Tea Fan",
"GMNotes": "fancreations/investigators_artifact.json",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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/1799728983834465397/5B8C8FFC332DCC1F09FEA1617F0F3446F06821DB/",
"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\":{\"0cd655\":{\"lock\":false,\"pos\":{\"x\":6.757,\"y\":1.3065,\"z\":-74.3312},\"rot\":{\"x\":0.0208,\"y\":270.0001,\"z\":0.0168}},\"1370f5\":{\"lock\":false,\"pos\":{\"x\":6.757,\"y\":1.3098,\"z\":-63.0812},\"rot\":{\"x\":0.0208,\"y\":270.0001,\"z\":0.0168}},\"9887f9\":{\"lock\":false,\"pos\":{\"x\":37.0815,\"y\":1.4527,\"z\":-38.1001},\"rot\":{\"x\":359.9181,\"y\":269.9817,\"z\":0.017}},\"bc9bc6\":{\"lock\":false,\"pos\":{\"x\":6.6076,\"y\":1.3136,\"z\":-50.0096},\"rot\":{\"x\":0.0208,\"y\":270.0268,\"z\":0.0168}},\"defb26\":{\"lock\":false,\"pos\":{\"x\":6.757,\"y\":1.3082,\"z\":-68.7062},\"rot\":{\"x\":0.0208,\"y\":270.0002,\"z\":0.0168}},\"ec74df\":{\"lock\":false,\"pos\":{\"x\":6.757,\"y\":1.3115,\"z\":-57.4562},\"rot\":{\"x\":0.0208,\"y\":270.0008,\"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": "308439",
"Name": "Custom_Assetbundle_Bag",
"Transform": {
"posX": 28.4876156,
"posY": -1.22889638,
"posZ": -25.9216824,
"rotX": 359.936,
"rotY": 320.432861,
"rotZ": 359.9491,
"scaleX": 0.450000465,
"scaleY": 0.450000465,
"scaleZ": 0.450000465
},
"Nickname": "Barkham Horror",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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,
"CustomAssetbundle": {
"AssetbundleURL": "http://chry.me/tts/catlamp.unity3d",
"AssetbundleSecondaryURL": "",
"MaterialIndex": 0,
"TypeIndex": 6,
"LoopingEffectIndex": 0
},
"Bag": {
"Order": 0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "d02940",
"Name": "Custom_Model_Bag",
"Transform": {
"posX": 30.2927418,
"posY": 9.346848,
"posZ": -28.0545235,
"rotX": 0.0150438249,
"rotY": 270.0,
"rotZ": -0.000215587832,
"scaleX": 2.21,
"scaleY": 0.46,
"scaleZ": 2.42
},
"Nickname": "The Meddling of Meowlathotep",
"Description": "Barkham Horror",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"MaterialIndex": -1,
"MeshIndex": -1,
"CustomMesh": {
"MeshURL": "https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297589870/7984397038C3BE7C7D329F9EE9335BE4DC8B4E91/",
"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
},
"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\":{\"041012\":{\"lock\":false,\"pos\":{\"x\":12.2521696090698,\"y\":1.4815628528595,\"z\":11.9863443374634},\"rot\":{\"x\":359.920135498047,\"y\":269.999877929688,\"z\":0.016872700303793}},\"0646bf\":{\"lock\":false,\"pos\":{\"x\":-3.92764782905579,\"y\":1.74437856674194,\"z\":5.75713777542114},\"rot\":{\"x\":359.919738769531,\"y\":270.000030517578,\"z\":180.016815185547}},\"070a78\":{\"lock\":false,\"pos\":{\"x\":15.1499996185303,\"y\":1.49000000953674,\"z\":-0.0799999982118607},\"rot\":{\"x\":359.920013427734,\"y\":270.000183105469,\"z\":0.0168723799288273}},\"0bd409\":{\"lock\":false,\"pos\":{\"x\":15.1499996185303,\"y\":1.48540902137756,\"z\":-16.0799999237061},\"rot\":{\"x\":359.920135498047,\"y\":270.000305175781,\"z\":0.0168718285858631}},\"0c97f0\":{\"lock\":false,\"pos\":{\"x\":12.2700033187866,\"y\":1.48269641399384,\"z\":15.9200010299683},\"rot\":{\"x\":0.0168714057654142,\"y\":179.999954223633,\"z\":0.0798774659633636}},\"1943ff\":{\"lock\":false,\"pos\":{\"x\":9.85000038146973,\"y\":1.4813586473465,\"z\":-0.0800003558397293},\"rot\":{\"x\":359.920135498047,\"y\":269.999877929688,\"z\":0.0168734267354012}},\"208ebc\":{\"lock\":false,\"pos\":{\"x\":-2.72466015815735,\"y\":1.6159462928772,\"z\":0.373313426971436},\"rot\":{\"x\":0.0168960373848677,\"y\":179.956954956055,\"z\":0.0802430883049965}},\"31ee5d\":{\"lock\":false,\"pos\":{\"x\":15.1499996185303,\"y\":1.49000000953674,\"z\":7.92000007629395},\"rot\":{\"x\":359.920013427734,\"y\":270.000061035156,\"z\":0.0168756786733866}},\"3549e7\":{\"lock\":false,\"pos\":{\"x\":9.85000038146973,\"y\":1.48371434211731,\"z\":7.91999912261963},\"rot\":{\"x\":359.920135498047,\"y\":269.999633789063,\"z\":0.0168764851987362}},\"357610\":{\"lock\":false,\"pos\":{\"x\":12.2501697540283,\"y\":1.48392140865326,\"z\":19.986349105835},\"rot\":{\"x\":359.920135498047,\"y\":269.999816894531,\"z\":0.0168732907623053}},\"36b4eb\":{\"lock\":false,\"pos\":{\"x\":0.270093679428101,\"y\":1.48960697650909,\"z\":28.7769813537598},\"rot\":{\"x\":359.920135498047,\"y\":269.999938964844,\"z\":0.0168721694499254}},\"41fdc3\":{\"lock\":false,\"pos\":{\"x\":-23.6764469146729,\"y\":1.62806642055511,\"z\":-0.0300174467265606},\"rot\":{\"x\":359.920104980469,\"y\":269.999694824219,\"z\":0.0168400760740042}},\"44bc00\":{\"lock\":false,\"pos\":{\"x\":12.2500715255737,\"y\":1.47921013832092,\"z\":3.98633503913879},\"rot\":{\"x\":359.920135498047,\"y\":269.999969482422,\"z\":0.016873637214303}},\"458f2b\":{\"lock\":false,\"pos\":{\"x\":-17.1200523376465,\"y\":1.61444211006165,\"z\":-15.2800216674805},\"rot\":{\"x\":359.920104980469,\"y\":269.999877929688,\"z\":0.0168397892266512}},\"499088\":{\"lock\":false,\"pos\":{\"x\":-23.6764068603516,\"y\":1.61334455013275,\"z\":-3.83002400398254},\"rot\":{\"x\":0.0168244950473309,\"y\":180.010559082031,\"z\":0.0799428075551987}},\"54092b\":{\"lock\":false,\"pos\":{\"x\":-13.9964084625244,\"y\":1.65554821491241,\"z\":-0.180126652121544},\"rot\":{\"x\":359.920104980469,\"y\":270.000061035156,\"z\":180.016830444336}},\"56fc9d\":{\"lock\":false,\"pos\":{\"x\":-30.2241821289063,\"y\":1.63943040370941,\"z\":7.56998538970947},\"rot\":{\"x\":359.920104980469,\"y\":269.999725341797,\"z\":0.0168400164693594}},\"5b38c6\":{\"lock\":false,\"pos\":{\"x\":-20.2732715606689,\"y\":1.60632228851318,\"z\":-11.5783996582031},\"rot\":{\"x\":359.983154296875,\"y\":0.000181010706000961,\"z\":359.920104980469}},\"61c4c5\":{\"lock\":false,\"pos\":{\"x\":12.2505617141724,\"y\":1.47214221954346,\"z\":-20.013671875},\"rot\":{\"x\":359.920135498047,\"y\":269.999633789063,\"z\":0.0168726444244385}},\"641694\":{\"lock\":false,\"pos\":{\"x\":-20.0815486907959,\"y\":1.60840344429016,\"z\":-3.58654117584229},\"rot\":{\"x\":0.0684084892272949,\"y\":134.999557495117,\"z\":0.0445842370390892}},\"673295\":{\"lock\":false,\"pos\":{\"x\":12.2765111923218,\"y\":1.48033154010773,\"z\":7.92000293731689},\"rot\":{\"x\":0.016871377825737,\"y\":179.999938964844,\"z\":0.0798773169517517}},\"6b02f8\":{\"lock\":false,\"pos\":{\"x\":-33.4782867431641,\"y\":1.62927162647247,\"z\":3.85553073883057},\"rot\":{\"x\":359.983154296875,\"y\":5.7329405535711E-05,\"z\":359.920104980469}},\"6ba06e\":{\"lock\":false,\"pos\":{\"x\":-26.7825469970703,\"y\":1.61883640289307,\"z\":0.117903299629688},\"rot\":{\"x\":0.0798944383859634,\"y\":90.0002212524414,\"z\":359.983123779297}},\"6be8b0\":{\"lock\":false,\"pos\":{\"x\":-23.6764068603516,\"y\":1.61108767986298,\"z\":-11.5100345611572},\"rot\":{\"x\":0.0168246645480394,\"y\":180.010467529297,\"z\":0.0799442157149315}},\"6c5b9f\":{\"lock\":false,\"pos\":{\"x\":9.85000324249268,\"y\":1.47664725780487,\"z\":-16.0800075531006},\"rot\":{\"x\":359.920135498047,\"y\":270.010437011719,\"z\":0.016860157251358}},\"6dec76\":{\"lock\":false,\"pos\":{\"x\":-36.7731170654297,\"y\":1.64632892608643,\"z\":-0.0300179943442345},\"rot\":{\"x\":359.920104980469,\"y\":269.999755859375,\"z\":0.0168399456888437}},\"6f663b\":{\"lock\":false,\"pos\":{\"x\":-30.2242317199707,\"y\":1.63494277000427,\"z\":-7.70002508163452},\"rot\":{\"x\":359.920104980469,\"y\":269.999725341797,\"z\":0.0168399829417467}},\"7234af\":{\"lock\":false,\"pos\":{\"x\":-36.7731666564941,\"y\":1.63386726379395,\"z\":3.86005425453186},\"rot\":{\"x\":0.0168241951614618,\"y\":180.010726928711,\"z\":0.0799423828721046}},\"72c444\":{\"lock\":false,\"pos\":{\"x\":12.2745180130005,\"y\":1.47326719760895,\"z\":-16.0800037384033},\"rot\":{\"x\":0.016871377825737,\"y\":179.999755859375,\"z\":0.0798778459429741}},\"823edd\":{\"lock\":false,\"pos\":{\"x\":9.85000324249268,\"y\":1.47900295257568,\"z\":-8.08000183105469},\"rot\":{\"x\":359.920135498047,\"y\":269.999755859375,\"z\":0.0168739389628172}},\"87f6b9\":{\"lock\":false,\"pos\":{\"x\":12.2501745223999,\"y\":1.47449851036072,\"z\":-12.0136671066284},\"rot\":{\"x\":359.920135498047,\"y\":269.999816894531,\"z\":0.0168728269636631}},\"8b87b3\":{\"lock\":false,\"pos\":{\"x\":-36.7731437683105,\"y\":1.64856255054474,\"z\":7.56998252868652},\"rot\":{\"x\":359.920104980469,\"y\":269.999725341797,\"z\":0.0168400462716818}},\"937515\":{\"lock\":false,\"pos\":{\"x\":15.1499996185303,\"y\":1.49558484554291,\"z\":15.9200000762939},\"rot\":{\"x\":359.920013427734,\"y\":269.999816894531,\"z\":0.0168741084635258}},\"94dde3\":{\"lock\":false,\"pos\":{\"x\":12.2740049362183,\"y\":1.4756236076355,\"z\":-8.07999992370605},\"rot\":{\"x\":0.016871327534318,\"y\":180.000061035156,\"z\":0.0798767656087875}},\"952924\":{\"lock\":false,\"pos\":{\"x\":12.2496747970581,\"y\":1.47685492038727,\"z\":-4.01367044448853},\"rot\":{\"x\":359.920135498047,\"y\":269.999938964844,\"z\":0.0168727152049541}},\"97c745\":{\"lock\":false,\"pos\":{\"x\":-26.9488582611084,\"y\":1.61791956424713,\"z\":-3.79106402397156},\"rot\":{\"x\":359.983154296875,\"y\":359.992767333984,\"z\":359.920104980469}},\"98de77\":{\"lock\":false,\"pos\":{\"x\":-23.6765613555908,\"y\":1.62358474731445,\"z\":-15.2800130844116},\"rot\":{\"x\":359.920104980469,\"y\":269.999633789063,\"z\":0.0168402101844549}},\"9991d4\":{\"lock\":false,\"pos\":{\"x\":-2.68847703933716,\"y\":1.61430239677429,\"z\":-5.04854536056519},\"rot\":{\"x\":0.0168096069246531,\"y\":180.018661499023,\"z\":0.0802613347768784}},\"a3b604\":{\"lock\":false,\"pos\":{\"x\":-20.2402076721191,\"y\":1.60508036613464,\"z\":-15.6466379165649},\"rot\":{\"x\":0.0798944383859634,\"y\":90.0002670288086,\"z\":359.983123779297}},\"a3b9ce\":{\"lock\":false,\"pos\":{\"x\":-30.2241268157959,\"y\":1.62473499774933,\"z\":3.85997748374939},\"rot\":{\"x\":0.0168243143707514,\"y\":180.010665893555,\"z\":0.0799384042620659}},\"a45247\":{\"lock\":false,\"pos\":{\"x\":1.69637870788574,\"y\":1.55831694602966,\"z\":14.2788572311401},\"rot\":{\"x\":359.955139160156,\"y\":224.997924804688,\"z\":0.0686724856495857}},\"a6049c\":{\"lock\":false,\"pos\":{\"x\":12.2744064331055,\"y\":1.47797882556915,\"z\":-0.0799992084503174},\"rot\":{\"x\":0.0168714188039303,\"y\":180.000045776367,\"z\":0.0798778161406517}},\"aa4b2c\":{\"lock\":false,\"pos\":{\"x\":-20.4563217163086,\"y\":1.60770308971405,\"z\":-7.748703956604},\"rot\":{\"x\":0.0798945873975754,\"y\":89.9999389648438,\"z\":359.983123779297}},\"ab992b\":{\"lock\":false,\"pos\":{\"x\":-27.0462245941162,\"y\":1.61578059196472,\"z\":-11.5305461883545},\"rot\":{\"x\":0.0684082359075546,\"y\":134.999618530273,\"z\":0.0445832647383213}},\"b73127\":{\"lock\":false,\"pos\":{\"x\":-26.6622619628906,\"y\":1.61645436286926,\"z\":-7.41628074645996},\"rot\":{\"x\":0.0798943638801575,\"y\":90.0001525878906,\"z\":359.983123779297}},\"b89737\":{\"lock\":false,\"pos\":{\"x\":-30.2241230010986,\"y\":1.62247490882874,\"z\":-3.83002114295959},\"rot\":{\"x\":0.0168243553489447,\"y\":180.010681152344,\"z\":0.0799569264054298}},\"c16b4e\":{\"lock\":false,\"pos\":{\"x\":-17.1199989318848,\"y\":1.61666977405548,\"z\":-7.70001983642578},\"rot\":{\"x\":359.920104980469,\"y\":269.999877929688,\"z\":0.0168399959802628}},\"c94046\":{\"lock\":false,\"pos\":{\"x\":-33.4688339233398,\"y\":1.6303539276123,\"z\":7.58308696746826},\"rot\":{\"x\":0.0798943936824799,\"y\":89.9999771118164,\"z\":359.983123779297}},\"ceb7d4\":{\"lock\":false,\"pos\":{\"x\":-26.8105792999268,\"y\":1.62001419067383,\"z\":3.99276566505432},\"rot\":{\"x\":0.0684082061052322,\"y\":134.999557495117,\"z\":0.0445845611393452}},\"d0163a\":{\"lock\":false,\"pos\":{\"x\":-33.4151954650879,\"y\":1.62686562538147,\"z\":-4.03124570846558},\"rot\":{\"x\":0.0684084370732307,\"y\":134.999435424805,\"z\":0.0445839650928974}},\"d41278\":{\"lock\":false,\"pos\":{\"x\":-3.95589399337769,\"y\":1.59753930568695,\"z\":-10.4411849975586},\"rot\":{\"x\":359.919738769531,\"y\":269.999816894531,\"z\":0.0168373994529247}},\"e61348\":{\"lock\":false,\"pos\":{\"x\":-23.6765117645264,\"y\":1.62581241130829,\"z\":-7.70001935958862},\"rot\":{\"x\":359.920104980469,\"y\":269.999725341797,\"z\":0.0168399699032307}},\"e87867\":{\"lock\":false,\"pos\":{\"x\":-30.2241630554199,\"y\":1.6371967792511,\"z\":-0.0300170239061117},\"rot\":{\"x\":359.920104980469,\"y\":269.999877929688,\"z\":0.0168398097157478}},\"eab8ff\":{\"lock\":false,\"pos\":{\"x\":9.84999656677246,\"y\":1.48607003688812,\"z\":15.9200029373169},\"rot\":{\"x\":359.920135498047,\"y\":269.999481201172,\"z\":0.0168752484023571}},\"eef566\":{\"lock\":false,\"pos\":{\"x\":-33.4450149536133,\"y\":1.62811577320099,\"z\":0.0806871131062508},\"rot\":{\"x\":0.0798944979906082,\"y\":90.0002212524414,\"z\":359.983123779297}},\"efb4dd\":{\"lock\":false,\"pos\":{\"x\":15.1499996185303,\"y\":1.49000000953674,\"z\":-8.07999992370605},\"rot\":{\"x\":359.920013427734,\"y\":270.000183105469,\"z\":0.0168743338435888}},\"efb516\":{\"lock\":false,\"pos\":{\"x\":-17.1198806762695,\"y\":1.60194492340088,\"z\":-11.5100326538086},\"rot\":{\"x\":0.0168239641934633,\"y\":180.011001586914,\"z\":0.0799526497721672}},\"f5db25\":{\"lock\":false,\"pos\":{\"x\":-3.6761999130249,\"y\":1.58233964443207,\"z\":-14.5353908538818},\"rot\":{\"x\":359.919738769531,\"y\":269.999816894531,\"z\":0.016838077455759}}}}",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "041012",
"Name": "Card",
"Transform": {
"posX": 12.2521725,
"posY": 1.48156285,
"posZ": 11.9863472,
"rotX": 359.920135,
"rotY": 269.9998,
"rotZ": 0.0168716,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Dog Monocle",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 537611,
"SidewaysCard": false,
"CustomDeck": {
"5376": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297420931/3655DD579E6DE8FFA2C1E4D84DFDEA3B3957C28C/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "0646bf",
"Name": "Deck",
"Transform": {
"posX": -3.92764878,
"posY": 1.74437857,
"posZ": 5.75714,
"rotX": 359.919739,
"rotY": 270.0,
"rotZ": 180.016815,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Encounter Deck",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"SidewaysCard": false,
"DeckIDs": [
538534,
538524,
538525,
538526,
538536,
538532,
538534,
538524,
538532,
538531,
538529,
538527,
538530,
538524,
538528,
538530,
538533,
538533,
538525,
538528,
538532,
538531,
538531,
538527,
538529,
538535,
538536,
538535
],
"CustomDeck": {
"5385": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297420931/3655DD579E6DE8FFA2C1E4D84DFDEA3B3957C28C/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "4512a4",
"Name": "Card",
"Transform": {
"posX": 16.2127476,
"posY": 1.475315,
"posZ": 9.51947,
"rotX": 359.920135,
"rotY": 269.999878,
"rotZ": 0.0168730076,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Stubborn Cat",
"Description": "Hazard.",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 538534,
"SidewaysCard": false,
"CustomDeck": {
"5385": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297420931/3655DD579E6DE8FFA2C1E4D84DFDEA3B3957C28C/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "593523",
"Name": "Card",
"Transform": {
"posX": 15.2499514,
"posY": 1.47659254,
"posZ": 9.299698,
"rotX": 359.920135,
"rotY": 269.9997,
"rotZ": 0.01687297,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Estranged Cat",
"Description": "Creature.",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 538524,
"SidewaysCard": false,
"CustomDeck": {
"5385": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297420931/3655DD579E6DE8FFA2C1E4D84DFDEA3B3957C28C/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "d5e580",
"Name": "Card",
"Transform": {
"posX": 12.4638176,
"posY": 1.54068828,
"posZ": 7.441152,
"rotX": 359.9202,
"rotY": 269.99353,
"rotZ": 0.87857914,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Rodent-Killer",
"Description": "Humanoid. Cultist.",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 538525,
"SidewaysCard": false,
"CustomDeck": {
"5385": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297420931/3655DD579E6DE8FFA2C1E4D84DFDEA3B3957C28C/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "4aec61",
"Name": "Card",
"Transform": {
"posX": 15.9162912,
"posY": 1.79808772,
"posZ": 6.103409,
"rotX": 359.951843,
"rotY": 270.000244,
"rotZ": 180.3035,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Order Cultist",
"Description": "Humanoid, sort of? Cultist, definitely.",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 538526,
"SidewaysCard": false,
"CustomDeck": {
"5385": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297420931/3655DD579E6DE8FFA2C1E4D84DFDEA3B3957C28C/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "a5455b",
"Name": "Card",
"Transform": {
"posX": 16.5782356,
"posY": 1.47493565,
"posZ": 9.961658,
"rotX": 359.920135,
"rotY": 269.999146,
"rotZ": 0.01687318,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Gaze of the Ceiling Cat",
"Description": "Terror.",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 538536,
"SidewaysCard": false,
"CustomDeck": {
"5385": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297420931/3655DD579E6DE8FFA2C1E4D84DFDEA3B3957C28C/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "640243",
"Name": "Card",
"Transform": {
"posX": 16.4688568,
"posY": 1.545158,
"posZ": 8.81801,
"rotX": 359.920135,
"rotY": 269.999756,
"rotZ": 0.01687413,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Scratching Paws",
"Description": "Hazard.",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 538532,
"SidewaysCard": false,
"CustomDeck": {
"5385": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297420931/3655DD579E6DE8FFA2C1E4D84DFDEA3B3957C28C/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "173b96",
"Name": "Card",
"Transform": {
"posX": 16.4323025,
"posY": 1.51837575,
"posZ": 9.536949,
"rotX": 359.920135,
"rotY": 269.999878,
"rotZ": 0.01687268,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Stubborn Cat",
"Description": "Hazard.",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 538534,
"SidewaysCard": false,
"CustomDeck": {
"5385": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297420931/3655DD579E6DE8FFA2C1E4D84DFDEA3B3957C28C/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "593523",
"Name": "Card",
"Transform": {
"posX": 15.3526049,
"posY": 1.54707313,
"posZ": 8.89351749,
"rotX": 359.920135,
"rotY": 269.9997,
"rotZ": 0.0168733634,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Estranged Cat",
"Description": "Creature.",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 538524,
"SidewaysCard": false,
"CustomDeck": {
"5385": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297420931/3655DD579E6DE8FFA2C1E4D84DFDEA3B3957C28C/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "640243",
"Name": "Card",
"Transform": {
"posX": 16.2803135,
"posY": 1.47490871,
"posZ": 8.459558,
"rotX": 359.920135,
"rotY": 269.999756,
"rotZ": 0.0168753881,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Scratching Paws",
"Description": "Hazard.",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 538532,
"SidewaysCard": false,
"CustomDeck": {
"5385": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297420931/3655DD579E6DE8FFA2C1E4D84DFDEA3B3957C28C/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "d2376d",
"Name": "Card",
"Transform": {
"posX": 16.128027,
"posY": 1.5455935,
"posZ": 8.667925,
"rotX": 359.920135,
"rotY": 269.999573,
"rotZ": 0.0168728437,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Cats in the Mist",
"Description": "Terror.",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 538531,
"SidewaysCard": false,
"CustomDeck": {
"5385": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297420931/3655DD579E6DE8FFA2C1E4D84DFDEA3B3957C28C/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "188deb",
"Name": "Card",
"Transform": {
"posX": 14.7277861,
"posY": 1.47730052,
"posZ": 9.23175,
"rotX": 359.920135,
"rotY": 269.9998,
"rotZ": 0.0168728139,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Hunted by Byakats",
"Description": "Scheme.",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 538529,
"SidewaysCard": false,
"CustomDeck": {
"5385": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297420931/3655DD579E6DE8FFA2C1E4D84DFDEA3B3957C28C/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "c44211",
"Name": "Card",
"Transform": {
"posX": 16.0556355,
"posY": 1.506772,
"posZ": 8.84411049,
"rotX": 359.9361,
"rotY": 269.999939,
"rotZ": 0.0134851523,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Servant of Dog-Sothoth",
"Description": "Monster. Catbomination.",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 538527,
"SidewaysCard": false,
"CustomDeck": {
"5385": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297420931/3655DD579E6DE8FFA2C1E4D84DFDEA3B3957C28C/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "75690e",
"Name": "Card",
"Transform": {
"posX": 15.4820871,
"posY": 1.51971459,
"posZ": 8.858445,
"rotX": 359.920135,
"rotY": 269.999756,
"rotZ": 0.0168731529,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "On Your Tail",
"Description": "Scheme.",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 538530,
"SidewaysCard": false,
"CustomDeck": {
"5385": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297420931/3655DD579E6DE8FFA2C1E4D84DFDEA3B3957C28C/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "58750b",
"Name": "Card",
"Transform": {
"posX": 15.3525667,
"posY": 1.519947,
"posZ": 8.893525,
"rotX": 359.920135,
"rotY": 269.9997,
"rotZ": 0.01687317,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Estranged Cat",
"Description": "Creature.",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 538524,
"SidewaysCard": false,
"CustomDeck": {
"5385": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297420931/3655DD579E6DE8FFA2C1E4D84DFDEA3B3957C28C/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "d2a05a",
"Name": "Card",
"Transform": {
"posX": 15.5982676,
"posY": 1.47597075,
"posZ": 8.837103,
"rotX": 359.920135,
"rotY": 269.999847,
"rotZ": 0.0168742668,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "SQUIRREL!",
"Description": "Squirrel!",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 538528,
"SidewaysCard": false,
"CustomDeck": {
"5385": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297420931/3655DD579E6DE8FFA2C1E4D84DFDEA3B3957C28C/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "12dd89",
"Name": "Card",
"Transform": {
"posX": 15.2882566,
"posY": 1.47638464,
"posZ": 8.775076,
"rotX": 359.920135,
"rotY": 269.999756,
"rotZ": 0.0168734882,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "On Your Tail",
"Description": "Scheme.",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 538530,
"SidewaysCard": false,
"CustomDeck": {
"5385": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297420931/3655DD579E6DE8FFA2C1E4D84DFDEA3B3957C28C/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "906d54",
"Name": "Card",
"Transform": {
"posX": 15.5291986,
"posY": 1.476279,
"posZ": 9.557188,
"rotX": 359.920135,
"rotY": 269.999664,
"rotZ": 0.0168738849,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Meowsks of Meowlathotep",
"Description": "Power.",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 538533,
"SidewaysCard": false,
"CustomDeck": {
"5385": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297420931/3655DD579E6DE8FFA2C1E4D84DFDEA3B3957C28C/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "0fa302",
"Name": "Card",
"Transform": {
"posX": 15.4493685,
"posY": 1.53896976,
"posZ": 9.816203,
"rotX": 359.918823,
"rotY": 269.99884,
"rotZ": 1.01162326,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Meowsks of Meowlathotep",
"Description": "Power.",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 538533,
"SidewaysCard": false,
"CustomDeck": {
"5385": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297420931/3655DD579E6DE8FFA2C1E4D84DFDEA3B3957C28C/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "9ae188",
"Name": "Card",
"Transform": {
"posX": 12.4523687,
"posY": 1.496397,
"posZ": 7.43958139,
"rotX": 359.9202,
"rotY": 269.99353,
"rotZ": 0.8785791,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Rodent-Killer",
"Description": "Humanoid. Cultist.",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 538525,
"SidewaysCard": false,
"CustomDeck": {
"5385": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297420931/3655DD579E6DE8FFA2C1E4D84DFDEA3B3957C28C/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "085963",
"Name": "Card",
"Transform": {
"posX": 15.225914,
"posY": 1.520093,
"posZ": 9.211927,
"rotX": 359.920135,
"rotY": 269.999817,
"rotZ": 0.0168740619,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "SQUIRREL!",
"Description": "Squirrel!",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 538528,
"SidewaysCard": false,
"CustomDeck": {
"5385": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297420931/3655DD579E6DE8FFA2C1E4D84DFDEA3B3957C28C/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "683523",
"Name": "Card",
"Transform": {
"posX": 16.4688187,
"posY": 1.51803184,
"posZ": 8.818018,
"rotX": 359.920135,
"rotY": 269.999756,
"rotZ": 0.0168751348,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Scratching Paws",
"Description": "Hazard.",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 538532,
"SidewaysCard": false,
"CustomDeck": {
"5385": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297420931/3655DD579E6DE8FFA2C1E4D84DFDEA3B3957C28C/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "f02d56",
"Name": "Card",
"Transform": {
"posX": 16.1279888,
"posY": 1.51846743,
"posZ": 8.667933,
"rotX": 359.920135,
"rotY": 269.999573,
"rotZ": 0.0168732665,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Cats in the Mist",
"Description": "Terror.",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 538531,
"SidewaysCard": false,
"CustomDeck": {
"5385": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297420931/3655DD579E6DE8FFA2C1E4D84DFDEA3B3957C28C/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "d2376d",
"Name": "Card",
"Transform": {
"posX": 16.2530823,
"posY": 1.47493184,
"posZ": 8.408966,
"rotX": 359.920135,
"rotY": 269.999634,
"rotZ": 0.0168731,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Cats in the Mist",
"Description": "Terror.",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 538531,
"SidewaysCard": false,
"CustomDeck": {
"5385": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297420931/3655DD579E6DE8FFA2C1E4D84DFDEA3B3957C28C/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "cd29bc",
"Name": "Card",
"Transform": {
"posX": 16.320446,
"posY": 1.47494972,
"posZ": 8.788771,
"rotX": 359.920135,
"rotY": 269.9998,
"rotZ": 0.016872827,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Servant of Dog-Sothoth",
"Description": "Monster. Catbomination.",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 538527,
"SidewaysCard": false,
"CustomDeck": {
"5385": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297420931/3655DD579E6DE8FFA2C1E4D84DFDEA3B3957C28C/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "041647",
"Name": "Card",
"Transform": {
"posX": 14.6384945,
"posY": 1.51900017,
"posZ": 9.461267,
"rotX": 359.920135,
"rotY": 269.999756,
"rotZ": 0.0168731529,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Hunted by Byakats",
"Description": "Scheme.",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 538529,
"SidewaysCard": false,
"CustomDeck": {
"5385": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297420931/3655DD579E6DE8FFA2C1E4D84DFDEA3B3957C28C/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "6843a4",
"Name": "Card",
"Transform": {
"posX": 16.3402081,
"posY": 1.51841569,
"posZ": 9.344428,
"rotX": 359.920135,
"rotY": 269.999756,
"rotZ": 0.01687559,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Mischief and Chaos",
"Description": "Scheme.",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 538535,
"SidewaysCard": false,
"CustomDeck": {
"5385": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297420931/3655DD579E6DE8FFA2C1E4D84DFDEA3B3957C28C/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "66c016",
"Name": "Card",
"Transform": {
"posX": 16.68238,
"posY": 1.51634276,
"posZ": 10.1112,
"rotX": 359.920135,
"rotY": 269.9991,
"rotZ": 0.0168736,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Gaze of the Ceiling Cat",
"Description": "Terror.",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 538536,
"SidewaysCard": false,
"CustomDeck": {
"5385": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297420931/3655DD579E6DE8FFA2C1E4D84DFDEA3B3957C28C/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "170575",
"Name": "Card",
"Transform": {
"posX": 16.278307,
"posY": 1.47515655,
"posZ": 9.291479,
"rotX": 359.920135,
"rotY": 269.999756,
"rotZ": 0.0168754589,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Mischief and Chaos",
"Description": "Scheme.",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 538535,
"SidewaysCard": false,
"CustomDeck": {
"5385": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297420931/3655DD579E6DE8FFA2C1E4D84DFDEA3B3957C28C/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "070a78",
"Name": "Deck",
"Transform": {
"posX": 15.1500063,
"posY": 1.49092376,
"posZ": -0.08000118,
"rotX": 359.920135,
"rotY": 270.000183,
"rotZ": 0.0168732163,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": false,
"SidewaysCard": false,
"DeckIDs": [
537605,
537604
],
"CustomDeck": {
"5376": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297420931/3655DD579E6DE8FFA2C1E4D84DFDEA3B3957C28C/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "99800f",
"Name": "Card",
"Transform": {
"posX": 15.937418,
"posY": 1.4728533,
"posZ": -0.14389053,
"rotX": 359.920135,
"rotY": 270.000153,
"rotZ": 0.01687217,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Dogcatchers",
"Description": "Weakness",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 537605,
"SidewaysCard": false,
"CustomDeck": {
"5376": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297420931/3655DD579E6DE8FFA2C1E4D84DFDEA3B3957C28C/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "ed4256",
"Name": "Card",
"Transform": {
"posX": 16.2317638,
"posY": 1.51399493,
"posZ": 0.0367458239,
"rotX": 359.920135,
"rotY": 270.000061,
"rotZ": 0.0168725774,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Take the Wheel",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 537604,
"SidewaysCard": false,
"CustomDeck": {
"5376": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297420931/3655DD579E6DE8FFA2C1E4D84DFDEA3B3957C28C/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "0bd409",
"Name": "Deck",
"Transform": {
"posX": 15.15001,
"posY": 1.48621225,
"posZ": -16.0800076,
"rotX": 359.920135,
"rotY": 270.0,
"rotZ": 0.0168744437,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": false,
"SidewaysCard": false,
"DeckIDs": [
537609,
537608
],
"CustomDeck": {
"5376": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297420931/3655DD579E6DE8FFA2C1E4D84DFDEA3B3957C28C/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "197242",
"Name": "Card",
"Transform": {
"posX": 15.9446363,
"posY": 1.46845531,
"posZ": -15.0453625,
"rotX": 359.920135,
"rotY": 270.000336,
"rotZ": 0.0168739613,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Out of Doggie Treats",
"Description": "Weakness",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 537609,
"SidewaysCard": false,
"CustomDeck": {
"5376": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297420931/3655DD579E6DE8FFA2C1E4D84DFDEA3B3957C28C/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "448d3a",
"Name": "Card",
"Transform": {
"posX": 16.128437,
"posY": 1.49981213,
"posZ": -14.769701,
"rotX": 359.9201,
"rotY": 269.999817,
"rotZ": 0.01682643,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Friendly Human",
"Description": "I Guess His Name is \"Pete?\"",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 537608,
"SidewaysCard": false,
"CustomDeck": {
"5376": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297420931/3655DD579E6DE8FFA2C1E4D84DFDEA3B3957C28C/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "0c97f0",
"Name": "Card",
"Transform": {
"posX": 12.2700071,
"posY": 1.48269629,
"posZ": 15.9200029,
"rotX": 0.0168705136,
"rotY": 179.999954,
"rotZ": 0.07987617,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Bark Harrigan",
"Description": "The Dog of War",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 538300,
"SidewaysCard": true,
"CustomDeck": {
"5383": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297425383/1525B71690E98FAD7B4740D7DB1DA5722C094D3A/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297425566/B77EE34309147A71D3711BB06B0EA17E4152EB00/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "1943ff",
"Name": "CardCustom",
"Transform": {
"posX": 9.85,
"posY": 1.48135853,
"posZ": -0.08000088,
"rotX": 359.920135,
"rotY": 270.0,
"rotZ": 0.0168776326,
"scaleX": 0.6,
"scaleY": 1.0,
"scaleZ": 0.6
},
"Nickname": "\"Skids\" O'Drool",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 266500,
"SidewaysCard": false,
"CustomDeck": {
"2665": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297416623/C105E79E8FE67FCCE4ABADEB110F8C5E2A239447/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297416775/01D74E1F211ED12B6AB97E2C171FBF4BAD269E94/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "208ebc",
"Name": "Deck",
"Transform": {
"posX": -2.72466016,
"posY": 1.61594629,
"posZ": 0.373314619,
"rotX": 0.01689601,
"rotY": 179.956955,
"rotZ": 0.08024311,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Agenda Deck",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": false,
"SidewaysCard": true,
"DeckIDs": [
538307,
538306
],
"CustomDeck": {
"5383": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297425383/1525B71690E98FAD7B4740D7DB1DA5722C094D3A/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297425566/B77EE34309147A71D3711BB06B0EA17E4152EB00/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "2dc786",
"Name": "Card",
"Transform": {
"posX": 0.0719906762,
"posY": 1.59374118,
"posZ": -4.16648,
"rotX": 0.0122809839,
"rotY": 183.2345,
"rotZ": 0.08107709,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Meowlathotep's Scheme",
"Description": "Agenda 2",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 538307,
"SidewaysCard": true,
"CustomDeck": {
"5383": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297425383/1525B71690E98FAD7B4740D7DB1DA5722C094D3A/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297425566/B77EE34309147A71D3711BB06B0EA17E4152EB00/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "35a3cd",
"Name": "Card",
"Transform": {
"posX": 0.09467082,
"posY": 1.63600564,
"posZ": -4.269393,
"rotX": 0.015922308,
"rotY": 180.002579,
"rotZ": 0.0804202259,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Of Cats and Dogs",
"Description": "Agenda 1",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 538306,
"SidewaysCard": true,
"CustomDeck": {
"5383": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297425383/1525B71690E98FAD7B4740D7DB1DA5722C094D3A/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297425566/B77EE34309147A71D3711BB06B0EA17E4152EB00/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "31ee5d",
"Name": "Deck",
"Transform": {
"posX": 15.150013,
"posY": 1.49327946,
"posZ": 7.919999,
"rotX": 359.920135,
"rotY": 269.9999,
"rotZ": 0.0168748125,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": false,
"SidewaysCard": false,
"DeckIDs": [
537603,
537602
],
"CustomDeck": {
"5376": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297420931/3655DD579E6DE8FFA2C1E4D84DFDEA3B3957C28C/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "bc4a74",
"Name": "Card",
"Transform": {
"posX": 15.7847195,
"posY": 1.475488,
"posZ": 8.0802145,
"rotX": 359.920135,
"rotY": 270.0,
"rotZ": 0.01687402,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Foul Odor",
"Description": "Weakness",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 537603,
"SidewaysCard": false,
"CustomDeck": {
"5376": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297420931/3655DD579E6DE8FFA2C1E4D84DFDEA3B3957C28C/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "7031aa",
"Name": "Card",
"Transform": {
"posX": 15.8887768,
"posY": 1.50694323,
"posZ": 8.303365,
"rotX": 359.920135,
"rotY": 270.000061,
"rotZ": 0.0168491043,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Feline Discombobulator",
"Description": "It Discombobulates Felines",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 537602,
"SidewaysCard": false,
"CustomDeck": {
"5376": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297420931/3655DD579E6DE8FFA2C1E4D84DFDEA3B3957C28C/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "3549e7",
"Name": "CardCustom",
"Transform": {
"posX": 9.850002,
"posY": 1.48371446,
"posZ": 7.91999865,
"rotX": 359.920135,
"rotY": 269.999451,
"rotZ": 0.016878793,
"scaleX": 0.6,
"scaleY": 1.0,
"scaleZ": 0.6
},
"Nickname": "Kate Winthpup",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 266400,
"SidewaysCard": false,
"CustomDeck": {
"2664": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297416065/D6E80F5A27085251DBDA0BC5DADACC3A45110101/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297416208/2178189EC4327D27ECC17AAB215436AA86507AF4/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "357610",
"Name": "Card",
"Transform": {
"posX": 12.2501726,
"posY": 1.48392141,
"posZ": 19.9863548,
"rotX": 359.920135,
"rotY": 269.999664,
"rotZ": 0.01687317,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Spiked Collar",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 537610,
"SidewaysCard": false,
"CustomDeck": {
"5376": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297420931/3655DD579E6DE8FFA2C1E4D84DFDEA3B3957C28C/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "36b4eb",
"Name": "Custom_PDF",
"Transform": {
"posX": 0.270094126,
"posY": 1.489607,
"posZ": 28.7769928,
"rotX": 359.920135,
"rotY": 269.999939,
"rotZ": 0.0168723073,
"scaleX": 3.0,
"scaleY": 1.0,
"scaleZ": 3.0
},
"Nickname": "Campaign Guide",
"Description": "The Meddling of Meowlathotep",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomPDF": {
"PDFUrl": "http://cloud-3.steamusercontent.com/ugc/1626320456297582485/FD9DDA786EDAE5BAAA4D4F8474E89E5C9B328317/",
"PDFPassword": "",
"PDFPage": 0,
"PDFPageOffset": 0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "41fdc3",
"Name": "Card",
"Transform": {
"posX": -23.6764469,
"posY": 1.62806642,
"posZ": -0.030018121,
"rotX": 359.9201,
"rotY": 269.9997,
"rotZ": 0.016840037,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Tailside",
"Description": "Barkham. Central.",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 538411,
"SidewaysCard": false,
"CustomDeck": {
"5384": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297425383/1525B71690E98FAD7B4740D7DB1DA5722C094D3A/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297425566/B77EE34309147A71D3711BB06B0EA17E4152EB00/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "44bc00",
"Name": "Card",
"Transform": {
"posX": 12.2500744,
"posY": 1.47921,
"posZ": 3.986336,
"rotX": 359.920135,
"rotY": 269.999969,
"rotZ": 0.016872175,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Hired Dogs",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 537612,
"SidewaysCard": false,
"CustomDeck": {
"5376": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297420931/3655DD579E6DE8FFA2C1E4D84DFDEA3B3957C28C/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "458f2b",
"Name": "Card",
"Transform": {
"posX": -17.1200523,
"posY": 1.61444211,
"posZ": -15.2800264,
"rotX": 359.9201,
"rotY": 269.999878,
"rotZ": 0.0168397669,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Velma's Doghouse",
"Description": "Barkham.",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 538419,
"SidewaysCard": false,
"CustomDeck": {
"5384": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297425383/1525B71690E98FAD7B4740D7DB1DA5722C094D3A/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297425566/B77EE34309147A71D3711BB06B0EA17E4152EB00/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "499088",
"Name": "Custom_Tile",
"Transform": {
"posX": -23.6764069,
"posY": 1.61334455,
"posZ": -3.830024,
"rotX": 0.0168246366,
"rotY": 180.010437,
"rotZ": 0.07994332,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "54092b",
"Name": "Deck",
"Transform": {
"posX": -13.9964075,
"posY": 1.65554821,
"posZ": -0.180126324,
"rotX": 359.9201,
"rotY": 270.000031,
"rotZ": 180.01683,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Meowsks",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": false,
"SidewaysCard": false,
"DeckIDs": [
538518,
538520,
538519,
538517,
538521,
538522,
538523
],
"CustomDeck": {
"5385": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297420931/3655DD579E6DE8FFA2C1E4D84DFDEA3B3957C28C/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "ce69cd",
"Name": "Card",
"Transform": {
"posX": 9.214254,
"posY": 1.48677492,
"posZ": 15.3036976,
"rotX": 359.920135,
"rotY": 269.9538,
"rotZ": 0.0169376042,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Cat of Tindalos",
"Description": "Extradimensional Cat",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 538518,
"SidewaysCard": false,
"CustomDeck": {
"5385": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297420931/3655DD579E6DE8FFA2C1E4D84DFDEA3B3957C28C/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "64feac",
"Name": "Card",
"Transform": {
"posX": 9.403451,
"posY": 1.55860543,
"posZ": 15.5998535,
"rotX": 359.932373,
"rotY": 270.003052,
"rotZ": 0.5721982,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "The Mewling Hunger",
"Description": "Capricious Twins",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 538520,
"SidewaysCard": false,
"CustomDeck": {
"5385": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297420931/3655DD579E6DE8FFA2C1E4D84DFDEA3B3957C28C/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "f4cd65",
"Name": "Card",
"Transform": {
"posX": 9.975287,
"posY": 1.50692475,
"posZ": 16.7364483,
"rotX": 359.9203,
"rotY": 269.999939,
"rotZ": 358.929382,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "The Dweller in the Deep",
"Description": "Don't Ask How",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 538519,
"SidewaysCard": false,
"CustomDeck": {
"5385": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297420931/3655DD579E6DE8FFA2C1E4D84DFDEA3B3957C28C/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "aef204",
"Name": "Card",
"Transform": {
"posX": 9.078951,
"posY": 1.486318,
"posZ": 13.1115875,
"rotX": 359.920135,
"rotY": 269.999817,
"rotZ": 0.0168754384,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "The Hisser in the Dark",
"Description": "The Cat That Came Back",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 538517,
"SidewaysCard": false,
"CustomDeck": {
"5385": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297420931/3655DD579E6DE8FFA2C1E4D84DFDEA3B3957C28C/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "e86d3b",
"Name": "Card",
"Transform": {
"posX": 10.0315723,
"posY": 1.546113,
"posZ": 14.1787777,
"rotX": 359.9348,
"rotY": 269.995361,
"rotZ": 1.75676239,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "GHOST CAT!",
"Description": "Cat That is Also a Ghost",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 538521,
"SidewaysCard": false,
"CustomDeck": {
"5385": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297420931/3655DD579E6DE8FFA2C1E4D84DFDEA3B3957C28C/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "53c2ec",
"Name": "Card",
"Transform": {
"posX": 10.185051,
"posY": 1.62485778,
"posZ": 14.3955078,
"rotX": 359.9442,
"rotY": 269.999573,
"rotZ": 0.38008976,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Cat Riding on a Byakat",
"Description": "It's Exactly What it Sounds Like",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 538522,
"SidewaysCard": false,
"CustomDeck": {
"5385": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297420931/3655DD579E6DE8FFA2C1E4D84DFDEA3B3957C28C/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "94906b",
"Name": "Card",
"Transform": {
"posX": 9.706633,
"posY": 1.617644,
"posZ": 14.15004,
"rotX": 359.94397,
"rotY": 269.998657,
"rotZ": 1.407383,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Pouncer in the Night",
"Description": "Nocturnal Hunting Cat",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 538523,
"SidewaysCard": false,
"CustomDeck": {
"5385": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297420931/3655DD579E6DE8FFA2C1E4D84DFDEA3B3957C28C/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "56fc9d",
"Name": "Card",
"Transform": {
"posX": -30.2241821,
"posY": 1.6394304,
"posZ": 7.569985,
"rotX": 359.9201,
"rotY": 269.999664,
"rotZ": 0.0168401375,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Muttskatonic University",
"Description": "Barkham.",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 538416,
"SidewaysCard": false,
"CustomDeck": {
"5384": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297425383/1525B71690E98FAD7B4740D7DB1DA5722C094D3A/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297425566/B77EE34309147A71D3711BB06B0EA17E4152EB00/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "5b38c6",
"Name": "Custom_Tile",
"Transform": {
"posX": -20.27327,
"posY": 1.60632217,
"posZ": -11.5784016,
"rotX": 359.983154,
"rotY": 0.000216837172,
"rotZ": 359.9201,
"scaleX": 0.8,
"scaleY": 1.0,
"scaleZ": 0.8
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": ""
},
"1": {
"GUID": "335cdd",
"Name": "Custom_Tile",
"Transform": {
"posX": -19.8644981,
"posY": 1.60566175,
"posZ": -11.8849583,
"rotX": 0.0684105456,
"rotY": 134.999573,
"rotZ": 0.04458524,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.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": ""
}
}
},
{
"GUID": "61c4c5",
"Name": "Card",
"Transform": {
"posX": 12.2505617,
"posY": 1.47214222,
"posZ": -20.0136776,
"rotX": 359.920135,
"rotY": 269.999451,
"rotZ": 0.0168743152,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Hair of the Dog",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 537615,
"SidewaysCard": false,
"CustomDeck": {
"5376": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297420931/3655DD579E6DE8FFA2C1E4D84DFDEA3B3957C28C/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "641694",
"Name": "Custom_Tile",
"Transform": {
"posX": -20.0815449,
"posY": 1.60840344,
"posZ": -3.58654165,
"rotX": 0.0684103,
"rotY": 134.999435,
"rotZ": 0.0445856638,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "673295",
"Name": "Card",
"Transform": {
"posX": 12.27652,
"posY": 1.48033154,
"posZ": 7.92000771,
"rotX": 0.0168716554,
"rotY": 179.999939,
"rotZ": 0.07987708,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Kate Winthpup",
"Description": "The Laboratory Labrador",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 538301,
"SidewaysCard": true,
"CustomDeck": {
"5383": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297425383/1525B71690E98FAD7B4740D7DB1DA5722C094D3A/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297425566/B77EE34309147A71D3711BB06B0EA17E4152EB00/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "6b02f8",
"Name": "Custom_Tile",
"Transform": {
"posX": -33.4782867,
"posY": 1.62927163,
"posZ": 3.855532,
"rotX": 359.983154,
"rotY": 6.470383E-05,
"rotZ": 359.9201,
"scaleX": 0.8,
"scaleY": 1.0,
"scaleZ": 0.8
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": ""
},
"1": {
"GUID": "0e6fc2",
"Name": "Custom_Tile",
"Transform": {
"posX": -33.3444481,
"posY": 1.629031,
"posZ": 3.672406,
"rotX": 0.06841481,
"rotY": 134.999954,
"rotZ": 0.0445902273,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.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": ""
}
}
},
{
"GUID": "6ba06e",
"Name": "Custom_Tile",
"Transform": {
"posX": -26.782547,
"posY": 1.6188364,
"posZ": 0.117902637,
"rotX": 0.07989434,
"rotY": 90.00026,
"rotZ": 359.983124,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "6be8b0",
"Name": "Custom_Tile",
"Transform": {
"posX": -23.6764069,
"posY": 1.61108756,
"posZ": -11.51004,
"rotX": 0.0168247949,
"rotY": 180.010422,
"rotZ": 0.07994416,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "6c5b9f",
"Name": "CardCustom",
"Transform": {
"posX": 9.850006,
"posY": 1.47664726,
"posZ": -16.080019,
"rotX": 359.920135,
"rotY": 270.0104,
"rotZ": 0.0168607049,
"scaleX": 0.6,
"scaleY": 1.0,
"scaleZ": 0.6
},
"Nickname": "Duke",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 266700,
"SidewaysCard": false,
"CustomDeck": {
"2667": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297417896/1A29A45D1C5D089DB429F2A8FE10EFA912BB3B30/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297418037/4D5A108EA151DCE8910B962591DA6B256B2C2003/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "6dec76",
"Name": "Card",
"Transform": {
"posX": -36.7731171,
"posY": 1.64632893,
"posZ": -0.0300193243,
"rotX": 359.9201,
"rotY": 269.999756,
"rotZ": 0.0168400053,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Boneyard",
"Description": "Barkham.",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 538415,
"SidewaysCard": false,
"CustomDeck": {
"5384": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297425383/1525B71690E98FAD7B4740D7DB1DA5722C094D3A/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297425566/B77EE34309147A71D3711BB06B0EA17E4152EB00/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "6f663b",
"Name": "Card",
"Transform": {
"posX": -30.2242317,
"posY": 1.63494277,
"posZ": -7.70003,
"rotX": 359.9201,
"rotY": 269.9997,
"rotZ": 0.0168400425,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Slobbertown",
"Description": "Barkham. Central.",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 538413,
"SidewaysCard": false,
"CustomDeck": {
"5384": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297425383/1525B71690E98FAD7B4740D7DB1DA5722C094D3A/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297425566/B77EE34309147A71D3711BB06B0EA17E4152EB00/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "7234af",
"Name": "Custom_Tile",
"Transform": {
"posX": -36.7731667,
"posY": 1.63386714,
"posZ": 3.86005521,
"rotX": 0.0168245044,
"rotY": 180.010574,
"rotZ": 0.0799427256,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "72c444",
"Name": "Card",
"Transform": {
"posX": 12.2745266,
"posY": 1.4732672,
"posZ": -16.08001,
"rotX": 0.0168711934,
"rotY": 179.999817,
"rotZ": 0.0798774,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Duke",
"Description": "The Good Boy",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 538304,
"SidewaysCard": true,
"CustomDeck": {
"5383": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297425383/1525B71690E98FAD7B4740D7DB1DA5722C094D3A/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297425566/B77EE34309147A71D3711BB06B0EA17E4152EB00/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "823edd",
"Name": "CardCustom",
"Transform": {
"posX": 9.850006,
"posY": 1.47900283,
"posZ": -8.080005,
"rotX": 359.920135,
"rotY": 269.999756,
"rotZ": 0.0168759841,
"scaleX": 0.6,
"scaleY": 1.0,
"scaleZ": 0.6
},
"Nickname": "Jacqueline Canine",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 266600,
"SidewaysCard": false,
"CustomDeck": {
"2666": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297417266/EB7D69CDFB4B40C56890C7B787992CA531786A8D/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297417563/86B887FDCC331D93213F3465D22477E66C11C169/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "87f6b9",
"Name": "Card",
"Transform": {
"posX": 12.2501745,
"posY": 1.47449851,
"posZ": -12.0136728,
"rotX": 359.920135,
"rotY": 269.9997,
"rotZ": 0.0168739036,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Old Shoe",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 537614,
"SidewaysCard": false,
"CustomDeck": {
"5376": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297420931/3655DD579E6DE8FFA2C1E4D84DFDEA3B3957C28C/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "8b87b3",
"Name": "Card",
"Transform": {
"posX": -36.7731438,
"posY": 1.64856255,
"posZ": 7.56998062,
"rotX": 359.9201,
"rotY": 269.9997,
"rotZ": 0.0168401,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "St. Mary's Animal Hospital",
"Description": "Barkham.",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 538418,
"SidewaysCard": false,
"CustomDeck": {
"5384": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297425383/1525B71690E98FAD7B4740D7DB1DA5722C094D3A/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297425566/B77EE34309147A71D3711BB06B0EA17E4152EB00/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "937515",
"Name": "Deck",
"Transform": {
"posX": 15.1500025,
"posY": 1.495635,
"posZ": 15.920002,
"rotX": 359.920135,
"rotY": 269.999634,
"rotZ": 0.016874332,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": false,
"SidewaysCard": false,
"DeckIDs": [
537601,
537600
],
"CustomDeck": {
"5376": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297420931/3655DD579E6DE8FFA2C1E4D84DFDEA3B3957C28C/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "29bafb",
"Name": "Card",
"Transform": {
"posX": 16.11447,
"posY": 1.47629988,
"posZ": 12.3989725,
"rotX": 359.920135,
"rotY": 269.999939,
"rotZ": 0.0168736614,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "More Bark Than Bite",
"Description": "Weakness",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 537601,
"SidewaysCard": false,
"CustomDeck": {
"5376": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297420931/3655DD579E6DE8FFA2C1E4D84DFDEA3B3957C28C/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "deea7a",
"Name": "Card",
"Transform": {
"posX": 16.15583,
"posY": 1.50774717,
"posZ": 12.3576326,
"rotX": 359.920135,
"rotY": 270.000122,
"rotZ": 0.0168947745,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Catling Gun",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 537600,
"SidewaysCard": false,
"CustomDeck": {
"5376": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297420931/3655DD579E6DE8FFA2C1E4D84DFDEA3B3957C28C/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "94dde3",
"Name": "Card",
"Transform": {
"posX": 12.2740078,
"posY": 1.47562349,
"posZ": -8.080001,
"rotX": 0.0168717019,
"rotY": 180.000061,
"rotZ": 0.07987632,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Jacqueline Canine",
"Description": "The Paw Reader",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 538303,
"SidewaysCard": true,
"CustomDeck": {
"5383": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297425383/1525B71690E98FAD7B4740D7DB1DA5722C094D3A/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297425566/B77EE34309147A71D3711BB06B0EA17E4152EB00/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "952924",
"Name": "Card",
"Transform": {
"posX": 12.2496786,
"posY": 1.47685492,
"posZ": -4.01367331,
"rotX": 359.920135,
"rotY": 269.999939,
"rotZ": 0.01687301,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Howl of Clyhf'ford",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 537613,
"SidewaysCard": false,
"CustomDeck": {
"5376": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297420931/3655DD579E6DE8FFA2C1E4D84DFDEA3B3957C28C/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "97c745",
"Name": "Custom_Tile",
"Transform": {
"posX": -26.9488583,
"posY": 1.61791956,
"posZ": -3.79106379,
"rotX": 359.983154,
"rotY": 359.992737,
"rotZ": 359.9201,
"scaleX": 0.8,
"scaleY": 1.0,
"scaleZ": 0.8
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": ""
},
"1": {
"GUID": "efa069",
"Name": "Custom_Tile",
"Transform": {
"posX": -27.129076,
"posY": 1.618001,
"posZ": -4.367831,
"rotX": 0.06841063,
"rotY": 134.99968,
"rotZ": 0.04458575,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.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": ""
}
}
},
{
"GUID": "98de77",
"Name": "Card",
"Transform": {
"posX": -23.6765633,
"posY": 1.62358475,
"posZ": -15.280015,
"rotX": 359.9201,
"rotY": 269.999481,
"rotZ": 0.0168401673,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Barkham City Pound",
"Description": "Barkham.",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 538417,
"SidewaysCard": false,
"CustomDeck": {
"5384": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297425383/1525B71690E98FAD7B4740D7DB1DA5722C094D3A/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297425566/B77EE34309147A71D3711BB06B0EA17E4152EB00/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "9991d4",
"Name": "Deck",
"Transform": {
"posX": -2.6884768,
"posY": 1.6143024,
"posZ": -5.048546,
"rotX": 0.0168095548,
"rotY": 180.018661,
"rotZ": 0.0802611038,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Act Deck",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": false,
"SidewaysCard": true,
"DeckIDs": [
538309,
538308
],
"CustomDeck": {
"5383": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297425383/1525B71690E98FAD7B4740D7DB1DA5722C094D3A/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297425566/B77EE34309147A71D3711BB06B0EA17E4152EB00/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "87f443",
"Name": "Card",
"Transform": {
"posX": 2.073631,
"posY": 1.59076977,
"posZ": -4.737377,
"rotX": 0.0188458189,
"rotY": 178.5612,
"rotZ": 0.079806976,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "The Cat and the Mouse",
"Description": "Act 2",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 538309,
"SidewaysCard": true,
"CustomDeck": {
"5383": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297425383/1525B71690E98FAD7B4740D7DB1DA5722C094D3A/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297425566/B77EE34309147A71D3711BB06B0EA17E4152EB00/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "69fb83",
"Name": "Card",
"Transform": {
"posX": 2.05724144,
"posY": 1.62218869,
"posZ": -4.86171532,
"rotX": 0.0168645252,
"rotY": 180.000046,
"rotZ": 0.08031195,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Nine Lives",
"Description": "Act 1",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 538308,
"SidewaysCard": true,
"CustomDeck": {
"5383": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297425383/1525B71690E98FAD7B4740D7DB1DA5722C094D3A/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297425566/B77EE34309147A71D3711BB06B0EA17E4152EB00/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "a3b604",
"Name": "Custom_Tile",
"Transform": {
"posX": -20.2402077,
"posY": 1.60508037,
"posZ": -15.6466408,
"rotX": 0.07989408,
"rotY": 90.00033,
"rotZ": 359.983124,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "a3b9ce",
"Name": "Custom_Tile",
"Transform": {
"posX": -30.2241268,
"posY": 1.62473512,
"posZ": 3.8599782,
"rotX": 0.0168242566,
"rotY": 180.010757,
"rotZ": 0.07993877,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "a45247",
"Name": "Custom_Model_Bag",
"Transform": {
"posX": 1.69638073,
"posY": 1.55831766,
"posZ": 14.2788639,
"rotX": 359.955139,
"rotY": 224.9979,
"rotZ": 0.06867272,
"scaleX": 2.0,
"scaleY": 2.0,
"scaleZ": 2.0
},
"Nickname": "Set-aside",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "https://paste.ee/r/ylQzQ",
"DiffuseURL": "http://i.imgur.com/yVhOLYs.jpg",
"NormalURL": "http://i.imgur.com/f1ogHo6.jpg",
"ColliderURL": "",
"Convex": true,
"MaterialIndex": 1,
"TypeIndex": 6,
"CastShadows": true
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"PhysicsMaterial": {
"StaticFriction": 0.6,
"DynamicFriction": 0.6,
"Bounciness": 0.0,
"FrictionCombine": 0,
"BounceCombine": 0
},
"Rigidbody": {
"Mass": 1.375,
"Drag": 5.0,
"AngularDrag": 5.0,
"UseGravity": true
},
"ContainedObjects": [
{
"GUID": "4afd7f",
"Name": "Card",
"Transform": {
"posX": 1.696503,
"posY": 3.66318917,
"posZ": 14.2788181,
"rotX": 359.94812,
"rotY": 224.998062,
"rotZ": 0.05831184,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Meowlathotep",
"Description": "Meowsenger of the Outer Gods",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 538516,
"SidewaysCard": false,
"CustomDeck": {
"5385": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297420931/3655DD579E6DE8FFA2C1E4D84DFDEA3B3957C28C/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "a6049c",
"Name": "Card",
"Transform": {
"posX": 12.2744122,
"posY": 1.47797883,
"posZ": -0.079997994,
"rotX": 0.0168713983,
"rotY": 180.000076,
"rotZ": 0.0798776448,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "\"Skids\" O'Drool",
"Description": "The Pound Escapee",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 538302,
"SidewaysCard": true,
"CustomDeck": {
"5383": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297425383/1525B71690E98FAD7B4740D7DB1DA5722C094D3A/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297425566/B77EE34309147A71D3711BB06B0EA17E4152EB00/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "aa4b2c",
"Name": "Custom_Tile",
"Transform": {
"posX": -20.45632,
"posY": 1.607703,
"posZ": -7.74870729,
"rotX": 0.07989435,
"rotY": 89.99987,
"rotZ": 359.983124,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "ab992b",
"Name": "Custom_Tile",
"Transform": {
"posX": -27.0462246,
"posY": 1.61578059,
"posZ": -11.5305471,
"rotX": 0.06840821,
"rotY": 134.999573,
"rotZ": 0.0445841923,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "b73127",
"Name": "Custom_Tile",
"Transform": {
"posX": -26.662262,
"posY": 1.61645436,
"posZ": -7.41628265,
"rotX": 0.07989453,
"rotY": 90.0001755,
"rotZ": 359.983124,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "b89737",
"Name": "Custom_Tile",
"Transform": {
"posX": -30.224123,
"posY": 1.62247491,
"posZ": -3.83002019,
"rotX": 0.01682432,
"rotY": 180.01062,
"rotZ": 0.07994255,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "c16b4e",
"Name": "Card",
"Transform": {
"posX": -17.1199989,
"posY": 1.61666977,
"posZ": -7.7000227,
"rotX": 359.9201,
"rotY": 269.999878,
"rotZ": 0.0168400165,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Barkham Asylum",
"Description": "Barkham.",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 538414,
"SidewaysCard": false,
"CustomDeck": {
"5384": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297425383/1525B71690E98FAD7B4740D7DB1DA5722C094D3A/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297425566/B77EE34309147A71D3711BB06B0EA17E4152EB00/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "c94046",
"Name": "Custom_Tile",
"Transform": {
"posX": -33.4688339,
"posY": 1.63035393,
"posZ": 7.58308744,
"rotX": 0.0798942149,
"rotY": 90.00006,
"rotZ": 359.983124,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "ceb7d4",
"Name": "Custom_Tile",
"Transform": {
"posX": -26.8105774,
"posY": 1.62001419,
"posZ": 3.992765,
"rotX": 0.06840844,
"rotY": 134.999435,
"rotZ": 0.0445842259,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "d0163a",
"Name": "Custom_Tile",
"Transform": {
"posX": -33.4151955,
"posY": 1.62686563,
"posZ": -4.031247,
"rotX": 0.0684084445,
"rotY": 134.999329,
"rotZ": 0.0445843078,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "d41278",
"Name": "Card",
"Transform": {
"posX": -3.95589519,
"posY": 1.59753931,
"posZ": -10.4411888,
"rotX": 359.919739,
"rotY": 269.999817,
"rotZ": 0.01683743,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Scenario",
"Description": "The Meddling of Meowlathotep",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 538405,
"SidewaysCard": false,
"CustomDeck": {
"5384": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297425383/1525B71690E98FAD7B4740D7DB1DA5722C094D3A/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297425566/B77EE34309147A71D3711BB06B0EA17E4152EB00/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "e61348",
"Name": "Card",
"Transform": {
"posX": -23.6765118,
"posY": 1.62581241,
"posZ": -7.70001936,
"rotX": 359.9201,
"rotY": 269.999725,
"rotZ": 0.0168399736,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Beasttown",
"Description": "Barkham. Central.",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 538410,
"SidewaysCard": false,
"CustomDeck": {
"5384": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297425383/1525B71690E98FAD7B4740D7DB1DA5722C094D3A/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297425566/B77EE34309147A71D3711BB06B0EA17E4152EB00/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "e87867",
"Name": "Card",
"Transform": {
"posX": -30.2241631,
"posY": 1.63719678,
"posZ": -0.0300179757,
"rotX": 359.9201,
"rotY": 269.999878,
"rotZ": 0.0168398228,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Snoutside",
"Description": "Barkham. Central.",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 538412,
"SidewaysCard": false,
"CustomDeck": {
"5384": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297425383/1525B71690E98FAD7B4740D7DB1DA5722C094D3A/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297425566/B77EE34309147A71D3711BB06B0EA17E4152EB00/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "eab8ff",
"Name": "CardCustom",
"Transform": {
"posX": 9.849999,
"posY": 1.48607,
"posZ": 15.9200058,
"rotX": 359.920135,
"rotY": 269.999329,
"rotZ": 0.0168744549,
"scaleX": 0.6,
"scaleY": 1.0,
"scaleZ": 0.6
},
"Nickname": "Bark Harrigan",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 266300,
"SidewaysCard": false,
"CustomDeck": {
"2663": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297398338/55DA378B7A85123B0DBECF6E612DE294ECFD2D94/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297415428/68FFE0FA245C2F1A72ADEC8EBBA0128B2109E03F/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "eef566",
"Name": "Custom_Tile",
"Transform": {
"posX": -33.445015,
"posY": 1.62811565,
"posZ": 0.08068648,
"rotX": 0.07989446,
"rotY": 90.00026,
"rotZ": 359.983124,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "efb4dd",
"Name": "Deck",
"Transform": {
"posX": 15.1500025,
"posY": 1.488568,
"posZ": -8.080005,
"rotX": 359.920135,
"rotY": 270.0001,
"rotZ": 0.0168730728,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": false,
"SidewaysCard": false,
"DeckIDs": [
537607,
537606
],
"CustomDeck": {
"5376": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297420931/3655DD579E6DE8FFA2C1E4D84DFDEA3B3957C28C/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "1e6cae",
"Name": "Card",
"Transform": {
"posX": 15.8583241,
"posY": 1.47067189,
"posZ": -7.926416,
"rotX": 359.920135,
"rotY": 270.000122,
"rotZ": 0.0168734919,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "No Sense of Space or Time",
"Description": "Weakness",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 537607,
"SidewaysCard": false,
"CustomDeck": {
"5376": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297420931/3655DD579E6DE8FFA2C1E4D84DFDEA3B3957C28C/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "bbf1af",
"Name": "Card",
"Transform": {
"posX": 15.7711954,
"posY": 1.50236475,
"posZ": -7.66155148,
"rotX": 359.920135,
"rotY": 269.9999,
"rotZ": 0.0168895219,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Chew Toy of Nightmares",
"Description": "Nightmares, I Tell You",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 537606,
"SidewaysCard": false,
"CustomDeck": {
"5376": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297420931/3655DD579E6DE8FFA2C1E4D84DFDEA3B3957C28C/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "efb516",
"Name": "Custom_Tile",
"Transform": {
"posX": -17.1198788,
"posY": 1.60194492,
"posZ": -11.5100374,
"rotX": 0.0168238431,
"rotY": 180.010986,
"rotZ": 0.0799435452,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "f5db25",
"Name": "Custom_Tile",
"Transform": {
"posX": -3.6762,
"posY": 1.58233988,
"posZ": -14.5353994,
"rotX": 359.919739,
"rotY": 269.999817,
"rotZ": 0.0168380681,
"scaleX": 2.2,
"scaleY": 1.0,
"scaleZ": 2.2
},
"Nickname": "The Meddling of Meowlathotep",
"Description": "click to set chaos token difficulty",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/965354846165100486/3DC8FCEF364B30758B09EF96AF9458F2B8E64D56/",
"ImageSecondaryURL": "https://i.imgur.com/EcbhVuh.jpg/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "name = 'Meowlathotep'\r\n\r\nfunction onLoad()\r\n Global.call('createSetupButtons', {object=self, key=name})\r\nend\r\n\r\nfunction easyClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='easy'})\r\nend\r\n\r\nfunction normalClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='normal'})\r\nend\r\n\r\nfunction hardClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='hard'})\r\nend\r\n\r\nfunction expertClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='expert'})\r\nend\r\n",
"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": "d861ca",
"Name": "3DText",
"Transform": {
"posX": -17.895153,
"posY": 1.49997568,
"posZ": 53.2670364,
"rotX": 90.0,
"rotY": 90.0,
"rotZ": 0.0,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "TIC",
"colorstate": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"fontSize": 64
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "fb28e1",
"Name": "ScriptingTrigger",
"Transform": {
"posX": -36.96405,
"posY": 1.46782875,
"posZ": 28.4748669,
"rotX": 359.983154,
"rotY": 0.02114531,
"rotZ": 359.9201,
"scaleX": 3.0,
"scaleY": 5.0,
"scaleZ": 8.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "7af2cf",
"Name": "ScriptingTrigger",
"Transform": {
"posX": -56.92562,
"posY": 1.54404616,
"posZ": 4.54451466,
"rotX": 359.920135,
"rotY": 269.97467,
"rotZ": 0.0169066153,
"scaleX": 3.0,
"scaleY": 5.0,
"scaleZ": 8.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "b047f8",
"Name": "ScriptingTrigger",
"Transform": {
"posX": -56.9279,
"posY": 1.5385,
"posZ": -27.7288,
"rotX": 359.920135,
"rotY": 269.988922,
"rotZ": 0.0168871582,
"scaleX": 3.0,
"scaleY": 5.0,
"scaleZ": 8.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "18538f",
"Name": "ScriptingTrigger",
"Transform": {
"posX": -13.7382,
"posY": 1.4812,
"posZ": -28.5114,
"rotX": 0.0168873835,
"rotY": 179.9888,
"rotZ": 0.07987307,
"scaleX": 3.0,
"scaleY": 5.0,
"scaleZ": 8.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "1fc4e0",
"Name": "Custom_Model_Bag",
"Transform": {
"posX": 39.0007324,
"posY": 1.4296267,
"posZ": -29.4424515,
"rotX": 359.916443,
"rotY": 285.003784,
"rotZ": -0.004861692,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Taboo Investigators/Signatures",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.9999998,
"g": 0.992160738,
"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/raw.php?i=9a2hXxp5",
"DiffuseURL": "http://i.imgur.com/e2u99eM.jpg",
"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": "754b0a",
"Name": "Card",
"Transform": {
"posX": 21.4309425,
"posY": 2.21608329,
"posZ": -71.8295059,
"rotX": 0.0168676451,
"rotY": 180.002991,
"rotZ": 0.07987845,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Mandy Thompson (Taboo)",
"Description": "The Researcher",
"GMNotes": "{\n \"id\": \"06002-t\",\n \"type\": \"Investigator\",\n \"class\": \"Seeker\",\n \"traits\": \"Assistant. Scholar.\",\n \"willpowerIcons\": 3,\n \"intellectIcons\": 5,\n \"combatIcons\": 1,\n \"agilityIcons\": 3,\n \"cycle\": \"The Dream-Eaters\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 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": 558301,
"SidewaysCard": true,
"CustomDeck": {
"5583": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1802024937476550198/99699EB95501C488B55445D304315BF231CB63F7/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1802024937476550359/A275A59476B12F2C38F9863D8AB889DCB382D1D1/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "55be9c",
"Name": "Card",
"Transform": {
"posX": 31.0175724,
"posY": 2.2208066,
"posZ": -70.9343,
"rotX": 359.920135,
"rotY": 269.98877,
"rotZ": 0.016888788,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Crisis of Identity (Taboo)",
"Description": "Weakness",
"GMNotes": "{\n \"id\": \"03019-t\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Madness.\",\n \"permanent\": false,\n \"weakness\": true,\n \"cycle\": \"The Path to Carcosa\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 558209,
"SidewaysCard": false,
"CustomDeck": {
"5582": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1802024937476547660/8E52B0347047884A4B88B0A66190525BEF985337/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 5,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "475460",
"Name": "Card",
"Transform": {
"posX": 29.398262,
"posY": 2.22052741,
"posZ": -67.58035,
"rotX": 0.0168758947,
"rotY": 179.99675,
"rotZ": 0.07987556,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Lola Hayes (Taboo)",
"Description": "The Actress",
"GMNotes": "{\n \"id\": \"03006-t\",\n \"type\": \"Investigator\",\n \"class\": \"Neutral\",\n \"traits\": \"Performer.\",\n \"willpowerIcons\": 3,\n \"intellectIcons\": 3,\n \"combatIcons\": 3,\n \"agilityIcons\": 3,\n \"cycle\": \"The Path to Carcosa\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 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": 558300,
"SidewaysCard": true,
"CustomDeck": {
"5583": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1802024937476550198/99699EB95501C488B55445D304315BF231CB63F7/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1802024937476550359/A275A59476B12F2C38F9863D8AB889DCB382D1D1/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "978a38",
"Name": "Card",
"Transform": {
"posX": 38.6388626,
"posY": 4.080927,
"posZ": -29.8174648,
"rotX": 0.0169156119,
"rotY": 179.989258,
"rotZ": 0.0614144467,
"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 \"willpowerIcons\": 3,\n \"intellectIcons\": 4,\n \"combatIcons\": 2,\n \"agilityIcons\": 3,\n \"cycle\": \"The Dunwich Legacy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 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": "766620",
"Name": "Custom_Token",
"Transform": {
"posX": 4.1944,
"posY": 1.6207,
"posZ": -16.5964,
"rotX": 359.9201,
"rotY": 270.0019,
"rotZ": 0.016870508,
"scaleX": 0.4,
"scaleY": 1.0,
"scaleZ": 0.4
},
"Nickname": "Chaos Bag Stat Tracker",
"Description": "Only tracks tokens that actually hit the playmat.\n\nAll credit goes to TadGH!",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.8745098,
"g": 0.8745098,
"b": 0.8745098
},
"Tags": [
"CleanUpHelper_ignore"
],
"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,
"CustomImage": {
"ImageURL": "https://i.imgur.com/SBE8GR5.png",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 5.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "function onload(saved_data)\r\n light_mode = false\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 end\r\n createAll()\r\nend\r\n\r\n-- functions delegated to Global\r\nfunction printStats(object, player, isRightClick)\r\n -- local toPosition = self.positionToWorld(DRAWN_CHAOS_TOKEN_OFFSET)\r\n if isRightClick then\r\n Global.call(\"resetStats\")\r\n else\r\n Global.call(\"printStats\")\r\n end\r\nend\r\n\r\nfunction updateSave()\r\n local data_to_save = {light_mode }\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 self.createButton({\r\n click_function=\"printStats\",\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 tooltip = \"Left Click to print stats. Right Click to reset them.\",\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 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 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 setTooltips()\r\n self.editInput({\r\n index = 0,\r\n value = self.getName(),\r\n tooltip = \"Left click to show stats. Right click to reset them.\"\r\n })\r\nend\r\n\r\nfunction keepSample(_obj, _string, value)\r\n reloadAll()\r\nend\r\n\r\nfunction onDestroy()\r\n if timerID and type(timerID) == 'object' then\r\n Timer.destroy(timerID)\r\n end\r\nend",
"LuaScriptState": "[true,0]",
"XmlUI": ""
},
{
"GUID": "afa06b",
"Name": "Custom_Model_Bag",
"Transform": {
"posX": 2.8424,
"posY": 1.6442,
"posZ": -11.2387,
"rotX": 359.9552,
"rotY": 224.9915,
"rotZ": 0.06869994,
"scaleX": 0.7,
"scaleY": 0.7,
"scaleZ": 0.7
},
"Nickname": "Bless tokens",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"displacement_excluded"
],
"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": "https://pastebin.com/raw/ALrYhQGb",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/1655601092778623873/C9EF4B44CE708DFC5A804FF2912C9F9B47323287/",
"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": "b2b7be",
"Name": "Custom_Tile",
"Transform": {
"posX": -1.46541786,
"posY": 1.687331,
"posZ": -26.9304237,
"rotX": 0.07989853,
"rotY": 90.0002441,
"rotZ": 359.983124,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.374564439,
"g": 0.328594148,
"b": 0.04894127
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1655601092778627699/339FB716CB25CA6025C338F13AFDFD9AC6FA8356/",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "b2b7be",
"Name": "Custom_Tile",
"Transform": {
"posX": -1.4654665,
"posY": 1.69899857,
"posZ": -26.9304142,
"rotX": 0.0798976943,
"rotY": 90.000206,
"rotZ": 359.983124,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.3745644,
"g": 0.328594118,
"b": 0.0489412472
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1655601092778627699/339FB716CB25CA6025C338F13AFDFD9AC6FA8356/",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "09aa04",
"Name": "Custom_Tile",
"Transform": {
"posX": -1.46541691,
"posY": 1.6937958,
"posZ": -26.9304237,
"rotX": 0.07989759,
"rotY": 90.0002,
"rotZ": 359.983124,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.3745644,
"g": 0.328594118,
"b": 0.0489412472
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1655601092778627699/339FB716CB25CA6025C338F13AFDFD9AC6FA8356/",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "90e57c",
"Name": "Custom_Tile",
"Transform": {
"posX": -1.465471,
"posY": 1.70643628,
"posZ": -26.9304123,
"rotX": 0.07989789,
"rotY": 90.0001755,
"rotZ": 359.983124,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.3745644,
"g": 0.328594118,
"b": 0.0489412472
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1655601092778627699/339FB716CB25CA6025C338F13AFDFD9AC6FA8356/",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "5ca99d",
"Name": "Custom_Tile",
"Transform": {
"posX": -1.4654696,
"posY": 1.70909178,
"posZ": -26.9304123,
"rotX": 0.07989782,
"rotY": 90.0002,
"rotZ": 359.983124,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.3745644,
"g": 0.328594118,
"b": 0.0489412472
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1655601092778627699/339FB716CB25CA6025C338F13AFDFD9AC6FA8356/",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "b2b7be",
"Name": "Custom_Tile",
"Transform": {
"posX": -1.46541965,
"posY": 1.70304728,
"posZ": -26.9304237,
"rotX": 0.07989799,
"rotY": 90.0001755,
"rotZ": 359.983124,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.3745644,
"g": 0.328594118,
"b": 0.0489412472
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1655601092778627699/339FB716CB25CA6025C338F13AFDFD9AC6FA8356/",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "bc1c12",
"Name": "Custom_Tile",
"Transform": {
"posX": -1.46531808,
"posY": 1.68772411,
"posZ": -26.9304447,
"rotX": 0.07989759,
"rotY": 90.0002,
"rotZ": 359.983124,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.3745644,
"g": 0.328594118,
"b": 0.0489412472
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1655601092778627699/339FB716CB25CA6025C338F13AFDFD9AC6FA8356/",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "e9c4f9",
"Name": "Custom_Tile",
"Transform": {
"posX": -1.46535766,
"posY": 1.69699526,
"posZ": -26.9304371,
"rotX": 0.07989784,
"rotY": 90.0002,
"rotZ": 359.983124,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.3745644,
"g": 0.328594118,
"b": 0.0489412472
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1655601092778627699/339FB716CB25CA6025C338F13AFDFD9AC6FA8356/",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "eb0b16",
"Name": "Custom_Tile",
"Transform": {
"posX": -46.0977478,
"posY": 1.80355918,
"posZ": 4.16565228,
"rotX": 0.215706214,
"rotY": 89.99969,
"rotZ": 359.983826,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.374564,
"g": 0.3285937,
"b": 0.04894094
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1655601092778627699/339FB716CB25CA6025C338F13AFDFD9AC6FA8356/",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "eb0b16",
"Name": "Custom_Tile",
"Transform": {
"posX": -45.9343,
"posY": 1.81368482,
"posZ": 4.07616043,
"rotX": 0.0343346372,
"rotY": 90.0006943,
"rotZ": 359.976624,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.374563962,
"g": 0.328593671,
"b": 0.04894092
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1655601092778627699/339FB716CB25CA6025C338F13AFDFD9AC6FA8356/",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "bd0253",
"Name": "Custom_Model_Bag",
"Transform": {
"posX": 4.0526,
"posY": 1.6421,
"posZ": -12.449,
"rotX": 359.9552,
"rotY": 224.9883,
"rotZ": 0.0687,
"scaleX": 0.7,
"scaleY": 0.7,
"scaleZ": 0.7
},
"Nickname": "Curse tokens",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"displacement_excluded"
],
"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": "https://pastebin.com/raw/ALrYhQGb",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/1655601092778633181/7A00AF905BCD6EB5D866F2107CECBC0A49E360F7/",
"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": "678891",
"Name": "Custom_Tile",
"Transform": {
"posX": 4.011554,
"posY": 1.58862031,
"posZ": -21.6222343,
"rotX": 359.919952,
"rotY": 270.02356,
"rotZ": 0.0166911129,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.270718157,
"g": 0.00386983459,
"b": 0.4442508
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1655601092778636039/2A25BD38E8C44701D80DD96BF0121DA21843672E/",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "678891",
"Name": "Custom_Tile",
"Transform": {
"posX": 4.232884,
"posY": 1.60683727,
"posZ": -21.5773048,
"rotX": 359.9201,
"rotY": 270.02356,
"rotZ": 0.0168563928,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.270718127,
"g": 0.00386983459,
"b": 0.444250762
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1655601092778636039/2A25BD38E8C44701D80DD96BF0121DA21843672E/",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "adec97",
"Name": "Custom_Tile",
"Transform": {
"posX": 4.232884,
"posY": 1.60683739,
"posZ": -21.5773048,
"rotX": 359.9201,
"rotY": 270.023529,
"rotZ": 0.0168480966,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.270718127,
"g": 0.00386983459,
"b": 0.444250762
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1655601092778636039/2A25BD38E8C44701D80DD96BF0121DA21843672E/",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "678891",
"Name": "Custom_Tile",
"Transform": {
"posX": 4.232884,
"posY": 1.60683739,
"posZ": -21.5773048,
"rotX": 359.9201,
"rotY": 270.023529,
"rotZ": 0.0168480966,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.270718127,
"g": 0.00386983459,
"b": 0.444250762
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1655601092778636039/2A25BD38E8C44701D80DD96BF0121DA21843672E/",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "f82dd9",
"Name": "Custom_Tile",
"Transform": {
"posX": 4.232884,
"posY": 1.60683739,
"posZ": -21.5773048,
"rotX": 359.9201,
"rotY": 270.023529,
"rotZ": 0.0168480966,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.270718127,
"g": 0.00386983459,
"b": 0.444250762
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1655601092778636039/2A25BD38E8C44701D80DD96BF0121DA21843672E/",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "678891",
"Name": "Custom_Tile",
"Transform": {
"posX": 4.232884,
"posY": 1.60683739,
"posZ": -21.5773048,
"rotX": 359.9201,
"rotY": 270.023529,
"rotZ": 0.0168480966,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.270718127,
"g": 0.00386983459,
"b": 0.444250762
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1655601092778636039/2A25BD38E8C44701D80DD96BF0121DA21843672E/",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "5b224c",
"Name": "Custom_Tile",
"Transform": {
"posX": 4.232884,
"posY": 1.60683739,
"posZ": -21.5773048,
"rotX": 359.9201,
"rotY": 270.023529,
"rotZ": 0.0168480966,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.270718127,
"g": 0.00386983459,
"b": 0.444250762
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1655601092778636039/2A25BD38E8C44701D80DD96BF0121DA21843672E/",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "678891",
"Name": "Custom_Tile",
"Transform": {
"posX": 4.232884,
"posY": 1.60683739,
"posZ": -21.5773048,
"rotX": 359.9201,
"rotY": 270.023529,
"rotZ": 0.0168483071,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.270718127,
"g": 0.00386983459,
"b": 0.444250762
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1655601092778636039/2A25BD38E8C44701D80DD96BF0121DA21843672E/",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "b92c2b",
"Name": "Custom_Tile",
"Transform": {
"posX": -45.49283,
"posY": 1.79070842,
"posZ": -3.88609886,
"rotX": 359.920135,
"rotY": 270.006226,
"rotZ": 0.0169940516,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.270717919,
"g": 0.00386983459,
"b": 0.444250584
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1655601092778636039/2A25BD38E8C44701D80DD96BF0121DA21843672E/",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "678891",
"Name": "Custom_Tile",
"Transform": {
"posX": -46.206,
"posY": 1.78870928,
"posZ": -3.48321939,
"rotX": 359.932953,
"rotY": 269.999725,
"rotZ": 0.0141339293,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.270717859,
"g": 0.00386983459,
"b": 0.444250524
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1655601092778636039/2A25BD38E8C44701D80DD96BF0121DA21843672E/",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "0a5a29",
"Name": "Custom_Tile",
"Transform": {
"posX": -6.867567,
"posY": 1.58626413,
"posZ": -16.3936825,
"rotX": 0.08026609,
"rotY": 89.9986954,
"rotZ": 359.983154,
"scaleX": 0.748509049,
"scaleY": 1.0,
"scaleZ": 0.748509049
},
"Nickname": "Whimsical's Token Remover",
"Description": "See Notebook for details.",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"CleanUpHelper_ignore"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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": "36b4ee",
"Name": "Checker_white",
"Transform": {
"posX": 77.1586761,
"posY": 1.29656661,
"posZ": 6.95194674,
"rotX": 359.989868,
"rotY": 270.014435,
"rotZ": 179.984467,
"scaleX": 0.250000417,
"scaleY": 0.250000417,
"scaleZ": 0.250000417
},
"Nickname": "Token Spawner",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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-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": 29.0908756,
"posY": 1.83022392,
"posZ": 14.4999647,
"rotX": 359.9201,
"rotY": 270.0009,
"rotZ": 0.0168722011,
"scaleX": 1.76,
"scaleY": 0.11,
"scaleZ": 1.49
},
"Nickname": "Fan-Made Scenarios/Campaigns/Miscellany",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.9999998,
"g": 0.992168248,
"b": 0.9999998
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"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://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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": 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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": 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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "2e32b1",
"Name": "Tablet",
"Transform": {
"posX": 29.08971,
"posY": 2.50724626,
"posZ": 14.3014927,
"rotX": 359.9185,
"rotY": 269.999969,
"rotZ": 0.01648442,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Fan Content Index",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"Tablet": {
"PageURL": "https://www.google.com/"
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "5db60c",
"Name": "Custom_Model_Bag",
"Transform": {
"posX": 29.09023,
"posY": 2.23212361,
"posZ": 14.5000334,
"rotX": 359.93277,
"rotY": 269.999969,
"rotZ": 0.0140865147,
"scaleX": 0.5,
"scaleY": 0.07,
"scaleZ": 0.5
},
"Nickname": "Fan-Made Standalone Scenarios",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"MaterialIndex": -1,
"MeshIndex": -1,
"CustomMesh": {
"MeshURL": "https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/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": "965030",
"Name": "Custom_Model",
"Transform": {
"posX": -55.35833,
"posY": 6.29866743,
"posZ": -85.71221,
"rotX": 359.920135,
"rotY": 269.999939,
"rotZ": 0.0168737713,
"scaleX": 2.21,
"scaleY": 0.46,
"scaleZ": 2.42
},
"Nickname": "The Undying",
"Description": "",
"GMNotes": "fancreations/scenario_the_undying.json",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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/1824531491067739120/4AD2D51DAC6215F2866BB2AD15D47109B432B999/",
"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\":{\"0fd978\":{\"lock\":false,\"pos\":{\"x\":-30.2235,\"y\":1.6225,\"z\":-3.83},\"rot\":{\"x\":0.0168,\"y\":180.0082,\"z\":0.0799}},\"12a3b2\":{\"lock\":false,\"pos\":{\"x\":-30.224,\"y\":1.6349,\"z\":-7.7002},\"rot\":{\"x\":359.9201,\"y\":270,\"z\":180.0168}},\"14b5db\":{\"lock\":false,\"pos\":{\"x\":-30.2242,\"y\":1.6394,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":270.0001,\"z\":180.0168}},\"15cbab\":{\"lock\":false,\"pos\":{\"x\":-33.7068,\"y\":1.6284,\"z\":-0.1776},\"rot\":{\"x\":359.9201,\"y\":270,\"z\":0.0169}},\"162580\":{\"lock\":false,\"pos\":{\"x\":-6.3892,\"y\":1.7348,\"z\":-20.6362},\"rot\":{\"x\":359.9201,\"y\":269.9998,\"z\":180.0168}},\"297f5e\":{\"lock\":false,\"pos\":{\"x\":-5.4446,\"y\":1.734,\"z\":-18.9178},\"rot\":{\"x\":359.9201,\"y\":270.0124,\"z\":180.0168}},\"30f698\":{\"lock\":false,\"pos\":{\"x\":-33.2362,\"y\":1.6256,\"z\":-7.634},\"rot\":{\"x\":359.9201,\"y\":270,\"z\":0.0169}},\"458680\":{\"lock\":false,\"pos\":{\"x\":-26.813,\"y\":1.621,\"z\":7.4371},\"rot\":{\"x\":359.9201,\"y\":269.9995,\"z\":0.0169}},\"4feab4\":{\"lock\":false,\"pos\":{\"x\":-7.4591,\"y\":1.5537,\"z\":-18.8829},\"rot\":{\"x\":359.9201,\"y\":269.9981,\"z\":180.0169}},\"5138ed\":{\"lock\":false,\"pos\":{\"x\":-2.7247,\"y\":1.6208,\"z\":0.3733},\"rot\":{\"x\":359.9197,\"y\":270.0001,\"z\":0.0168}},\"520fe8\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6303,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":270.0001,\"z\":180.0168}},\"56ddd0\":{\"lock\":false,\"pos\":{\"x\":-3.928,\"y\":1.6818,\"z\":5.7571},\"rot\":{\"x\":359.9197,\"y\":269.9999,\"z\":180.0168}},\"5a7b85\":{\"lock\":false,\"pos\":{\"x\":-3.9559,\"y\":1.5975,\"z\":-10.4412},\"rot\":{\"x\":359.9197,\"y\":269.9999,\"z\":0.0168}},\"5b38c6\":{\"lock\":false,\"pos\":{\"x\":-33.5265,\"y\":1.6271,\"z\":-3.896},\"rot\":{\"x\":359.9201,\"y\":269.9997,\"z\":0.0168}},\"67baab\":{\"lock\":false,\"pos\":{\"x\":-20.3626,\"y\":1.6121,\"z\":7.635},\"rot\":{\"x\":359.9201,\"y\":270.0002,\"z\":0.0169}},\"69ff3d\":{\"lock\":false,\"pos\":{\"x\":-5.603,\"y\":1.4978,\"z\":28.7767},\"rot\":{\"x\":359.9201,\"y\":270,\"z\":0.0169}},\"750893\":{\"lock\":false,\"pos\":{\"x\":-10.4844,\"y\":1.6395,\"z\":11.0528},\"rot\":{\"x\":359.9201,\"y\":270,\"z\":0.0168}},\"7a167a\":{\"lock\":false,\"pos\":{\"x\":1.7082,\"y\":1.5583,\"z\":14.2764},\"rot\":{\"x\":359.9551,\"y\":224.9979,\"z\":0.0687}},\"8112ff\":{\"lock\":false,\"pos\":{\"x\":-3.8055,\"y\":1.5825,\"z\":-14.7204},\"rot\":{\"x\":359.9197,\"y\":270.0176,\"z\":0.0168}},\"88570c\":{\"lock\":false,\"pos\":{\"x\":-36.7732,\"y\":1.6463,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":270.0001,\"z\":180.0168}},\"930283\":{\"lock\":false,\"pos\":{\"x\":-36.7733,\"y\":1.6441,\"z\":-7.7},\"rot\":{\"x\":359.9201,\"y\":270,\"z\":180.0168}},\"95ce6e\":{\"lock\":false,\"pos\":{\"x\":-23.6758,\"y\":1.6156,\"z\":3.86},\"rot\":{\"x\":0.0168,\"y\":180.0081,\"z\":0.0799}},\"a31359\":{\"lock\":false,\"pos\":{\"x\":-27.0588,\"y\":1.6192,\"z\":-0.1229},\"rot\":{\"x\":359.9201,\"y\":269.9998,\"z\":0.0169}},\"b1bd8f\":{\"lock\":false,\"pos\":{\"x\":-30.2242,\"y\":1.6372,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":270,\"z\":180.0168}},\"bca4a0\":{\"lock\":false,\"pos\":{\"x\":-2.6885,\"y\":1.6191,\"z\":-5.0486},\"rot\":{\"x\":359.9197,\"y\":269.9999,\"z\":0.0168}},\"c61150\":{\"lock\":false,\"pos\":{\"x\":-36.7725,\"y\":1.6316,\"z\":-3.83},\"rot\":{\"x\":0.0168,\"y\":180.0071,\"z\":0.0799}},\"cbc8fb\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6212,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":270.0001,\"z\":180.0168}},\"d54c36\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6281,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":180.0168}},\"dc3b69\":{\"lock\":false,\"pos\":{\"x\":-10.7851,\"y\":1.6484,\"z\":7.1934},\"rot\":{\"x\":359.9201,\"y\":270.0001,\"z\":180.0168}},\"f514f5\":{\"lock\":false,\"pos\":{\"x\":-10.4502,\"y\":1.6983,\"z\":14.5899},\"rot\":{\"x\":359.9201,\"y\":270.0004,\"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": "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",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "0500f1",
"Name": "Custom_Model",
"Transform": {
"posX": 7.66930532,
"posY": 3.370377,
"posZ": -40.85516,
"rotX": 359.920135,
"rotY": 270.003479,
"rotZ": 0.0168696139,
"scaleX": 2.21,
"scaleY": 0.46,
"scaleZ": 2.42
},
"Nickname": "The Legend of Sleepy Hollow",
"Description": "",
"GMNotes": "fancreations/scenario_sleepy_hollow.json",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "42bdd3",
"Name": "Custom_Model",
"Transform": {
"posX": 15.1132851,
"posY": 3.1834023,
"posZ": -58.6663,
"rotX": 359.920135,
"rotY": 269.9828,
"rotZ": 0.0169882,
"scaleX": 2.21,
"scaleY": 0.46,
"scaleZ": 2.42
},
"Nickname": "The Fall of the House of Usher",
"Description": "",
"GMNotes": "fancreations/scenario_house_of_usher.json",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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/1771580824970152646/1C2D909AF92814C33B43D22F0EE1D6B8FD260998/",
"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\":{\"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": "",
"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",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "ec74df",
"Name": "Custom_Model",
"Transform": {
"posX": 28.565382,
"posY": 2.713197,
"posZ": -13.9864864,
"rotX": 359.9201,
"rotY": 270.016541,
"rotZ": 356.9709,
"scaleX": 2.21,
"scaleY": 0.46,
"scaleZ": 2.42
},
"Nickname": "Cosmic Pantheon",
"Description": "Mint Tea Fan & Hauke",
"GMNotes": "fancreations/scenario_cosmic_pantheon.json",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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/1844797993644656426/EC19A65BD3119D5FA229F502D65D1D8DAA9E0ECB/",
"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\":{\"026884\":{\"lock\":false,\"pos\":{\"x\":-36.7733,\"y\":1.6441,\"z\":-7.7},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":180.0168}},\"0916a7\":{\"lock\":false,\"pos\":{\"x\":-39.8587,\"y\":1.6557,\"z\":17.3168},\"rot\":{\"x\":359.9201,\"y\":270.0876,\"z\":0.0167}},\"102eed\":{\"lock\":false,\"pos\":{\"x\":-43.3701,\"y\":1.6533,\"z\":-7.7},\"rot\":{\"x\":359.9201,\"y\":270.0001,\"z\":180.0168}},\"14757f\":{\"lock\":false,\"pos\":{\"x\":-40.1617,\"y\":1.6341,\"z\":-11.4772},\"rot\":{\"x\":0.0684,\"y\":134.9983,\"z\":0.0446}},\"1dae6f\":{\"lock\":false,\"pos\":{\"x\":-17.1199,\"y\":1.6201,\"z\":3.8604},\"rot\":{\"x\":359.9201,\"y\":270.0001,\"z\":180.0168}},\"20761e\":{\"lock\":false,\"pos\":{\"x\":-20.3595,\"y\":1.6092,\"z\":-2.1798},\"rot\":{\"x\":0.0682,\"y\":135.2074,\"z\":0.0448}},\"224719\":{\"lock\":false,\"pos\":{\"x\":-40.2157,\"y\":1.646,\"z\":-17.5792},\"rot\":{\"x\":359.9201,\"y\":270.0246,\"z\":0.0168}},\"24ec75\":{\"lock\":false,\"pos\":{\"x\":-33.864,\"y\":1.6276,\"z\":-3.5193},\"rot\":{\"x\":359.9554,\"y\":225.0005,\"z\":0.0684}},\"26faf8\":{\"lock\":false,\"pos\":{\"x\":-3.9279,\"y\":1.7011,\"z\":5.7564},\"rot\":{\"x\":359.9197,\"y\":269.9695,\"z\":180.0169}},\"324649\":{\"lock\":false,\"pos\":{\"x\":-30.2243,\"y\":1.6372,\"z\":-0.0298},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":180.0168}},\"35d78a\":{\"lock\":false,\"pos\":{\"x\":-0.2631,\"y\":1.618,\"z\":2.7825},\"rot\":{\"x\":359.9197,\"y\":270.0023,\"z\":0.0168}},\"387a8c\":{\"lock\":false,\"pos\":{\"x\":-40.1074,\"y\":1.6351,\"z\":-7.7231},\"rot\":{\"x\":359.9201,\"y\":269.9951,\"z\":0.0169}},\"398981\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6053,\"z\":-0.03},\"rot\":{\"x\":0.0168,\"y\":179.9998,\"z\":0.0799}},\"402dc8\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6178,\"z\":-3.83},\"rot\":{\"x\":359.9201,\"y\":269.9997,\"z\":180.0168}},\"4b54bb\":{\"lock\":false,\"pos\":{\"x\":-36.8624,\"y\":1.6647,\"z\":15.2401},\"rot\":{\"x\":359.4041,\"y\":270.0047,\"z\":180.0169}},\"4bf4a2\":{\"lock\":false,\"pos\":{\"x\":-5.2724,\"y\":1.6236,\"z\":-2.2218},\"rot\":{\"x\":359.9197,\"y\":269.9948,\"z\":0.0168}},\"4cb4c7\":{\"lock\":false,\"pos\":{\"x\":-40.1502,\"y\":1.6397,\"z\":7.5151},\"rot\":{\"x\":359.9201,\"y\":269.9831,\"z\":0.0169}},\"551500\":{\"lock\":false,\"pos\":{\"x\":-8.3024,\"y\":1.4859,\"z\":-24.3237},\"rot\":{\"x\":359.9201,\"y\":270.0117,\"z\":0.0169}},\"56ef18\":{\"lock\":false,\"pos\":{\"x\":-36.8813,\"y\":1.6487,\"z\":7.614},\"rot\":{\"x\":359.9201,\"y\":270.0022,\"z\":180.0168}},\"5c3eef\":{\"lock\":false,\"pos\":{\"x\":-33.8928,\"y\":1.6297,\"z\":3.4873},\"rot\":{\"x\":0.0684,\"y\":135.0003,\"z\":0.0446}},\"5e8934\":{\"lock\":false,\"pos\":{\"x\":35.6586,\"y\":1.4707,\"z\":-26.3579},\"rot\":{\"x\":0.0169,\"y\":180.0107,\"z\":0.0819}},\"63341d\":{\"lock\":false,\"pos\":{\"x\":-2.6886,\"y\":1.6191,\"z\":-5.0485},\"rot\":{\"x\":0.0168,\"y\":180.0319,\"z\":0.0803}},\"646a0f\":{\"lock\":false,\"pos\":{\"x\":-43.3701,\"y\":1.6578,\"z\":7.5696},\"rot\":{\"x\":359.9201,\"y\":270.0004,\"z\":180.0168}},\"7234af\":{\"lock\":false,\"pos\":{\"x\":-20.3778,\"y\":1.6105,\"z\":2.2238},\"rot\":{\"x\":359.9554,\"y\":224.9946,\"z\":0.0684}},\"76ff17\":{\"lock\":false,\"pos\":{\"x\":-36.7731,\"y\":1.6293,\"z\":-11.51},\"rot\":{\"x\":0.0168,\"y\":180.0158,\"z\":0.0799}},\"77f364\":{\"lock\":false,\"pos\":{\"x\":-13.9762,\"y\":1.6128,\"z\":-5.8857},\"rot\":{\"x\":359.9201,\"y\":269.9994,\"z\":0.0168}},\"7de8a9\":{\"lock\":false,\"pos\":{\"x\":1.6792,\"y\":1.5584,\"z\":14.3254},\"rot\":{\"x\":359.9533,\"y\":226.4892,\"z\":0.0675}},\"81e9dd\":{\"lock\":false,\"pos\":{\"x\":-7.1624,\"y\":1.5881,\"z\":-11.4125},\"rot\":{\"x\":359.9197,\"y\":270.0004,\"z\":0.0168}},\"863e58\":{\"lock\":false,\"pos\":{\"x\":-36.7733,\"y\":1.6418,\"z\":-15.28},\"rot\":{\"x\":359.9201,\"y\":270.0019,\"z\":180.0168}},\"91d08c\":{\"lock\":false,\"pos\":{\"x\":-7.1624,\"y\":1.5876,\"z\":-13.1218},\"rot\":{\"x\":359.9197,\"y\":270.0006,\"z\":0.0168}},\"a2345b\":{\"lock\":false,\"pos\":{\"x\":-3.3388,\"y\":1.5818,\"z\":-14.7675},\"rot\":{\"x\":359.9197,\"y\":270.0251,\"z\":0.0168}},\"a78ab1\":{\"lock\":false,\"pos\":{\"x\":-36.7731,\"y\":1.6361,\"z\":11.46},\"rot\":{\"x\":0.0168,\"y\":180.0149,\"z\":0.0799}},\"aa4062\":{\"lock\":false,\"pos\":{\"x\":-3.956,\"y\":1.5975,\"z\":-10.4414},\"rot\":{\"x\":359.9197,\"y\":269.9997,\"z\":0.0168}},\"ac5f52\":{\"lock\":false,\"pos\":{\"x\":-8.2215,\"y\":1.4965,\"z\":-34.5062},\"rot\":{\"x\":0,\"y\":270.0227,\"z\":359.9601}},\"b4efbf\":{\"lock\":false,\"pos\":{\"x\":-23.6766,\"y\":1.6281,\"z\":-0.0298},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":180.0168}},\"b827a6\":{\"lock\":false,\"pos\":{\"x\":-7.1624,\"y\":1.5871,\"z\":-14.8311},\"rot\":{\"x\":359.9197,\"y\":270.0017,\"z\":0.0168}},\"b85392\":{\"lock\":false,\"pos\":{\"x\":-26.9335,\"y\":1.619,\"z\":0.0161},\"rot\":{\"x\":359.9201,\"y\":269.9741,\"z\":0.0169}},\"cc8bbb\":{\"lock\":false,\"pos\":{\"x\":-7.1624,\"y\":1.5886,\"z\":-9.7032},\"rot\":{\"x\":359.9197,\"y\":269.9966,\"z\":0.0168}},\"ea718b\":{\"lock\":false,\"pos\":{\"x\":-36.7733,\"y\":1.6508,\"z\":15.1901},\"rot\":{\"x\":359.9201,\"y\":269.9996,\"z\":180.0168}},\"eb234e\":{\"lock\":false,\"pos\":{\"x\":-36.7732,\"y\":1.6486,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":180.0168}},\"eb3956\":{\"lock\":false,\"pos\":{\"x\":-2.7247,\"y\":1.6208,\"z\":0.3732},\"rot\":{\"x\":359.9197,\"y\":270.0182,\"z\":0.0168}},\"efe16f\":{\"lock\":false,\"pos\":{\"x\":-39.9553,\"y\":1.6405,\"z\":11.3031},\"rot\":{\"x\":359.9554,\"y\":225.0038,\"z\":0.0684}}}}",
"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",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "f1bfa2",
"Name": "Custom_Model",
"Transform": {
"posX": 59.7624931,
"posY": 3.39838481,
"posZ": -68.9404,
"rotX": 359.920135,
"rotY": 270.0003,
"rotZ": 0.016873762,
"scaleX": 2.21,
"scaleY": 0.46,
"scaleZ": 2.42
},
"Nickname": "Arkham Incidents",
"Description": "",
"GMNotes": "fancreations/scenario_incidents.json",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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/1865053883967763315/27C1F4299B5381DF5A40739696DC4CE6197D2BDC/",
"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": "function 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\":{\"302c2c\":{\"lock\":false,\"pos\":{\"x\":12.2502,\"y\":1.4703,\"z\":19.9864},\"rot\":{\"x\":359.9201,\"y\":270,\"z\":0.0169}},\"460a4d\":{\"lock\":false,\"pos\":{\"x\":12.2505,\"y\":1.4656,\"z\":3.9862},\"rot\":{\"x\":359.9201,\"y\":270.001,\"z\":0.0169}},\"6187c9\":{\"lock\":false,\"pos\":{\"x\":-9.6858,\"y\":1.5958,\"z\":-9.2221},\"rot\":{\"x\":359.9203,\"y\":270.002,\"z\":0.0171}},\"656888\":{\"lock\":false,\"pos\":{\"x\":-1.1115,\"y\":1.6283,\"z\":-15.864},\"rot\":{\"x\":359.9197,\"y\":269.9991,\"z\":0.0168}},\"7ef7b4\":{\"lock\":false,\"pos\":{\"x\":-9.5943,\"y\":1.5945,\"z\":-13.2413},\"rot\":{\"x\":359.9204,\"y\":269.9995,\"z\":0.0172}},\"90b00d\":{\"lock\":false,\"pos\":{\"x\":11.2327,\"y\":1.5,\"z\":42.3371},\"rot\":{\"x\":0,\"y\":270.0173,\"z\":0}},\"9a3b83\":{\"lock\":false,\"pos\":{\"x\":14.1403,\"y\":1.4709,\"z\":30.9509},\"rot\":{\"x\":359.9201,\"y\":270.0027,\"z\":0.0169}},\"ba5ef2\":{\"lock\":false,\"pos\":{\"x\":12.2505,\"y\":1.4609,\"z\":-12.0137},\"rot\":{\"x\":359.9201,\"y\":270.0028,\"z\":0.0169}},\"cf68ca\":{\"lock\":false,\"pos\":{\"x\":12.2523,\"y\":1.468,\"z\":11.9863},\"rot\":{\"x\":359.9201,\"y\":270,\"z\":0.0169}},\"d6a731\":{\"lock\":false,\"pos\":{\"x\":12.2501,\"y\":1.4632,\"z\":-4.0139},\"rot\":{\"x\":359.9201,\"y\":270.0025,\"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": "4d5fa0",
"Name": "Custom_Model",
"Transform": {
"posX": 20.2968826,
"posY": 1.8083005,
"posZ": 7.5465107,
"rotX": 359.9452,
"rotY": 269.985138,
"rotZ": -0.00215750048,
"scaleX": 2.21,
"scaleY": 0.46,
"scaleZ": 2.42
},
"Nickname": "Against the Wendigo",
"Description": "",
"GMNotes": "fancreations/scenario_wendigo.json",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": 29.0902481,
"posY": 2.232311,
"posZ": 14.5000305,
"rotX": 359.9313,
"rotY": 270.000031,
"rotZ": 0.014410262,
"scaleX": 0.5,
"scaleY": 0.07,
"scaleZ": 0.5
},
"Nickname": "Fan-Made Campaigns",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"MaterialIndex": -1,
"MeshIndex": -1,
"CustomMesh": {
"MeshURL": "https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/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",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "8daa73",
"Name": "Custom_Model",
"Transform": {
"posX": -1.058661,
"posY": 4.288842,
"posZ": 4.033076,
"rotX": 359.9201,
"rotY": 270.028656,
"rotZ": 0.0168250632,
"scaleX": 0.960666358,
"scaleY": 0.268319339,
"scaleZ": 0.960666358
},
"Nickname": "The Ghosts Of Onigawa Campaign Expansion",
"Description": "",
"GMNotes": "fancreations/campaign_onigawa.json",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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://uploads-ssl.webflow.com/608a6a98b5956379a9c9e768/60eb7c9fb63de7d60d8d67ec_boxart-defuse.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,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": "",
"XmlUI": ""
},
{
"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",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "691339",
"Name": "Custom_Model",
"Transform": {
"posX": 35.2973022,
"posY": 4.150864,
"posZ": -6.402124,
"rotX": 0.0002101884,
"rotY": 270.0017,
"rotZ": 358.3033,
"scaleX": 1.0,
"scaleY": 0.139652729,
"scaleZ": 1.0
},
"Nickname": "Essence of Humanity Campaign Box",
"Description": "",
"GMNotes": "fancreations/campaign_essence_of_humanity.json",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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/1823394900012495167/63C400A27475E745FF94F8837D7A8AECC7F837F4/",
"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\":{\"1e122c\":{\"lock\":false,\"pos\":{\"x\":12.25,\"y\":1.4656,\"z\":3.9846},\"rot\":{\"x\":359.92,\"y\":270.5023,\"z\":0.0162}},\"2547b3\":{\"lock\":false,\"pos\":{\"x\":15.1572,\"y\":1.5202,\"z\":33.4974},\"rot\":{\"x\":359.9201,\"y\":269.9961,\"z\":0.0169}},\"8354bb\":{\"lock\":false,\"pos\":{\"x\":0.27,\"y\":1.4896,\"z\":28.777},\"rot\":{\"x\":359.9201,\"y\":270.0084,\"z\":0.0169}},\"89ae68\":{\"lock\":false,\"pos\":{\"x\":12.2492,\"y\":1.4704,\"z\":19.9855},\"rot\":{\"x\":359.9201,\"y\":270.0619,\"z\":0.0168}},\"91d358\":{\"lock\":false,\"pos\":{\"x\":12.2433,\"y\":1.468,\"z\":11.9905},\"rot\":{\"x\":359.92,\"y\":270.5103,\"z\":0.0162}},\"936cd8\":{\"lock\":false,\"pos\":{\"x\":12.2469,\"y\":1.4633,\"z\":-4.0188},\"rot\":{\"x\":359.9199,\"y\":270.6714,\"z\":0.0159}},\"97bd7a\":{\"lock\":false,\"pos\":{\"x\":12.2409,\"y\":1.4727,\"z\":27.99},\"rot\":{\"x\":359.92,\"y\":270.5837,\"z\":0.0161}},\"b272e3\":{\"lock\":false,\"pos\":{\"x\":0.27,\"y\":1.4896,\"z\":28.777},\"rot\":{\"x\":359.9201,\"y\":269.9802,\"z\":0.0169}},\"be466d\":{\"lock\":false,\"pos\":{\"x\":0.2702,\"y\":1.4896,\"z\":28.7808},\"rot\":{\"x\":359.9201,\"y\":269.9995,\"z\":0.0169}},\"c06389\":{\"lock\":false,\"pos\":{\"x\":0.27,\"y\":1.4896,\"z\":28.7772},\"rot\":{\"x\":359.9201,\"y\":269.9765,\"z\":0.0169}},\"eda22b\":{\"lock\":false,\"pos\":{\"x\":-1.4656,\"y\":1.5756,\"z\":-26.9263},\"rot\":{\"x\":359.9201,\"y\":270.0024,\"z\":0.0169}}}}",
"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",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "ef939a",
"Name": "Custom_Model",
"Transform": {
"posX": 61.154995,
"posY": 3.4069562,
"posZ": -57.21702,
"rotX": 359.9201,
"rotY": 270.000183,
"rotZ": 0.0168720223,
"scaleX": 1.0,
"scaleY": 0.139652729,
"scaleZ": 1.0
},
"Nickname": "Betrayal at the Mountains of Madness 0.8.4",
"Description": "",
"GMNotes": "fancreations/campaign_betrayal_at_mountains.json",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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/1479949766318759506/9BAB9C45ECB33AC5A0F83806B5EF79A6D89C1D31/",
"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\":{\"00d19a\":{\"lock\":false,\"pos\":{\"x\":-36.6934394836426,\"y\":1.78606903553009,\"z\":11.7293663024902},\"rot\":{\"x\":359.920104980469,\"y\":270.001678466797,\"z\":0.0168516132980585}},\"026bb9\":{\"lock\":false,\"pos\":{\"x\":-29.9402446746826,\"y\":1.76979196071625,\"z\":-11.6138305664063},\"rot\":{\"x\":359.920104980469,\"y\":270.001831054688,\"z\":0.01674441434443}},\"0326ec\":{\"lock\":false,\"pos\":{\"x\":-3.92767333984375,\"y\":1.76844882965088,\"z\":5.75714778900146},\"rot\":{\"x\":359.919738769531,\"y\":270,\"z\":180.016815185547}},\"03f2d2\":{\"lock\":false,\"pos\":{\"x\":-19.198823928833,\"y\":1.63660669326782,\"z\":-7.41333341598511},\"rot\":{\"x\":359.920104980469,\"y\":269.999938964844,\"z\":0.0168411899358034}},\"04c355\":{\"lock\":false,\"pos\":{\"x\":-30.4029121398926,\"y\":1.77261936664581,\"z\":-4.18756866455078},\"rot\":{\"x\":359.920104980469,\"y\":270.001373291016,\"z\":0.0168157480657101}},\"0b3f66\":{\"lock\":false,\"pos\":{\"x\":-30.2242889404297,\"y\":1.63719701766968,\"z\":-0.0299866534769535},\"rot\":{\"x\":359.920104980469,\"y\":270.000183105469,\"z\":0.0168393161147833}},\"0c7bc9\":{\"lock\":false,\"pos\":{\"x\":-23.676456451416,\"y\":1.6280665397644,\"z\":-0.0300143845379353},\"rot\":{\"x\":359.920104980469,\"y\":269.999938964844,\"z\":0.016839686781168}},\"0f3a96\":{\"lock\":false,\"pos\":{\"x\":-34.2316017150879,\"y\":1.63262534141541,\"z\":11.6933040618896},\"rot\":{\"x\":359.955413818359,\"y\":224.999816894531,\"z\":0.0683767721056938}},\"0f9675\":{\"lock\":false,\"pos\":{\"x\":-17.1093864440918,\"y\":1.66055345535278,\"z\":-7.68931484222412},\"rot\":{\"x\":359.920104980469,\"y\":270.000030517578,\"z\":0.0168509911745787}},\"104e07\":{\"lock\":false,\"pos\":{\"x\":-23.6765060424805,\"y\":1.62360739707947,\"z\":-15.2800035476685},\"rot\":{\"x\":359.920623779297,\"y\":269.999847412109,\"z\":0.0172669123858213}},\"127b42\":{\"lock\":false,\"pos\":{\"x\":-23.6765594482422,\"y\":1.6156051158905,\"z\":3.86000800132751},\"rot\":{\"x\":359.983154296875,\"y\":0.00569404289126396,\"z\":359.920074462891}},\"16562e\":{\"lock\":false,\"pos\":{\"x\":-3.778564453125,\"y\":1.5823141336441,\"z\":-15.1127977371216},\"rot\":{\"x\":359.919738769531,\"y\":269.995697021484,\"z\":0.0168447867035866}},\"1686fa\":{\"lock\":false,\"pos\":{\"x\":-13.5306854248047,\"y\":1.61670362949371,\"z\":9.44509124755859},\"rot\":{\"x\":359.920104980469,\"y\":269.982208251953,\"z\":0.0168643463402987}},\"17a1c0\":{\"lock\":false,\"pos\":{\"x\":-5.47325468063354,\"y\":1.59320950508118,\"z\":13.8895883560181},\"rot\":{\"x\":359.919738769531,\"y\":270.003631591797,\"z\":0.0168438944965601}},\"184c04\":{\"lock\":false,\"pos\":{\"x\":-30.1927070617676,\"y\":1.77478229999542,\"z\":4.16888952255249},\"rot\":{\"x\":359.920104980469,\"y\":270.027770996094,\"z\":0.0168158337473869}},\"19ce01\":{\"lock\":false,\"pos\":{\"x\":-2.72474837303162,\"y\":1.63038861751556,\"z\":0.373418718576431},\"rot\":{\"x\":0.0168451704084873,\"y\":179.99284362793,\"z\":0.0802551209926605}},\"1a136d\":{\"lock\":false,\"pos\":{\"x\":-3.95599365234375,\"y\":1.59753942489624,\"z\":-10.441258430481},\"rot\":{\"x\":359.919738769531,\"y\":270.000030517578,\"z\":0.0168370809406042}},\"1b4fad\":{\"lock\":false,\"pos\":{\"x\":-33.1410827636719,\"y\":1.65547871589661,\"z\":-0.0487568117678165},\"rot\":{\"x\":0.452195674180985,\"y\":269.997894287109,\"z\":0.0168655049055815}},\"1c3217\":{\"lock\":false,\"pos\":{\"x\":-30.2241725921631,\"y\":1.6371967792511,\"z\":-0.0300170015543699},\"rot\":{\"x\":359.920104980469,\"y\":270,\"z\":0.0168396662920713}},\"1f3d04\":{\"lock\":false,\"pos\":{\"x\":-2.68847250938416,\"y\":1.59734869003296,\"z\":-5.04854679107666},\"rot\":{\"x\":0.016828827559948,\"y\":180.005096435547,\"z\":0.0802566483616829}},\"1f7e6e\":{\"lock\":false,\"pos\":{\"x\":-30.2241764068604,\"y\":1.63834011554718,\"z\":3.85998702049255},\"rot\":{\"x\":359.920104980469,\"y\":269.999755859375,\"z\":0.0168400518596172}},\"247aab\":{\"lock\":false,\"pos\":{\"x\":15.2989015579224,\"y\":1.45448100566864,\"z\":-19.3576030731201},\"rot\":{\"x\":359.920135498047,\"y\":270,\"z\":0.0168734509497881}},\"27107a\":{\"lock\":false,\"pos\":{\"x\":-3.95598721504211,\"y\":1.59753942489624,\"z\":-10.4411535263062},\"rot\":{\"x\":359.919738769531,\"y\":269.999969482422,\"z\":0.016837241128087}},\"2a5738\":{\"lock\":false,\"pos\":{\"x\":-20.5369892120361,\"y\":1.61009585857391,\"z\":0.0111605348065495},\"rot\":{\"x\":359.920104980469,\"y\":269.999816894531,\"z\":0.0168679878115654}},\"2b06f0\":{\"lock\":false,\"pos\":{\"x\":-24.9242305755615,\"y\":1.63540399074554,\"z\":-1.29638540744781},\"rot\":{\"x\":359.978332519531,\"y\":269.899169921875,\"z\":2.22956490516663}},\"2bca7f\":{\"lock\":false,\"pos\":{\"x\":-12.0200004577637,\"y\":1.65759384632111,\"z\":6.76927661895752},\"rot\":{\"x\":359.920104980469,\"y\":270.000274658203,\"z\":0.0168495122343302}},\"2c6d3b\":{\"lock\":false,\"pos\":{\"x\":-30.2241992950439,\"y\":1.64166986942291,\"z\":15.189998626709},\"rot\":{\"x\":359.920104980469,\"y\":269.999847412109,\"z\":0.0168398693203926}},\"2dea23\":{\"lock\":false,\"pos\":{\"x\":-19.2135334014893,\"y\":1.63872611522675,\"z\":-0.271478444337845},\"rot\":{\"x\":359.920104980469,\"y\":270.019470214844,\"z\":0.0168139021843672}},\"2fa817\":{\"lock\":false,\"pos\":{\"x\":-23.4853191375732,\"y\":1.76775705814362,\"z\":12.08873462677},\"rot\":{\"x\":359.920135498047,\"y\":270.001556396484,\"z\":0.0168066136538982}},\"306c50\":{\"lock\":false,\"pos\":{\"x\":-23.6764965057373,\"y\":1.63253951072693,\"z\":15.1899976730347},\"rot\":{\"x\":359.920104980469,\"y\":269.99951171875,\"z\":0.0168402437120676}},\"30b2c0\":{\"lock\":false,\"pos\":{\"x\":-30.2242870330811,\"y\":1.63271534442902,\"z\":-15.2800092697144},\"rot\":{\"x\":359.920562744141,\"y\":269.999603271484,\"z\":0.0161979831755161}},\"3359db\":{\"lock\":false,\"pos\":{\"x\":-32.8963012695313,\"y\":1.62404108047485,\"z\":-11.1805028915405},\"rot\":{\"x\":359.931579589844,\"y\":314.999908447266,\"z\":359.955413818359}},\"33cf09\":{\"lock\":false,\"pos\":{\"x\":-36.7732353210449,\"y\":1.64189267158508,\"z\":-15.2800188064575},\"rot\":{\"x\":359.920715332031,\"y\":269.999481201172,\"z\":0.0183802768588066}},\"33d465\":{\"lock\":false,\"pos\":{\"x\":-2.62676882743835,\"y\":1.39977955818176,\"z\":-1.11660575866699},\"rot\":{\"x\":359.983154296875,\"y\":2.30986443057191E-05,\"z\":359.919677734375}},\"357354\":{\"lock\":false,\"pos\":{\"x\":-24.7442150115967,\"y\":1.7696293592453,\"z\":12.4872913360596},\"rot\":{\"x\":359.920104980469,\"y\":270.001190185547,\"z\":0.0168757438659668}},\"360107\":{\"lock\":false,\"pos\":{\"x\":-4.93661975860596,\"y\":1.6425005197525,\"z\":14.6651029586792},\"rot\":{\"x\":359.919738769531,\"y\":270,\"z\":180.016830444336}},\"3702a2\":{\"lock\":false,\"pos\":{\"x\":-2.72465229034424,\"y\":1.62557435035706,\"z\":0.373309999704361},\"rot\":{\"x\":0.0168577060103416,\"y\":179.984176635742,\"z\":0.0802514851093292}},\"373f94\":{\"lock\":false,\"pos\":{\"x\":-14.2823753356934,\"y\":1.60931038856506,\"z\":12.8869428634644},\"rot\":{\"x\":359.920104980469,\"y\":270.005920410156,\"z\":0.0887472331523895}},\"392d3e\":{\"lock\":false,\"pos\":{\"x\":-36.7731018066406,\"y\":1.64856243133545,\"z\":7.5699987411499},\"rot\":{\"x\":359.920104980469,\"y\":269.997741699219,\"z\":0.0168427955359221}},\"39b7e5\":{\"lock\":false,\"pos\":{\"x\":15.2789011001587,\"y\":1.46524322032928,\"z\":17.0972995758057},\"rot\":{\"x\":359.920135498047,\"y\":269.999389648438,\"z\":0.0168747808784246}},\"39d3b6\":{\"lock\":false,\"pos\":{\"x\":-3.62809991836548,\"y\":1.58220231533051,\"z\":-14.7738103866577},\"rot\":{\"x\":359.919738769531,\"y\":270.013854980469,\"z\":0.0168185215443373}},\"3a4050\":{\"lock\":false,\"pos\":{\"x\":-27.228099822998,\"y\":1.62276828289032,\"z\":11.3825006484985},\"rot\":{\"x\":359.931579589844,\"y\":315.000122070313,\"z\":359.955413818359}},\"3b60c1\":{\"lock\":false,\"pos\":{\"x\":-30.2243003845215,\"y\":1.62582564353943,\"z\":7.56999969482422},\"rot\":{\"x\":359.920104980469,\"y\":270.009216308594,\"z\":0.0168544296175241}},\"3c838d\":{\"lock\":false,\"pos\":{\"x\":-11.9238615036011,\"y\":1.65971231460571,\"z\":7.44205474853516},\"rot\":{\"x\":359.920104980469,\"y\":269.999481201172,\"z\":0.0168435890227556}},\"3d5b6e\":{\"lock\":false,\"pos\":{\"x\":-17.1200408935547,\"y\":1.66476213932037,\"z\":-0.0299920253455639},\"rot\":{\"x\":359.920104980469,\"y\":270.025451660156,\"z\":0.0168073829263449}},\"3d74a9\":{\"lock\":false,\"pos\":{\"x\":-30.224271774292,\"y\":1.62247550487518,\"z\":-3.82999110221863},\"rot\":{\"x\":359.983154296875,\"y\":0.00565720442682505,\"z\":359.920043945313}},\"3d771d\":{\"lock\":false,\"pos\":{\"x\":-3.86219477653503,\"y\":1.58226752281189,\"z\":-15.6675100326538},\"rot\":{\"x\":359.919738769531,\"y\":270.019897460938,\"z\":0.0168101079761982}},\"3f3098\":{\"lock\":false,\"pos\":{\"x\":-29.5331211090088,\"y\":1.77582204341888,\"z\":10.8370208740234},\"rot\":{\"x\":359.920074462891,\"y\":270.001342773438,\"z\":0.0167114734649658}},\"429c04\":{\"lock\":false,\"pos\":{\"x\":-5.65999460220337,\"y\":1.59417402744293,\"z\":16.2830371856689},\"rot\":{\"x\":0.0168313961476088,\"y\":179.999877929688,\"z\":0.0802587419748306}},\"436836\":{\"lock\":false,\"pos\":{\"x\":-2.48159146308899,\"y\":1.39956986904144,\"z\":-1.13640820980072},\"rot\":{\"x\":359.983154296875,\"y\":7.58510577725247E-05,\"z\":359.919677734375}},\"44c342\":{\"lock\":false,\"pos\":{\"x\":-23.6765213012695,\"y\":1.62581241130829,\"z\":-7.70001602172852},\"rot\":{\"x\":359.920104980469,\"y\":269.99951171875,\"z\":0.0168402977287769}},\"457419\":{\"lock\":false,\"pos\":{\"x\":-17.1147937774658,\"y\":1.65833163261414,\"z\":-15.2746601104736},\"rot\":{\"x\":359.920104980469,\"y\":269.999481201172,\"z\":0.0168520100414753}},\"46b30a\":{\"lock\":false,\"pos\":{\"x\":-24.0696392059326,\"y\":1.76390063762665,\"z\":-3.80506658554077},\"rot\":{\"x\":359.920104980469,\"y\":270.001312255859,\"z\":0.016846502199769}},\"477094\":{\"lock\":false,\"pos\":{\"x\":15.3148012161255,\"y\":1.45663189888,\"z\":-11.9785032272339},\"rot\":{\"x\":359.920135498047,\"y\":270.000091552734,\"z\":0.0168740842491388}},\"47aa44\":{\"lock\":false,\"pos\":{\"x\":-5.65999984741211,\"y\":1.59379947185516,\"z\":15.0073289871216},\"rot\":{\"x\":359.983154296875,\"y\":0.000168540776940063,\"z\":359.919738769531}},\"47b626\":{\"lock\":false,\"pos\":{\"x\":-43.3647575378418,\"y\":1.70389008522034,\"z\":15.1953573226929},\"rot\":{\"x\":359.920104980469,\"y\":270.000885009766,\"z\":0.0168442670255899}},\"480325\":{\"lock\":false,\"pos\":{\"x\":-5.99066162109375,\"y\":1.69096922874451,\"z\":14.2936716079712},\"rot\":{\"x\":0.0479598082602024,\"y\":89.9961471557617,\"z\":-0.00540546141564846}},\"48aa10\":{\"lock\":false,\"pos\":{\"x\":-17.1200084686279,\"y\":1.61666977405548,\"z\":-7.70001602172852},\"rot\":{\"x\":359.920104980469,\"y\":269.999969482422,\"z\":0.0168397333472967}},\"495eae\":{\"lock\":false,\"pos\":{\"x\":-17.1200408935547,\"y\":1.6086962223053,\"z\":11.4600086212158},\"rot\":{\"x\":359.920104980469,\"y\":270.004241943359,\"z\":0.0168335791677237}},\"496013\":{\"lock\":false,\"pos\":{\"x\":-23.6765727996826,\"y\":1.62358474731445,\"z\":-15.2800149917603},\"rot\":{\"x\":359.920104980469,\"y\":269.999908447266,\"z\":0.0168397631496191}},\"4a056b\":{\"lock\":false,\"pos\":{\"x\":-6.86820650100708,\"y\":1.59542381763458,\"z\":14.775857925415},\"rot\":{\"x\":359.983154296875,\"y\":-0.00199077953584492,\"z\":359.919738769531}},\"4bccef\":{\"lock\":false,\"pos\":{\"x\":-43.9187240600586,\"y\":1.69622933864594,\"z\":-13.5003805160522},\"rot\":{\"x\":359.920104980469,\"y\":270,\"z\":0.016851807013154}},\"4bec3c\":{\"lock\":false,\"pos\":{\"x\":-43.3647994995117,\"y\":1.69493532180786,\"z\":-15.2746620178223},\"rot\":{\"x\":359.920104980469,\"y\":269.999359130859,\"z\":0.0168498121201992}},\"5185cc\":{\"lock\":false,\"pos\":{\"x\":-27.4687023162842,\"y\":1.61969769001007,\"z\":-0.206716448068619},\"rot\":{\"x\":359.920104980469,\"y\":270,\"z\":0.0168671440333128}},\"556e96\":{\"lock\":false,\"pos\":{\"x\":-3.92769265174866,\"y\":1.74437856674194,\"z\":5.75714778900146},\"rot\":{\"x\":359.919738769531,\"y\":270,\"z\":180.016815185547}},\"567a44\":{\"lock\":false,\"pos\":{\"x\":-22.6210269927979,\"y\":1.76160717010498,\"z\":-4.73528909683228},\"rot\":{\"x\":359.920104980469,\"y\":270.001098632813,\"z\":0.0168349165469408}},\"57ff37\":{\"lock\":false,\"pos\":{\"x\":-24.4017162322998,\"y\":1.76877474784851,\"z\":11.2043485641479},\"rot\":{\"x\":359.920074462891,\"y\":270.001159667969,\"z\":0.0169201232492924}},\"5ab2b6\":{\"lock\":false,\"pos\":{\"x\":1.69638311862946,\"y\":1.55831694602966,\"z\":14.2788572311401},\"rot\":{\"x\":359.955139160156,\"y\":224.997924804688,\"z\":0.0686725005507469}},\"5aca66\":{\"lock\":false,\"pos\":{\"x\":-3.92755842208862,\"y\":1.72993612289429,\"z\":5.75711727142334},\"rot\":{\"x\":359.919738769531,\"y\":269.999969482422,\"z\":180.016815185547}},\"5bf732\":{\"lock\":false,\"pos\":{\"x\":-3.95589447021484,\"y\":1.59753930568695,\"z\":-10.441180229187},\"rot\":{\"x\":359.919738769531,\"y\":270.003448486328,\"z\":0.0168323330581188}},\"5c6098\":{\"lock\":false,\"pos\":{\"x\":-11.8456468582153,\"y\":1.65209102630615,\"z\":-11.5084714889526},\"rot\":{\"x\":359.920104980469,\"y\":269.999694824219,\"z\":0.0168492347002029}},\"614563\":{\"lock\":false,\"pos\":{\"x\":1.69561696052551,\"y\":1.5583188533783,\"z\":14.278736114502},\"rot\":{\"x\":359.955139160156,\"y\":224.998016357422,\"z\":0.0686735212802887}},\"617f07\":{\"lock\":false,\"pos\":{\"x\":-17.1200141906738,\"y\":1.65960693359375,\"z\":15.1899967193604},\"rot\":{\"x\":359.920104980469,\"y\":270.014770507813,\"z\":0.0168221797794104}},\"61eee2\":{\"lock\":false,\"pos\":{\"x\":-36.2253150939941,\"y\":1.78294146060944,\"z\":3.30846977233887},\"rot\":{\"x\":359.920104980469,\"y\":270.001342773438,\"z\":0.0168270375579596}},\"62791a\":{\"lock\":false,\"pos\":{\"x\":-27.0009994506836,\"y\":1.62018239498138,\"z\":3.66190147399902},\"rot\":{\"x\":359.955413818359,\"y\":224.999984741211,\"z\":0.0683809816837311}},\"654916\":{\"lock\":false,\"pos\":{\"x\":-13.361985206604,\"y\":1.61765897274017,\"z\":13.4964761734009},\"rot\":{\"x\":359.920104980469,\"y\":269.987731933594,\"z\":0.0168566945940256}},\"664378\":{\"lock\":false,\"pos\":{\"x\":-12.0199060440063,\"y\":1.65369355678558,\"z\":-6.8824896812439},\"rot\":{\"x\":359.920104980469,\"y\":270.000061035156,\"z\":0.0168544203042984}},\"68da69\":{\"lock\":false,\"pos\":{\"x\":-2.72472810745239,\"y\":1.62076032161713,\"z\":0.372717529535294},\"rot\":{\"x\":0.0174714233726263,\"y\":179.545700073242,\"z\":0.0801199153065681}},\"6c9c95\":{\"lock\":false,\"pos\":{\"x\":-5.18622922897339,\"y\":1.64189851284027,\"z\":14.9168252944946},\"rot\":{\"x\":0.0781028941273689,\"y\":89.9994430541992,\"z\":359.989471435547}},\"70b534\":{\"lock\":false,\"pos\":{\"x\":-11.5784,\"y\":1.7925,\"z\":26.5447},\"rot\":{\"x\":359.9201,\"y\":269.9998,\"z\":0.0169}},\"7234af\":{\"lock\":false,\"pos\":{\"x\":-20.366189956665,\"y\":1.60755860805511,\"z\":-7.81213760375977},\"rot\":{\"x\":359.920104980469,\"y\":270.011810302734,\"z\":0.0168506354093552}},\"7556a4\":{\"lock\":false,\"pos\":{\"x\":-2.68849968910217,\"y\":1.59734869003296,\"z\":-5.04849910736084},\"rot\":{\"x\":0.0168360080569983,\"y\":180,\"z\":0.0802551135420799}},\"755fc0\":{\"lock\":false,\"pos\":{\"x\":-36.7731170654297,\"y\":1.64632892608643,\"z\":-0.0300152152776718},\"rot\":{\"x\":359.920104980469,\"y\":269.99951171875,\"z\":0.0168402697890997}},\"785a9e\":{\"lock\":false,\"pos\":{\"x\":-7.88368320465088,\"y\":1.61056900024414,\"z\":15.2385272979736},\"rot\":{\"x\":359.921600341797,\"y\":270.003845214844,\"z\":0.0167044159024954}},\"792349\":{\"lock\":false,\"pos\":{\"x\":15.2765007019043,\"y\":1.45884120464325,\"z\":-4.65600061416626},\"rot\":{\"x\":359.920135498047,\"y\":269.999786376953,\"z\":0.0168749578297138}},\"7959be\":{\"lock\":false,\"pos\":{\"x\":-6.91199398040771,\"y\":1.5950688123703,\"z\":13.3590431213379},\"rot\":{\"x\":359.983154296875,\"y\":359.978942871094,\"z\":359.919738769531}},\"79a6f9\":{\"lock\":false,\"pos\":{\"x\":15.371000289917,\"y\":1.45230603218079,\"z\":-26.4016036987305},\"rot\":{\"x\":359.920135498047,\"y\":270.003143310547,\"z\":0.0168696343898773}},\"7ac282\":{\"lock\":false,\"pos\":{\"x\":-23.7311782836914,\"y\":1.76116323471069,\"z\":-11.5141897201538},\"rot\":{\"x\":359.920104980469,\"y\":270.0009765625,\"z\":0.0168525502085686}},\"7c4014\":{\"lock\":false,\"pos\":{\"x\":-3.95590496063232,\"y\":1.59753930568695,\"z\":-10.441180229187},\"rot\":{\"x\":359.919738769531,\"y\":269.998413085938,\"z\":0.0168393962085247}},\"7d08d0\":{\"lock\":false,\"pos\":{\"x\":-2.68858337402344,\"y\":1.6191166639328,\"z\":-5.0485200881958},\"rot\":{\"x\":0.0168415699154139,\"y\":179.995513916016,\"z\":0.0802554786205292}},\"7e160e\":{\"lock\":false,\"pos\":{\"x\":-27.0879993438721,\"y\":1.77365863323212,\"z\":15.0756101608276},\"rot\":{\"x\":359.920104980469,\"y\":270.000518798828,\"z\":0.0168688949197531}},\"7e3c60\":{\"lock\":false,\"pos\":{\"x\":-15.5948553085327,\"y\":1.66510093212128,\"z\":-3.74399757385254},\"rot\":{\"x\":0.0799026787281036,\"y\":90.0193481445313,\"z\":359.983184814453}},\"8378e1\":{\"lock\":false,\"pos\":{\"x\":15.2491006851196,\"y\":1.46100044250488,\"z\":2.54710006713867},\"rot\":{\"x\":359.920135498047,\"y\":270.001342773438,\"z\":0.0168719943612814}},\"859ff0\":{\"lock\":false,\"pos\":{\"x\":-30.2241668701172,\"y\":1.6371967792511,\"z\":-0.0300171375274658},\"rot\":{\"x\":359.920104980469,\"y\":269.999481201172,\"z\":0.0168403070420027}},\"863c96\":{\"lock\":false,\"pos\":{\"x\":-30.2242908477783,\"y\":1.63715088367462,\"z\":-0.0442854017019272},\"rot\":{\"x\":359.920532226563,\"y\":270.000671386719,\"z\":0.0140526294708252}},\"86e447\":{\"lock\":false,\"pos\":{\"x\":-36.4723968505859,\"y\":1.78122019767761,\"z\":-3.72188901901245},\"rot\":{\"x\":359.920104980469,\"y\":270.001342773438,\"z\":0.0168581400066614}},\"8984ad\":{\"lock\":false,\"pos\":{\"x\":-23.6767978668213,\"y\":1.62581276893616,\"z\":-7.70000028610229},\"rot\":{\"x\":359.920104980469,\"y\":270.019287109375,\"z\":0.0168125182390213}},\"8a1786\":{\"lock\":false,\"pos\":{\"x\":-29.2802066802979,\"y\":1.77121841907501,\"z\":-3.62734723091125},\"rot\":{\"x\":359.920104980469,\"y\":270.001281738281,\"z\":0.0168429110199213}},\"8a4092\":{\"lock\":false,\"pos\":{\"x\":-3.95589399337769,\"y\":1.59753930568695,\"z\":-10.4411811828613},\"rot\":{\"x\":359.919738769531,\"y\":269.999847412109,\"z\":0.0168374720960855}},\"8ad0a3\":{\"lock\":false,\"pos\":{\"x\":-3.95589399337769,\"y\":1.59753930568695,\"z\":-10.441180229187},\"rot\":{\"x\":359.919738769531,\"y\":270.009735107422,\"z\":0.0168235301971436}},\"8bde30\":{\"lock\":false,\"pos\":{\"x\":-6.96000099182129,\"y\":1.59583497047424,\"z\":15.7375001907349},\"rot\":{\"x\":359.983215332031,\"y\":0.0285408888012171,\"z\":359.919738769531}},\"8cbe29\":{\"lock\":false,\"pos\":{\"x\":-3.92764377593994,\"y\":1.76844871044159,\"z\":5.75713920593262},\"rot\":{\"x\":359.919738769531,\"y\":269.999908447266,\"z\":180.016815185547}},\"8ea37f\":{\"lock\":false,\"pos\":{\"x\":-23.6523628234863,\"y\":1.76558470726013,\"z\":3.9050920009613},\"rot\":{\"x\":359.920104980469,\"y\":270.001098632813,\"z\":0.0168053023517132}},\"91c7d0\":{\"lock\":false,\"pos\":{\"x\":-43.6087455749512,\"y\":1.70360279083252,\"z\":13.0591011047363},\"rot\":{\"x\":359.920104980469,\"y\":270.000061035156,\"z\":0.0168486852198839}},\"91e019\":{\"lock\":false,\"pos\":{\"x\":-3.89826369285584,\"y\":1.59676170349121,\"z\":-12.8125944137573},\"rot\":{\"x\":359.919738769531,\"y\":270.000610351563,\"z\":180.016830444336}},\"921a9b\":{\"lock\":false,\"pos\":{\"x\":-23.6764392852783,\"y\":1.62806642055511,\"z\":-0.0300293453037739},\"rot\":{\"x\":359.920104980469,\"y\":270,\"z\":0.0168396234512329}},\"9336b4\":{\"lock\":false,\"pos\":{\"x\":-2.68848180770874,\"y\":1.61911654472351,\"z\":-5.04854345321655},\"rot\":{\"x\":0.0168223418295383,\"y\":180.009521484375,\"z\":0.0802588611841202}},\"99972a\":{\"lock\":false,\"pos\":{\"x\":-2.11983871459961,\"y\":1.40336513519287,\"z\":13.5037107467651},\"rot\":{\"x\":359.983154296875,\"y\":0.000808796321507543,\"z\":359.919677734375}},\"9ae75c\":{\"lock\":false,\"pos\":{\"x\":-30.2241859436035,\"y\":1.63943040370941,\"z\":7.56998586654663},\"rot\":{\"x\":359.920104980469,\"y\":269.99951171875,\"z\":0.0168402697890997}},\"9c140b\":{\"lock\":false,\"pos\":{\"x\":-26.767599105835,\"y\":1.61765778064728,\"z\":-3.82140040397644},\"rot\":{\"x\":359.931579589844,\"y\":314.977905273438,\"z\":359.955444335938}},\"9c6651\":{\"lock\":false,\"pos\":{\"x\":-30.2298126220703,\"y\":1.49485957622528,\"z\":-7.66663932800293},\"rot\":{\"x\":0.397051692008972,\"y\":269.543975830078,\"z\":352.934112548828}},\"9ed77c\":{\"lock\":false,\"pos\":{\"x\":-10.890398979187,\"y\":1.65856766700745,\"z\":15.0608711242676},\"rot\":{\"x\":359.920104980469,\"y\":269.999938964844,\"z\":0.0168520919978619}},\"a17a82\":{\"lock\":false,\"pos\":{\"x\":-30.2242546081543,\"y\":1.6416699886322,\"z\":15.1899929046631},\"rot\":{\"x\":359.920104980469,\"y\":269.999267578125,\"z\":0.0168407261371613}},\"a358fc\":{\"lock\":false,\"pos\":{\"x\":-30.2241230010986,\"y\":1.63494253158569,\"z\":-7.70027875900269},\"rot\":{\"x\":359.920104980469,\"y\":269.998382568359,\"z\":0.0168418847024441}},\"a359d6\":{\"lock\":false,\"pos\":{\"x\":-11.8673753738403,\"y\":1.60140740871429,\"z\":11.5826091766357},\"rot\":{\"x\":359.920104980469,\"y\":270,\"z\":0.0168513767421246}},\"a45247\":{\"lock\":false,\"pos\":{\"x\":1.69638359546661,\"y\":1.5583176612854,\"z\":14.2788581848145},\"rot\":{\"x\":359.955139160156,\"y\":224.997909545898,\"z\":0.0686735063791275}},\"a90516\":{\"lock\":false,\"pos\":{\"x\":-2.68857192993164,\"y\":1.61430263519287,\"z\":-5.04852151870728},\"rot\":{\"x\":0.0167915709316731,\"y\":180.031509399414,\"z\":0.0802650526165962}},\"abef2c\":{\"lock\":false,\"pos\":{\"x\":-17.1200523376465,\"y\":1.61892402172089,\"z\":-0.0299869459122419},\"rot\":{\"x\":359.920104980469,\"y\":270.003479003906,\"z\":0.0168348085135221}},\"ad0d44\":{\"lock\":false,\"pos\":{\"x\":1.69638121128082,\"y\":1.55831694602966,\"z\":14.2788515090942},\"rot\":{\"x\":359.955139160156,\"y\":224.997970581055,\"z\":0.0686735138297081}},\"aeb649\":{\"lock\":false,\"pos\":{\"x\":-2.7246994972229,\"y\":1.6159462928772,\"z\":0.373300731182098},\"rot\":{\"x\":0.0168358944356442,\"y\":179.999893188477,\"z\":0.0802557542920113}},\"b228a8\":{\"lock\":false,\"pos\":{\"x\":-36.4113616943359,\"y\":1.78363132476807,\"z\":4.77336597442627},\"rot\":{\"x\":359.920104980469,\"y\":269.987274169922,\"z\":0.0168488305062056}},\"b4e0a1\":{\"lock\":false,\"pos\":{\"x\":-17.1199150085449,\"y\":1.62115740776062,\"z\":7.56997871398926},\"rot\":{\"x\":359.920104980469,\"y\":270.000061035156,\"z\":180.016830444336}},\"b6b9b7\":{\"lock\":false,\"pos\":{\"x\":-36.7732009887695,\"y\":1.6440749168396,\"z\":-7.70000267028809},\"rot\":{\"x\":359.920104980469,\"y\":269.999816894531,\"z\":0.0168398804962635}},\"b6e32d\":{\"lock\":false,\"pos\":{\"x\":-37.1079788208008,\"y\":1.77959871292114,\"z\":-12.2537422180176},\"rot\":{\"x\":359.920135498047,\"y\":270.001525878906,\"z\":0.0168745927512646}},\"b71c73\":{\"lock\":false,\"pos\":{\"x\":-14.3876991271973,\"y\":1.60447669029236,\"z\":10.0663480758667},\"rot\":{\"x\":359.920104980469,\"y\":269.999969482422,\"z\":0.0168395526707172}},\"b7b094\":{\"lock\":false,\"pos\":{\"x\":-30.2243347167969,\"y\":1.65638446807861,\"z\":7.5700216293335},\"rot\":{\"x\":359.920104980469,\"y\":269.999084472656,\"z\":0.0168434344232082}},\"b8638a\":{\"lock\":false,\"pos\":{\"x\":-2.68847942352295,\"y\":1.59734869003296,\"z\":-5.04854345321655},\"rot\":{\"x\":0.0168538186699152,\"y\":179.987243652344,\"z\":0.0802513435482979}},\"b909c7\":{\"lock\":false,\"pos\":{\"x\":-3.92772746086121,\"y\":1.76844894886017,\"z\":5.75715303421021},\"rot\":{\"x\":359.919738769531,\"y\":270.000061035156,\"z\":180.016815185547}},\"b91e4c\":{\"lock\":false,\"pos\":{\"x\":-23.6765251159668,\"y\":1.62581241130829,\"z\":-7.70001459121704},\"rot\":{\"x\":359.920104980469,\"y\":269.999938964844,\"z\":0.0168397128582001}},\"bbb70a\":{\"lock\":false,\"pos\":{\"x\":-3.85586786270142,\"y\":1.58250105381012,\"z\":-14.8428268432617},\"rot\":{\"x\":359.919738769531,\"y\":270.030364990234,\"z\":0.0167953297495842}},\"c0496c\":{\"lock\":false,\"pos\":{\"x\":-2.49824857711792,\"y\":1.40054845809937,\"z\":2.11387157440186},\"rot\":{\"x\":359.983154296875,\"y\":3.16821060550865E-05,\"z\":359.919677734375}},\"c0d0df\":{\"lock\":false,\"pos\":{\"x\":-36.7731819152832,\"y\":1.64407479763031,\"z\":-7.70002794265747},\"rot\":{\"x\":359.920104980469,\"y\":269.999725341797,\"z\":0.0168400630354881}},\"c150be\":{\"lock\":false,\"pos\":{\"x\":-23.6765003204346,\"y\":1.63030004501343,\"z\":7.5699987411499},\"rot\":{\"x\":359.920104980469,\"y\":269.999816894531,\"z\":0.0168398134410381}},\"c31a6c\":{\"lock\":false,\"pos\":{\"x\":-17.1093368530273,\"y\":1.66504108905792,\"z\":7.5806941986084},\"rot\":{\"x\":359.920104980469,\"y\":270.000030517578,\"z\":0.0168491918593645}},\"c67431\":{\"lock\":false,\"pos\":{\"x\":-23.6765727996826,\"y\":1.62806665897369,\"z\":-0.0299873240292072},\"rot\":{\"x\":359.920104980469,\"y\":270.001831054688,\"z\":0.016837066039443}},\"cace7f\":{\"lock\":false,\"pos\":{\"x\":-3.42462277412415,\"y\":1.58195745944977,\"z\":-14.6367473602295},\"rot\":{\"x\":359.919738769531,\"y\":270.013854980469,\"z\":0.0168184246867895}},\"ce45f7\":{\"lock\":false,\"pos\":{\"x\":-2.67772579193115,\"y\":1.40076732635498,\"z\":2.00538849830627},\"rot\":{\"x\":359.983154296875,\"y\":0.000144133737194352,\"z\":359.919677734375}},\"d1bf92\":{\"lock\":false,\"pos\":{\"x\":-3.9276008605957,\"y\":1.72993648052216,\"z\":5.7577018737793},\"rot\":{\"x\":359.919738769531,\"y\":269.99951171875,\"z\":180.016815185547}},\"d28cd1\":{\"lock\":false,\"pos\":{\"x\":-30.2241992950439,\"y\":1.63719689846039,\"z\":-0.0300004538148642},\"rot\":{\"x\":359.920104980469,\"y\":269.999755859375,\"z\":0.0168399680405855}},\"d38aeb\":{\"lock\":false,\"pos\":{\"x\":-4.2873387336731,\"y\":1.47145700454712,\"z\":14.5038290023804},\"rot\":{\"x\":359.983123779297,\"y\":-0.000269911222858354,\"z\":359.919616699219}},\"d3b120\":{\"lock\":false,\"pos\":{\"x\":-2.72477197647095,\"y\":1.62557470798492,\"z\":0.373721837997437},\"rot\":{\"x\":0.0168351754546165,\"y\":180.000259399414,\"z\":0.0802561789751053}},\"d49bfd\":{\"lock\":false,\"pos\":{\"x\":-37.5114936828613,\"y\":1.78494012355804,\"z\":4.00672578811646},\"rot\":{\"x\":359.920257568359,\"y\":269.487274169922,\"z\":0.0175487641245127}},\"d5b3cb\":{\"lock\":false,\"pos\":{\"x\":-17.1199398040771,\"y\":1.60869610309601,\"z\":11.4599885940552},\"rot\":{\"x\":359.920104980469,\"y\":269.96923828125,\"z\":0.0168823394924402}},\"d5f792\":{\"lock\":false,\"pos\":{\"x\":-33.2551002502441,\"y\":1.62890458106995,\"z\":3.66560101509094},\"rot\":{\"x\":359.931579589844,\"y\":315.000061035156,\"z\":359.955413818359}},\"d6bbe3\":{\"lock\":false,\"pos\":{\"x\":-23.6764755249023,\"y\":1.63030004501343,\"z\":7.56998777389526},\"rot\":{\"x\":359.920104980469,\"y\":269.999877929688,\"z\":0.0168394427746534}},\"d70b36\":{\"lock\":false,\"pos\":{\"x\":-5.65999507904053,\"y\":1.5934339761734,\"z\":13.7641000747681},\"rot\":{\"x\":359.919738769531,\"y\":270.019714355469,\"z\":0.0168206840753555}},\"d9882d\":{\"lock\":false,\"pos\":{\"x\":-27.0109996795654,\"y\":1.61566078662872,\"z\":-11.7710018157959},\"rot\":{\"x\":359.955413818359,\"y\":224.999969482422,\"z\":0.068376362323761}},\"d9e4e4\":{\"lock\":false,\"pos\":{\"x\":-3.92770743370056,\"y\":1.78289103507996,\"z\":5.75714731216431},\"rot\":{\"x\":359.919738769531,\"y\":269.999938964844,\"z\":180.016815185547}},\"daee0c\":{\"lock\":false,\"pos\":{\"x\":-35.9802627563477,\"y\":1.77833580970764,\"z\":-11.200704574585},\"rot\":{\"x\":359.920166015625,\"y\":270.000183105469,\"z\":0.0167865082621574}},\"db3d41\":{\"lock\":false,\"pos\":{\"x\":-19.2110919952393,\"y\":1.63774025440216,\"z\":-3.61433815956116},\"rot\":{\"x\":359.920104980469,\"y\":270.003814697266,\"z\":0.0168354269117117}},\"dbc679\":{\"lock\":false,\"pos\":{\"x\":-2.68845248222351,\"y\":1.61430239677429,\"z\":-5.04855680465698},\"rot\":{\"x\":0.0176577121019363,\"y\":179.412521362305,\"z\":0.0800789222121239}},\"de80aa\":{\"lock\":false,\"pos\":{\"x\":-17.1199645996094,\"y\":1.69702303409576,\"z\":11.4599943161011},\"rot\":{\"x\":359.920104980469,\"y\":269.999328613281,\"z\":0.0168457590043545}},\"df464a\":{\"lock\":false,\"pos\":{\"x\":-17.1199417114258,\"y\":1.6514630317688,\"z\":3.8599853515625},\"rot\":{\"x\":359.920104980469,\"y\":269.998291015625,\"z\":0.0168441496789455}},\"e02917\":{\"lock\":false,\"pos\":{\"x\":-2.72474956512451,\"y\":1.62076056003571,\"z\":0.373335152864456},\"rot\":{\"x\":0.0168035086244345,\"y\":180.022979736328,\"z\":0.0802627131342888}},\"e0573a\":{\"lock\":false,\"pos\":{\"x\":-23.6741008758545,\"y\":1.62820291519165,\"z\":-0.0202894769608974},\"rot\":{\"x\":359.922546386719,\"y\":270.007843017578,\"z\":0.0207790993154049}},\"e099f7\":{\"lock\":false,\"pos\":{\"x\":-29.6727886199951,\"y\":1.77369928359985,\"z\":2.950119972229},\"rot\":{\"x\":359.920471191406,\"y\":268.815185546875,\"z\":0.0184947494417429}},\"e14d4b\":{\"lock\":false,\"pos\":{\"x\":-22.9191303253174,\"y\":1.76251232624054,\"z\":-3.07010459899902},\"rot\":{\"x\":359.920104980469,\"y\":270.001312255859,\"z\":0.0168283302336931}},\"e18dd7\":{\"lock\":false,\"pos\":{\"x\":-3.92768979072571,\"y\":1.73956453800201,\"z\":5.75717401504517},\"rot\":{\"x\":359.919738769531,\"y\":270,\"z\":180.016815185547}},\"e377ef\":{\"lock\":false,\"pos\":{\"x\":-10.6899299621582,\"y\":1.6399792432785,\"z\":11.6738691329956},\"rot\":{\"x\":359.920104980469,\"y\":269.978851318359,\"z\":0.0168716758489609}},\"e580e5\":{\"lock\":false,\"pos\":{\"x\":15.2763013839722,\"y\":1.46735560894012,\"z\":24.2576026916504},\"rot\":{\"x\":359.920135498047,\"y\":269.999359130859,\"z\":0.0168746151030064}},\"e589b8\":{\"lock\":false,\"pos\":{\"x\":-36.773136138916,\"y\":1.64856243133545,\"z\":7.56998109817505},\"rot\":{\"x\":359.920104980469,\"y\":269.999481201172,\"z\":0.0168404337018728}},\"e58cff\":{\"lock\":false,\"pos\":{\"x\":-36.7731742858887,\"y\":1.65080201625824,\"z\":15.1899871826172},\"rot\":{\"x\":359.920104980469,\"y\":270.006958007813,\"z\":0.0168298780918121}},\"e8fcf0\":{\"lock\":false,\"pos\":{\"x\":-30.2243003845215,\"y\":1.63271510601044,\"z\":-15.2799997329712},\"rot\":{\"x\":359.920104980469,\"y\":269.999908447266,\"z\":0.0168397668749094}},\"ec69ae\":{\"lock\":false,\"pos\":{\"x\":-3.75105881690979,\"y\":1.47043025493622,\"z\":13.5667877197266},\"rot\":{\"x\":359.983123779297,\"y\":0.000302749540423974,\"z\":359.919647216797}},\"ecc8e5\":{\"lock\":false,\"pos\":{\"x\":-23.2233047485352,\"y\":1.76699233055115,\"z\":10.7314119338989},\"rot\":{\"x\":359.920104980469,\"y\":270.001007080078,\"z\":0.0167829915881157}},\"ecff30\":{\"lock\":false,\"pos\":{\"x\":-30.8015308380127,\"y\":1.77792608737946,\"z\":11.9776372909546},\"rot\":{\"x\":359.920104980469,\"y\":270.001403808594,\"z\":0.0168240908533335}},\"eda931\":{\"lock\":false,\"pos\":{\"x\":15.3036012649536,\"y\":1.46945595741272,\"z\":31.520601272583},\"rot\":{\"x\":359.920135498047,\"y\":269.996063232422,\"z\":0.0168791171163321}},\"edc524\":{\"lock\":false,\"pos\":{\"x\":-3.97627353668213,\"y\":1.58263719081879,\"z\":-14.9533967971802},\"rot\":{\"x\":359.919738769531,\"y\":270.019897460938,\"z\":0.0168099906295538}},\"ee13c6\":{\"lock\":false,\"pos\":{\"x\":-23.6765556335449,\"y\":1.61334502696991,\"z\":-3.82999181747437},\"rot\":{\"x\":359.983154296875,\"y\":0.00572012271732092,\"z\":359.920043945313}},\"ee32d2\":{\"lock\":false,\"pos\":{\"x\":-3.95590043067932,\"y\":1.59753930568695,\"z\":-10.4412040710449},\"rot\":{\"x\":359.919738769531,\"y\":269.982727050781,\"z\":0.0168613940477371}},\"ee74e5\":{\"lock\":false,\"pos\":{\"x\":15.2573003768921,\"y\":1.46312141418457,\"z\":9.78870010375977},\"rot\":{\"x\":359.920135498047,\"y\":269.999908447266,\"z\":0.0168749652802944}},\"eeb375\":{\"lock\":false,\"pos\":{\"x\":-37.6513442993164,\"y\":1.64497935771942,\"z\":-16.7265434265137},\"rot\":{\"x\":359.942169189453,\"y\":269.99951171875,\"z\":1.83502340316772}},\"eeb51f\":{\"lock\":false,\"pos\":{\"x\":-19.1465129852295,\"y\":1.86955404281616,\"z\":-0.0595723651349545},\"rot\":{\"x\":359.921051025391,\"y\":270.019592285156,\"z\":0.0156556870788336}},\"ef8cef\":{\"lock\":false,\"pos\":{\"x\":-23.6871891021729,\"y\":1.63031983375549,\"z\":7.58641004562378},\"rot\":{\"x\":359.920104980469,\"y\":270.009704589844,\"z\":0.0168260782957077}},\"f2a6d9\":{\"lock\":false,\"pos\":{\"x\":-6.9558892250061,\"y\":1.59543836116791,\"z\":14.4068689346313},\"rot\":{\"x\":359.983184814453,\"y\":0.0202351771295071,\"z\":359.919738769531}},\"f3ec1a\":{\"lock\":false,\"pos\":{\"x\":-4.1392068862915,\"y\":1.64114463329315,\"z\":13.8521070480347},\"rot\":{\"x\":359.919738769531,\"y\":269.999969482422,\"z\":180.016830444336}},\"f508c6\":{\"lock\":false,\"pos\":{\"x\":-2.17174243927002,\"y\":1.40422546863556,\"z\":16.1852245330811},\"rot\":{\"x\":359.983154296875,\"y\":0.000792859180364758,\"z\":359.919677734375}},\"f724f6\":{\"lock\":false,\"pos\":{\"x\":-3.95589113235474,\"y\":1.59753930568695,\"z\":-10.441180229187},\"rot\":{\"x\":359.919738769531,\"y\":269.998809814453,\"z\":0.0168387722223997}},\"f92601\":{\"lock\":false,\"pos\":{\"x\":-23.6766185760498,\"y\":1.64725410938263,\"z\":7.57001829147339},\"rot\":{\"x\":359.920104980469,\"y\":269.981109619141,\"z\":0.0168684143573046}},\"f9aa84\":{\"lock\":false,\"pos\":{\"x\":-3.60487985610962,\"y\":1.58209574222565,\"z\":-15.0256805419922},\"rot\":{\"x\":359.919738769531,\"y\":270.016235351563,\"z\":0.0168155282735825}},\"fc6896\":{\"lock\":false,\"pos\":{\"x\":-31.0463085174561,\"y\":1.63351726531982,\"z\":-16.8635444641113},\"rot\":{\"x\":359.934448242188,\"y\":270.034027099609,\"z\":1.57601070404053}},\"fe6f38\":{\"lock\":false,\"pos\":{\"x\":-11.7010860443115,\"y\":1.65868031978607,\"z\":11.5981149673462},\"rot\":{\"x\":359.920104980469,\"y\":269.999908447266,\"z\":0.0168502647429705}},\"fff4bf\":{\"lock\":false,\"pos\":{\"x\":-2.68847942352295,\"y\":1.59734869003296,\"z\":-5.04854393005371},\"rot\":{\"x\":0.0168257001787424,\"y\":180.007339477539,\"z\":0.0802572071552277}}}}",
"XmlUI": ""
},
{
"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",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "f7e5eb",
"Name": "Custom_Model",
"Transform": {
"posX": 48.80107,
"posY": 4.00670576,
"posZ": 5.76878643,
"rotX": 359.804474,
"rotY": 270.0047,
"rotZ": 0.0455488451,
"scaleX": 2.21,
"scaleY": 0.46,
"scaleZ": 2.42
},
"Nickname": "Ages Unwound",
"Description": "",
"GMNotes": "fancreations/campaign_ages_unwound.json",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.40592286,
"g": 0.40592286,
"b": 0.40592286
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"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/1811004822724765158/DE184EBA95BF16D06DC2528B30E9058A87C7567E/",
"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": "function 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\":{\"00430e\":{\"lock\":false,\"pos\":{\"x\":-2.7248,\"y\":1.6208,\"z\":0.3733},\"rot\":{\"x\":359.9197,\"y\":270.0209,\"z\":0.0168}},\"004cfe\":{\"lock\":false,\"pos\":{\"x\":-26.9746,\"y\":1.6474,\"z\":-7.719},\"rot\":{\"x\":359.9201,\"y\":269.9977,\"z\":0.0168}},\"00d866\":{\"lock\":false,\"pos\":{\"x\":-36.7731,\"y\":1.6463,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":180.0168}},\"022ddf\":{\"lock\":false,\"pos\":{\"x\":12.2516,\"y\":1.4582,\"z\":-21.306},\"rot\":{\"x\":359.9201,\"y\":270.0089,\"z\":0.0169}},\"031bc3\":{\"lock\":false,\"pos\":{\"x\":-36.7731,\"y\":1.6463,\"z\":-0.0302},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":180.0168}},\"04861e\":{\"lock\":false,\"pos\":{\"x\":-22.1074142456055,\"y\":1.65198755264282,\"z\":-0.0799271017313004},\"rot\":{\"x\":358.949035644531,\"y\":269.996215820313,\"z\":0.00770164048299193}},\"0504b5\":{\"lock\":false,\"pos\":{\"x\":-11.2926998138428,\"y\":1.64528131484985,\"z\":10.474401473999},\"rot\":{\"x\":359.920104980469,\"y\":270,\"z\":0.0168414264917374}},\"05b0dd\":{\"lock\":false,\"pos\":{\"x\":-23.6763114929199,\"y\":1.6280529499054,\"z\":-0.0299995802342892},\"rot\":{\"x\":359.920288085938,\"y\":270.000335693359,\"z\":0.015868254005909}},\"066856\":{\"lock\":false,\"pos\":{\"x\":-20.3639,\"y\":1.711,\"z\":3.7797},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":180.0168}},\"0727ee\":{\"lock\":false,\"pos\":{\"x\":1.6964,\"y\":1.5583,\"z\":14.2788},\"rot\":{\"x\":359.9551,\"y\":224.998,\"z\":0.0687}},\"073668\":{\"lock\":false,\"pos\":{\"x\":-2.68840003013611,\"y\":1.614302277565,\"z\":-5.04850006103516},\"rot\":{\"x\":0.0168355908244848,\"y\":180.000106811523,\"z\":0.0802557617425919}},\"0b0c58\":{\"lock\":false,\"pos\":{\"x\":-5.7816,\"y\":1.6687,\"z\":15.6917},\"rot\":{\"x\":359.9197,\"y\":270.0067,\"z\":180.0168}},\"0bbad1\":{\"lock\":false,\"pos\":{\"x\":-32.2743,\"y\":1.6254,\"z\":-3.6548},\"rot\":{\"x\":0.0254,\"y\":30.0076,\"z\":359.9224}},\"0dc38e\":{\"lock\":false,\"pos\":{\"x\":-2.6885,\"y\":1.5973,\"z\":-5.0485},\"rot\":{\"x\":0.0168,\"y\":180.0005,\"z\":0.0803}},\"0e28db\":{\"lock\":false,\"pos\":{\"x\":-36.7732,\"y\":1.6486,\"z\":7.5699},\"rot\":{\"x\":359.9201,\"y\":269.9991,\"z\":0.0168}},\"0f29d2\":{\"lock\":false,\"pos\":{\"x\":-23.6766,\"y\":1.6865,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":270.0001,\"z\":0.0169}},\"0f6a9a\":{\"lock\":false,\"pos\":{\"x\":-30.2243,\"y\":1.6372,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9991,\"z\":180.0168}},\"0f9069\":{\"lock\":false,\"pos\":{\"x\":-2.68841552734375,\"y\":1.62393045425415,\"z\":-5.04849767684937},\"rot\":{\"x\":0.0167863219976425,\"y\":180.035003662109,\"z\":0.0802668780088425}},\"11f346\":{\"lock\":false,\"pos\":{\"x\":-2.7248,\"y\":1.6159,\"z\":0.3733},\"rot\":{\"x\":359.9197,\"y\":269.9995,\"z\":0.0168}},\"127c22\":{\"lock\":false,\"pos\":{\"x\":-3.956,\"y\":1.5975,\"z\":-10.4412},\"rot\":{\"x\":359.9197,\"y\":270.0034,\"z\":180.0168}},\"12ee5c\":{\"lock\":false,\"pos\":{\"x\":-2.6886,\"y\":1.6239,\"z\":-5.0485},\"rot\":{\"x\":0.0168,\"y\":179.9979,\"z\":0.0803}},\"133c08\":{\"lock\":false,\"pos\":{\"x\":-26.8915,\"y\":1.6274,\"z\":-17.6781},\"rot\":{\"x\":359.9201,\"y\":269.9982,\"z\":180.0168}},\"140554\":{\"lock\":false,\"pos\":{\"x\":-30.2241,\"y\":1.6372,\"z\":-0.0301},\"rot\":{\"x\":359.9201,\"y\":270,\"z\":180.0168}},\"14294d\":{\"lock\":false,\"pos\":{\"x\":-30.2243003845215,\"y\":1.62247538566589,\"z\":-3.82999968528748},\"rot\":{\"x\":359.983154296875,\"y\":9.45557644627115E-07,\"z\":359.920074462891}},\"156143\":{\"lock\":false,\"pos\":{\"x\":-26.8175,\"y\":1.6176,\"z\":-4.2813},\"rot\":{\"x\":359.9316,\"y\":314.9987,\"z\":359.9554}},\"188869\":{\"lock\":false,\"pos\":{\"x\":-33.7877006530762,\"y\":1.62736082077026,\"z\":-4.1144003868103},\"rot\":{\"x\":359.931579589844,\"y\":314.995208740234,\"z\":359.955413818359}},\"18fe65\":{\"lock\":false,\"pos\":{\"x\":-2.7246,\"y\":1.6551,\"z\":0.3733},\"rot\":{\"x\":0.0168,\"y\":180,\"z\":0.0803}},\"1b18e3\":{\"lock\":false,\"pos\":{\"x\":-28.6364,\"y\":1.6179,\"z\":-11.6987},\"rot\":{\"x\":0.0254,\"y\":30.0069,\"z\":359.9224}},\"1b5ff6\":{\"lock\":false,\"pos\":{\"x\":-3.9278,\"y\":1.7396,\"z\":5.7572},\"rot\":{\"x\":359.9197,\"y\":269.9997,\"z\":180.0168}},\"1c0ba0\":{\"lock\":false,\"pos\":{\"x\":-2.7248,\"y\":1.6256,\"z\":0.3733},\"rot\":{\"x\":359.9197,\"y\":270.0203,\"z\":0.0168}},\"1c28a2\":{\"lock\":false,\"pos\":{\"x\":-3.9278,\"y\":1.8118,\"z\":5.7572},\"rot\":{\"x\":359.9197,\"y\":270,\"z\":180.0168}},\"1d3069\":{\"lock\":false,\"pos\":{\"x\":-3.9272,\"y\":1.8463,\"z\":5.7572},\"rot\":{\"x\":359.9197,\"y\":270,\"z\":180.0168}},\"1eacd2\":{\"lock\":false,\"pos\":{\"x\":-23.6762199401855,\"y\":1.62580633163452,\"z\":-7.69966125488281},\"rot\":{\"x\":359.920471191406,\"y\":269.987823486328,\"z\":0.0164900496602058}},\"232fcf\":{\"lock\":false,\"pos\":{\"x\":-3.956,\"y\":1.5975,\"z\":-10.4412},\"rot\":{\"x\":359.9197,\"y\":269.9996,\"z\":0.0168}},\"24051c\":{\"lock\":false,\"pos\":{\"x\":-3.956,\"y\":1.5975,\"z\":-10.4412},\"rot\":{\"x\":359.9197,\"y\":269.9973,\"z\":180.0168}},\"24194b\":{\"lock\":false,\"pos\":{\"x\":-26.9644,\"y\":1.619,\"z\":-0.0254},\"rot\":{\"x\":0.0799,\"y\":89.9918,\"z\":359.9831}},\"242601\":{\"lock\":false,\"pos\":{\"x\":-12.1035,\"y\":1.6502,\"z\":7.1013},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":180.0168}},\"247967\":{\"lock\":false,\"pos\":{\"x\":-3.502,\"y\":1.582,\"z\":-14.91},\"rot\":{\"x\":359.9204,\"y\":270.007,\"z\":0.0177}},\"24d46d\":{\"lock\":false,\"pos\":{\"x\":-5.8948,\"y\":1.5,\"z\":-14.5194},\"rot\":{\"x\":359.9817,\"y\":0,\"z\":359.953}},\"24d9ae\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6247,\"z\":-11.5103},\"rot\":{\"x\":359.9201,\"y\":270.0001,\"z\":180.0168}},\"254882\":{\"lock\":false,\"pos\":{\"x\":-30.2243,\"y\":1.6372,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":180.0168}},\"255665\":{\"lock\":false,\"pos\":{\"x\":-3.956,\"y\":1.5975,\"z\":-10.4412},\"rot\":{\"x\":359.9197,\"y\":269.9999,\"z\":0.0168}},\"255ca1\":{\"lock\":false,\"pos\":{\"x\":-33.5974,\"y\":1.7283,\"z\":0.0331},\"rot\":{\"x\":0.0799,\"y\":89.9999,\"z\":179.9832}},\"26f00f\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6201,\"z\":3.86},\"rot\":{\"x\":359.9201,\"y\":269.9983,\"z\":180.0168}},\"2701b0\":{\"lock\":false,\"pos\":{\"x\":-3.9563,\"y\":1.5975,\"z\":-10.442},\"rot\":{\"x\":359.9197,\"y\":269.9972,\"z\":0.0168}},\"27d0df\":{\"lock\":false,\"pos\":{\"x\":-2.7246,\"y\":1.664,\"z\":0.3733},\"rot\":{\"x\":0.0168,\"y\":179.9939,\"z\":0.0803}},\"2889fa\":{\"lock\":false,\"pos\":{\"x\":-2.6886,\"y\":1.6143,\"z\":-5.0485},\"rot\":{\"x\":359.9197,\"y\":269.9995,\"z\":0.0168}},\"289f45\":{\"lock\":false,\"pos\":{\"x\":-2.6886,\"y\":1.6191,\"z\":-5.0485},\"rot\":{\"x\":359.9197,\"y\":270.0211,\"z\":0.0168}},\"2a8b58\":{\"lock\":false,\"pos\":{\"x\":-3.956,\"y\":1.5975,\"z\":-10.4412},\"rot\":{\"x\":359.9197,\"y\":269.9998,\"z\":0.0168}},\"2baf46\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6314,\"z\":11.46},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":180.0168}},\"2c0325\":{\"lock\":false,\"pos\":{\"x\":1.6964,\"y\":1.5583,\"z\":14.2789},\"rot\":{\"x\":359.9551,\"y\":225.0012,\"z\":0.0687}},\"2c535b\":{\"lock\":false,\"pos\":{\"x\":-29.0341,\"y\":1.7197,\"z\":-7.6416},\"rot\":{\"x\":0.0254,\"y\":30.0001,\"z\":179.9224}},\"2d2cea\":{\"lock\":false,\"pos\":{\"x\":-30.2243,\"y\":1.6586,\"z\":15.19},\"rot\":{\"x\":359.9201,\"y\":269.9971,\"z\":0.0168}},\"2e58be\":{\"lock\":false,\"pos\":{\"x\":-2.7248,\"y\":1.6208,\"z\":0.3733},\"rot\":{\"x\":359.9197,\"y\":269.9995,\"z\":0.0168}},\"2eb7a1\":{\"lock\":false,\"pos\":{\"x\":-21.4944,\"y\":1.7855,\"z\":-7.738},\"rot\":{\"x\":356.077,\"y\":270.0019,\"z\":0.0175}},\"2ee2b1\":{\"lock\":false,\"pos\":{\"x\":-3.927414894104,\"y\":1.76844847202301,\"z\":5.75720548629761},\"rot\":{\"x\":359.919738769531,\"y\":270,\"z\":180.016815185547}},\"2ee4bd\":{\"lock\":false,\"pos\":{\"x\":-2.68842387199402,\"y\":1.61430239677429,\"z\":-5.04849529266357},\"rot\":{\"x\":0.0168356243520975,\"y\":180.000106811523,\"z\":0.0802557170391083}},\"30684d\":{\"lock\":false,\"pos\":{\"x\":12.2514,\"y\":1.4633,\"z\":-3.92},\"rot\":{\"x\":359.9201,\"y\":269.9965,\"z\":0.0169}},\"356aa9\":{\"lock\":false,\"pos\":{\"x\":-30.2243,\"y\":1.6349,\"z\":-7.7},\"rot\":{\"x\":359.9201,\"y\":270.0009,\"z\":180.0168}},\"35a5ed\":{\"lock\":false,\"pos\":{\"x\":-2.7248,\"y\":1.6256,\"z\":0.3733},\"rot\":{\"x\":359.9197,\"y\":270.0204,\"z\":0.0168}},\"35bf8e\":{\"lock\":false,\"pos\":{\"x\":-26.6194000244141,\"y\":1.62078189849854,\"z\":7.51179981231689},\"rot\":{\"x\":0.0798935890197754,\"y\":89.9971008300781,\"z\":359.983123779297}},\"3638b9\":{\"lock\":false,\"pos\":{\"x\":-36.7731,\"y\":1.6633,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":270,\"z\":180.0168}},\"364115\":{\"lock\":false,\"pos\":{\"x\":-30.2242,\"y\":1.6586,\"z\":15.1899},\"rot\":{\"x\":359.9201,\"y\":269.9997,\"z\":0.0168}},\"3726c0\":{\"lock\":false,\"pos\":{\"x\":-27.1284,\"y\":1.6204,\"z\":3.8457},\"rot\":{\"x\":359.9316,\"y\":315.0028,\"z\":359.9554}},\"38d15b\":{\"lock\":false,\"pos\":{\"x\":-28.3176,\"y\":1.6199,\"z\":-3.6849},\"rot\":{\"x\":359.9454,\"y\":329.9789,\"z\":359.9392}},\"393742\":{\"lock\":false,\"pos\":{\"x\":-26.6029,\"y\":1.631,\"z\":-3.8066},\"rot\":{\"x\":359.9201,\"y\":270,\"z\":180.0168}},\"393c71\":{\"lock\":false,\"pos\":{\"x\":-3.96210074424744,\"y\":1.58277440071106,\"z\":-14.4190082550049},\"rot\":{\"x\":359.919738769531,\"y\":270.005798339844,\"z\":0.0168296620249748}},\"3de646\":{\"lock\":false,\"pos\":{\"x\":-36.7729,\"y\":1.7339,\"z\":3.8599},\"rot\":{\"x\":359.9832,\"y\":0.0004,\"z\":179.92}},\"3f13be\":{\"lock\":false,\"pos\":{\"x\":-30.224,\"y\":1.7247,\"z\":3.86},\"rot\":{\"x\":359.9832,\"y\":0.0002,\"z\":179.9201}},\"3f69bd\":{\"lock\":false,\"pos\":{\"x\":-3.9562,\"y\":1.5975,\"z\":-10.4418},\"rot\":{\"x\":359.9197,\"y\":269.9989,\"z\":0.0168}},\"3fd58d\":{\"lock\":false,\"pos\":{\"x\":-28.533,\"y\":1.6224,\"z\":3.8911},\"rot\":{\"x\":0.0254,\"y\":30.0068,\"z\":359.9224}},\"425157\":{\"lock\":false,\"pos\":{\"x\":-26.7825,\"y\":1.6272,\"z\":-17.6964},\"rot\":{\"x\":359.9201,\"y\":270,\"z\":180.0168}},\"43194d\":{\"lock\":false,\"pos\":{\"x\":-3.9275,\"y\":1.807,\"z\":5.7571},\"rot\":{\"x\":359.9197,\"y\":269.9999,\"z\":180.0168}},\"44b0c5\":{\"lock\":false,\"pos\":{\"x\":-20.5196,\"y\":1.6101,\"z\":-0.0882},\"rot\":{\"x\":359.9201,\"y\":269.9942,\"z\":0.0169}},\"44ba74\":{\"lock\":false,\"pos\":{\"x\":-2.7248,\"y\":1.6208,\"z\":0.3734},\"rot\":{\"x\":0.0168,\"y\":179.9984,\"z\":0.0803}},\"45341b\":{\"lock\":false,\"pos\":{\"x\":-23.6765174865723,\"y\":1.63030016422272,\"z\":7.57000255584717},\"rot\":{\"x\":359.920104980469,\"y\":269.999877929688,\"z\":0.0168404877185822}},\"47ff0e\":{\"lock\":false,\"pos\":{\"x\":-30.224100112915,\"y\":1.6371967792511,\"z\":-0.0300003066658974},\"rot\":{\"x\":359.920104980469,\"y\":269.999694824219,\"z\":0.0168400406837463}},\"49bfac\":{\"lock\":false,\"pos\":{\"x\":-23.6764,\"y\":1.6428,\"z\":-7.7001},\"rot\":{\"x\":359.9201,\"y\":270,\"z\":180.0168}},\"4b1874\":{\"lock\":false,\"pos\":{\"x\":-23.6764163970947,\"y\":1.62806642055511,\"z\":-0.030196737498045},\"rot\":{\"x\":359.920104980469,\"y\":269.998413085938,\"z\":0.0168425049632788}},\"4b3a73\":{\"lock\":false,\"pos\":{\"x\":-23.6766,\"y\":1.6258,\"z\":-7.7},\"rot\":{\"x\":359.9201,\"y\":270.0014,\"z\":180.0168}},\"4c4031\":{\"lock\":false,\"pos\":{\"x\":-2.7248,\"y\":1.6208,\"z\":0.3733},\"rot\":{\"x\":0.0169,\"y\":179.96,\"z\":0.0802}},\"4f0ae7\":{\"lock\":false,\"pos\":{\"x\":-30.2243,\"y\":1.6394,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":269.9998,\"z\":0.0168}},\"4f822c\":{\"lock\":false,\"pos\":{\"x\":-28.57,\"y\":1.7214,\"z\":0.2148},\"rot\":{\"x\":359.9455,\"y\":330.0001,\"z\":179.9392}},\"500ae5\":{\"lock\":false,\"pos\":{\"x\":-35.5959,\"y\":1.63,\"z\":-3.703},\"rot\":{\"x\":359.9455,\"y\":329.9933,\"z\":359.9392}},\"50fc37\":{\"lock\":false,\"pos\":{\"x\":-3.92750406265259,\"y\":1.70105195045471,\"z\":5.75720119476318},\"rot\":{\"x\":359.919738769531,\"y\":269.999420166016,\"z\":180.016815185547}},\"51c0d9\":{\"lock\":false,\"pos\":{\"x\":12.2531,\"y\":1.4735,\"z\":30.8262},\"rot\":{\"x\":359.9201,\"y\":270.0129,\"z\":0.0169}},\"52dd93\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6721,\"z\":-15.28},\"rot\":{\"x\":359.9201,\"y\":270.0002,\"z\":0.0169}},\"52f8d5\":{\"lock\":false,\"pos\":{\"x\":1.6964008808136,\"y\":1.55831670761108,\"z\":14.278902053833},\"rot\":{\"x\":359.955139160156,\"y\":224.998016357422,\"z\":0.0686715692281723}},\"5484d3\":{\"lock\":false,\"pos\":{\"x\":-36.7732,\"y\":1.661,\"z\":-7.7002},\"rot\":{\"x\":359.9201,\"y\":269.9997,\"z\":180.0168}},\"55cac8\":{\"lock\":false,\"pos\":{\"x\":-11.1399278640747,\"y\":1.41411137580872,\"z\":7.3362250328064},\"rot\":{\"x\":359.983154296875,\"y\":-7.57175366743468E-05,\"z\":359.920043945313}},\"57d9e9\":{\"lock\":false,\"pos\":{\"x\":-23.6765003204346,\"y\":1.61560487747192,\"z\":3.86000108718872},\"rot\":{\"x\":0.0168614368885756,\"y\":179.984069824219,\"z\":0.0799344405531883}},\"57fc40\":{\"lock\":false,\"pos\":{\"x\":-3.956,\"y\":1.5975,\"z\":-10.4412},\"rot\":{\"x\":359.9197,\"y\":269.9997,\"z\":0.0168}},\"584326\":{\"lock\":false,\"pos\":{\"x\":-30.2243,\"y\":1.6542,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":270.0335,\"z\":0.0168}},\"584b1a\":{\"lock\":false,\"pos\":{\"x\":-2.72460699081421,\"y\":1.62076032161713,\"z\":0.373302042484283},\"rot\":{\"x\":0.016835467889905,\"y\":180.000091552734,\"z\":0.080255888402462}},\"588354\":{\"lock\":false,\"pos\":{\"x\":-30.2243,\"y\":1.6805,\"z\":11.46},\"rot\":{\"x\":359.9201,\"y\":270.0007,\"z\":0.0169}},\"5a09e8\":{\"lock\":false,\"pos\":{\"x\":-26.8946,\"y\":1.6167,\"z\":-7.7475},\"rot\":{\"x\":0.0799,\"y\":89.9671,\"z\":359.9831}},\"5a6870\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6134,\"z\":-3.83},\"rot\":{\"x\":0.0169,\"y\":179.9999,\"z\":0.0799}},\"5a6fc6\":{\"lock\":false,\"pos\":{\"x\":-36.7732,\"y\":1.6655,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":269.9998,\"z\":180.0168}},\"5af4bf\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6258,\"z\":-7.7},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":180.0168}},\"5b01f6\":{\"lock\":false,\"pos\":{\"x\":-33.431999206543,\"y\":1.63023662567139,\"z\":7.35879898071289},\"rot\":{\"x\":0.0798932984471321,\"y\":89.9970321655273,\"z\":359.983123779297}},\"5b0903\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.645,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9998,\"z\":180.0168}},\"5c46c6\":{\"lock\":false,\"pos\":{\"x\":-30.2243,\"y\":1.6349,\"z\":-7.7001},\"rot\":{\"x\":359.9201,\"y\":269.9992,\"z\":0.0168}},\"5e6a84\":{\"lock\":false,\"pos\":{\"x\":1.6978,\"y\":1.5583,\"z\":14.2786},\"rot\":{\"x\":359.9551,\"y\":225.0012,\"z\":0.0687}},\"5e9e43\":{\"lock\":false,\"pos\":{\"x\":-27.0287,\"y\":1.7203,\"z\":3.8183},\"rot\":{\"x\":359.92,\"y\":270.0641,\"z\":180.0166}},\"60a5f6\":{\"lock\":false,\"pos\":{\"x\":-17.1201,\"y\":1.6042,\"z\":-3.8287},\"rot\":{\"x\":359.9831,\"y\":-0.0041,\"z\":359.92}},\"62a154\":{\"lock\":false,\"pos\":{\"x\":-2.6886,\"y\":1.6239,\"z\":-5.0486},\"rot\":{\"x\":359.9197,\"y\":269.9958,\"z\":0.0168}},\"62c028\":{\"lock\":false,\"pos\":{\"x\":-3.9268,\"y\":1.793,\"z\":5.7571},\"rot\":{\"x\":359.9197,\"y\":270,\"z\":180.0168}},\"633816\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6862,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":270,\"z\":0.0169}},\"6368e6\":{\"lock\":false,\"pos\":{\"x\":-2.6886,\"y\":1.6239,\"z\":-5.0522},\"rot\":{\"x\":0.0168,\"y\":180.0047,\"z\":0.0803}},\"64a607\":{\"lock\":false,\"pos\":{\"x\":-4.0506,\"y\":1.5828,\"z\":-14.8887},\"rot\":{\"x\":359.9197,\"y\":269.9735,\"z\":0.0169}},\"655f00\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6065,\"z\":3.86},\"rot\":{\"x\":359.9831,\"y\":-0.0041,\"z\":359.92}},\"6571a3\":{\"lock\":false,\"pos\":{\"x\":-2.6884,\"y\":1.6535,\"z\":-5.0485},\"rot\":{\"x\":0.0168,\"y\":180,\"z\":0.0803}},\"65f985\":{\"lock\":false,\"pos\":{\"x\":-2.6885,\"y\":1.6143,\"z\":-5.0485},\"rot\":{\"x\":0.0168,\"y\":180.0002,\"z\":0.0803}},\"66a2dd\":{\"lock\":false,\"pos\":{\"x\":-25.0681,\"y\":1.7141,\"z\":-7.7809},\"rot\":{\"x\":359.9455,\"y\":330,\"z\":179.9392}},\"67d0e2\":{\"lock\":false,\"pos\":{\"x\":-30.2243,\"y\":1.6394,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":269.9991,\"z\":180.0168}},\"680d25\":{\"lock\":false,\"pos\":{\"x\":-2.6885,\"y\":1.6535,\"z\":-5.0485},\"rot\":{\"x\":0.0168,\"y\":179.9999,\"z\":0.0803}},\"69b78e\":{\"lock\":false,\"pos\":{\"x\":1.69600069522858,\"y\":1.55831730365753,\"z\":14.2787017822266},\"rot\":{\"x\":359.955139160156,\"y\":224.998001098633,\"z\":0.0686735510826111}},\"69f8c5\":{\"lock\":false,\"pos\":{\"x\":-23.4317,\"y\":1.633,\"z\":17.8768},\"rot\":{\"x\":359.9201,\"y\":269.9994,\"z\":180.0168}},\"69fdfb\":{\"lock\":false,\"pos\":{\"x\":-30.2243,\"y\":1.6258,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":270.0274,\"z\":0.0168}},\"6a6a67\":{\"lock\":false,\"pos\":{\"x\":-33.3743,\"y\":1.6405,\"z\":-3.7899},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":180.0168}},\"6a83c1\":{\"lock\":false,\"pos\":{\"x\":1.69610178470612,\"y\":1.55831718444824,\"z\":14.2789039611816},\"rot\":{\"x\":359.955139160156,\"y\":224.9912109375,\"z\":0.0686781033873558}},\"6bdd52\":{\"lock\":false,\"pos\":{\"x\":-36.7732,\"y\":1.6486,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":269.9991,\"z\":180.0168}},\"6c39d5\":{\"lock\":false,\"pos\":{\"x\":-20.6956,\"y\":1.6103,\"z\":-0.0915},\"rot\":{\"x\":359.9201,\"y\":269.9926,\"z\":0.0169}},\"6c7a0b\":{\"lock\":false,\"pos\":{\"x\":-26.7378005981445,\"y\":1.61766254901886,\"z\":-3.66310119628906},\"rot\":{\"x\":0.0683989003300667,\"y\":135.011825561523,\"z\":0.0445992574095726}},\"6d6451\":{\"lock\":false,\"pos\":{\"x\":-33.7106,\"y\":1.6307,\"z\":7.6711},\"rot\":{\"x\":0.0799,\"y\":89.9933,\"z\":359.9831}},\"6e7317\":{\"lock\":false,\"pos\":{\"x\":-2.7249,\"y\":1.6208,\"z\":0.3734},\"rot\":{\"x\":0.0168,\"y\":179.9996,\"z\":0.0803}},\"703373\":{\"lock\":false,\"pos\":{\"x\":-4.1502,\"y\":1.5829,\"z\":-14.7443},\"rot\":{\"x\":359.9197,\"y\":269.9849,\"z\":0.0169}},\"70df0b\":{\"lock\":false,\"pos\":{\"x\":-3.95591688156128,\"y\":1.59753930568695,\"z\":-10.4412984848022},\"rot\":{\"x\":359.919738769531,\"y\":269.997314453125,\"z\":0.0168418549001217}},\"71627e\":{\"lock\":false,\"pos\":{\"x\":-3.9279,\"y\":1.6914,\"z\":5.7573},\"rot\":{\"x\":359.9197,\"y\":270.0761,\"z\":180.0167}},\"72053e\":{\"lock\":false,\"pos\":{\"x\":1.6967,\"y\":1.5583,\"z\":14.2787},\"rot\":{\"x\":359.9551,\"y\":224.998,\"z\":0.0687}},\"7234af\":{\"lock\":false,\"pos\":{\"x\":-33.6046,\"y\":1.6305,\"z\":7.4915},\"rot\":{\"x\":359.9201,\"y\":269.9946,\"z\":0.0169}},\"726813\":{\"lock\":false,\"pos\":{\"x\":-3.9274,\"y\":1.8357,\"z\":5.7571},\"rot\":{\"x\":359.9197,\"y\":270.0001,\"z\":180.0168}},\"72eded\":{\"lock\":false,\"pos\":{\"x\":-11.9367,\"y\":1.6011,\"z\":-1.7661},\"rot\":{\"x\":359.9201,\"y\":270.0135,\"z\":0.0168}},\"7310f8\":{\"lock\":false,\"pos\":{\"x\":-17.1200180053711,\"y\":1.61666798591614,\"z\":-7.69979953765869},\"rot\":{\"x\":359.920135498047,\"y\":270.002746582031,\"z\":0.0167039167135954}},\"740ce8\":{\"lock\":false,\"pos\":{\"x\":-2.7247,\"y\":1.6208,\"z\":0.3734},\"rot\":{\"x\":0.0168,\"y\":179.9997,\"z\":0.0803}},\"74c9ca\":{\"lock\":false,\"pos\":{\"x\":-33.3711,\"y\":1.6563,\"z\":-7.6052},\"rot\":{\"x\":359.9201,\"y\":269.997,\"z\":0.0168}},\"766316\":{\"lock\":false,\"pos\":{\"x\":-3.9278,\"y\":1.7684,\"z\":5.7571},\"rot\":{\"x\":359.9197,\"y\":269.9987,\"z\":180.0168}},\"767883\":{\"lock\":false,\"pos\":{\"x\":-23.6995,\"y\":1.6334,\"z\":17.8548},\"rot\":{\"x\":359.9201,\"y\":269.9985,\"z\":180.0168}},\"768494\":{\"lock\":false,\"pos\":{\"x\":-30.2243,\"y\":1.6956,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":0.0169}},\"76ee28\":{\"lock\":false,\"pos\":{\"x\":-33.4321,\"y\":1.6608,\"z\":7.5042},\"rot\":{\"x\":359.9201,\"y\":269.9997,\"z\":0.0168}},\"777479\":{\"lock\":false,\"pos\":{\"x\":-26.9066,\"y\":1.6517,\"z\":7.5415},\"rot\":{\"x\":359.9201,\"y\":269.9975,\"z\":0.0168}},\"7b8844\":{\"lock\":false,\"pos\":{\"x\":-2.72460007667542,\"y\":1.62076032161713,\"z\":0.373300313949585},\"rot\":{\"x\":0.0168356467038393,\"y\":180,\"z\":0.0802559331059456}},\"7b8d65\":{\"lock\":false,\"pos\":{\"x\":-22.547700881958,\"y\":1.61185455322266,\"z\":-3.54469966888428},\"rot\":{\"x\":0.0168615225702524,\"y\":179.983963012695,\"z\":0.0799346789717674}},\"7bb181\":{\"lock\":false,\"pos\":{\"x\":1.6845,\"y\":1.541,\"z\":-18.7682},\"rot\":{\"x\":359.9201,\"y\":270.0003,\"z\":180.0169}},\"7c5f0c\":{\"lock\":false,\"pos\":{\"x\":-3.9276,\"y\":1.7877,\"z\":5.7571},\"rot\":{\"x\":359.9197,\"y\":269.9999,\"z\":180.0168}},\"7d01a8\":{\"lock\":false,\"pos\":{\"x\":-12.0961,\"y\":1.6502,\"z\":7.054},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":180.0168}},\"7ec61f\":{\"lock\":false,\"pos\":{\"x\":-20.3635234832764,\"y\":1.60756397247314,\"z\":-7.79511642456055},\"rot\":{\"x\":359.918487548828,\"y\":269.896545410156,\"z\":0.0177300665527582}},\"7faf81\":{\"lock\":false,\"pos\":{\"x\":-17.1199169158936,\"y\":1.61892378330231,\"z\":-0.0299970954656601},\"rot\":{\"x\":359.920104980469,\"y\":269.999877929688,\"z\":0.0168409533798695}},\"7fe445\":{\"lock\":false,\"pos\":{\"x\":-2.6893,\"y\":1.6191,\"z\":-5.0488},\"rot\":{\"x\":359.9197,\"y\":270.0017,\"z\":0.0168}},\"800725\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6281,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9984,\"z\":0.0168}},\"80170c\":{\"lock\":false,\"pos\":{\"x\":0.9576,\"y\":1.6,\"z\":-40.432},\"rot\":{\"x\":0,\"y\":270.0164,\"z\":-0.0003}},\"80236e\":{\"lock\":false,\"pos\":{\"x\":-30.2243,\"y\":1.6954,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9994,\"z\":0.0169}},\"81aa81\":{\"lock\":false,\"pos\":{\"x\":-25.1421,\"y\":1.7166,\"z\":0.1523},\"rot\":{\"x\":0.0254,\"y\":30.0001,\"z\":179.9224}},\"828c23\":{\"lock\":false,\"pos\":{\"x\":-30.2243,\"y\":1.6383,\"z\":3.86},\"rot\":{\"x\":359.9201,\"y\":269.998,\"z\":180.0168}},\"82f7d9\":{\"lock\":false,\"pos\":{\"x\":-3.92740058898926,\"y\":1.749192237854,\"z\":5.75720071792603},\"rot\":{\"x\":359.919738769531,\"y\":270,\"z\":180.016815185547}},\"835bdb\":{\"lock\":false,\"pos\":{\"x\":-17.1202,\"y\":1.6633,\"z\":11.4601},\"rot\":{\"x\":359.9201,\"y\":269.992,\"z\":180.0168}},\"84963c\":{\"lock\":false,\"pos\":{\"x\":-33.5150985717773,\"y\":1.62818801403046,\"z\":-0.00610029092058539},\"rot\":{\"x\":0.0798945277929306,\"y\":90.0005187988281,\"z\":359.983123779297}},\"850adf\":{\"lock\":false,\"pos\":{\"x\":-3.956,\"y\":1.5975,\"z\":-10.4413},\"rot\":{\"x\":359.9197,\"y\":269.999,\"z\":0.0168}},\"855c79\":{\"lock\":false,\"pos\":{\"x\":-11.889,\"y\":1.6499,\"z\":6.9123},\"rot\":{\"x\":359.9201,\"y\":270,\"z\":180.0168}},\"8662fa\":{\"lock\":false,\"pos\":{\"x\":-30.2243,\"y\":1.6954,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":0.0169}},\"86a48b\":{\"lock\":false,\"pos\":{\"x\":-2.7247,\"y\":1.6256,\"z\":0.3735},\"rot\":{\"x\":0.0168,\"y\":180.0012,\"z\":0.0803}},\"870c38\":{\"lock\":false,\"pos\":{\"x\":-33.4038,\"y\":1.6268,\"z\":-4.2273},\"rot\":{\"x\":0.0445,\"y\":44.9587,\"z\":359.9316}},\"87adbf\":{\"lock\":false,\"pos\":{\"x\":12.2514,\"y\":1.4684,\"z\":13.4371},\"rot\":{\"x\":359.9201,\"y\":270.0184,\"z\":0.0168}},\"880f76\":{\"lock\":false,\"pos\":{\"x\":-36.7733,\"y\":1.6418,\"z\":-15.28},\"rot\":{\"x\":359.9201,\"y\":270.0001,\"z\":180.0168}},\"88403a\":{\"lock\":false,\"pos\":{\"x\":-23.6766,\"y\":1.6258,\"z\":-7.7},\"rot\":{\"x\":359.9201,\"y\":269.9998,\"z\":0.0168}},\"88a80e\":{\"lock\":false,\"pos\":{\"x\":-26.7661,\"y\":1.6471,\"z\":-7.7342},\"rot\":{\"x\":359.9201,\"y\":269.9989,\"z\":0.0168}},\"89652f\":{\"lock\":false,\"pos\":{\"x\":-3.9278,\"y\":1.7973,\"z\":5.7572},\"rot\":{\"x\":359.9197,\"y\":269.9983,\"z\":180.0168}},\"896640\":{\"lock\":false,\"pos\":{\"x\":-30.224,\"y\":1.7225,\"z\":-3.83},\"rot\":{\"x\":0.0799,\"y\":89.9998,\"z\":179.9832}},\"89943d\":{\"lock\":false,\"pos\":{\"x\":-35.4139,\"y\":1.6319,\"z\":3.6922},\"rot\":{\"x\":0.0254,\"y\":30.0032,\"z\":359.9224}},\"8ad293\":{\"lock\":false,\"pos\":{\"x\":-28.5349,\"y\":1.6246,\"z\":11.3875},\"rot\":{\"x\":359.9455,\"y\":329.9887,\"z\":359.9392}},\"8af52e\":{\"lock\":false,\"pos\":{\"x\":-30.2243,\"y\":1.6372,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9958,\"z\":180.0168}},\"8dfbb1\":{\"lock\":false,\"pos\":{\"x\":-28.0506992340088,\"y\":1.62181973457336,\"z\":4.2514009475708},\"rot\":{\"x\":0.0445704311132431,\"y\":44.9847793579102,\"z\":359.931610107422}},\"8fffb7\":{\"lock\":false,\"pos\":{\"x\":-27.3820991516113,\"y\":1.62016415596008,\"z\":1.79079973697662},\"rot\":{\"x\":359.931579589844,\"y\":315,\"z\":359.955413818359}},\"90bb07\":{\"lock\":false,\"pos\":{\"x\":-23.67649269104,\"y\":1.62694978713989,\"z\":-3.83000540733337},\"rot\":{\"x\":359.920104980469,\"y\":269.999938964844,\"z\":0.0168403331190348}},\"92a0b0\":{\"lock\":false,\"pos\":{\"x\":-36.7732,\"y\":1.6486,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":270.0014,\"z\":180.0168}},\"92b54a\":{\"lock\":false,\"pos\":{\"x\":-3.40050005912781,\"y\":1.58169901371002,\"z\":-15.4017019271851},\"rot\":{\"x\":359.919738769531,\"y\":270.004913330078,\"z\":0.0168309509754181}},\"92e6c2\":{\"lock\":false,\"pos\":{\"x\":-36.7731,\"y\":1.6655,\"z\":7.5698},\"rot\":{\"x\":359.9201,\"y\":270,\"z\":180.0168}},\"92ecba\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.645,\"z\":-0.0299},\"rot\":{\"x\":359.9201,\"y\":270.0001,\"z\":180.0168}},\"9342b3\":{\"lock\":false,\"pos\":{\"x\":-36.7733,\"y\":1.6418,\"z\":-15.28},\"rot\":{\"x\":359.9201,\"y\":269.993,\"z\":180.0168}},\"96ea0d\":{\"lock\":false,\"pos\":{\"x\":-26.7154,\"y\":1.6312,\"z\":-3.781},\"rot\":{\"x\":359.9201,\"y\":269.9982,\"z\":180.0168}},\"98208f\":{\"lock\":false,\"pos\":{\"x\":-30.2264,\"y\":1.6425,\"z\":17.8565},\"rot\":{\"x\":359.9201,\"y\":269.9985,\"z\":180.0168}},\"98a5aa\":{\"lock\":false,\"pos\":{\"x\":-30.2243,\"y\":1.6372,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":180.0168}},\"995fe7\":{\"lock\":false,\"pos\":{\"x\":-17.1199150085449,\"y\":1.61892187595367,\"z\":-0.0298978574573994},\"rot\":{\"x\":359.920135498047,\"y\":270.003723144531,\"z\":0.0166994705796242}},\"9a3039\":{\"lock\":false,\"pos\":{\"x\":-30.2243175506592,\"y\":1.63834023475647,\"z\":3.86000323295593},\"rot\":{\"x\":359.920104980469,\"y\":269.999664306641,\"z\":0.0168407000601292}},\"9abec6\":{\"lock\":false,\"pos\":{\"x\":1.7023,\"y\":1.5583,\"z\":14.2777},\"rot\":{\"x\":359.9551,\"y\":225.0013,\"z\":0.0687}},\"9bfecc\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6201,\"z\":3.86},\"rot\":{\"x\":359.9201,\"y\":270,\"z\":180.0168}},\"9e1376\":{\"lock\":false,\"pos\":{\"x\":-3.9277,\"y\":1.7973,\"z\":5.7572},\"rot\":{\"x\":359.9197,\"y\":269.9998,\"z\":180.0168}},\"9f034b\":{\"lock\":false,\"pos\":{\"x\":-36.7731,\"y\":1.6486,\"z\":7.5695},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":180.0168}},\"9f9330\":{\"lock\":false,\"pos\":{\"x\":-2.6884,\"y\":1.6623,\"z\":-5.0485},\"rot\":{\"x\":0.0168,\"y\":180.0001,\"z\":0.0803}},\"a27f32\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6292,\"z\":3.86},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":180.0168}},\"a55672\":{\"lock\":false,\"pos\":{\"x\":1.6964,\"y\":1.5583,\"z\":14.279},\"rot\":{\"x\":359.9551,\"y\":224.9978,\"z\":0.0687}},\"a5f7b3\":{\"lock\":false,\"pos\":{\"x\":-36.7732,\"y\":1.6463,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":270.0007,\"z\":180.0168}},\"a621ae\":{\"lock\":false,\"pos\":{\"x\":-3.9907,\"y\":1.5827,\"z\":-14.7887},\"rot\":{\"x\":359.9206,\"y\":270.0058,\"z\":0.0172}},\"a6e3da\":{\"lock\":false,\"pos\":{\"x\":-27.0759,\"y\":1.6181,\"z\":-3.6496},\"rot\":{\"x\":0.0446,\"y\":44.9972,\"z\":359.9316}},\"a6ebc7\":{\"lock\":false,\"pos\":{\"x\":-32.5504,\"y\":1.6301,\"z\":11.1831},\"rot\":{\"x\":0.0254,\"y\":30.0397,\"z\":359.9224}},\"a706b9\":{\"lock\":false,\"pos\":{\"x\":-18.4929962158203,\"y\":1.60845816135406,\"z\":4.13670015335083},\"rot\":{\"x\":0.0684079602360725,\"y\":135.000152587891,\"z\":0.0445851348340511}},\"a7143d\":{\"lock\":false,\"pos\":{\"x\":-33.3438,\"y\":1.6562,\"z\":-7.7623},\"rot\":{\"x\":359.9201,\"y\":269.9958,\"z\":0.0168}},\"a9eebf\":{\"lock\":false,\"pos\":{\"x\":-3.956,\"y\":1.5975,\"z\":-10.4414},\"rot\":{\"x\":359.9197,\"y\":270,\"z\":0.0168}},\"aa3f28\":{\"lock\":false,\"pos\":{\"x\":-36.7732,\"y\":1.6463,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9994,\"z\":0.0168}},\"aa50e4\":{\"lock\":false,\"pos\":{\"x\":-3.95601749420166,\"y\":1.59753942489624,\"z\":-10.4412002563477},\"rot\":{\"x\":359.919738769531,\"y\":270.000061035156,\"z\":0.0168371647596359}},\"ac4427\":{\"lock\":false,\"pos\":{\"x\":-23.6764163970947,\"y\":1.63029801845551,\"z\":7.57009840011597},\"rot\":{\"x\":359.920135498047,\"y\":270.002380371094,\"z\":0.0166968833655119}},\"acc7ef\":{\"lock\":false,\"pos\":{\"x\":-2.72460699081421,\"y\":1.62076032161713,\"z\":0.373301833868027},\"rot\":{\"x\":0.0168390069156885,\"y\":179.997497558594,\"z\":0.0802554115653038}},\"ad0bbd\":{\"lock\":false,\"pos\":{\"x\":-12.1489,\"y\":1.6132,\"z\":4.2018},\"rot\":{\"x\":359.9201,\"y\":269.9927,\"z\":0.0168}},\"ad4c69\":{\"lock\":false,\"pos\":{\"x\":-30.2244,\"y\":1.6497,\"z\":-15.28},\"rot\":{\"x\":359.9201,\"y\":270.001,\"z\":0.0168}},\"ad54b7\":{\"lock\":false,\"pos\":{\"x\":-3.956,\"y\":1.5975,\"z\":-10.4413},\"rot\":{\"x\":359.9197,\"y\":269.9995,\"z\":0.0168}},\"ade140\":{\"lock\":false,\"pos\":{\"x\":-30.2242,\"y\":1.6372,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":180.0168}},\"ae73b7\":{\"lock\":false,\"pos\":{\"x\":-27.0013,\"y\":1.6236,\"z\":15.18},\"rot\":{\"x\":359.92,\"y\":270.2697,\"z\":0.0165}},\"af6ef5\":{\"lock\":false,\"pos\":{\"x\":-3.9276,\"y\":1.7973,\"z\":5.757},\"rot\":{\"x\":359.9197,\"y\":269.9996,\"z\":180.0168}},\"afe7ce\":{\"lock\":false,\"pos\":{\"x\":12.251,\"y\":1.4607,\"z\":-12.6664},\"rot\":{\"x\":359.9201,\"y\":270.0271,\"z\":0.0168}},\"b0533f\":{\"lock\":false,\"pos\":{\"x\":-30.2242,\"y\":1.6372,\"z\":-0.0299},\"rot\":{\"x\":359.9201,\"y\":269.9997,\"z\":180.0168}},\"b0601f\":{\"lock\":false,\"pos\":{\"x\":-3.9277,\"y\":1.7011,\"z\":5.7572},\"rot\":{\"x\":359.9197,\"y\":270,\"z\":180.0168}},\"b0b20f\":{\"lock\":false,\"pos\":{\"x\":1.6959,\"y\":1.5583,\"z\":14.2786},\"rot\":{\"x\":359.9551,\"y\":224.998,\"z\":0.0687}},\"b1e332\":{\"lock\":false,\"pos\":{\"x\":-22.1459178924561,\"y\":1.69905459880829,\"z\":-7.67576932907104},\"rot\":{\"x\":1.72527134418488,\"y\":269.965606689453,\"z\":0.0172667019069195}},\"b24a2a\":{\"lock\":false,\"pos\":{\"x\":-2.4995,\"y\":1.6602,\"z\":15.6924},\"rot\":{\"x\":359.9197,\"y\":270.0029,\"z\":0.0168}},\"b297d9\":{\"lock\":false,\"pos\":{\"x\":-2.7248,\"y\":1.6208,\"z\":0.3733},\"rot\":{\"x\":359.9197,\"y\":270.001,\"z\":0.0168}},\"b2db43\":{\"lock\":false,\"pos\":{\"x\":-30.2244,\"y\":1.6213,\"z\":-7.7},\"rot\":{\"x\":359.9201,\"y\":270.0276,\"z\":0.0168}},\"b30814\":{\"lock\":false,\"pos\":{\"x\":0.748,\"y\":1.6191,\"z\":-5.1345},\"rot\":{\"x\":359.9197,\"y\":269.9924,\"z\":0.0168}},\"b42613\":{\"lock\":false,\"pos\":{\"x\":-30.2243,\"y\":1.6338,\"z\":-11.51},\"rot\":{\"x\":359.9201,\"y\":269.9982,\"z\":180.0168}},\"b4298b\":{\"lock\":false,\"pos\":{\"x\":-30.2243,\"y\":1.6383,\"z\":3.86},\"rot\":{\"x\":359.9201,\"y\":270,\"z\":180.0168}},\"b47b11\":{\"lock\":false,\"pos\":{\"x\":-2.6884,\"y\":1.6543,\"z\":-5.0485},\"rot\":{\"x\":0.0168,\"y\":180.0001,\"z\":0.0803}},\"b49857\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6473,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":269.9998,\"z\":180.0168}},\"b4d898\":{\"lock\":false,\"pos\":{\"x\":-3.9275,\"y\":1.754,\"z\":5.7572},\"rot\":{\"x\":359.9197,\"y\":270,\"z\":180.0168}},\"b5076f\":{\"lock\":false,\"pos\":{\"x\":-23.6764,\"y\":1.6473,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":270.0002,\"z\":180.0168}},\"b551bf\":{\"lock\":false,\"pos\":{\"x\":-3.9277,\"y\":1.7684,\"z\":5.7572},\"rot\":{\"x\":359.9197,\"y\":269.9999,\"z\":180.0168}},\"b5928a\":{\"lock\":false,\"pos\":{\"x\":-3.84430050849915,\"y\":1.58257055282593,\"z\":-14.5511026382446},\"rot\":{\"x\":359.919738769531,\"y\":270.001403808594,\"z\":0.0168359410017729}},\"b68edf\":{\"lock\":false,\"pos\":{\"x\":-27.1597995758057,\"y\":1.62095999717712,\"z\":5.5543007850647},\"rot\":{\"x\":359.955413818359,\"y\":224.999816894531,\"z\":0.0683797672390938}},\"b70946\":{\"lock\":false,\"pos\":{\"x\":1.6971,\"y\":1.5583,\"z\":14.2776},\"rot\":{\"x\":359.9552,\"y\":224.9676,\"z\":0.0687}},\"b78188\":{\"lock\":false,\"pos\":{\"x\":-2.7248,\"y\":1.6256,\"z\":0.3733},\"rot\":{\"x\":0.0168,\"y\":180.0012,\"z\":0.0803}},\"b7b517\":{\"lock\":false,\"pos\":{\"x\":-3.9278,\"y\":1.7877,\"z\":5.7572},\"rot\":{\"x\":359.9197,\"y\":270.0156,\"z\":180.0168}},\"b858d0\":{\"lock\":false,\"pos\":{\"x\":-3.7524,\"y\":1.6624,\"z\":15.1757},\"rot\":{\"x\":359.9197,\"y\":269.9998,\"z\":0.0168}},\"b97eaa\":{\"lock\":false,\"pos\":{\"x\":-30.2244,\"y\":1.6497,\"z\":-15.28},\"rot\":{\"x\":359.9201,\"y\":269.9854,\"z\":0.0169}},\"bb419a\":{\"lock\":false,\"pos\":{\"x\":-11.8716,\"y\":1.6021,\"z\":1.9311},\"rot\":{\"x\":359.9201,\"y\":270.0144,\"z\":0.0168}},\"bc110a\":{\"lock\":false,\"pos\":{\"x\":-36.7731,\"y\":1.6633,\"z\":-0.0302},\"rot\":{\"x\":359.9201,\"y\":269.9967,\"z\":0.0168}},\"bcae3c\":{\"lock\":false,\"pos\":{\"x\":-30.2243,\"y\":1.6394,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":270.0005,\"z\":180.0168}},\"bd431f\":{\"lock\":false,\"pos\":{\"x\":-26.8465995788574,\"y\":1.6178685426712,\"z\":-3.47939968109131},\"rot\":{\"x\":0.0446006134152412,\"y\":45.0099945068359,\"z\":359.931640625}},\"bd5693\":{\"lock\":false,\"pos\":{\"x\":-2.7247,\"y\":1.6159,\"z\":0.3733},\"rot\":{\"x\":0.0168,\"y\":179.9996,\"z\":0.0803}},\"bd5f07\":{\"lock\":false,\"pos\":{\"x\":-27.1714,\"y\":1.7237,\"z\":14.8589},\"rot\":{\"x\":0.0685,\"y\":134.8521,\"z\":180.0444}},\"bfde22\":{\"lock\":false,\"pos\":{\"x\":-30.2243,\"y\":1.6349,\"z\":-7.7},\"rot\":{\"x\":359.9201,\"y\":270,\"z\":180.0168}},\"c103b6\":{\"lock\":false,\"pos\":{\"x\":-2.6886,\"y\":1.6239,\"z\":-5.0486},\"rot\":{\"x\":359.9197,\"y\":270.0198,\"z\":0.0168}},\"c24eb1\":{\"lock\":false,\"pos\":{\"x\":-3.9276,\"y\":1.7636,\"z\":5.7572},\"rot\":{\"x\":359.9197,\"y\":270.0001,\"z\":180.0168}},\"c36da2\":{\"lock\":false,\"pos\":{\"x\":-26.9329,\"y\":1.6518,\"z\":7.6102},\"rot\":{\"x\":359.9201,\"y\":269.989,\"z\":0.0169}},\"c3915f\":{\"lock\":false,\"pos\":{\"x\":-21.5971,\"y\":1.7953,\"z\":7.5353},\"rot\":{\"x\":355.8867,\"y\":269.984,\"z\":0.0177}},\"c3d6f1\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6281,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":270.0029,\"z\":180.0168}},\"c50379\":{\"lock\":false,\"pos\":{\"x\":-30.2242736816406,\"y\":1.63719654083252,\"z\":-0.0300307180732489},\"rot\":{\"x\":359.920104980469,\"y\":270.004699707031,\"z\":0.0168058946728706}},\"c5386d\":{\"lock\":false,\"pos\":{\"x\":-29.9794,\"y\":1.6421,\"z\":17.8773},\"rot\":{\"x\":359.9201,\"y\":270.0001,\"z\":180.0168}},\"c54325\":{\"lock\":false,\"pos\":{\"x\":-12.1299,\"y\":1.655,\"z\":6.9461},\"rot\":{\"x\":359.9201,\"y\":269.9991,\"z\":180.0168}},\"c5b428\":{\"lock\":false,\"pos\":{\"x\":-26.7529,\"y\":1.724,\"z\":17.7955},\"rot\":{\"x\":359.9201,\"y\":270.0001,\"z\":180.0168}},\"c5df1c\":{\"lock\":false,\"pos\":{\"x\":-26.7180004119873,\"y\":1.61867380142212,\"z\":-0.128800302743912},\"rot\":{\"x\":0.0798946842551231,\"y\":90.0006103515625,\"z\":359.983123779297}},\"c6f73e\":{\"lock\":false,\"pos\":{\"x\":-30.2242,\"y\":1.6338,\"z\":-11.51},\"rot\":{\"x\":359.9201,\"y\":270.0001,\"z\":180.0168}},\"c7883c\":{\"lock\":false,\"pos\":{\"x\":-25.0514,\"y\":1.7121,\"z\":-14.4709},\"rot\":{\"x\":0.0254,\"y\":30.0001,\"z\":179.9224}},\"cb6782\":{\"lock\":false,\"pos\":{\"x\":-31.7819,\"y\":1.6269,\"z\":3.8828},\"rot\":{\"x\":359.9455,\"y\":329.989,\"z\":359.9392}},\"cbb9f5\":{\"lock\":false,\"pos\":{\"x\":-33.5382,\"y\":1.6283,\"z\":0.1047},\"rot\":{\"x\":0.0799,\"y\":90.003,\"z\":359.9831}},\"ccf7a9\":{\"lock\":false,\"pos\":{\"x\":-23.6766,\"y\":1.6428,\"z\":-7.7},\"rot\":{\"x\":359.9201,\"y\":269.9997,\"z\":180.0168}},\"cda035\":{\"lock\":false,\"pos\":{\"x\":-15.6361103057861,\"y\":1.66888344287872,\"z\":0.00989916734397411},\"rot\":{\"x\":0.078995443880558,\"y\":269.9970703125,\"z\":359.983184814453}},\"ce00f0\":{\"lock\":false,\"pos\":{\"x\":-36.7731,\"y\":1.6633,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":270,\"z\":180.0168}},\"ce102e\":{\"lock\":false,\"pos\":{\"x\":-17.1201,\"y\":1.6633,\"z\":11.46},\"rot\":{\"x\":359.9201,\"y\":269.9926,\"z\":180.0168}},\"ce23c7\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6087,\"z\":11.46},\"rot\":{\"x\":359.9831,\"y\":-0.004,\"z\":359.9201}},\"ceb4ac\":{\"lock\":false,\"pos\":{\"x\":-28.9209,\"y\":1.7176,\"z\":-14.363},\"rot\":{\"x\":359.9455,\"y\":330.0001,\"z\":179.9392}},\"cf0c00\":{\"lock\":false,\"pos\":{\"x\":-12.0714,\"y\":1.6132,\"z\":4.3416},\"rot\":{\"x\":359.9201,\"y\":270.0012,\"z\":0.0168}},\"cf3bf4\":{\"lock\":false,\"pos\":{\"x\":-1.4656,\"y\":1.4756,\"z\":-26.9304},\"rot\":{\"x\":359.9201,\"y\":269.9989,\"z\":0.0169}},\"cf40fc\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6771,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":0.0169}},\"cf4a62\":{\"lock\":false,\"pos\":{\"x\":-22.2064895629883,\"y\":1.68026161193848,\"z\":7.57819843292236},\"rot\":{\"x\":359.919281005859,\"y\":270.001129150391,\"z\":0.0165986157953739}},\"d0b0a3\":{\"lock\":false,\"pos\":{\"x\":-36.7732,\"y\":1.6655,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":269.9998,\"z\":180.0168}},\"d14543\":{\"lock\":false,\"pos\":{\"x\":-4.3037,\"y\":1.4068,\"z\":14.6856},\"rot\":{\"x\":0.0169,\"y\":179.9964,\"z\":0.0803}},\"d2eb25\":{\"lock\":false,\"pos\":{\"x\":-23.6763,\"y\":1.6884,\"z\":7.5698},\"rot\":{\"x\":359.9185,\"y\":270.0043,\"z\":0.0158}},\"d308d4\":{\"lock\":false,\"pos\":{\"x\":-2.6886,\"y\":1.5973,\"z\":-5.0485},\"rot\":{\"x\":359.9197,\"y\":269.9951,\"z\":0.0168}},\"d30e98\":{\"lock\":false,\"pos\":{\"x\":-2.7246,\"y\":1.656,\"z\":0.3733},\"rot\":{\"x\":0.0168,\"y\":180,\"z\":0.0803}},\"d3ae26\":{\"lock\":false,\"pos\":{\"x\":-23.6764,\"y\":1.6862,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9993,\"z\":0.0169}},\"d5b919\":{\"lock\":false,\"pos\":{\"x\":-17.1199,\"y\":1.6771,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9976,\"z\":0.0169}},\"d68664\":{\"lock\":false,\"pos\":{\"x\":-2.6886,\"y\":1.6287,\"z\":-5.0486},\"rot\":{\"x\":359.9197,\"y\":270.0041,\"z\":0.0168}},\"d6e449\":{\"lock\":false,\"pos\":{\"x\":12.2513,\"y\":1.4658,\"z\":4.6876},\"rot\":{\"x\":359.9201,\"y\":270.0106,\"z\":0.0169}},\"d775de\":{\"lock\":false,\"pos\":{\"x\":-2.6885,\"y\":1.6287,\"z\":-5.0496},\"rot\":{\"x\":0.0168,\"y\":180,\"z\":0.0803}},\"d7c523\":{\"lock\":false,\"pos\":{\"x\":-30.2242,\"y\":1.6372,\"z\":-0.0301},\"rot\":{\"x\":359.9201,\"y\":269.9998,\"z\":180.0168}},\"d9037e\":{\"lock\":false,\"pos\":{\"x\":-3.62380027770996,\"y\":1.6407071352005,\"z\":14.8200025558472},\"rot\":{\"x\":359.919738769531,\"y\":270.000091552734,\"z\":180.016830444336}},\"d927d3\":{\"lock\":false,\"pos\":{\"x\":-30.2242,\"y\":1.6394,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":180.0168}},\"dbdfa1\":{\"lock\":false,\"pos\":{\"x\":-2.7246,\"y\":1.6566,\"z\":0.3733},\"rot\":{\"x\":0.0168,\"y\":180,\"z\":0.0803}},\"dc9168\":{\"lock\":false,\"pos\":{\"x\":-26.9419,\"y\":1.6202,\"z\":3.9387},\"rot\":{\"x\":0.0446,\"y\":45.0005,\"z\":359.9316}},\"dde8af\":{\"lock\":false,\"pos\":{\"x\":-20.5824,\"y\":1.6146,\"z\":15.1047},\"rot\":{\"x\":359.92,\"y\":270.4175,\"z\":0.0163}},\"ddf740\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6247,\"z\":-11.51},\"rot\":{\"x\":359.9201,\"y\":269.9982,\"z\":180.0168}},\"de311e\":{\"lock\":false,\"pos\":{\"x\":-36.7732,\"y\":1.6463,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9995,\"z\":180.0168}},\"deb7fa\":{\"lock\":false,\"pos\":{\"x\":-2.7248,\"y\":1.6208,\"z\":0.3733},\"rot\":{\"x\":0.0168,\"y\":180.0032,\"z\":0.0803}},\"df2a30\":{\"lock\":false,\"pos\":{\"x\":-30.2242,\"y\":1.6394,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":180.0168}},\"df4b70\":{\"lock\":false,\"pos\":{\"x\":-3.956,\"y\":1.5975,\"z\":-10.4412},\"rot\":{\"x\":359.9197,\"y\":269.9998,\"z\":0.0168}},\"df6781\":{\"lock\":false,\"pos\":{\"x\":-33.7177,\"y\":1.6296,\"z\":3.9819},\"rot\":{\"x\":0.0446,\"y\":44.9972,\"z\":359.9316}},\"df8f01\":{\"lock\":false,\"pos\":{\"x\":-26.7663097381592,\"y\":1.6187549829483,\"z\":-0.0818684622645378},\"rot\":{\"x\":359.920104980469,\"y\":269.976593017578,\"z\":0.016977870836854}},\"df91a7\":{\"lock\":false,\"pos\":{\"x\":-11.9213,\"y\":1.6478,\"z\":28.3382},\"rot\":{\"x\":359.9201,\"y\":270.0001,\"z\":180.0169}},\"e17f3d\":{\"lock\":false,\"pos\":{\"x\":-33.5812,\"y\":1.7294,\"z\":3.9031},\"rot\":{\"x\":0.0684,\"y\":134.9999,\"z\":180.0445}},\"e28a88\":{\"lock\":false,\"pos\":{\"x\":-32.3453,\"y\":1.7266,\"z\":0.264},\"rot\":{\"x\":0.0254,\"y\":30.0003,\"z\":179.9224}},\"e3aa5c\":{\"lock\":false,\"pos\":{\"x\":12.2517,\"y\":1.4709,\"z\":22.0767},\"rot\":{\"x\":359.9201,\"y\":269.9997,\"z\":0.0169}},\"e40b5e\":{\"lock\":false,\"pos\":{\"x\":-33.4657,\"y\":1.6609,\"z\":7.4691},\"rot\":{\"x\":359.9201,\"y\":269.9972,\"z\":0.0168}},\"e49027\":{\"lock\":false,\"pos\":{\"x\":-3.9275,\"y\":1.7684,\"z\":5.7571},\"rot\":{\"x\":359.9197,\"y\":269.9999,\"z\":180.0168}},\"e58475\":{\"lock\":false,\"pos\":{\"x\":-28.6475563049316,\"y\":1.70839071273804,\"z\":-0.0576328821480274},\"rot\":{\"x\":1.64902567863464,\"y\":270.001312255859,\"z\":0.0169164203107357}},\"e81640\":{\"lock\":false,\"pos\":{\"x\":-30.2259,\"y\":1.6542,\"z\":-0.0303},\"rot\":{\"x\":359.9201,\"y\":269.9984,\"z\":0.0168}},\"e83b93\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6314,\"z\":11.46},\"rot\":{\"x\":359.9201,\"y\":269.9985,\"z\":180.0168}},\"e9d2f5\":{\"lock\":false,\"pos\":{\"x\":-33.4028,\"y\":1.6405,\"z\":-3.9525},\"rot\":{\"x\":359.9201,\"y\":269.9982,\"z\":180.0168}},\"eb094d\":{\"lock\":false,\"pos\":{\"x\":-3.9273,\"y\":1.7984,\"z\":5.7572},\"rot\":{\"x\":359.9197,\"y\":270,\"z\":180.0168}},\"eb1e0d\":{\"lock\":false,\"pos\":{\"x\":-3.9275,\"y\":1.7396,\"z\":5.7571},\"rot\":{\"x\":359.9197,\"y\":269.9999,\"z\":180.0168}},\"eb677a\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6281,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":180.0168}},\"ec1b56\":{\"lock\":false,\"pos\":{\"x\":-23.6765003204346,\"y\":1.61560475826263,\"z\":3.85999989509583},\"rot\":{\"x\":0.0168418455868959,\"y\":179.998184204102,\"z\":0.0799393355846405}},\"eccd5d\":{\"lock\":false,\"pos\":{\"x\":0.4793,\"y\":1.6195,\"z\":-5.1104},\"rot\":{\"x\":0.0169,\"y\":179.986,\"z\":0.0803}},\"ed811e\":{\"lock\":false,\"pos\":{\"x\":-36.7732,\"y\":1.661,\"z\":-7.7},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":180.0168}},\"eda3e2\":{\"lock\":false,\"pos\":{\"x\":-36.7731018066406,\"y\":1.63386702537537,\"z\":3.86000108718872},\"rot\":{\"x\":0.0168423820286989,\"y\":179.997940063477,\"z\":0.07996666431427}},\"ee7d12\":{\"lock\":false,\"pos\":{\"x\":-3.9274,\"y\":1.7877,\"z\":5.743},\"rot\":{\"x\":359.9197,\"y\":270.0052,\"z\":180.0168}},\"ef14ab\":{\"lock\":false,\"pos\":{\"x\":1.6995,\"y\":1.5583,\"z\":14.2782},\"rot\":{\"x\":359.9551,\"y\":225.0025,\"z\":0.0687}},\"efb46a\":{\"lock\":false,\"pos\":{\"x\":-11.9166,\"y\":1.6031,\"z\":-5.5701},\"rot\":{\"x\":359.9201,\"y\":270.0035,\"z\":0.1429}},\"f153a0\":{\"lock\":false,\"pos\":{\"x\":-2.6886,\"y\":1.5973,\"z\":-5.0485},\"rot\":{\"x\":0.0168,\"y\":179.9977,\"z\":0.0803}},\"f1a996\":{\"lock\":false,\"pos\":{\"x\":-33.5508,\"y\":1.6283,\"z\":0.1083},\"rot\":{\"x\":0.0799,\"y\":90.1043,\"z\":359.9832}},\"f37775\":{\"lock\":false,\"pos\":{\"x\":-3.19291043281555,\"y\":1.63545417785645,\"z\":15.3806056976318},\"rot\":{\"x\":359.919738769531,\"y\":269.99951171875,\"z\":0.01684027351439}},\"f58e95\":{\"lock\":false,\"pos\":{\"x\":1.696,\"y\":1.5583,\"z\":14.2787},\"rot\":{\"x\":359.9551,\"y\":224.998,\"z\":0.0687}},\"f5db25\":{\"lock\":false,\"pos\":{\"x\":-4.1775,\"y\":1.5321,\"z\":-19.107},\"rot\":{\"x\":359.9206,\"y\":269.9862,\"z\":1.8615}},\"f6c645\":{\"lock\":false,\"pos\":{\"x\":-3.956,\"y\":1.5975,\"z\":-10.4412},\"rot\":{\"x\":359.9197,\"y\":269.9975,\"z\":180.0168}},\"f797c9\":{\"lock\":false,\"pos\":{\"x\":-23.6765003204346,\"y\":1.6156051158905,\"z\":3.86000037193298},\"rot\":{\"x\":359.983154296875,\"y\":0.000157246773596853,\"z\":359.920074462891}},\"f7dd31\":{\"lock\":false,\"pos\":{\"x\":-15.6663131713867,\"y\":1.66663253307343,\"z\":-7.68120002746582},\"rot\":{\"x\":0.0790727958083153,\"y\":269.994262695313,\"z\":359.983215332031}},\"f92015\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6292,\"z\":3.86},\"rot\":{\"x\":359.9201,\"y\":269.9984,\"z\":180.0168}},\"f9f1c8\":{\"lock\":false,\"pos\":{\"x\":-2.6885,\"y\":1.6191,\"z\":-5.0485},\"rot\":{\"x\":0.0168,\"y\":179.9956,\"z\":0.0803}},\"fa04c2\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6157,\"z\":3.86},\"rot\":{\"x\":359.9831,\"y\":0.0001,\"z\":359.92}},\"fa1884\":{\"lock\":false,\"pos\":{\"x\":-11.7427,\"y\":1.6031,\"z\":5.8325},\"rot\":{\"x\":359.9201,\"y\":270.0032,\"z\":0.0168}},\"fcb3e4\":{\"lock\":false,\"pos\":{\"x\":-23.6763,\"y\":1.684,\"z\":-7.7002},\"rot\":{\"x\":359.9186,\"y\":270.0033,\"z\":0.0158}},\"fe3b58\":{\"lock\":false,\"pos\":{\"x\":-31.9286,\"y\":1.6226,\"z\":-11.587},\"rot\":{\"x\":359.9455,\"y\":329.9887,\"z\":359.9392}},\"ff051b\":{\"lock\":false,\"pos\":{\"x\":-5.6891,\"y\":1.4994,\"z\":-14.2727},\"rot\":{\"x\":0.0013,\"y\":359.939,\"z\":6.2808}},\"ff4a1d\":{\"lock\":false,\"pos\":{\"x\":-3.9563,\"y\":1.5975,\"z\":-10.4423},\"rot\":{\"x\":359.9197,\"y\":269.996,\"z\":0.0168}},\"ffa446\":{\"lock\":false,\"pos\":{\"x\":-36.7732,\"y\":1.6633,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9972,\"z\":0.0168}},\"fff605\":{\"lock\":false,\"pos\":{\"x\":-2.7248,\"y\":1.6208,\"z\":0.3733},\"rot\":{\"x\":359.9197,\"y\":270.0245,\"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": "0ef5c8",
"Name": "Custom_Model_Bag",
"Transform": {
"posX": 29.1421471,
"posY": 1.83431816,
"posZ": 28.64716,
"rotX": 359.9201,
"rotY": 270.000641,
"rotZ": 0.0168720856,
"scaleX": 1.76,
"scaleY": 0.11,
"scaleZ": 1.49
},
"Nickname": "Official Standalone/Challenge Scenarios",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.9999998,
"g": 0.992168248,
"b": 0.9999998
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"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://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.5741959,
"posY": 1.4498,
"posZ": 3.9244616,
"rotX": 359.920135,
"rotY": 269.999817,
"rotZ": 0.0168745779,
"scaleX": 0.5,
"scaleY": 0.07,
"scaleZ": 0.5
},
"Nickname": "Standalone Scenarios",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"MaterialIndex": -1,
"MeshIndex": -1,
"CustomMesh": {
"MeshURL": "https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/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\":12.2499542236328,\"y\":1.46560525894165,\"z\":3.98636341094971},\"rot\":{\"x\":359.920135498047,\"y\":269.999969482422,\"z\":0.0168736279010773}},\"23dd51\":{\"lock\":false,\"pos\":{\"x\":12.2502546310425,\"y\":1.4726722240448,\"z\":27.9863815307617},\"rot\":{\"x\":359.920135498047,\"y\":270.000030517578,\"z\":0.0168734360486269}},\"3c4f3c\":{\"lock\":false,\"pos\":{\"x\":12.2848806381226,\"y\":1.45613408088684,\"z\":-28.0133056640625},\"rot\":{\"x\":359.920135498047,\"y\":269.986846923828,\"z\":0.0168903898447752}},\"4c173f\":{\"lock\":false,\"pos\":{\"x\":12.249550819397,\"y\":1.46325016021729,\"z\":-4.0136399269104},\"rot\":{\"x\":359.920135498047,\"y\":269.999816894531,\"z\":0.0168722160160542}},\"4dee5a\":{\"lock\":false,\"pos\":{\"x\":12.250054359436,\"y\":1.46089386940002,\"z\":-12.0136375427246},\"rot\":{\"x\":359.920135498047,\"y\":270.000061035156,\"z\":0.0168738011270761}},\"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\":12.2500467300415,\"y\":1.47031700611115,\"z\":19.9863815307617},\"rot\":{\"x\":359.920135498047,\"y\":270,\"z\":0.0168736260384321}},\"ee987d\":{\"lock\":false,\"pos\":{\"x\":12.2520484924316,\"y\":1.4679582118988,\"z\":11.9863729476929},\"rot\":{\"x\":359.920135498047,\"y\":270,\"z\":0.0168738216161728}},\"fc7674\":{\"lock\":false,\"pos\":{\"x\":12.250449180603,\"y\":1.45853734016418,\"z\":-20.0136489868164},\"rot\":{\"x\":359.920135498047,\"y\":270,\"z\":0.0168739501386881}}}}",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "01d780",
"Name": "Custom_Model",
"Transform": {
"posX": 12.249959,
"posY": 1.46560538,
"posZ": 3.98636341,
"rotX": 359.920135,
"rotY": 269.999939,
"rotZ": 0.0168737173,
"scaleX": 2.21,
"scaleY": 0.46,
"scaleZ": 2.42
},
"Nickname": "Murder at the Excelsior Hotel",
"Description": "",
"GMNotes": "scenarios/murder_at_the_excelsior_hotel.json",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": 12.2502565,
"posY": 1.472672,
"posZ": 27.9863853,
"rotX": 359.920135,
"rotY": 270.000031,
"rotZ": 0.01687383,
"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",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "3c4f3c",
"Name": "Custom_Model",
"Transform": {
"posX": 12.2848835,
"posY": 1.456134,
"posZ": -28.01331,
"rotX": 359.920135,
"rotY": 269.986816,
"rotZ": 0.0168915875,
"scaleX": 2.21,
"scaleY": 0.46,
"scaleZ": 2.42
},
"Nickname": "Machinations Through Time",
"Description": "Scenario Pack",
"GMNotes": "scenarios/machinations_through_time.json",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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/1849293764609930695/A32186E44882FD6EF5753CCB9D325B4EC6848B5A/",
"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\":{\"155c81\":{\"lock\":false,\"pos\":{\"x\":-0.750473082065582,\"y\":1.28760957717896,\"z\":-33.6590194702148},\"rot\":{\"x\":0.0799646377563477,\"y\":89.9994659423828,\"z\":359.983093261719}},\"285631\":{\"lock\":false,\"pos\":{\"x\":-0.839262664318085,\"y\":1.28675448894501,\"z\":-36.9837074279785},\"rot\":{\"x\":0.0799594968557358,\"y\":89.9996185302734,\"z\":359.983062744141}},\"4eaf63\":{\"lock\":false,\"pos\":{\"x\":-0.104490891098976,\"y\":1.47463750839233,\"z\":-23.8319664001465},\"rot\":{\"x\":359.920135498047,\"y\":269.976531982422,\"z\":0.0169046204537153}},\"5140fa\":{\"lock\":false,\"pos\":{\"x\":-11.8026094436646,\"y\":1.60706281661987,\"z\":-15.1593103408813},\"rot\":{\"x\":359.920104980469,\"y\":269.999938964844,\"z\":0.0168397035449743}},\"51589f\":{\"lock\":false,\"pos\":{\"x\":-3.95598435401917,\"y\":1.59753942489624,\"z\":-10.4411640167236},\"rot\":{\"x\":359.919738769531,\"y\":269.999938964844,\"z\":0.0168372616171837}},\"58e74a\":{\"lock\":false,\"pos\":{\"x\":3.6904559135437,\"y\":1.28134393692017,\"z\":-33.9125823974609},\"rot\":{\"x\":0.079959973692894,\"y\":89.9992828369141,\"z\":359.983062744141}},\"7039ea\":{\"lock\":false,\"pos\":{\"x\":-11.8224458694458,\"y\":1.6308296918869,\"z\":-8.45153331756592},\"rot\":{\"x\":359.920104980469,\"y\":270.012725830078,\"z\":0.0168239790946245}},\"84bdea\":{\"lock\":false,\"pos\":{\"x\":-0.869694948196411,\"y\":1.28884172439575,\"z\":-30.0372486114502},\"rot\":{\"x\":0.0799645334482193,\"y\":89.999382019043,\"z\":359.983093261719}},\"8e3380\":{\"lock\":false,\"pos\":{\"x\":-15.4114227294922,\"y\":1.41494536399841,\"z\":-10.0902404785156},\"rot\":{\"x\":359.983154296875,\"y\":0.000817795924376696,\"z\":359.920043945313}},\"a3def6\":{\"lock\":false,\"pos\":{\"x\":-3.92789721488953,\"y\":1.76844906806946,\"z\":5.75719165802002},\"rot\":{\"x\":359.919738769531,\"y\":269.999816894531,\"z\":180.016815185547}},\"b45b47\":{\"lock\":false,\"pos\":{\"x\":-2.72477197647095,\"y\":1.61594653129578,\"z\":0.373337954282761},\"rot\":{\"x\":0.0167098976671696,\"y\":180.089614868164,\"z\":0.0802827402949333}},\"ba2e05\":{\"lock\":false,\"pos\":{\"x\":-2.68847465515137,\"y\":1.59734869003296,\"z\":-5.04841661453247},\"rot\":{\"x\":0.0167973190546036,\"y\":180.027603149414,\"z\":0.0802631750702858}},\"c1186b\":{\"lock\":false,\"pos\":{\"x\":-11.8445987701416,\"y\":1.62985110282898,\"z\":-11.8866605758667},\"rot\":{\"x\":359.920104980469,\"y\":270.022918701172,\"z\":0.0168105401098728}},\"c56b51\":{\"lock\":false,\"pos\":{\"x\":-15.329158782959,\"y\":1.41371214389801,\"z\":-13.8969564437866},\"rot\":{\"x\":359.983154296875,\"y\":0.000848185329232365,\"z\":359.920013427734}},\"da395e\":{\"lock\":false,\"pos\":{\"x\":-3.59795022010803,\"y\":1.58207070827484,\"z\":-15.0785627365112},\"rot\":{\"x\":359.919738769531,\"y\":270.030242919922,\"z\":0.0167959574609995}}}}",
"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": 12.2495527,
"posY": 1.4632504,
"posZ": -4.0136404,
"rotX": 359.920135,
"rotY": 269.9998,
"rotZ": 0.01687288,
"scaleX": 2.21,
"scaleY": 0.2,
"scaleZ": 2.46
},
"Nickname": "The Labyrinths of Lunacy",
"Description": "Beyond the Veil",
"GMNotes": "scenarios/labyrinths_of_lunacy.json",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": 12.2500563,
"posY": 1.460894,
"posZ": -12.0136395,
"rotX": 359.920135,
"rotY": 270.000031,
"rotZ": 0.01687457,
"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",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": 12.2500477,
"posY": 1.47031677,
"posZ": 19.9863853,
"rotX": 359.920135,
"rotY": 270.0,
"rotZ": 0.01687362,
"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",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": 12.25205,
"posY": 1.46795809,
"posZ": 11.9863739,
"rotX": 359.920135,
"rotY": 270.0,
"rotZ": 0.01687381,
"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",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": 12.2504511,
"posY": 1.45853734,
"posZ": -20.0136528,
"rotX": 359.920135,
"rotY": 270.0,
"rotZ": 0.016874291,
"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",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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.23362446,
"rotX": 359.920135,
"rotY": 269.999878,
"rotZ": 0.0168742724,
"scaleX": 0.5,
"scaleY": 0.07,
"scaleZ": 0.5
},
"Nickname": "Challenge Scenarios",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"MaterialIndex": -1,
"MeshIndex": -1,
"CustomMesh": {
"MeshURL": "https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/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.2499580383301,\"y\":1.46560525894165,\"z\":3.98636198043823},\"rot\":{\"x\":359.920135498047,\"y\":269.999908447266,\"z\":0.016873624175787}},\"5302f2\":{\"lock\":false,\"pos\":{\"x\":12.2504663467407,\"y\":1.45853757858276,\"z\":-20.013650894165},\"rot\":{\"x\":359.920135498047,\"y\":270.00146484375,\"z\":0.0168716721236706}},\"72ab92\":{\"lock\":false,\"pos\":{\"x\":12.2520532608032,\"y\":1.4679582118988,\"z\":11.9863719940186},\"rot\":{\"x\":359.920135498047,\"y\":270,\"z\":0.0168737415224314}},\"9e73fa\":{\"lock\":false,\"pos\":{\"x\":12.2500581741333,\"y\":1.46089386940002,\"z\":-12.0136384963989},\"rot\":{\"x\":359.920135498047,\"y\":269.999847412109,\"z\":0.0168744903057814}},\"cc7eb3\":{\"lock\":false,\"pos\":{\"x\":12.2495565414429,\"y\":1.46325027942657,\"z\":-4.01364088058472},\"rot\":{\"x\":359.920135498047,\"y\":269.999908447266,\"z\":0.0168744102120399}}}}",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "451eaa",
"Name": "Custom_Model",
"Transform": {
"posX": 12.2499619,
"posY": 1.46560562,
"posZ": 3.986362,
"rotX": 359.920135,
"rotY": 269.9999,
"rotZ": 0.0168734323,
"scaleX": 2.21,
"scaleY": 0.46,
"scaleZ": 2.42
},
"Nickname": "Bad Blood",
"Description": "Challenge Scenario",
"GMNotes": "scenarios/challenge_bad_blood.json",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "5302f2",
"Name": "Custom_Model",
"Transform": {
"posX": 12.2504673,
"posY": 1.4585377,
"posZ": -20.0136547,
"rotX": 359.920135,
"rotY": 270.0015,
"rotZ": 0.0168719273,
"scaleX": 2.21,
"scaleY": 0.46,
"scaleZ": 2.42
},
"Nickname": "Red Tide Rising",
"Description": "Challenge Scenario",
"GMNotes": "scenarios/challenge_red_tide_rising.json",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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/1849293764610824071/BD70BFDA6DED25221D6DC1BE60C8CE11B165F848/",
"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\":{\"0998ec\":{\"lock\":false,\"pos\":{\"x\":1.7110515832901,\"y\":1.55828714370728,\"z\":14.2457151412964},\"rot\":{\"x\":359.95556640625,\"y\":224.631256103516,\"z\":0.0689570754766464}},\"0f3a96\":{\"lock\":false,\"pos\":{\"x\":-34.2316017150879,\"y\":1.63262534141541,\"z\":11.6933059692383},\"rot\":{\"x\":359.955413818359,\"y\":224.999755859375,\"z\":0.0683816745877266}},\"1a4948\":{\"lock\":false,\"pos\":{\"x\":-3.47136402130127,\"y\":1.58184540271759,\"z\":-15.2412881851196},\"rot\":{\"x\":359.919738769531,\"y\":269.996856689453,\"z\":0.0168427713215351}},\"2c6d3b\":{\"lock\":false,\"pos\":{\"x\":-30.2241992950439,\"y\":1.64166986942291,\"z\":15.189998626709},\"rot\":{\"x\":359.920104980469,\"y\":269.999786376953,\"z\":0.0168399903923273}},\"3359db\":{\"lock\":false,\"pos\":{\"x\":-32.8963012695313,\"y\":1.62404108047485,\"z\":-11.1805047988892},\"rot\":{\"x\":359.931579589844,\"y\":314.999969482422,\"z\":359.955413818359}},\"392d3e\":{\"lock\":false,\"pos\":{\"x\":-36.7731018066406,\"y\":1.64856243133545,\"z\":7.56999778747559},\"rot\":{\"x\":359.920104980469,\"y\":269.997711181641,\"z\":0.0168428309261799}},\"3a4050\":{\"lock\":false,\"pos\":{\"x\":-27.228099822998,\"y\":1.62276840209961,\"z\":11.3825025558472},\"rot\":{\"x\":359.931579589844,\"y\":315.000061035156,\"z\":359.955413818359}},\"3b60c1\":{\"lock\":false,\"pos\":{\"x\":-30.2243003845215,\"y\":1.62582564353943,\"z\":7.56999969482422},\"rot\":{\"x\":359.920104980469,\"y\":270.009124755859,\"z\":0.0168570745736361}},\"3c63bd\":{\"lock\":false,\"pos\":{\"x\":-23.6765308380127,\"y\":1.6280665397644,\"z\":-0.0300527438521385},\"rot\":{\"x\":359.920104980469,\"y\":269.999938964844,\"z\":0.0168395601212978}},\"4f701e\":{\"lock\":false,\"pos\":{\"x\":-2.72473120689392,\"y\":1.61594641208649,\"z\":0.373453915119171},\"rot\":{\"x\":0.0168310105800629,\"y\":180.003479003906,\"z\":0.0802565813064575}},\"62791a\":{\"lock\":false,\"pos\":{\"x\":-27.0009994506836,\"y\":1.62018239498138,\"z\":3.66190314292908},\"rot\":{\"x\":359.955413818359,\"y\":224.999969482422,\"z\":0.0683810040354729}},\"7234af\":{\"lock\":false,\"pos\":{\"x\":-33.4277000427246,\"y\":1.62693536281586,\"z\":-3.85319900512695},\"rot\":{\"x\":359.955413818359,\"y\":224.996597290039,\"z\":0.0683831349015236}},\"7563ec\":{\"lock\":false,\"pos\":{\"x\":-3.92773413658142,\"y\":1.72993648052216,\"z\":5.75715303421021},\"rot\":{\"x\":359.919738769531,\"y\":269.999969482422,\"z\":180.016815185547}},\"7f7fb0\":{\"lock\":false,\"pos\":{\"x\":-1.46553933620453,\"y\":1.47562253475189,\"z\":-26.9304065704346},\"rot\":{\"x\":359.920135498047,\"y\":269.996429443359,\"z\":0.0168771725147963}},\"8984ad\":{\"lock\":false,\"pos\":{\"x\":-23.6767978668213,\"y\":1.62581276893616,\"z\":-7.70000123977661},\"rot\":{\"x\":359.920104980469,\"y\":270.019287109375,\"z\":0.0168126747012138}},\"917f3e\":{\"lock\":false,\"pos\":{\"x\":-12.0630035400391,\"y\":1.63608145713806,\"z\":8.27679634094238},\"rot\":{\"x\":359.920104980469,\"y\":269.999969482422,\"z\":180.016830444336}},\"91be46\":{\"lock\":false,\"pos\":{\"x\":-2.68855762481689,\"y\":1.59734880924225,\"z\":-5.04852485656738},\"rot\":{\"x\":0.0168315768241882,\"y\":180.002990722656,\"z\":0.080256387591362}},\"9c140b\":{\"lock\":false,\"pos\":{\"x\":-26.767599105835,\"y\":1.61765778064728,\"z\":-3.82140111923218},\"rot\":{\"x\":359.931579589844,\"y\":314.977905273438,\"z\":359.955444335938}},\"9c6651\":{\"lock\":false,\"pos\":{\"x\":-30.2234745025635,\"y\":1.62133610248566,\"z\":-7.70403909683228},\"rot\":{\"x\":359.920196533203,\"y\":270.015045166016,\"z\":0.0165500622242689}},\"b6b9b7\":{\"lock\":false,\"pos\":{\"x\":-36.7732009887695,\"y\":1.6440749168396,\"z\":-7.70000505447388},\"rot\":{\"x\":359.920104980469,\"y\":269.999816894531,\"z\":0.0168398879468441}},\"c150be\":{\"lock\":false,\"pos\":{\"x\":-23.6764984130859,\"y\":1.63030004501343,\"z\":7.56999683380127},\"rot\":{\"x\":359.920104980469,\"y\":269.999725341797,\"z\":0.0168400201946497}},\"cf00ee\":{\"lock\":false,\"pos\":{\"x\":-12.0105895996094,\"y\":1.68052327632904,\"z\":12.3205461502075},\"rot\":{\"x\":359.920104980469,\"y\":270.000061035156,\"z\":180.016830444336}},\"d28cd1\":{\"lock\":false,\"pos\":{\"x\":-30.2241992950439,\"y\":1.63719689846039,\"z\":-0.030001213774085},\"rot\":{\"x\":359.920104980469,\"y\":269.999755859375,\"z\":0.0168399550020695}},\"d5f792\":{\"lock\":false,\"pos\":{\"x\":-33.2551002502441,\"y\":1.62890470027924,\"z\":3.66560173034668},\"rot\":{\"x\":359.931579589844,\"y\":315.000091552734,\"z\":359.955413818359}},\"d9882d\":{\"lock\":false,\"pos\":{\"x\":-27.0109996795654,\"y\":1.61566078662872,\"z\":-11.7710037231445},\"rot\":{\"x\":359.955413818359,\"y\":225,\"z\":0.0683765634894371}},\"e86553\":{\"lock\":false,\"pos\":{\"x\":-3.955979347229,\"y\":1.59753942489624,\"z\":-10.4411535263062},\"rot\":{\"x\":359.919738769531,\"y\":269.993225097656,\"z\":0.0168475080281496}},\"e8fcf0\":{\"lock\":false,\"pos\":{\"x\":-30.2243003845215,\"y\":1.63271510601044,\"z\":-15.2799997329712},\"rot\":{\"x\":359.920104980469,\"y\":269.999908447266,\"z\":0.0168397407978773}}}}",
"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.2520552,
"posY": 1.46795809,
"posZ": 11.9863729,
"rotX": 359.920135,
"rotY": 270.0,
"rotZ": 0.01687446,
"scaleX": 2.21,
"scaleY": 0.46,
"scaleZ": 2.42
},
"Nickname": "All or Nothing",
"Description": "Challenge Scenario",
"GMNotes": "scenarios/challenge_all_or_nothing.json",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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.25006,
"posY": 1.46089387,
"posZ": -12.01364,
"rotX": 359.920135,
"rotY": 269.999817,
"rotZ": 0.0168743711,
"scaleX": 2.21,
"scaleY": 0.46,
"scaleZ": 2.42
},
"Nickname": "Read or Die",
"Description": "Challenge Scenario",
"GMNotes": "scenarios/challenge_read_or_die.json",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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.2495594,
"posY": 1.46325028,
"posZ": -4.01364136,
"rotX": 359.920135,
"rotY": 269.999878,
"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",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "77f1e5",
"Name": "Deck",
"Transform": {
"posX": -29.18228,
"posY": 1.38930106,
"posZ": 95.80294,
"rotX": 0.02080654,
"rotY": 270.006165,
"rotZ": 180.016785,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Tarot Deck",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": 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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 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.4343834,
"posY": 1.18018126,
"posZ": 95.75848,
"rotX": 359.9832,
"rotY": 0.00591046968,
"rotZ": 0.0208480638,
"scaleX": 0.450000465,
"scaleY": 0.450000465,
"scaleZ": 0.450000465
},
"Nickname": "Tarot Deck (Scripted)",
"Description": "Right-click for card reading options.",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.627451062,
"g": 0.1254839,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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/raw/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": "023240",
"Name": "Custom_Token",
"Transform": {
"posX": 22.2145634,
"posY": 5.6514225,
"posZ": -34.8109665,
"rotX": 4.42816544,
"rotY": 269.8285,
"rotZ": 357.400879,
"scaleX": 2.5,
"scaleY": 1.0,
"scaleZ": 2.5
},
"Nickname": "Chaos Bag Manager",
"Description": "Adds/removes the desired token from the chaos bag.\n\nSee context menu for additional information.",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"displacement_excluded"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1857193769884995506/A760D5A6C66A035C4E4812BF5F0D511010EF526C/",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "-- Chaos Bag Manager\r\n-- made by: Chr1Z\r\n-- based on: Bless/Curse Manager\r\n-- description: for easier managing of the chaos bag (adding / removing tokens)\r\ninformation = {\r\n version = \"1.3\",\r\n last_updated = \"10.10.2022\"\r\n}\r\n\r\nlocal TOKEN_URL = {\r\n ElderSign = \"https://i.imgur.com/nEmqjmj.png\",\r\n plusOne = \"https://i.imgur.com/uIx8jbY.png\",\r\n Zero = \"https://i.imgur.com/btEtVfd.png\",\r\n minusOne = \"https://i.imgur.com/w3XbrCC.png\",\r\n minusTwo = \"https://i.imgur.com/bfTg2hb.png\",\r\n minusThree = \"https://i.imgur.com/yfs8gHq.png\",\r\n minusFour = \"https://i.imgur.com/qrgGQRD.png\",\r\n minusFive = \"https://i.imgur.com/3Ym1IeG.png\",\r\n minusSix = \"https://i.imgur.com/c9qdSzS.png\",\r\n minusSeven = \"https://i.imgur.com/4WRD42n.png\",\r\n minusEight = \"https://i.imgur.com/9t3rPTQ.png\",\r\n Skull = \"https://i.imgur.com/stbBxtx.png\",\r\n Cultist = \"https://i.imgur.com/VzhJJaH.png\",\r\n Tablet = \"https://i.imgur.com/1plY463.png\",\r\n ElderThing = \"https://i.imgur.com/ttnspKt.png\",\r\n AutoFail = \"https://i.imgur.com/lns4fhz.png\",\r\n Frost = \"http://cloud-3.steamusercontent.com/ugc/1858293462583104677/195F93C063A8881B805CE2FD4767A9718B27B6AE/\"\r\n}\r\n\r\nlocal TOKEN_NAMES = {\r\n -- first row\r\n \"plusOne\", \"Zero\", \"minusOne\", \"minusTwo\", \"minusThree\", \"minusFour\",\r\n -- second row\r\n \"minusFive\", \"minusSix\", \"minusSeven\", \"minusEight\", \"Frost\",\r\n -- third row\r\n \"ElderSign\", \"Skull\", \"Cultist\", \"Tablet\", \"ElderThing\", \"AutoFail\"\r\n}\r\n\r\nlocal BUTTON_TOOLTIP = {\r\n -- first row\r\n \"+1\", \"0\", \"-1\", \"-2\", \"-3\", \"-4\",\r\n -- second row\r\n \"-5\", \"-6\", \"-7\", \"-8\", \"Frost\",\r\n -- third row\r\n \"Elder Sign\", \"Skull\", \"Cultist\", \"Tablet\", \"Elder Thing\", \"Auto-fail\"\r\n}\r\n\r\ny0 = 0\r\nz1 = -0.778\r\nz2 = 0\r\nz3 = 0.75\r\n\r\nlocal BUTTON_POSITION = {\r\n -- first row\r\n { -1.90, y0, z1 },\r\n { -1.14, y0, z1 },\r\n { -0.38, y0, z1 },\r\n { 0.38, y0, z1 },\r\n { 1.14, y0, z1 },\r\n { 1.90, y0, z1 },\r\n -- second row\r\n { -1.90, y0, z2 },\r\n { -1.14, y0, z2 },\r\n { -0.38, y0, z2 },\r\n { 0.38, y0, z2 },\r\n { 1.90, y0, z2 },\r\n -- third row\r\n { -1.90, y0, z3 },\r\n { -1.14, y0, z3 },\r\n { -0.38, y0, z3 },\r\n { 0.38, y0, z3 },\r\n { 1.14, y0, z3 },\r\n { 1.90, y0, z3 },\r\n}\r\n\r\n-- common button parameters\r\nlocal BUTTON_PARAMETERS = {}\r\nBUTTON_PARAMETERS.function_owner = self\r\nBUTTON_PARAMETERS.color = { 0, 0, 0, 0 }\r\nBUTTON_PARAMETERS.width = 300\r\nBUTTON_PARAMETERS.height = 300\r\n\r\nfunction onload()\r\n -- create buttons for tokens\r\n for i = 1, #BUTTON_POSITION do\r\n BUTTON_PARAMETERS.position = BUTTON_POSITION[i]\r\n BUTTON_PARAMETERS.click_function = attachIndex(\"button_click\", i)\r\n BUTTON_PARAMETERS.tooltip = BUTTON_TOOLTIP[i]\r\n self.createButton(BUTTON_PARAMETERS)\r\n end\r\n\r\n self.addContextMenuItem(\"More Information\", function()\r\n printToAll(\"------------------------------\", \"White\")\r\n printToAll(\"Chaos Bag Manager v\" .. information[\"version\"] .. \" by Chr1Z\", \"Orange\")\r\n printToAll(\"last updated: \" .. information[\"last_updated\"], \"White\")\r\n end)\r\nend\r\n\r\n-- get chaos bag from scripting zone and description\r\nfunction getChaosBag()\r\n local chaosbag = nil\r\n local chaosbag_zone = getObjectFromGUID(\"83ef06\")\r\n\r\n -- error handling: scripting zone not found\r\n if chaosbag_zone == nil then\r\n printToAll(\"Zone for chaos bag detection couldn't be found.\", \"Red\")\r\n return nil\r\n end\r\n\r\n for _, v in ipairs(chaosbag_zone.getObjects()) 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\r\n -- error handling: chaos bag not found\r\n if chaosbag == nil then\r\n printToAll(\"Chaos bag couldn't be found.\", \"Red\")\r\n end\r\n return chaosbag\r\nend\r\n\r\n-- helper function to carry index\r\nfunction attachIndex(click_function, index)\r\n local fn_name = click_function .. index\r\n _G[fn_name] = function(obj, player_color, alt_click)\r\n _G[click_function](obj, player_color, alt_click, index)\r\n end\r\n return fn_name\r\nend\r\n\r\n-- click function for buttons\r\nfunction button_click(obj, player_color, alt_click, index)\r\n chaosbag = getChaosBag()\r\n\r\n -- error handling: chaos bag not found\r\n if chaosbag == nil then return end\r\n\r\n name = BUTTON_TOOLTIP[index]\r\n tokens = {}\r\n for i, v in ipairs(chaosbag.getObjects()) do\r\n if v.name == name then table.insert(tokens, v.guid) end\r\n end\r\n\r\n token = TOKEN_NAMES[index]\r\n if alt_click then\r\n -- error handling: no matching token found\r\n if #tokens == 0 then\r\n printToAll(\"No \" .. name .. \" tokens in the chaos bag.\", \"Yellow\")\r\n return\r\n end\r\n\r\n -- remove token\r\n chaosbag.takeObject({\r\n guid = tokens[1],\r\n position = self.getPosition(),\r\n smooth = false,\r\n callback_function = remove_callback\r\n })\r\n else\r\n -- spawn token (only 8 frost tokens allowed)\r\n if token == \"Frost\" and #tokens == 8 then\r\n printToAll(\"The maximum of 8 Frost tokens is already in the bag.\", \"Yellow\")\r\n return\r\n end\r\n\r\n local obj = spawnObject({\r\n type = 'Custom_Tile',\r\n position = chaosbag.getPosition() + Vector(0, 1, 0),\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 = TOKEN_URL[token],\r\n thickness = 0.10\r\n })\r\n end\r\nend\r\n\r\nfunction remove_callback(obj)\r\n printToAll(\"Removing \" .. name .. \" token (in bag: \" .. #tokens - 1 .. \")\", \"White\")\r\n obj.destruct()\r\nend\r\n\r\nfunction spawn_callback(obj)\r\n obj.scale { 0.81, 1, 0.81 }\r\n obj.setName(name)\r\n printToAll(\"Adding \" .. name .. \" token (in bag: \" .. #tokens + 1 .. \")\", \"White\")\r\nend",
"LuaScriptState": "{\"Bless\":8,\"Curse\":0}",
"XmlUI": ""
},
{
"GUID": "022907",
"Name": "Custom_Token",
"Transform": {
"posX": 22.9512024,
"posY": 5.242346,
"posZ": -30.2954159,
"rotX": 0.5792924,
"rotY": 270.038269,
"rotZ": 0.178260192,
"scaleX": 2.0,
"scaleY": 1.0,
"scaleZ": 2.0
},
"Nickname": "Token Arranger",
"Description": "Displays the content of the chaos bag in tabular fashion.\n\nSee context menu for additional information.",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1838054223124059668/0BF8F541309E717BA84987BD554675A2FD06AF9F/",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.100000009,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "-- Token Arranger\r\n-- created by: Chr1Z\r\n-- original by: Whimsical\r\n-- description: displays the content of the chaos bag\r\ninformation = {\r\n version = \"1.6\",\r\n last_updated = \"10.10.2022\"\r\n}\r\n\r\n-- names of tokens in order\r\ntoken_names = {\r\n \"Elder Sign\",\r\n \"Skull\",\r\n \"Cultist\",\r\n \"Tablet\",\r\n \"Elder Thing\",\r\n \"Auto-fail\",\r\n \"Bless\",\r\n \"Curse\",\r\n \"Frost\",\r\n \"\"\r\n}\r\n\r\n-- common parameters\r\nlocal BUTTON_PARAMETERS = {}\r\nBUTTON_PARAMETERS.function_owner = self\r\nBUTTON_PARAMETERS.label = \"\"\r\nBUTTON_PARAMETERS.tooltip = \"Add / Remove\"\r\nBUTTON_PARAMETERS.color = { 0, 0, 0, 0 }\r\nBUTTON_PARAMETERS.width = 325\r\nBUTTON_PARAMETERS.height = 325\r\n\r\nlocal INPUT_PARAMETERS = {}\r\nINPUT_PARAMETERS.function_owner = self\r\nINPUT_PARAMETERS.font_size = 100\r\nINPUT_PARAMETERS.width = 250\r\nINPUT_PARAMETERS.height = INPUT_PARAMETERS.font_size + 23\r\nINPUT_PARAMETERS.alignment = 3\r\nINPUT_PARAMETERS.validation = 2\r\nINPUT_PARAMETERS.tab = 2\r\n\r\n-- tag for cloned tokens\r\nTO_DELETE_TAG = \"to_be_deleted\"\r\n\r\nfunction onSave() return JSON.encode(token_precedence) end\r\n\r\nfunction onload(save_state)\r\n if save_state ~= nil then\r\n token_precedence = JSON.decode(save_state)\r\n else\r\n -- token modifiers for sorting (and order for same modifier)\r\n -- order starts at 2 because there is a \"+1\" token\r\n token_precedence = {\r\n [\"Elder Sign\"] = { 100, 2 },\r\n [\"Skull\"] = { -1, 3 },\r\n [\"Cultist\"] = { -2, 4 },\r\n [\"Tablet\"] = { -3, 5 },\r\n [\"Elder Thing\"] = { -4, 6 },\r\n [\"Auto-fail\"] = { -100, 7 },\r\n [\"Bless\"] = { 101, 8 },\r\n [\"Curse\"] = { -101, 9 },\r\n [\"Frost\"] = { -99, 10 },\r\n [\"\"] = { 0, 11 }\r\n }\r\n end\r\n\r\n updating = false\r\n\r\n -- create UI\r\n local offset = 0.725\r\n local pos = {\r\n x = { -1.067, 0.377 },\r\n z = -2.175\r\n }\r\n\r\n -- button and inputs index 1-10\r\n for i = 1, 10 do\r\n if i < 6 then\r\n BUTTON_PARAMETERS.position = { pos.x[1], 0, pos.z + i * offset }\r\n INPUT_PARAMETERS.position = { pos.x[1] + offset, 0.1, pos.z + i * offset }\r\n else\r\n BUTTON_PARAMETERS.position = { pos.x[2], 0, pos.z + (i - 5) * offset }\r\n INPUT_PARAMETERS.position = { pos.x[2] + offset, 0.1, pos.z + (i - 5) * offset }\r\n end\r\n\r\n BUTTON_PARAMETERS.click_function = attachIndex(\"tokenClick\", i)\r\n INPUT_PARAMETERS.input_function = attachIndex2(\"tokenInput\", i)\r\n INPUT_PARAMETERS.value = token_precedence[token_names[i]][1]\r\n\r\n self.createButton(BUTTON_PARAMETERS)\r\n self.createInput(INPUT_PARAMETERS)\r\n end\r\n\r\n -- index 11: \"Update / Hide\" button\r\n BUTTON_PARAMETERS.label = \"Update / Hide\"\r\n BUTTON_PARAMETERS.click_function = \"layout\"\r\n BUTTON_PARAMETERS.tooltip = \"Left-Click: Update!\\nRight-Click: Hide Tokens!\"\r\n BUTTON_PARAMETERS.position = { 0.725, 0.1, 2.025 }\r\n BUTTON_PARAMETERS.color = { 1, 1, 1 }\r\n BUTTON_PARAMETERS.width = 675\r\n BUTTON_PARAMETERS.height = 175\r\n self.createButton(BUTTON_PARAMETERS)\r\n\r\n self.addContextMenuItem(\"More Information\", function()\r\n printToAll(\"------------------------------\", \"White\")\r\n printToAll(\"Token Arranger v\" .. information[\"version\"] .. \" by Chr1Z\", \"Orange\")\r\n printToAll(\"last updated: \" .. information[\"last_updated\"], \"White\")\r\n printToAll(\"original concept by Whimsical\", \"White\")\r\n end)\r\nend\r\n\r\n-- helper functions to carry index\r\nfunction attachIndex(click_function, index)\r\n local fn_name = click_function .. index\r\n _G[fn_name] = function(obj, player_color, alt_click)\r\n _G[click_function](obj, player_color, alt_click, index)\r\n end\r\n return fn_name\r\nend\r\n\r\nfunction attachIndex2(input_function, index)\r\n local fn_name = input_function .. index\r\n _G[fn_name] = function(obj, player_color, input, selected)\r\n _G[input_function](obj, player_color, input, selected, index)\r\n end\r\n return fn_name\r\nend\r\n\r\n-- click_function for buttons on chaos tokens\r\nfunction tokenClick(obj, player_color, alt_click, index)\r\n if not updating then\r\n updating = true\r\n if alt_click then\r\n token_precedence[token_names[index]][1] = token_precedence[token_names[index]][1] - 1\r\n else\r\n token_precedence[token_names[index]][1] = token_precedence[token_names[index]][1] + 1\r\n end\r\n self.editInput({ index = index - 1, value = token_precedence[token_names[index]][1] })\r\n layout()\r\n end\r\nend\r\n\r\n-- input_function for input_boxes\r\nfunction tokenInput(obj, player_color, input, selected, index)\r\n if selected == false and not updating then\r\n updating = true\r\n local num = tonumber(input)\r\n if num ~= nil then\r\n token_precedence[token_names[index]][1] = num\r\n end\r\n layout()\r\n end\r\nend\r\n\r\n-- order function for data sorting\r\nfunction token_value_comparator(left, right)\r\n if left.value > right.value then return true\r\n elseif right.value > left.value then return false\r\n elseif left.order < right.order then return true\r\n elseif right.order < left.order then return false\r\n else return left.token.getGUID() > right.token.getGUID()\r\n end\r\nend\r\n\r\n-- get chaos bag from scripting zone and description\r\nfunction getChaosBag()\r\n local chaosbag = nil\r\n local chaosbag_zone = getObjectFromGUID(\"83ef06\")\r\n\r\n -- error handling: scripting zone not found\r\n if chaosbag_zone == nil then\r\n printToAll(\"Zone for chaos bag detection couldn't be found.\", \"Red\")\r\n return nil\r\n end\r\n\r\n for _, v in ipairs(chaosbag_zone.getObjects()) 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\r\n -- error handling: chaos bag not found\r\n if chaosbag == nil then\r\n printToAll(\"Chaos bag couldn't be found.\", \"Red\")\r\n end\r\n return chaosbag\r\nend\r\n\r\n-- main function (delete old tokens, clone chaos bag content, sort it and position it)\r\nfunction layout(_, _, isRightClick)\r\n -- delete previously pulled out tokens\r\n for _, token in ipairs(getObjectsWithTag(TO_DELETE_TAG)) do token.destruct() end\r\n\r\n -- stop here if right-clicked\r\n if isRightClick then return end\r\n\r\n local chaos_bag = getChaosBag()\r\n local chaos_bag_objects = chaos_bag.getObjects()\r\n\r\n -- take each token out and clone it\r\n for _, data in ipairs(chaos_bag_objects) do\r\n chaos_bag.takeObject {\r\n guid = data.guid,\r\n smooth = false,\r\n callback_function = function(tok)\r\n chaos_bag.putObject(tok.clone())\r\n tok.addTag(TO_DELETE_TAG)\r\n end\r\n }\r\n end\r\n\r\n -- wait until all tokens have finished spawning\r\n Wait.condition(function() do_position() end,\r\n function() return #chaos_bag_objects == #getObjectsWithTag(TO_DELETE_TAG) end)\r\nend\r\n\r\n-- position tokens sorted by value\r\nfunction do_position()\r\n local data = {}\r\n\r\n -- create table with tokens\r\n for i, token in ipairs(getObjectsWithTag(TO_DELETE_TAG)) do\r\n local name = token.getName()\r\n local value = tonumber(name)\r\n local precedence = token_precedence[name]\r\n\r\n data[i] = {\r\n token = token,\r\n value = value or precedence[1]\r\n }\r\n\r\n if precedence ~= nil then\r\n data[i].order = precedence[2]\r\n else\r\n data[i].order = value\r\n end\r\n end\r\n\r\n -- sort table by value (symbols last if same value)\r\n table.sort(data, token_value_comparator)\r\n\r\n -- laying out the tokens\r\n local pos = self.getPosition() + Vector(3.55, -0.05, -3.95)\r\n local location = { x = pos.x, y = pos.y, z = pos.z }\r\n local current_value = data[1].value\r\n\r\n for _, item in ipairs(data) do\r\n if item.value ~= current_value then\r\n location.x = location.x - 1.75\r\n location.z = pos.z\r\n current_value = item.value\r\n end\r\n item.token.setPosition(location)\r\n item.token.setRotation(self.getRotation())\r\n location.z = location.z - 1.75\r\n end\r\n updating = false\r\nend",
"LuaScriptState": "{\"\":[0,11],\"Auto-fail\":[-100,7],\"Bless\":[101,8],\"Cultist\":[-2,4],\"Curse\":[-100,9],\"Elder Sign\":[100,2],\"Elder Thing\":[-4,6],\"Frost\":[-99,10],\"Skull\":[-1,3],\"Tablet\":[-3,5]}",
"XmlUI": ""
},
{
"GUID": "8ac4b2",
"Name": "Custom_Model_Bag",
"Transform": {
"posX": 33.12856,
"posY": 2.06274986,
"posZ": -63.3002548,
"rotX": 0.0116391238,
"rotY": 270.0176,
"rotZ": 0.009386624,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "CYOA Campaign Guides",
"Description": "Antimarkovnikov",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"MaterialIndex": -1,
"MeshIndex": -1,
"CustomMesh": {
"MeshURL": "https://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.7516534,
"posY": 2.27899384,
"posZ": -0.231972,
"rotX": 0.000382233848,
"rotY": 270.0,
"rotZ": -0.00133319176,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "C1 Dark Matter",
"Description": "Designed by Axolotl",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"MaterialIndex": -1,
"MeshIndex": -1,
"CustomMesh": {
"MeshURL": "https://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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"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": -1.40729165,
"posY": 2.2788415,
"posZ": 0.152231738,
"rotX": 0.00319416262,
"rotY": 269.999634,
"rotZ": -0.003243428,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "P1 Challenge Scenarios",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"MaterialIndex": -1,
"MeshIndex": -1,
"CustomMesh": {
"MeshURL": "https://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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"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": -34.2402039,
"posY": 2.513612,
"posZ": 2.23521638,
"rotX": 8.341119E-05,
"rotY": 269.995331,
"rotZ": 0.000288097159,
"scaleX": 1.76113939,
"scaleY": 1.0,
"scaleZ": 1.76113939
},
"Nickname": "P1 Challenge Scenarios",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"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": -2.566516,
"posY": 2.27845144,
"posZ": -1.80695343,
"rotX": 0.00692888349,
"rotY": 269.995026,
"rotZ": 0.0107011218,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "S2 Stand-Alones 2020-202?",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"MaterialIndex": -1,
"MeshIndex": -1,
"CustomMesh": {
"MeshURL": "https://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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"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": -0.470476121,
"posY": 2.278905,
"posZ": -0.8788577,
"rotX": 0.00179911708,
"rotY": 269.999878,
"rotZ": 0.0001325197,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "S1 Stand-Alones 2016-2020",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"MaterialIndex": -1,
"MeshIndex": -1,
"CustomMesh": {
"MeshURL": "https://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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"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": -1.07411015,
"posY": 2.27861071,
"posZ": -2.175267,
"rotX": 0.003091876,
"rotY": 270.004578,
"rotZ": 0.003910862,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "07 The Innsmouth Conspiracy",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"MaterialIndex": -1,
"MeshIndex": -1,
"CustomMesh": {
"MeshURL": "https://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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"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": "1bac4d",
"Name": "Custom_Model_Bag",
"Transform": {
"posX": -1.61049628,
"posY": 2.2788,
"posZ": 0.143323764,
"rotX": 0.003868174,
"rotY": 270.000061,
"rotZ": -0.00374985184,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "06B The Web of Dreams",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"MaterialIndex": -1,
"MeshIndex": -1,
"CustomMesh": {
"MeshURL": "https://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": 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": "ae792e",
"Name": "Custom_PDF",
"Transform": {
"posX": -22.5744038,
"posY": 2.50998545,
"posZ": 5.099754,
"rotX": -0.00240518874,
"rotY": 269.999878,
"rotZ": 0.0414188765,
"scaleX": 1.76113939,
"scaleY": 1.0,
"scaleZ": 1.76113939
},
"Nickname": "The Web of Dreams (Campaign B)",
"Description": "The Dream-Eaters",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomPDF": {
"PDFUrl": "https://github.com/Antimarkovnikov/TTS_AHC_CYOA/blob/master/Dual%20Pages%2006%20The%20Dream-Eaters%20-%20B%20-%20The%20Web%20of%20Dreams.pdf?raw=true",
"PDFPassword": "",
"PDFPage": 0,
"PDFPageOffset": 0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "f03c2d",
"Name": "Custom_Model_Bag",
"Transform": {
"posX": -2.51777482,
"posY": 2.27729273,
"posZ": 2.64166522,
"rotX": 0.006591206,
"rotY": 270.000061,
"rotZ": 359.8841,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "06A The Dream-Quest",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"MaterialIndex": -1,
"MeshIndex": -1,
"CustomMesh": {
"MeshURL": "https://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": 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": "47b9c1",
"Name": "Custom_PDF",
"Transform": {
"posX": -21.4485416,
"posY": 2.51079464,
"posZ": 14.841917,
"rotX": 0.00334196235,
"rotY": 269.999756,
"rotZ": 359.987274,
"scaleX": 1.76113939,
"scaleY": 1.0,
"scaleZ": 1.76113939
},
"Nickname": "The Dream Quest (Campaign A)",
"Description": "The Dream-Eaters",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomPDF": {
"PDFUrl": "https://github.com/Antimarkovnikov/TTS_AHC_CYOA/blob/master/Dual%20Pages%2006%20The%20Dream-Eaters%20-%20A%20-%20The%20Dream-Quest.pdf?raw=true",
"PDFPassword": "",
"PDFPage": 0,
"PDFPageOffset": 0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "20d53c",
"Name": "Custom_Model_Bag",
"Transform": {
"posX": -2.29896259,
"posY": 2.278536,
"posZ": -1.56096315,
"rotX": 0.00772115868,
"rotY": 270.0005,
"rotZ": 0.0118038589,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "05 The Circle Undone",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"MaterialIndex": -1,
"MeshIndex": -1,
"CustomMesh": {
"MeshURL": "https://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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"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": -3.42968321,
"posY": 2.27830267,
"posZ": -1.58313167,
"rotX": 0.0278778523,
"rotY": 269.9992,
"rotZ": 0.0123192668,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "04 The Forgotten Age",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"MaterialIndex": -1,
"MeshIndex": -1,
"CustomMesh": {
"MeshURL": "https://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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"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": -2.46709514,
"posY": 2.27863836,
"posZ": 0.0993988141,
"rotX": 0.009665832,
"rotY": 269.999878,
"rotZ": -0.00410310272,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "03 The Path to Carcosa",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"MaterialIndex": -1,
"MeshIndex": -1,
"CustomMesh": {
"MeshURL": "https://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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"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": -1.42301047,
"posY": 2.27718377,
"posZ": 2.76642942,
"rotX": 0.00340983854,
"rotY": 270.005219,
"rotZ": 359.83017,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "02 The Dunwich Legacy",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"MaterialIndex": -1,
"MeshIndex": -1,
"CustomMesh": {
"MeshURL": "https://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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"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": -1.08773959,
"posY": 2.2760067,
"posZ": 2.933954,
"rotX": 0.0021125162,
"rotY": 270.000061,
"rotZ": 359.759064,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "01 Night of the Zealot",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"MaterialIndex": -1,
"MeshIndex": -1,
"CustomMesh": {
"MeshURL": "https://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": -12.9852333,
"posY": 2.510511,
"posZ": 19.1326084,
"rotX": 0.00459889928,
"rotY": 270.000244,
"rotZ": 359.986816,
"scaleX": 1.76113939,
"scaleY": 1.0,
"scaleZ": 1.76113939
},
"Nickname": "Night of the Zealot",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"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.3335655,
"posY": 2.58107972,
"posZ": -0.36913228,
"rotX": -0.0002676536,
"rotY": 90.00757,
"rotZ": 0.0009813835,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "d45664",
"Name": "Custom_Model_Bag",
"Transform": {
"posX": 29.2896862,
"posY": 5.25648642,
"posZ": -19.8247776,
"rotX": 359.983246,
"rotY": 270.0,
"rotZ": 0.00354218017,
"scaleX": 0.7951615,
"scaleY": 1.0,
"scaleZ": 0.7951615
},
"Nickname": "Attachment Helper",
"Description": "Drop cards here to display name, cost and skill icons.\n\nSee context menu for options.",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"Asset",
"scesetup_memory_object"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"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/1750192233783143973/D526236AAE16BDBB98D3F30E27BAFC1D3E21F4AC/",
"NormalURL": "",
"ColliderURL": "http://cloud-3.steamusercontent.com/ugc/1754695414379239413/0B8E68F3B7311DCF2138FB701F78D1D93FBA4CAB/",
"Convex": true,
"MaterialIndex": 1,
"TypeIndex": 6,
"CastShadows": true
},
"Bag": {
"Order": 0
},
"LuaScript": "-- Attachment Helper\r\n-- updated by: Chr1Z\r\n-- original by: -\r\n-- description: displays cards in it with cost/skill icons\r\ninformation = {\r\n version = \"1.4\",\r\n last_updated = \"10.10.2022\"\r\n}\r\n\r\n-- save state and options to restore onLoad\r\nfunction onSave() return JSON.encode({ cardsInBag, showCost, showIcons }) end\r\n\r\n-- load variables and create context menu\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" and saved_data ~= nil then\r\n local loaded_data = JSON.decode(saved_data)\r\n cardsInBag = loaded_data[1]\r\n showCost = loaded_data[2]\r\n showIcons = loaded_data[3]\r\n else\r\n cardsInBag = {}\r\n showCost = true\r\n showIcons = true\r\n end\r\n\r\n recreateButtons()\r\n\r\n self.addContextMenuItem(\"More Information\", function()\r\n printToAll(\"------------------------------\", \"White\")\r\n printToAll(\"Attachment Helper v\" .. information[\"version\"] .. \" by Chr1Z\", \"Orange\")\r\n printToAll(\"original by: bankey\", \"White\")\r\n printToAll(\"last updated: \" .. information[\"last_updated\"], \"White\")\r\n end)\r\n\r\n self.addContextMenuItem(\"Toggle cost\", function(color)\r\n showCost = not showCost\r\n printToColor(\"Show cost of cards: \" .. tostring(showCost), color, \"White\")\r\n refresh()\r\n end)\r\n\r\n self.addContextMenuItem(\"Toggle skill icons\", function(color)\r\n showIcons = not showIcons\r\n printToColor(\"Show skill icons of cards: \" .. tostring(showIcons), color, \"White\")\r\n refresh()\r\n end)\r\nend\r\n\r\n-- called for every card that enters\r\nfunction onObjectEnterContainer(container, object)\r\n if container == self then\r\n findCard(object.getGUID(), object.getName(), object.getGMNotes())\r\n recreateButtons()\r\n end\r\nend\r\n\r\n-- removes leaving cards from the \"cardInBag\" table\r\nfunction onObjectLeaveContainer(container, object)\r\n if container == self then\r\n local guid = object.getGUID()\r\n for i, card in ipairs(cardsInBag) do\r\n if card.id == guid then table.remove(cardsInBag, i) end\r\n end\r\n recreateButtons()\r\n end\r\nend\r\n\r\n-- refreshes displayed buttons based on contained cards\r\nfunction refresh()\r\n cardsInBag = {}\r\n for _, object in ipairs(self.getObjects()) do\r\n findCard(object.guid, object.name, object.gm_notes)\r\n end\r\n recreateButtons()\r\nend\r\n\r\n-- gets cost and icons for a card\r\nfunction findCard(guid, name, GMNotes)\r\n local cost = \"\"\r\n local icons = {}\r\n local metadata = {}\r\n\r\n if name == nil or name == \"\" then name = \"unnamed\" end\r\n\r\n if showCost or showIcons then\r\n metadata = JSON.decode(GMNotes)\r\n end\r\n\r\n if showCost then\r\n if GMNotes ~= \"\" then cost = metadata.cost end\r\n if cost == nil or cost == \"\" then cost = \"–\" end\r\n name = \"[\" .. cost .. \"] \" .. name\r\n end\r\n\r\n if showIcons then\r\n if GMNotes ~= \"\" then\r\n icons[1] = metadata.wildIcons\r\n icons[2] = metadata.willpowerIcons\r\n icons[3] = metadata.intellectIcons\r\n icons[4] = metadata.fightIcons\r\n icons[5] = metadata.agilityIcons\r\n end\r\n\r\n local IconTypes = { \"Wild\", \"Willpower\", \"Intellect\", \"Fight\", \"Agility\" }\r\n local found = false\r\n for i = 1, 5 do\r\n if icons[i] ~= nil and icons[i] ~= \"\" then\r\n if found == false then\r\n name = name .. \"\\n\" .. IconTypes[i] .. \": \" .. icons[i]\r\n found = true\r\n else\r\n name = name .. \" \" .. IconTypes[i] .. \": \" .. icons[i]\r\n end\r\n end\r\n end\r\n end\r\n\r\n table.insert(cardsInBag, { name = name, id = guid })\r\nend\r\n\r\n-- recreates buttons with up-to-date labels\r\nfunction recreateButtons()\r\n self.clearButtons()\r\n local verticalPosition = 1.65\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 = string.len(card.name) > 20 and 75 or 100\r\n })\r\n\r\n verticalPosition = verticalPosition - 0.5\r\n end\r\n\r\n local countLabel = '\\nAttachment\\nHelper\\nv' .. information[\"version\"]\r\n if #cardsInBag ~= 0 then countLabel = #cardsInBag end\r\n\r\n self.createButton({\r\n label = countLabel,\r\n click_function = 'none',\r\n function_owner = self,\r\n position = { 0, 0, -1.35 },\r\n height = 0,\r\n width = 0,\r\n font_size = 225,\r\n font_color = { 1, 1, 1 }\r\n })\r\nend\r\n\r\n-- click-function for buttons to take a card out of the bag\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.25, 0),\r\n callback_function = function(obj) obj.resting = true end\r\n })\r\nend",
"LuaScriptState": "[[],true,false]",
"XmlUI": "",
"States": {
"1": {
"GUID": "f550dc",
"Name": "Custom_Model_Bag",
"Transform": {
"posX": 14.6885748,
"posY": 1.71333456,
"posZ": -26.0148544,
"rotX": 359.920135,
"rotY": 270.000122,
"rotZ": 0.01688583,
"scaleX": 0.7951615,
"scaleY": 1.0,
"scaleZ": 0.7951615
},
"Nickname": "Sefina Rousseau Helper",
"Description": "Drop cards here to display name, cost and skill icons.\n\nSee context menu for options.",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"Asset",
"scesetup_memory_object"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"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": "-- Attachment Helper\r\n-- updated by: Chr1Z\r\n-- original by: -\r\n-- description: displays cards in it with cost/skill icons\r\ninformation = {\r\n version = \"1.4\",\r\n last_updated = \"10.10.2022\"\r\n}\r\n\r\n-- save state and options to restore onLoad\r\nfunction onSave() return JSON.encode({ cardsInBag, showCost, showIcons }) end\r\n\r\n-- load variables and create context menu\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" and saved_data ~= nil then\r\n local loaded_data = JSON.decode(saved_data)\r\n cardsInBag = loaded_data[1]\r\n showCost = loaded_data[2]\r\n showIcons = loaded_data[3]\r\n else\r\n cardsInBag = {}\r\n showCost = true\r\n showIcons = true\r\n end\r\n\r\n recreateButtons()\r\n\r\n self.addContextMenuItem(\"More Information\", function()\r\n printToAll(\"------------------------------\", \"White\")\r\n printToAll(\"Attachment Helper v\" .. information[\"version\"] .. \" by Chr1Z\", \"Orange\")\r\n printToAll(\"original by: bankey\", \"White\")\r\n printToAll(\"last updated: \" .. information[\"last_updated\"], \"White\")\r\n end)\r\n\r\n self.addContextMenuItem(\"Toggle cost\", function(color)\r\n showCost = not showCost\r\n printToColor(\"Show cost of cards: \" .. tostring(showCost), color, \"White\")\r\n refresh()\r\n end)\r\n\r\n self.addContextMenuItem(\"Toggle skill icons\", function(color)\r\n showIcons = not showIcons\r\n printToColor(\"Show skill icons of cards: \" .. tostring(showIcons), color, \"White\")\r\n refresh()\r\n end)\r\nend\r\n\r\n-- called for every card that enters\r\nfunction onObjectEnterContainer(container, object)\r\n if container == self then\r\n findCard(object.getGUID(), object.getName(), object.getGMNotes())\r\n recreateButtons()\r\n end\r\nend\r\n\r\n-- removes leaving cards from the \"cardInBag\" table\r\nfunction onObjectLeaveContainer(container, object)\r\n if container == self then\r\n local guid = object.getGUID()\r\n for i, card in ipairs(cardsInBag) do\r\n if card.id == guid then table.remove(cardsInBag, i) end\r\n end\r\n recreateButtons()\r\n end\r\nend\r\n\r\n-- refreshes displayed buttons based on contained cards\r\nfunction refresh()\r\n cardsInBag = {}\r\n for _, object in ipairs(self.getObjects()) do\r\n findCard(object.guid, object.name, object.gm_notes)\r\n end\r\n recreateButtons()\r\nend\r\n\r\n-- gets cost and icons for a card\r\nfunction findCard(guid, name, GMNotes)\r\n local cost = \"\"\r\n local icons = {}\r\n local metadata = {}\r\n\r\n if name == nil or name == \"\" then name = \"unnamed\" end\r\n\r\n if showCost or showIcons then\r\n metadata = JSON.decode(GMNotes)\r\n end\r\n\r\n if showCost then\r\n if GMNotes ~= \"\" then cost = metadata.cost end\r\n if cost == nil or cost == \"\" then cost = \"–\" end\r\n name = \"[\" .. cost .. \"] \" .. name\r\n end\r\n\r\n if showIcons then\r\n if GMNotes ~= \"\" then\r\n icons[1] = metadata.wildIcons\r\n icons[2] = metadata.willpowerIcons\r\n icons[3] = metadata.intellectIcons\r\n icons[4] = metadata.fightIcons\r\n icons[5] = metadata.agilityIcons\r\n end\r\n\r\n local IconTypes = { \"Wild\", \"Willpower\", \"Intellect\", \"Fight\", \"Agility\" }\r\n local found = false\r\n for i = 1, 5 do\r\n if icons[i] ~= nil and icons[i] ~= \"\" then\r\n if found == false then\r\n name = name .. \"\\n\" .. IconTypes[i] .. \": \" .. icons[i]\r\n found = true\r\n else\r\n name = name .. \" \" .. IconTypes[i] .. \": \" .. icons[i]\r\n end\r\n end\r\n end\r\n end\r\n\r\n table.insert(cardsInBag, { name = name, id = guid })\r\nend\r\n\r\n-- recreates buttons with up-to-date labels\r\nfunction recreateButtons()\r\n self.clearButtons()\r\n local verticalPosition = 1.65\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 = string.len(card.name) > 20 and 75 or 100\r\n })\r\n\r\n verticalPosition = verticalPosition - 0.5\r\n end\r\n\r\r\n self.createButton({\r\n label = countLabel,\r\n click_function = 'none',\r\n function_owner = self,\r\n position = { 0, 0, -1.35 },\r\n height = 0,\r\n width = 0,\r\n font_size = 225,\r\n font_color = { 1, 1, 1 }\r\n })\r\nend\r\n\r\n-- click-function for buttons to take a card out of the bag\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.25, 0),\r\n callback_function = function(obj) obj.resting = true end\r\n })\r\nend",
"LuaScriptState": "[[],true,false]",
"XmlUI": ""
},
"2": {
"GUID": "2fbbca",
"Name": "Custom_Model_Bag",
"Transform": {
"posX": 14.6885757,
"posY": 1.71333444,
"posZ": -26.0148582,
"rotX": 359.920135,
"rotY": 270.000122,
"rotZ": 0.0168847367,
"scaleX": 0.7951615,
"scaleY": 1.0,
"scaleZ": 0.7951615
},
"Nickname": "Diana Stanley Helper",
"Description": "Drop cards here to display name, cost and skill icons.\n\nSee context menu for options.",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"Asset",
"scesetup_memory_object"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"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": "-- Attachment Helper\r\n-- updated by: Chr1Z\r\n-- original by: -\r\n-- description: displays cards in it with cost/skill icons\r\ninformation = {\r\n version = \"1.4\",\r\n last_updated = \"10.10.2022\"\r\n}\r\n\r\n-- save state and options to restore onLoad\r\nfunction onSave() return JSON.encode({ cardsInBag, showCost, showIcons }) end\r\n\r\n-- load variables and create context menu\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" and saved_data ~= nil then\r\n local loaded_data = JSON.decode(saved_data)\r\n cardsInBag = loaded_data[1]\r\n showCost = loaded_data[2]\r\n showIcons = loaded_data[3]\r\n else\r\n cardsInBag = {}\r\n showCost = true\r\n showIcons = true\r\n end\r\n\r\n recreateButtons()\r\n\r\n self.addContextMenuItem(\"More Information\", function()\r\n printToAll(\"------------------------------\", \"White\")\r\n printToAll(\"Attachment Helper v\" .. information[\"version\"] .. \" by Chr1Z\", \"Orange\")\r\n printToAll(\"original by: bankey\", \"White\")\r\n printToAll(\"last updated: \" .. information[\"last_updated\"], \"White\")\r\n end)\r\n\r\n self.addContextMenuItem(\"Toggle cost\", function(color)\r\n showCost = not showCost\r\n printToColor(\"Show cost of cards: \" .. tostring(showCost), color, \"White\")\r\n refresh()\r\n end)\r\n\r\n self.addContextMenuItem(\"Toggle skill icons\", function(color)\r\n showIcons = not showIcons\r\n printToColor(\"Show skill icons of cards: \" .. tostring(showIcons), color, \"White\")\r\n refresh()\r\n end)\r\nend\r\n\r\n-- called for every card that enters\r\nfunction onObjectEnterContainer(container, object)\r\n if container == self then\r\n findCard(object.getGUID(), object.getName(), object.getGMNotes())\r\n recreateButtons()\r\n end\r\nend\r\n\r\n-- removes leaving cards from the \"cardInBag\" table\r\nfunction onObjectLeaveContainer(container, object)\r\n if container == self then\r\n local guid = object.getGUID()\r\n for i, card in ipairs(cardsInBag) do\r\n if card.id == guid then table.remove(cardsInBag, i) end\r\n end\r\n recreateButtons()\r\n end\r\nend\r\n\r\n-- refreshes displayed buttons based on contained cards\r\nfunction refresh()\r\n cardsInBag = {}\r\n for _, object in ipairs(self.getObjects()) do\r\n findCard(object.guid, object.name, object.gm_notes)\r\n end\r\n recreateButtons()\r\nend\r\n\r\n-- gets cost and icons for a card\r\nfunction findCard(guid, name, GMNotes)\r\n local cost = \"\"\r\n local icons = {}\r\n local metadata = {}\r\n\r\n if name == nil or name == \"\" then name = \"unnamed\" end\r\n\r\n if showCost or showIcons then\r\n metadata = JSON.decode(GMNotes)\r\n end\r\n\r\n if showCost then\r\n if GMNotes ~= \"\" then cost = metadata.cost end\r\n if cost == nil or cost == \"\" then cost = \"–\" end\r\n name = \"[\" .. cost .. \"] \" .. name\r\n end\r\n\r\n if showIcons then\r\n if GMNotes ~= \"\" then\r\n icons[1] = metadata.wildIcons\r\n icons[2] = metadata.willpowerIcons\r\n icons[3] = metadata.intellectIcons\r\n icons[4] = metadata.fightIcons\r\n icons[5] = metadata.agilityIcons\r\n end\r\n\r\n local IconTypes = { \"Wild\", \"Willpower\", \"Intellect\", \"Fight\", \"Agility\" }\r\n local found = false\r\n for i = 1, 5 do\r\n if icons[i] ~= nil and icons[i] ~= \"\" then\r\n if found == false then\r\n name = name .. \"\\n\" .. IconTypes[i] .. \": \" .. icons[i]\r\n found = true\r\n else\r\n name = name .. \" \" .. IconTypes[i] .. \": \" .. icons[i]\r\n end\r\n end\r\n end\r\n end\r\n\r\n table.insert(cardsInBag, { name = name, id = guid })\r\nend\r\n\r\n-- recreates buttons with up-to-date labels\r\nfunction recreateButtons()\r\n self.clearButtons()\r\n local verticalPosition = 1.65\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 = string.len(card.name) > 20 and 75 or 100\r\n })\r\n\r\n verticalPosition = verticalPosition - 0.5\r\n end\r\n\r\r\n self.createButton({\r\n label = countLabel,\r\n click_function = 'none',\r\n function_owner = self,\r\n position = { 0, 0, -1.35 },\r\n height = 0,\r\n width = 0,\r\n font_size = 225,\r\n font_color = { 1, 1, 1 }\r\n })\r\nend\r\n\r\n-- click-function for buttons to take a card out of the bag\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.25, 0),\r\n callback_function = function(obj) obj.resting = true end\r\n })\r\nend",
"LuaScriptState": "[[],true,false]",
"XmlUI": ""
},
"3": {
"GUID": "31d5dd",
"Name": "Custom_Model_Bag",
"Transform": {
"posX": 14.6885767,
"posY": 1.71333444,
"posZ": -26.0148621,
"rotX": 359.920135,
"rotY": 270.000122,
"rotZ": 0.01688558,
"scaleX": 0.7951615,
"scaleY": 1.0,
"scaleZ": 0.7951615
},
"Nickname": "Gloria Goldberg Helper",
"Description": "Drop cards here to display name, cost and skill icons.\n\nSee context menu for options.",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"Asset",
"scesetup_memory_object"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"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": "-- Attachment Helper\r\n-- updated by: Chr1Z\r\n-- original by: -\r\n-- description: displays cards in it with cost/skill icons\r\ninformation = {\r\n version = \"1.4\",\r\n last_updated = \"10.10.2022\"\r\n}\r\n\r\n-- save state and options to restore onLoad\r\nfunction onSave() return JSON.encode({ cardsInBag, showCost, showIcons }) end\r\n\r\n-- load variables and create context menu\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" and saved_data ~= nil then\r\n local loaded_data = JSON.decode(saved_data)\r\n cardsInBag = loaded_data[1]\r\n showCost = loaded_data[2]\r\n showIcons = loaded_data[3]\r\n else\r\n cardsInBag = {}\r\n showCost = true\r\n showIcons = true\r\n end\r\n\r\n recreateButtons()\r\n\r\n self.addContextMenuItem(\"More Information\", function()\r\n printToAll(\"------------------------------\", \"White\")\r\n printToAll(\"Attachment Helper v\" .. information[\"version\"] .. \" by Chr1Z\", \"Orange\")\r\n printToAll(\"original by: bankey\", \"White\")\r\n printToAll(\"last updated: \" .. information[\"last_updated\"], \"White\")\r\n end)\r\n\r\n self.addContextMenuItem(\"Toggle cost\", function(color)\r\n showCost = not showCost\r\n printToColor(\"Show cost of cards: \" .. tostring(showCost), color, \"White\")\r\n refresh()\r\n end)\r\n\r\n self.addContextMenuItem(\"Toggle skill icons\", function(color)\r\n showIcons = not showIcons\r\n printToColor(\"Show skill icons of cards: \" .. tostring(showIcons), color, \"White\")\r\n refresh()\r\n end)\r\nend\r\n\r\n-- called for every card that enters\r\nfunction onObjectEnterContainer(container, object)\r\n if container == self then\r\n findCard(object.getGUID(), object.getName(), object.getGMNotes())\r\n recreateButtons()\r\n end\r\nend\r\n\r\n-- removes leaving cards from the \"cardInBag\" table\r\nfunction onObjectLeaveContainer(container, object)\r\n if container == self then\r\n local guid = object.getGUID()\r\n for i, card in ipairs(cardsInBag) do\r\n if card.id == guid then table.remove(cardsInBag, i) end\r\n end\r\n recreateButtons()\r\n end\r\nend\r\n\r\n-- refreshes displayed buttons based on contained cards\r\nfunction refresh()\r\n cardsInBag = {}\r\n for _, object in ipairs(self.getObjects()) do\r\n findCard(object.guid, object.name, object.gm_notes)\r\n end\r\n recreateButtons()\r\nend\r\n\r\n-- gets cost and icons for a card\r\nfunction findCard(guid, name, GMNotes)\r\n local cost = \"\"\r\n local icons = {}\r\n local metadata = {}\r\n\r\n if name == nil or name == \"\" then name = \"unnamed\" end\r\n\r\n if showCost or showIcons then\r\n metadata = JSON.decode(GMNotes)\r\n end\r\n\r\n if showCost then\r\n if GMNotes ~= \"\" then cost = metadata.cost end\r\n if cost == nil or cost == \"\" then cost = \"–\" end\r\n name = \"[\" .. cost .. \"] \" .. name\r\n end\r\n\r\n if showIcons then\r\n if GMNotes ~= \"\" then\r\n icons[1] = metadata.wildIcons\r\n icons[2] = metadata.willpowerIcons\r\n icons[3] = metadata.intellectIcons\r\n icons[4] = metadata.fightIcons\r\n icons[5] = metadata.agilityIcons\r\n end\r\n\r\n local IconTypes = { \"Wild\", \"Willpower\", \"Intellect\", \"Fight\", \"Agility\" }\r\n local found = false\r\n for i = 1, 5 do\r\n if icons[i] ~= nil and icons[i] ~= \"\" then\r\n if found == false then\r\n name = name .. \"\\n\" .. IconTypes[i] .. \": \" .. icons[i]\r\n found = true\r\n else\r\n name = name .. \" \" .. IconTypes[i] .. \": \" .. icons[i]\r\n end\r\n end\r\n end\r\n end\r\n\r\n table.insert(cardsInBag, { name = name, id = guid })\r\nend\r\n\r\n-- recreates buttons with up-to-date labels\r\nfunction recreateButtons()\r\n self.clearButtons()\r\n local verticalPosition = 1.65\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 = string.len(card.name) > 20 and 75 or 100\r\n })\r\n\r\n verticalPosition = verticalPosition - 0.5\r\n end\r\n\r\r\n self.createButton({\r\n label = countLabel,\r\n click_function = 'none',\r\n function_owner = self,\r\n position = { 0, 0, -1.35 },\r\n height = 0,\r\n width = 0,\r\n font_size = 225,\r\n font_color = { 1, 1, 1 }\r\n })\r\nend\r\n\r\n-- click-function for buttons to take a card out of the bag\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.25, 0),\r\n callback_function = function(obj) obj.resting = true end\r\n })\r\nend",
"LuaScriptState": "[[],true,false]",
"XmlUI": ""
},
"4": {
"GUID": "56aa96",
"Name": "Custom_Model_Bag",
"Transform": {
"posX": 14.6885777,
"posY": 1.71333456,
"posZ": -26.0148659,
"rotX": 359.920135,
"rotY": 270.000122,
"rotZ": 0.01688493,
"scaleX": 0.7951615,
"scaleY": 1.0,
"scaleZ": 0.7951615
},
"Nickname": "Crystallizer of Dreams Helper",
"Description": "Drop cards here to display name, cost and skill icons.\n\nSee context menu for options.",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"Asset",
"scesetup_memory_object"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"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": "-- Attachment Helper\r\n-- updated by: Chr1Z\r\n-- original by: -\r\n-- description: displays cards in it with cost/skill icons\r\ninformation = {\r\n version = \"1.4\",\r\n last_updated = \"10.10.2022\"\r\n}\r\n\r\n-- save state and options to restore onLoad\r\nfunction onSave() return JSON.encode({ cardsInBag, showCost, showIcons }) end\r\n\r\n-- load variables and create context menu\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" and saved_data ~= nil then\r\n local loaded_data = JSON.decode(saved_data)\r\n cardsInBag = loaded_data[1]\r\n showCost = loaded_data[2]\r\n showIcons = loaded_data[3]\r\n else\r\n cardsInBag = {}\r\n showCost = true\r\n showIcons = true\r\n end\r\n\r\n recreateButtons()\r\n\r\n self.addContextMenuItem(\"More Information\", function()\r\n printToAll(\"------------------------------\", \"White\")\r\n printToAll(\"Attachment Helper v\" .. information[\"version\"] .. \" by Chr1Z\", \"Orange\")\r\n printToAll(\"original by: bankey\", \"White\")\r\n printToAll(\"last updated: \" .. information[\"last_updated\"], \"White\")\r\n end)\r\n\r\n self.addContextMenuItem(\"Toggle cost\", function(color)\r\n showCost = not showCost\r\n printToColor(\"Show cost of cards: \" .. tostring(showCost), color, \"White\")\r\n refresh()\r\n end)\r\n\r\n self.addContextMenuItem(\"Toggle skill icons\", function(color)\r\n showIcons = not showIcons\r\n printToColor(\"Show skill icons of cards: \" .. tostring(showIcons), color, \"White\")\r\n refresh()\r\n end)\r\nend\r\n\r\n-- called for every card that enters\r\nfunction onObjectEnterContainer(container, object)\r\n if container == self then\r\n findCard(object.getGUID(), object.getName(), object.getGMNotes())\r\n recreateButtons()\r\n end\r\nend\r\n\r\n-- removes leaving cards from the \"cardInBag\" table\r\nfunction onObjectLeaveContainer(container, object)\r\n if container == self then\r\n local guid = object.getGUID()\r\n for i, card in ipairs(cardsInBag) do\r\n if card.id == guid then table.remove(cardsInBag, i) end\r\n end\r\n recreateButtons()\r\n end\r\nend\r\n\r\n-- refreshes displayed buttons based on contained cards\r\nfunction refresh()\r\n cardsInBag = {}\r\n for _, object in ipairs(self.getObjects()) do\r\n findCard(object.guid, object.name, object.gm_notes)\r\n end\r\n recreateButtons()\r\nend\r\n\r\n-- gets cost and icons for a card\r\nfunction findCard(guid, name, GMNotes)\r\n local cost = \"\"\r\n local icons = {}\r\n local metadata = {}\r\n\r\n if name == nil or name == \"\" then name = \"unnamed\" end\r\n\r\n if showCost or showIcons then\r\n metadata = JSON.decode(GMNotes)\r\n end\r\n\r\n if showCost then\r\n if GMNotes ~= \"\" then cost = metadata.cost end\r\n if cost == nil or cost == \"\" then cost = \"–\" end\r\n name = \"[\" .. cost .. \"] \" .. name\r\n end\r\n\r\n if showIcons then\r\n if GMNotes ~= \"\" then\r\n icons[1] = metadata.wildIcons\r\n icons[2] = metadata.willpowerIcons\r\n icons[3] = metadata.intellectIcons\r\n icons[4] = metadata.fightIcons\r\n icons[5] = metadata.agilityIcons\r\n end\r\n\r\n local IconTypes = { \"Wild\", \"Willpower\", \"Intellect\", \"Fight\", \"Agility\" }\r\n local found = false\r\n for i = 1, 5 do\r\n if icons[i] ~= nil and icons[i] ~= \"\" then\r\n if found == false then\r\n name = name .. \"\\n\" .. IconTypes[i] .. \": \" .. icons[i]\r\n found = true\r\n else\r\n name = name .. \" \" .. IconTypes[i] .. \": \" .. icons[i]\r\n end\r\n end\r\n end\r\n end\r\n\r\n table.insert(cardsInBag, { name = name, id = guid })\r\nend\r\n\r\n-- recreates buttons with up-to-date labels\r\nfunction recreateButtons()\r\n self.clearButtons()\r\n local verticalPosition = 1.65\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 = string.len(card.name) > 20 and 75 or 100\r\n })\r\n\r\n verticalPosition = verticalPosition - 0.5\r\n end\r\n\r\r\n self.createButton({\r\n label = countLabel,\r\n click_function = 'none',\r\n function_owner = self,\r\n position = { 0, 0, -1.35 },\r\n height = 0,\r\n width = 0,\r\n font_size = 225,\r\n font_color = { 1, 1, 1 }\r\n })\r\nend\r\n\r\n-- click-function for buttons to take a card out of the bag\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.25, 0),\r\n callback_function = function(obj) obj.resting = true end\r\n })\r\nend",
"LuaScriptState": "[[],true,false]",
"XmlUI": ""
},
"5": {
"GUID": "31055d",
"Name": "Custom_Model_Bag",
"Transform": {
"posX": 14.6885786,
"posY": 1.71333456,
"posZ": -26.01487,
"rotX": 359.920135,
"rotY": 270.000122,
"rotZ": 0.01688525,
"scaleX": 0.7951615,
"scaleY": 1.0,
"scaleZ": 0.7951615
},
"Nickname": "Ancestral Knowledge Helper",
"Description": "Drop cards here to display name, cost and skill icons.\n\nSee context menu for options.",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"Asset",
"scesetup_memory_object"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"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": "-- Attachment Helper\r\n-- updated by: Chr1Z\r\n-- original by: -\r\n-- description: displays cards in it with cost/skill icons\r\ninformation = {\r\n version = \"1.4\",\r\n last_updated = \"10.10.2022\"\r\n}\r\n\r\n-- save state and options to restore onLoad\r\nfunction onSave() return JSON.encode({ cardsInBag, showCost, showIcons }) end\r\n\r\n-- load variables and create context menu\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" and saved_data ~= nil then\r\n local loaded_data = JSON.decode(saved_data)\r\n cardsInBag = loaded_data[1]\r\n showCost = loaded_data[2]\r\n showIcons = loaded_data[3]\r\n else\r\n cardsInBag = {}\r\n showCost = true\r\n showIcons = true\r\n end\r\n\r\n recreateButtons()\r\n\r\n self.addContextMenuItem(\"More Information\", function()\r\n printToAll(\"------------------------------\", \"White\")\r\n printToAll(\"Attachment Helper v\" .. information[\"version\"] .. \" by Chr1Z\", \"Orange\")\r\n printToAll(\"original by: bankey\", \"White\")\r\n printToAll(\"last updated: \" .. information[\"last_updated\"], \"White\")\r\n end)\r\n\r\n self.addContextMenuItem(\"Toggle cost\", function(color)\r\n showCost = not showCost\r\n printToColor(\"Show cost of cards: \" .. tostring(showCost), color, \"White\")\r\n refresh()\r\n end)\r\n\r\n self.addContextMenuItem(\"Toggle skill icons\", function(color)\r\n showIcons = not showIcons\r\n printToColor(\"Show skill icons of cards: \" .. tostring(showIcons), color, \"White\")\r\n refresh()\r\n end)\r\nend\r\n\r\n-- called for every card that enters\r\nfunction onObjectEnterContainer(container, object)\r\n if container == self then\r\n findCard(object.getGUID(), object.getName(), object.getGMNotes())\r\n recreateButtons()\r\n end\r\nend\r\n\r\n-- removes leaving cards from the \"cardInBag\" table\r\nfunction onObjectLeaveContainer(container, object)\r\n if container == self then\r\n local guid = object.getGUID()\r\n for i, card in ipairs(cardsInBag) do\r\n if card.id == guid then table.remove(cardsInBag, i) end\r\n end\r\n recreateButtons()\r\n end\r\nend\r\n\r\n-- refreshes displayed buttons based on contained cards\r\nfunction refresh()\r\n cardsInBag = {}\r\n for _, object in ipairs(self.getObjects()) do\r\n findCard(object.guid, object.name, object.gm_notes)\r\n end\r\n recreateButtons()\r\nend\r\n\r\n-- gets cost and icons for a card\r\nfunction findCard(guid, name, GMNotes)\r\n local cost = \"\"\r\n local icons = {}\r\n local metadata = {}\r\n\r\n if name == nil or name == \"\" then name = \"unnamed\" end\r\n\r\n if showCost or showIcons then\r\n metadata = JSON.decode(GMNotes)\r\n end\r\n\r\n if showCost then\r\n if GMNotes ~= \"\" then cost = metadata.cost end\r\n if cost == nil or cost == \"\" then cost = \"–\" end\r\n name = \"[\" .. cost .. \"] \" .. name\r\n end\r\n\r\n if showIcons then\r\n if GMNotes ~= \"\" then\r\n icons[1] = metadata.wildIcons\r\n icons[2] = metadata.willpowerIcons\r\n icons[3] = metadata.intellectIcons\r\n icons[4] = metadata.fightIcons\r\n icons[5] = metadata.agilityIcons\r\n end\r\n\r\n local IconTypes = { \"Wild\", \"Willpower\", \"Intellect\", \"Fight\", \"Agility\" }\r\n local found = false\r\n for i = 1, 5 do\r\n if icons[i] ~= nil and icons[i] ~= \"\" then\r\n if found == false then\r\n name = name .. \"\\n\" .. IconTypes[i] .. \": \" .. icons[i]\r\n found = true\r\n else\r\n name = name .. \" \" .. IconTypes[i] .. \": \" .. icons[i]\r\n end\r\n end\r\n end\r\n end\r\n\r\n table.insert(cardsInBag, { name = name, id = guid })\r\nend\r\n\r\n-- recreates buttons with up-to-date labels\r\nfunction recreateButtons()\r\n self.clearButtons()\r\n local verticalPosition = 1.65\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 = string.len(card.name) > 20 and 75 or 100\r\n })\r\n\r\n verticalPosition = verticalPosition - 0.5\r\n end\r\n\r\r\n self.createButton({\r\n label = countLabel,\r\n click_function = 'none',\r\n function_owner = self,\r\n position = { 0, 0, -1.35 },\r\n height = 0,\r\n width = 0,\r\n font_size = 225,\r\n font_color = { 1, 1, 1 }\r\n })\r\nend\r\n\r\n-- click-function for buttons to take a card out of the bag\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.25, 0),\r\n callback_function = function(obj) obj.resting = true end\r\n })\r\nend",
"LuaScriptState": "[[],true,false]",
"XmlUI": ""
},
"6": {
"GUID": "e213ed",
"Name": "Custom_Model_Bag",
"Transform": {
"posX": 14.68858,
"posY": 1.71333444,
"posZ": -26.0148735,
"rotX": 359.920135,
"rotY": 270.000122,
"rotZ": 0.016885994,
"scaleX": 0.7951615,
"scaleY": 1.0,
"scaleZ": 0.7951615
},
"Nickname": "Astronomical Atlas Helper",
"Description": "Drop cards here to display name, cost and skill icons.\n\nSee context menu for options.",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"Asset",
"scesetup_memory_object"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"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": "-- Attachment Helper\r\n-- updated by: Chr1Z\r\n-- original by: -\r\n-- description: displays cards in it with cost/skill icons\r\ninformation = {\r\n version = \"1.4\",\r\n last_updated = \"10.10.2022\"\r\n}\r\n\r\n-- save state and options to restore onLoad\r\nfunction onSave() return JSON.encode({ cardsInBag, showCost, showIcons }) end\r\n\r\n-- load variables and create context menu\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" and saved_data ~= nil then\r\n local loaded_data = JSON.decode(saved_data)\r\n cardsInBag = loaded_data[1]\r\n showCost = loaded_data[2]\r\n showIcons = loaded_data[3]\r\n else\r\n cardsInBag = {}\r\n showCost = true\r\n showIcons = true\r\n end\r\n\r\n recreateButtons()\r\n\r\n self.addContextMenuItem(\"More Information\", function()\r\n printToAll(\"------------------------------\", \"White\")\r\n printToAll(\"Attachment Helper v\" .. information[\"version\"] .. \" by Chr1Z\", \"Orange\")\r\n printToAll(\"original by: bankey\", \"White\")\r\n printToAll(\"last updated: \" .. information[\"last_updated\"], \"White\")\r\n end)\r\n\r\n self.addContextMenuItem(\"Toggle cost\", function(color)\r\n showCost = not showCost\r\n printToColor(\"Show cost of cards: \" .. tostring(showCost), color, \"White\")\r\n refresh()\r\n end)\r\n\r\n self.addContextMenuItem(\"Toggle skill icons\", function(color)\r\n showIcons = not showIcons\r\n printToColor(\"Show skill icons of cards: \" .. tostring(showIcons), color, \"White\")\r\n refresh()\r\n end)\r\nend\r\n\r\n-- called for every card that enters\r\nfunction onObjectEnterContainer(container, object)\r\n if container == self then\r\n findCard(object.getGUID(), object.getName(), object.getGMNotes())\r\n recreateButtons()\r\n end\r\nend\r\n\r\n-- removes leaving cards from the \"cardInBag\" table\r\nfunction onObjectLeaveContainer(container, object)\r\n if container == self then\r\n local guid = object.getGUID()\r\n for i, card in ipairs(cardsInBag) do\r\n if card.id == guid then table.remove(cardsInBag, i) end\r\n end\r\n recreateButtons()\r\n end\r\nend\r\n\r\n-- refreshes displayed buttons based on contained cards\r\nfunction refresh()\r\n cardsInBag = {}\r\n for _, object in ipairs(self.getObjects()) do\r\n findCard(object.guid, object.name, object.gm_notes)\r\n end\r\n recreateButtons()\r\nend\r\n\r\n-- gets cost and icons for a card\r\nfunction findCard(guid, name, GMNotes)\r\n local cost = \"\"\r\n local icons = {}\r\n local metadata = {}\r\n\r\n if name == nil or name == \"\" then name = \"unnamed\" end\r\n\r\n if showCost or showIcons then\r\n metadata = JSON.decode(GMNotes)\r\n end\r\n\r\n if showCost then\r\n if GMNotes ~= \"\" then cost = metadata.cost end\r\n if cost == nil or cost == \"\" then cost = \"–\" end\r\n name = \"[\" .. cost .. \"] \" .. name\r\n end\r\n\r\n if showIcons then\r\n if GMNotes ~= \"\" then\r\n icons[1] = metadata.wildIcons\r\n icons[2] = metadata.willpowerIcons\r\n icons[3] = metadata.intellectIcons\r\n icons[4] = metadata.fightIcons\r\n icons[5] = metadata.agilityIcons\r\n end\r\n\r\n local IconTypes = { \"Wild\", \"Willpower\", \"Intellect\", \"Fight\", \"Agility\" }\r\n local found = false\r\n for i = 1, 5 do\r\n if icons[i] ~= nil and icons[i] ~= \"\" then\r\n if found == false then\r\n name = name .. \"\\n\" .. IconTypes[i] .. \": \" .. icons[i]\r\n found = true\r\n else\r\n name = name .. \" \" .. IconTypes[i] .. \": \" .. icons[i]\r\n end\r\n end\r\n end\r\n end\r\n\r\n table.insert(cardsInBag, { name = name, id = guid })\r\nend\r\n\r\n-- recreates buttons with up-to-date labels\r\nfunction recreateButtons()\r\n self.clearButtons()\r\n local verticalPosition = 1.65\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 = string.len(card.name) > 20 and 75 or 100\r\n })\r\n\r\n verticalPosition = verticalPosition - 0.5\r\n end\r\n\r\r\n self.createButton({\r\n label = countLabel,\r\n click_function = 'none',\r\n function_owner = self,\r\n position = { 0, 0, -1.35 },\r\n height = 0,\r\n width = 0,\r\n font_size = 225,\r\n font_color = { 1, 1, 1 }\r\n })\r\nend\r\n\r\n-- click-function for buttons to take a card out of the bag\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.25, 0),\r\n callback_function = function(obj) obj.resting = true end\r\n })\r\nend",
"LuaScriptState": "[[],true,false]",
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"MaterialIndex": -1,
"MeshIndex": -1,
"CustomMesh": {
"MeshURL": "https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"MaterialIndex": -1,
"MeshIndex": -1,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "a8affa",
"Name": "Bag",
"Transform": {
"posX": 30.3196983,
"posY": 3.89870644,
"posZ": -20.9556427,
"rotX": 0.0132753411,
"rotY": 179.999222,
"rotZ": 0.0637161359,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "jaqenZann's Navigation Overlay",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "0ffbc5",
"Name": "Custom_Tile",
"Transform": {
"posX": 25.9615211,
"posY": 3.51928949,
"posZ": -18.6240387,
"rotX": 1.10871756,
"rotY": 269.998779,
"rotZ": 359.8623,
"scaleX": 0.8023953,
"scaleY": 1.0,
"scaleZ": 0.8023953
},
"Nickname": "jaqenZann's Navigation Overlay Tile",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"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 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 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\":false,\"Orange\":false,\"Red\":false,\"White\":false},\"playVis\":{\"Green\":false,\"Orange\":false,\"Red\":false,\"White\":false}}",
"XmlUI": ""
}
]
},
{
"GUID": "cc77a8",
"Name": "Checker_red",
"Transform": {
"posX": 30.4976521,
"posY": 4.083775,
"posZ": -20.92898,
"rotX": 359.9183,
"rotY": 270.0237,
"rotZ": 0.0166100673,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Draw Token Button Tooltip Renamer",
"Description": "By Pyxel",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "05efb4",
"Name": "Bag",
"Transform": {
"posX": 29.07276,
"posY": 3.90120888,
"posZ": -21.2847214,
"rotX": 359.985535,
"rotY": -2.02268329E-05,
"rotZ": 0.0251548421,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Whimsical's Generic Difficulty Selector",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "8112ff",
"Name": "Custom_Tile",
"Transform": {
"posX": 12.1737871,
"posY": 4.2156744,
"posZ": 29.9137135,
"rotX": 0.0712406039,
"rotY": 270.087463,
"rotZ": 42.47016,
"scaleX": 2.2,
"scaleY": 1.0,
"scaleZ": 2.2
},
"Nickname": "Generic Difficulty Selector",
"Description": "click to set chaos token difficulty",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/965354846165100486/3DC8FCEF364B30758B09EF96AF9458F2B8E64D56/",
"ImageSecondaryURL": "https://i.imgur.com/EcbhVuh.jpg/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "---\r\n--- Generated by EmmyLua(https://github.com/EmmyLua)\r\n--- Created by Whimsical.\r\n--- DateTime: 2021-08-05 6:14 p.m.\r\n---\r\n\r\n\r\nlocal tags = {\r\n bag = \"chaos_bag\",\r\n provider = \"token_list_provider\",\r\n tokens = \"token_image_provider\"\r\n}\r\n\r\n---@class ChaosToken\r\n---@field name string\r\n---@field image string\r\nlocal _ = {}\r\n\r\n---@type table\r\nlocal sources\r\n\r\n---@type table\r\nlocal tokens\r\n\r\n---@param source TTSObject\r\nlocal LoadSource = function (source)\r\n tokens = source:getTable(\"chaos_tokens\")\r\nend\r\n\r\n---@param token ChaosToken\r\n---@param position Vector\r\n---@param chaos_bag TTSObject\r\n---@return number\r\nlocal SpawnToken = function (token, position, chaos_bag)\r\n spawnObject {\r\n type = \"Custom_Tile\",\r\n position = position,\r\n scale = { 0.81, 1.0, 0.81 },\r\n rotation = { 0, 270, 0 },\r\n ---@param object TTSObject\r\n callback_function = function(object, _, _)\r\n object:setName(token.name)\r\n chaos_bag:putObject(object)\r\n end\r\n }:setCustomObject {\r\n image = token.image,\r\n type = 2,\r\n thickness = 0.1\r\n }\r\nend\r\n\r\n---@param chaos_bag TTSObject\r\nlocal emptyBag= function (chaos_bag)\r\n local object = chaos_bag:getObjects()\r\n local pos = self:getPosition()\r\n pos.y = pos.y+1\r\n\r\n for _, object in ipairs(object) do\r\n chaos_bag:takeObject {\r\n guid = object.guid,\r\n position = pos,\r\n ---@param item TTSObject\r\n callback_function = function (item) item:destruct() end\r\n }\r\n end\r\nend\r\n\r\n---@param difficulty string\r\nlocal clickFun= function (difficulty)\r\n local chaos_bag = getObjectsWithTag(tags.bag)[1]\r\n\r\n emptyBag(chaos_bag)\r\n\r\n local loading = tokens[difficulty]\r\n local pos = self:getPosition()\r\n\r\n for _, token_id in ipairs(loading) do\r\n if type(token_id)==\"string\" then token_id = token_id:lower() end\r\n\r\n local token = sources[token_id]\r\n\r\n if (token==nil) then\r\n error(\"Could not find token \\\"\" .. token_id .. \"\\\".\")\r\n return\r\n end\r\n\r\n SpawnToken(token, pos, chaos_bag)\r\n end\r\nend\r\n\r\n\r\n---@param difficulty string\r\nlocal MakeClickFun = function(difficulty)\r\n return function ()\r\n clickFun(difficulty)\r\n end\r\nend\r\n\r\n---@param label string\r\n---@param z_offset number|nil\r\nlocal makeButton = function(label , z_offset)\r\n z_offset = z_offset or -0.15\r\n\r\n _G[label:lower() .. \"Click\"] = MakeClickFun(label)\r\n\r\n self:createButton({\r\n label = label,\r\n function_owner = self,\r\n click_function = label:lower() .. \"Click\",\r\n position = {0, 0.1, z_offset},\r\n rotation = {0, 0, 0},\r\n scale = {0.47, 1, 0.47},\r\n height = 200,\r\n width = 1150,\r\n font_size = 100,\r\n color = {0.87, 0.8, 0.70},\r\n font_color = {0, 0, 0}\r\n })\r\n return z_offset + 0.20\r\nend\r\n\r\n---@param source TTSObject\r\nlocal CreateButtons= function(source)\r\n self:clearButtons()\r\n\r\n local z_offset\r\n for difficulty,_ in pairs(tokens) do\r\n z_offset = makeButton(difficulty, z_offset)\r\n end\r\nend\r\n\r\n\r\nfunction LoadTokens()\r\n ---@type TTSObject[]\r\n local image_sources = getObjectsWithTag(tags.tokens)\r\n\r\n if (#image_sources<=0) then\r\n error(\"Cannot find images_sources\")\r\n return\r\n end\r\n\r\n sources = image_sources[1]:getTable(\"sources\")\r\n\r\n if (tokens~=nil) then CreateButtons() return end\r\n\r\n local source = getObjectsWithTag(tags.provider)\r\n\r\n if (#source<=0) then return end\r\n\r\n LoadSource(source[1])\r\n\r\n CreateButtons()\r\nend\r\n\r\nfunction onload()\r\n Timer.create {\r\n identifier = self:getGUID(),\r\n function_name = \"LoadTokens\"\r\n }\r\nend\r\n\r\n---@param provider TTSObject\r\nfunction onObjectSpawn(provider)\r\n if (not provider:hasTag(tags.provider)) then return end\r\n\r\n LoadSource(provider)\r\n\r\n CreateButtons()\r\nend\r",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "162580",
"Name": "Checker_white",
"Transform": {
"posX": 13.1938725,
"posY": 3.80694413,
"posZ": 28.83546,
"rotX": 359.819946,
"rotY": 269.998474,
"rotZ": 180.336716,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Token Image Provider",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"token_image_provider"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"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": "---\r\n--- Generated by EmmyLua(https://github.com/EmmyLua)\r\n--- Created by Whimsical.\r\n--- DateTime: 2021-08-05 6:51 p.m.\r\n---\r\n\r\n---@param name string\r\n---@param image string\r\n---@return ChaosToken\r\nlocal MakeToken = function (name, image)\r\n return {\r\n name = name,\r\n image = image\r\n }\r\nend\r\n\r\nsources = {\r\n [1] = MakeToken(\"+1\", \"https://i.imgur.com/uIx8jbY.png\"),\r\n [0] = MakeToken(\"0\", \"https://i.imgur.com/btEtVfd.png\"),\r\n [-1] = MakeToken(\"-1\", \"https://i.imgur.com/w3XbrCC.png\"),\r\n [-2] = MakeToken(\"-2\", \"https://i.imgur.com/bfTg2hb.png\"),\r\n [-3] = MakeToken(\"-3\", \"https://i.imgur.com/yfs8gHq.png\"),\r\n [-4] = MakeToken(\"-4\", \"https://i.imgur.com/qrgGQRD.png\"),\r\n [-5] = MakeToken(\"-5\", \"https://i.imgur.com/3Ym1IeG.png\"),\r\n [-6] = MakeToken(\"-6\", \"https://i.imgur.com/c9qdSzS.png\"),\r\n [-7] = MakeToken(\"-7\", \"https://i.imgur.com/4WRD42n.png\"),\r\n [-8] = MakeToken(\"-8\", \"https://i.imgur.com/9t3rPTQ.png\"),\r\n [\"s\"] = MakeToken(\"Skull\", \"https://i.imgur.com/stbBxtx.png\"),\r\n [\"c\"] = MakeToken(\"Cultist\", \"https://i.imgur.com/VzhJJaH.png\"),\r\n [\"t\"] = MakeToken(\"Tablet\", \"https://i.imgur.com/1plY463.png\"),\r\n [\"e\"] = MakeToken(\"Elder Thing\", \"https://i.imgur.com/ttnspKt.png\"),\r\n [\"*\"] = MakeToken(\"Elder Sign\", \"https://i.imgur.com/nEmqjmj.png\"),\r\n [\"f\"] = MakeToken(\"Auto-fail\", \"https://i.imgur.com/lns4fhz.png\"),\r\n [\"+\"] = MakeToken(\"Bless\", \"http://cloud-3.steamusercontent.com/ugc/1655601092778627699/339FB716CB25CA6025C338F13AFDFD9AC6FA8356/\"),\r\n [\"-\"] = MakeToken(\"Curse\", \"http://cloud-3.steamusercontent.com/ugc/1655601092778636039/2A25BD38E8C44701D80DD96BF0121DA21843672E/\"),\n [\"fr\"] = MakeToken(\"Frost\", \"http://cloud-3.steamusercontent.com/ugc/1858293462583104677/195F93C063A8881B805CE2FD4767A9718B27B6AE/\"),\r\n}\r\r\n",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "297f5e",
"Name": "Checker_black",
"Transform": {
"posX": 12.9837513,
"posY": 4.044692,
"posZ": 29.8283482,
"rotX": 359.8598,
"rotY": 270.025757,
"rotZ": 206.241089,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Token List",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.0,
"g": 0.0,
"b": 0.0
},
"Tags": [
"mlc_memory_object",
"token_list_provider"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"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": "---\r\n--- Generated by EmmyLua(https://github.com/EmmyLua)\r\n--- Created by Whimsical.\r\n--- DateTime: 2021-08-05 7:19 p.m.\r\n---\r\n\r\nchaos_tokens = {\r\n Easy = {1, 1, 0, 0, -1, -1, -1, -2, -2, \"S\", \"S\", \"C\", \"T\", \"F\", \"*\"},\r\n Standard = {1, 0, 0, -1, -1, -1, -2, -2, -3, -4, \"S\", \"S\", \"C\", \"T\", \"F\", \"*\"},\r\n Hard = {0, 0, -1, -1, -2, -2, -3, -4, -4, -5, \"Fr\", \"Fr\", \"S\", \"S\", \"C\", \"T\", \"F\", \"*\"},\r\n Expert = {0, -1, -2, -2, -3, -4, -4, -5, -7, \"Fr\", \"Fr\", \"Fr\", \"S\", \"S\", \"C\", \"T\", \"F\", \"*\"}\r\n}\r\n",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "c32992",
"Name": "Notecard",
"Transform": {
"posX": 13.5048437,
"posY": 3.624776,
"posZ": 30.2732582,
"rotX": 0.339052618,
"rotY": 89.9990158,
"rotZ": 0.115230016,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Generic Difficulty Selector Instructions 1/3",
"Description": "Tool for create custom chaos bag configurations.\n - The actual difficulty selector: click a difficulty to fill the chaos bag.\n- Token Image Provider: edit in scripting editor to add new token types. Cut and Paste to save.\n- Token List: edit in scripting editor to customize difficulties. Cut and Paste to save.\n\nReference of Token codes on following pages:",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "eab766",
"Name": "Notecard",
"Transform": {
"posX": 3.29240441,
"posY": 1.33262193,
"posZ": 56.0586357,
"rotX": 359.9792,
"rotY": 89.99884,
"rotZ": 359.983215,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Generic Difficulty Selector Instructions 2/3",
"Description": "1 — -8: Numeric tokens (Don't place quotes around these).\r\n\"S\": Skull.\r\n\"C\": Cultist.\r\n\"T\": Tablet.\r\n\"E\": Elder Thing.\r\n\"Fr\": Frost.",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"3": {
"GUID": "309295",
"Name": "Notecard",
"Transform": {
"posX": 3.29240441,
"posY": 1.33262193,
"posZ": 56.0586357,
"rotX": 359.9792,
"rotY": 89.9988556,
"rotZ": 359.983215,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Generic Difficulty Selector Instructions 3/3",
"Description": "\"*\": Elder Sign.\r\n\"F\": Auto-fail.\r\n\"+\": Bless.\r\n\"-\": Curse.",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
}
]
},
{
"GUID": "67d8c7",
"Name": "Bag",
"Transform": {
"posX": 64.94672,
"posY": 2.042734,
"posZ": -56.7897034,
"rotX": 0.0167662185,
"rotY": 89.99987,
"rotZ": -0.00354621559,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Playmat Customs (By BôL & Mint Tea Fan)",
"Description": "playmat",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"sce_memory_object"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"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.10703551769257,\"z\":-47.4099235534668},\"rotation\":{\"x\":359.979156494141,\"y\":89.9849395751953,\"z\":359.983215332031}},\"1b9b55\":{\"lock\":false,\"position\":{\"x\":45.6347618103027,\"y\":1.09761250019073,\"z\":-79.6012344360352},\"rotation\":{\"x\":359.979156494141,\"y\":89.9857864379883,\"z\":359.983215332031}},\"569aab\":{\"lock\":false,\"position\":{\"x\":45.6394691467285,\"y\":1.1043426990509,\"z\":-56.6087074279785},\"rotation\":{\"x\":359.979156494141,\"y\":89.9855422973633,\"z\":359.983215332031}},\"992a0b\":{\"lock\":false,\"position\":{\"x\":45.639461517334,\"y\":1.10030460357666,\"z\":-70.4085998535156},\"rotation\":{\"x\":359.979156494141,\"y\":89.9856185913086,\"z\":359.983215332031}},\"a0cfe5\":{\"lock\":false,\"position\":{\"x\":45.639461517334,\"y\":1.09895837306976,\"z\":-75.0087203979492},\"rotation\":{\"x\":359.979156494141,\"y\":89.9856185913086,\"z\":359.983215332031}},\"b172b0\":{\"lock\":false,\"position\":{\"x\":45.639461517334,\"y\":1.1029976606369,\"z\":-61.2087135314941},\"rotation\":{\"x\":359.979156494141,\"y\":89.9852294921875,\"z\":359.983215332031}},\"c13c06\":{\"lock\":false,\"position\":{\"x\":45.639461517334,\"y\":1.10569000244141,\"z\":-52.0099334716797},\"rotation\":{\"x\":359.979156494141,\"y\":89.9852447509766,\"z\":359.983215332031}},\"c87ef3\":{\"lock\":false,\"position\":{\"x\":45.6243743896484,\"y\":1.09355545043945,\"z\":-93.4477081298828},\"rotation\":{\"x\":359.979156494141,\"y\":89.9876327514648,\"z\":359.983215332031}},\"d262db\":{\"lock\":false,\"position\":{\"x\":45.6394691467285,\"y\":1.10165071487427,\"z\":-65.8086013793945},\"rotation\":{\"x\":359.979156494141,\"y\":89.9846572875977,\"z\":359.983215332031}},\"df8e34\":{\"lock\":false,\"position\":{\"x\":45.6400604248047,\"y\":1.09490370750427,\"z\":-88.8582534790039},\"rotation\":{\"x\":359.979156494141,\"y\":89.987548828125,\"z\":359.983215332031}},\"f4f4be\":{\"lock\":false,\"position\":{\"x\":45.6400604248047,\"y\":1.09625029563904,\"z\":-84.2582778930664},\"rotation\":{\"x\":359.979156494141,\"y\":89.9874267578125,\"z\":359.983215332031}}}}",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "d262db",
"Name": "Bag",
"Transform": {
"posX": 45.63947,
"posY": 1.10165071,
"posZ": -65.8086,
"rotX": 359.979156,
"rotY": 89.98466,
"rotZ": 359.983215,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "The Circle Undone",
"Description": "tcumat",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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.0208131186664104,\"y\":269.985534667969,\"z\":0.0167657472193241}},\"0e6a60\":{\"lock\":false,\"position\":{\"x\":32.986213684082,\"y\":1.33208477497101,\"z\":-65.8081970214844},\"rotation\":{\"x\":0.0208583567291498,\"y\":269.983978271484,\"z\":0.0165787246078253}},\"1299aa\":{\"lock\":false,\"position\":{\"x\":40.2900466918945,\"y\":1.38757884502411,\"z\":-61.2199859619141},\"rotation\":{\"x\":358.457855224609,\"y\":269.979278564453,\"z\":0.0167892947793007}},\"29fb59\":{\"lock\":false,\"position\":{\"x\":36.6243896484375,\"y\":1.38759207725525,\"z\":-56.6084251403809},\"rotation\":{\"x\":1.58360362052917,\"y\":269.979309082031,\"z\":0.0167949665337801}},\"3467d8\":{\"lock\":false,\"position\":{\"x\":40.2900810241699,\"y\":1.3374263048172,\"z\":-56.6199798583984},\"rotation\":{\"x\":0.0208505652844906,\"y\":269.979919433594,\"z\":0.0165672935545444}},\"36c99e\":{\"lock\":false,\"position\":{\"x\":40.2900772094727,\"y\":1.33877789974213,\"z\":-52.0199737548828},\"rotation\":{\"x\":0.0208148956298828,\"y\":269.979553222656,\"z\":0.0167634803801775}},\"4637fa\":{\"lock\":false,\"position\":{\"x\":36.6243934631348,\"y\":1.38356256484985,\"z\":-70.408317565918},\"rotation\":{\"x\":1.58386623859406,\"y\":269.982940673828,\"z\":0.0168385803699493}},\"53c074\":{\"lock\":false,\"position\":{\"x\":36.6243858337402,\"y\":1.37952423095703,\"z\":-84.2082748413086},\"rotation\":{\"x\":1.58394324779511,\"y\":269.97802734375,\"z\":0.0167910698801279}},\"5cc445\":{\"lock\":false,\"position\":{\"x\":32.9852676391602,\"y\":1.38259994983673,\"z\":-70.4083023071289},\"rotation\":{\"x\":1.59481465816498,\"y\":269.977111816406,\"z\":0.0167935099452734}},\"727293\":{\"lock\":false,\"position\":{\"x\":40.2900428771973,\"y\":1.38221776485443,\"z\":-79.6198806762695},\"rotation\":{\"x\":358.457061767578,\"y\":270.012268066406,\"z\":0.0167858339846134}},\"7c18b0\":{\"lock\":false,\"position\":{\"x\":36.6247444152832,\"y\":1.43335330486298,\"z\":-65.8082885742188},\"rotation\":{\"x\":0.0211367905139923,\"y\":269.991271972656,\"z\":0.0165514443069696}},\"7e50fa\":{\"lock\":false,\"position\":{\"x\":40.289981842041,\"y\":1.32934963703156,\"z\":-84.2198715209961},\"rotation\":{\"x\":0.0208379328250885,\"y\":269.973510742188,\"z\":0.0166499819606543}},\"8757ad\":{\"lock\":false,\"position\":{\"x\":32.9853096008301,\"y\":1.37991297245026,\"z\":-79.6082382202148},\"rotation\":{\"x\":1.59499394893646,\"y\":270.019073486328,\"z\":0.0168122481554747}},\"891943\":{\"lock\":false,\"position\":{\"x\":40.2896537780762,\"y\":1.3347327709198,\"z\":-65.8198318481445},\"rotation\":{\"x\":0.0208477415144444,\"y\":269.990509033203,\"z\":0.0165486726909876}},\"93292a\":{\"lock\":false,\"position\":{\"x\":25.5436916351318,\"y\":1.32938027381897,\"z\":-65.829231262207},\"rotation\":{\"x\":0.0208344701677561,\"y\":269.912841796875,\"z\":0.0167394429445267}},\"a3c29b\":{\"lock\":false,\"position\":{\"x\":29.3412799835205,\"y\":1.38257503509521,\"z\":-65.8089599609375},\"rotation\":{\"x\":1.59337544441223,\"y\":269.997375488281,\"z\":0.0167895462363958}},\"b96b46\":{\"lock\":false,\"position\":{\"x\":40.2900657653809,\"y\":1.33204555511475,\"z\":-75.0199737548828},\"rotation\":{\"x\":0.0208139251917601,\"y\":269.982513427734,\"z\":0.0167645514011383}},\"be0192\":{\"lock\":false,\"position\":{\"x\":29.3391304016113,\"y\":1.38119769096375,\"z\":-70.4084091186523},\"rotation\":{\"x\":1.59244918823242,\"y\":269.991485595703,\"z\":0.0168058760464191}},\"c49f1a\":{\"lock\":false,\"position\":{\"x\":40.2900695800781,\"y\":1.33338844776154,\"z\":-70.4198455810547},\"rotation\":{\"x\":0.0208339560776949,\"y\":269.981903076172,\"z\":0.0166303999722004}},\"cef7d2\":{\"lock\":false,\"position\":{\"x\":36.6243743896484,\"y\":1.32936525344849,\"z\":-79.608268737793},\"rotation\":{\"x\":0.0208449997007847,\"y\":270.015014648438,\"z\":0.0165506601333618}},\"d3047a\":{\"lock\":false,\"position\":{\"x\":29.3391284942627,\"y\":1.38389098644257,\"z\":-61.2083320617676},\"rotation\":{\"x\":1.59246706962585,\"y\":269.982208251953,\"z\":0.0167914628982544}},\"d6507e\":{\"lock\":false,\"position\":{\"x\":32.9852485656738,\"y\":1.38531124591827,\"z\":-61.2083473205566},\"rotation\":{\"x\":1.59538626670837,\"y\":269.977874755859,\"z\":0.0167828910052776}},\"df64cb\":{\"lock\":false,\"position\":{\"x\":32.9853172302246,\"y\":1.38665962219238,\"z\":-56.6083183288574},\"rotation\":{\"x\":1.59544384479523,\"y\":269.982849121094,\"z\":0.016785828396678}},\"f7c7bd\":{\"lock\":false,\"position\":{\"x\":36.6243286132813,\"y\":1.33475041389465,\"z\":-61.2084083557129},\"rotation\":{\"x\":0.0208660773932934,\"y\":269.98388671875,\"z\":0.016502944752574}}}}",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "3467d8",
"Name": "Custom_Token",
"Transform": {
"posX": 40.29008,
"posY": 1.3374263,
"posZ": -56.61998,
"rotX": 0.0208505653,
"rotY": 269.979919,
"rotZ": 0.0165672936,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "TCU - 2A",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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.38757885,
"posZ": -61.219986,
"rotX": 358.457855,
"rotY": 269.979279,
"rotZ": 0.0167892948,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "TCU - 3A",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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.33475041,
"posZ": -61.20841,
"rotX": 0.0208660774,
"rotY": 269.9839,
"rotZ": 0.0165029448,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "TCU - 3B",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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.0208131187,
"rotY": 269.985535,
"rotZ": 0.0167657472,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "TCU - 0",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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.38759208,
"posZ": -56.6084251,
"rotX": 1.58360362,
"rotY": 269.9793,
"rotZ": 0.0167949665,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "TCU - 2B",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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.38665962,
"posZ": -56.60832,
"rotX": 1.59544384,
"rotY": 269.982849,
"rotZ": 0.0167858284,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "TCU - 2C",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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.38531125,
"posZ": -61.2083473,
"rotX": 1.59538627,
"rotY": 269.977875,
"rotZ": 0.016782891,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "TCU - 3C",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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.2896538,
"posY": 1.33473277,
"posZ": -65.81983,
"rotX": 0.0208477415,
"rotY": 269.9905,
"rotZ": 0.0165486727,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "TCU - 4A",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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.34128,
"posY": 1.382575,
"posZ": -65.80896,
"rotX": 1.59337544,
"rotY": 269.997375,
"rotZ": 0.0167895462,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "TCU - 4D",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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.6247444,
"posY": 1.4333533,
"posZ": -65.80829,
"rotX": 0.02113679,
"rotY": 269.991272,
"rotZ": 0.0165514443,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "TCU - 4B",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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.9862137,
"posY": 1.33208477,
"posZ": -65.8082,
"rotX": 0.0208583567,
"rotY": 269.983978,
"rotZ": 0.0165787246,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "TCU - 4C",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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.3826,
"posZ": -70.4083,
"rotX": 1.59481466,
"rotY": 269.9771,
"rotZ": 0.01679351,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "TCU - 5C",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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.33338845,
"posZ": -70.4198456,
"rotX": 0.0208339561,
"rotY": 269.9819,
"rotZ": 0.0166304,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "TCU - 5A",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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.38356256,
"posZ": -70.40832,
"rotX": 1.58386624,
"rotY": 269.982941,
"rotZ": 0.01683858,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "TCU - 5B",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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.0208148956,
"rotY": 269.979553,
"rotZ": 0.01676348,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "TCU - 1",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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.5436916,
"posY": 1.32938027,
"posZ": -65.82923,
"rotX": 0.02083447,
"rotY": 269.912842,
"rotZ": 0.0167394429,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "TCU - 4E",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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.59246707,
"rotY": 269.9822,
"rotZ": 0.0167914629,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "TCU - 3D",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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.33913,
"posY": 1.38119769,
"posZ": -70.40841,
"rotX": 1.59244919,
"rotY": 269.9915,
"rotZ": 0.016805876,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "TCU - 5D",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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.0208139252,
"rotY": 269.9825,
"rotZ": 0.0167645514,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "TCU - 6",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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.6243744,
"posY": 1.32936525,
"posZ": -79.60827,
"rotX": 0.020845,
"rotY": 270.015,
"rotZ": 0.01655066,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "TCU - 7B",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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.2900429,
"posY": 1.38221776,
"posZ": -79.61988,
"rotX": 358.457062,
"rotY": 270.012268,
"rotZ": 0.016785834,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "TCU - 7A",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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.379913,
"posZ": -79.60824,
"rotX": 1.594994,
"rotY": 270.019073,
"rotZ": 0.0168122482,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "TCU - 7C",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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.0208379328,
"rotY": 269.9735,
"rotZ": 0.016649982,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "TCU - 8A",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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.58394325,
"rotY": 269.978027,
"rotZ": 0.01679107,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "TCU - 8B",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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.10703552,
"posZ": -47.4099236,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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.020806422457099,\"y\":270.008544921875,\"z\":0.0167741663753986}},\"154a13\":{\"lock\":false,\"position\":{\"x\":40.2900390625,\"y\":1.38758480548859,\"z\":-61.2199821472168},\"rotation\":{\"x\":358.457672119141,\"y\":269.967346191406,\"z\":0.0168419294059277}},\"2b4d36\":{\"lock\":false,\"position\":{\"x\":36.624324798584,\"y\":1.33340048789978,\"z\":-65.8082580566406},\"rotation\":{\"x\":0.0208951327949762,\"y\":269.990600585938,\"z\":0.0163758564740419}},\"37d15e\":{\"lock\":false,\"position\":{\"x\":32.9852905273438,\"y\":1.38665974140167,\"z\":-56.6083335876465},\"rotation\":{\"x\":1.59544217586517,\"y\":270.000885009766,\"z\":0.0167890843003988}},\"497d7f\":{\"lock\":false,\"position\":{\"x\":26.9502983093262,\"y\":1.35188734531403,\"z\":-59.0094108581543},\"rotation\":{\"x\":359.979187011719,\"y\":90.0027542114258,\"z\":359.983215332031}},\"509215\":{\"lock\":false,\"position\":{\"x\":36.6247177124023,\"y\":1.3835654258728,\"z\":-70.4083862304688},\"rotation\":{\"x\":1.58389699459076,\"y\":270.015502929688,\"z\":0.016900610178709}},\"529e79\":{\"lock\":false,\"position\":{\"x\":40.2900505065918,\"y\":1.3862282037735,\"z\":-65.8198318481445},\"rotation\":{\"x\":358.457885742188,\"y\":270.038146972656,\"z\":0.0167494770139456}},\"5c8477\":{\"lock\":false,\"position\":{\"x\":36.6244735717773,\"y\":1.33744859695435,\"z\":-52.0084457397461},\"rotation\":{\"x\":0.0208226945251226,\"y\":270.002868652344,\"z\":0.0167121347039938}},\"5cb9b4\":{\"lock\":false,\"position\":{\"x\":40.2900733947754,\"y\":1.33338963985443,\"z\":-70.4198532104492},\"rotation\":{\"x\":0.0208240523934364,\"y\":269.990386962891,\"z\":0.0166809689253569}},\"7725ed\":{\"lock\":false,\"position\":{\"x\":29.3393440246582,\"y\":1.38254737854004,\"z\":-65.8083801269531},\"rotation\":{\"x\":1.59257233142853,\"y\":269.964904785156,\"z\":0.0167679730802774}},\"7b97ca\":{\"lock\":false,\"position\":{\"x\":32.985237121582,\"y\":1.38396263122559,\"z\":-65.8082809448242},\"rotation\":{\"x\":1.59529936313629,\"y\":269.977233886719,\"z\":0.0168041884899139}},\"805623\":{\"lock\":false,\"position\":{\"x\":36.6243705749512,\"y\":1.38759183883667,\"z\":-56.6084480285645},\"rotation\":{\"x\":1.58358669281006,\"y\":270.0009765625,\"z\":0.0168078858405352}},\"875764\":{\"lock\":false,\"position\":{\"x\":40.2900810241699,\"y\":1.33742642402649,\"z\":-56.6199836730957},\"rotation\":{\"x\":0.0208445712924004,\"y\":269.999084472656,\"z\":0.0165760722011328}},\"94454d\":{\"lock\":false,\"position\":{\"x\":29.3420658111572,\"y\":1.38660037517548,\"z\":-52.0094909667969},\"rotation\":{\"x\":1.59271323680878,\"y\":270.172424316406,\"z\":0.0170341897755861}},\"a7f6c5\":{\"lock\":false,\"position\":{\"x\":40.2900657653809,\"y\":1.33204400539398,\"z\":-75.0199737548828},\"rotation\":{\"x\":0.0208240933716297,\"y\":269.983154296875,\"z\":0.0167090948671103}},\"b30384\":{\"lock\":false,\"position\":{\"x\":29.3389854431152,\"y\":1.32941460609436,\"z\":-70.4085388183594},\"rotation\":{\"x\":0.0208649169653654,\"y\":269.976135253906,\"z\":0.0166198685765266}},\"b58725\":{\"lock\":false,\"position\":{\"x\":32.9857978820801,\"y\":1.43257093429565,\"z\":-70.4083633422852},\"rotation\":{\"x\":0.0781175717711449,\"y\":269.988067626953,\"z\":0.0165759343653917}},\"ba3f23\":{\"lock\":false,\"position\":{\"x\":40.2900619506836,\"y\":1.39027500152588,\"z\":-52.0200004577637},\"rotation\":{\"x\":358.457733154297,\"y\":270.003845214844,\"z\":0.0167994406074286}},\"bc94c3\":{\"lock\":false,\"position\":{\"x\":32.9871482849121,\"y\":1.38803112506866,\"z\":-52.0097503662109},\"rotation\":{\"x\":1.59626138210297,\"y\":270.003509521484,\"z\":0.0167093928903341}},\"d499ce\":{\"lock\":false,\"position\":{\"x\":36.6243362426758,\"y\":1.38663482666016,\"z\":-61.2084007263184},\"rotation\":{\"x\":358.446105957031,\"y\":269.988037109375,\"z\":0.0167805850505829}},\"dea1a5\":{\"lock\":false,\"position\":{\"x\":32.9852409362793,\"y\":1.33343350887299,\"z\":-61.2082786560059},\"rotation\":{\"x\":0.0209027379751205,\"y\":269.987030029297,\"z\":0.0166827831417322}},\"dfd6a7\":{\"lock\":false,\"position\":{\"x\":25.4922695159912,\"y\":1.33340930938721,\"z\":-52.0012969970703},\"rotation\":{\"x\":0.0208043158054352,\"y\":270.015380859375,\"z\":0.0167765244841576}},\"ec289e\":{\"lock\":false,\"position\":{\"x\":36.624382019043,\"y\":1.38221514225006,\"z\":-75.0083999633789},\"rotation\":{\"x\":1.5838942527771,\"y\":270.007507324219,\"z\":0.0168235283344984}}}}",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "13e274",
"Name": "Custom_Token",
"Transform": {
"posX": 40.2900772,
"posY": 1.34012449,
"posZ": -47.4199829,
"rotX": 0.0208064225,
"rotY": 270.008545,
"rotZ": 0.0167741664,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "NotZ - 1",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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.390275,
"posZ": -52.02,
"rotX": 358.457733,
"rotY": 270.003845,
"rotZ": 0.01679944,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "NotZ (Arkham) - 2A",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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.33742642,
"posZ": -56.6199837,
"rotX": 0.0208445713,
"rotY": 269.999084,
"rotZ": 0.0165760722,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "NotZ (Arkham) - 2F",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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.3374486,
"posZ": -52.0084457,
"rotX": 0.0208226945,
"rotY": 270.002869,
"rotZ": 0.0167121347,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "NotZ (Arkham) - 2B",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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.38803113,
"posZ": -52.00975,
"rotX": 1.59626138,
"rotY": 270.0035,
"rotZ": 0.0167093929,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "NotZ (Arkham) - 2C",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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.38759184,
"posZ": -56.608448,
"rotX": 1.58358669,
"rotY": 270.000977,
"rotZ": 0.0168078858,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "NotZ (Arkham) - 2G",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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.98529,
"posY": 1.38665974,
"posZ": -56.6083336,
"rotX": 1.59544218,
"rotY": 270.0009,
"rotZ": 0.0167890843,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "NotZ (Arkham) - 2H",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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.38758481,
"posZ": -61.2199821,
"rotX": 358.457672,
"rotY": 269.967346,
"rotZ": 0.01684193,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "NotZ (Arkham) - 2I",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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.6243362,
"posY": 1.38663483,
"posZ": -61.2084,
"rotX": 358.4461,
"rotY": 269.988037,
"rotZ": 0.0167805851,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "NotZ (Arkham) - 2J",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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.98524,
"posY": 1.33343351,
"posZ": -61.20828,
"rotX": 0.020902738,
"rotY": 269.98703,
"rotZ": 0.0166827831,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "NotZ (Arkham) - 2K",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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.3862282,
"posZ": -65.81983,
"rotX": 358.4579,
"rotY": 270.038147,
"rotZ": 0.016749477,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "NotZ (Arkham) - Downtown",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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.33340049,
"posZ": -65.80826,
"rotX": 0.0208951328,
"rotY": 269.9906,
"rotZ": 0.0163758565,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "NotZ (Arkham) - Eastside",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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.38396263,
"posZ": -65.80828,
"rotX": 1.59529936,
"rotY": 269.977234,
"rotZ": 0.0168041885,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "NotZ (Arkham) - Merchant District",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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.33338964,
"posZ": -70.41985,
"rotX": 0.0208240524,
"rotY": 269.9904,
"rotZ": 0.0166809689,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "NotZ (Arkham) - Northside",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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.6247177,
"posY": 1.38356543,
"posZ": -70.40839,
"rotX": 1.583897,
"rotY": 270.0155,
"rotZ": 0.01690061,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "NotZ (Arkham) - Rivertown",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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.9857979,
"posY": 1.43257093,
"posZ": -70.40836,
"rotX": 0.07811757,
"rotY": 269.988068,
"rotZ": 0.0165759344,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "NotZ (Arkham) - Southside",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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.3389854,
"posY": 1.32941461,
"posZ": -70.40854,
"rotX": 0.020864917,
"rotY": 269.976135,
"rotZ": 0.0166198686,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "NotZ (Arkham) - Uptown",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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.38660038,
"posZ": -52.00949,
"rotX": 1.59271324,
"rotY": 270.172424,
"rotZ": 0.01703419,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "NotZ (Arkham) - 2D",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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.0208043158,
"rotY": 270.015381,
"rotZ": 0.0167765245,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "NotZ (Arkham) - 2E",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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.339344,
"posY": 1.38254738,
"posZ": -65.80838,
"rotX": 1.59257233,
"rotY": 269.9649,
"rotZ": 0.0167679731,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "NotZ (Arkham) - Miskatonic University",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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.332044,
"posZ": -75.01997,
"rotX": 0.0208240934,
"rotY": 269.983154,
"rotZ": 0.0167090949,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "NotZ - 3A",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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.38221514,
"posZ": -75.0084,
"rotX": 1.58389425,
"rotY": 270.0075,
"rotZ": 0.0168235283,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "NotZ - 3B",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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.35188735,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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.1043427,
"posZ": -56.6087074,
"rotX": 359.979156,
"rotY": 89.98554,
"rotZ": 359.983215,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "The Path to Carcosa",
"Description": "tpocmat",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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.59576117992401,\"y\":270.084533691406,\"z\":0.016707519069314}},\"0e16cf\":{\"lock\":false,\"position\":{\"x\":36.6240348815918,\"y\":1.32936930656433,\"z\":-79.609992980957},\"rotation\":{\"x\":0.020971966907382,\"y\":269.514434814453,\"z\":0.0165424905717373}},\"1e0a2d\":{\"lock\":false,\"position\":{\"x\":36.6228218078613,\"y\":1.3862898349762,\"z\":-61.2083969116211},\"rotation\":{\"x\":1.58478653430939,\"y\":270.196533203125,\"z\":0.016992861405015}},\"1e8406\":{\"lock\":false,\"position\":{\"x\":40.2875022888184,\"y\":1.33473646640778,\"z\":-65.8198318481445},\"rotation\":{\"x\":0.0207942202687263,\"y\":270.075103759766,\"z\":0.0167566929012537}},\"2abbe8\":{\"lock\":false,\"position\":{\"x\":36.622932434082,\"y\":1.38492453098297,\"z\":-65.8079833984375},\"rotation\":{\"x\":1.58433163166046,\"y\":270.104827880859,\"z\":0.0168658625334501}},\"2d374a\":{\"lock\":false,\"position\":{\"x\":40.2900695800781,\"y\":1.33337986469269,\"z\":-70.4198532104492},\"rotation\":{\"x\":0.0208862069994211,\"y\":270.049285888672,\"z\":0.0163175016641617}},\"3aacc6\":{\"lock\":false,\"position\":{\"x\":40.2902526855469,\"y\":1.38219845294952,\"z\":-79.6182250976563},\"rotation\":{\"x\":358.457824707031,\"y\":269.510528564453,\"z\":0.0166097246110439}},\"456b43\":{\"lock\":false,\"position\":{\"x\":40.2905960083008,\"y\":1.38353705406189,\"z\":-75.0199966430664},\"rotation\":{\"x\":358.457855224609,\"y\":270.063842773438,\"z\":0.0167510230094194}},\"6cea28\":{\"lock\":false,\"position\":{\"x\":40.2900810241699,\"y\":1.33743143081665,\"z\":-56.6199798583984},\"rotation\":{\"x\":0.020815797150135,\"y\":269.976776123047,\"z\":0.0167626142501831}},\"7010ef\":{\"lock\":false,\"position\":{\"x\":36.6237106323242,\"y\":1.38894164562225,\"z\":-52.0081634521484},\"rotation\":{\"x\":1.5831127166748,\"y\":270.319885253906,\"z\":0.017417760565877}},\"8127bb\":{\"lock\":false,\"position\":{\"x\":32.9846115112305,\"y\":1.3880113363266,\"z\":-52.0093383789063},\"rotation\":{\"x\":1.59560775756836,\"y\":270.239685058594,\"z\":0.016812251880765}},\"85cf7e\":{\"lock\":false,\"position\":{\"x\":40.2900772094727,\"y\":1.3401243686676,\"z\":-47.419994354248},\"rotation\":{\"x\":0.0208344608545303,\"y\":269.912475585938,\"z\":0.0167393144220114}},\"8b2f2f\":{\"lock\":false,\"position\":{\"x\":36.6228141784668,\"y\":1.38353550434113,\"z\":-70.4082412719727},\"rotation\":{\"x\":1.58326184749603,\"y\":269.92626953125,\"z\":0.0166300144046545}},\"8e8954\":{\"lock\":false,\"position\":{\"x\":36.6243591308594,\"y\":1.33071219921112,\"z\":-75.0083999633789},\"rotation\":{\"x\":0.0208491515368223,\"y\":270.011322021484,\"z\":0.016562158241868}},\"f7d07b\":{\"lock\":false,\"position\":{\"x\":40.2900772094727,\"y\":1.33880090713501,\"z\":-52.0199775695801},\"rotation\":{\"x\":0.0206596124917269,\"y\":269.901672363281,\"z\":0.0176223460584879}},\"fa603e\":{\"lock\":false,\"position\":{\"x\":40.2854118347168,\"y\":1.33607804775238,\"z\":-61.2198791503906},\"rotation\":{\"x\":0.0208030603826046,\"y\":270.1435546875,\"z\":0.0166210383176804}}}}",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "f7d07b",
"Name": "Custom_Token",
"Transform": {
"posX": 40.2900772,
"posY": 1.33880091,
"posZ": -52.0199776,
"rotX": 0.0206596125,
"rotY": 269.901672,
"rotZ": 0.0176223461,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "POC - 2A",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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.0208157972,
"rotY": 269.976776,
"rotZ": 0.0167626143,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "POC - 3",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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.02080306,
"rotY": 270.143555,
"rotZ": 0.0166210383,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "POC - 4A",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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.58478653,
"rotY": 270.196533,
"rotZ": 0.0169928614,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "POC - 4B",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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.81983,
"rotX": 0.02079422,
"rotY": 270.0751,
"rotZ": 0.0167566929,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "POC - 5A",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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.38492453,
"posZ": -65.80798,
"rotX": 1.58433163,
"rotY": 270.104828,
"rotZ": 0.0168658625,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "POC - 5B",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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.38894165,
"posZ": -52.0081635,
"rotX": 1.58311272,
"rotY": 270.3199,
"rotZ": 0.01741776,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "POC - 2B",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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.33337986,
"posZ": -70.41985,
"rotX": 0.020886207,
"rotY": 270.0493,
"rotZ": 0.0163175017,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "POC - 6A",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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.3835355,
"posZ": -70.40824,
"rotX": 1.58326185,
"rotY": 269.92627,
"rotZ": 0.0166300144,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "POC - 6B",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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.34012437,
"posZ": -47.4199944,
"rotX": 0.02083446,
"rotY": 269.912476,
"rotZ": 0.0167393144,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "POC - 1",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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.59560776,
"rotY": 270.2397,
"rotZ": 0.0168122519,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "POC - 2C",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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.59576118,
"rotY": 270.084534,
"rotZ": 0.01670752,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "POC - 4C",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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.016751023,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "POC - 7A",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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.0166097246,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "POC - 8A",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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.0209719669,
"rotY": 269.514435,
"rotZ": 0.01654249,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "POC - 8B",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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.0084,
"rotX": 0.0208491515,
"rotY": 270.011322,
"rotZ": 0.0165621582,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "POC - 7B",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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.10569,
"posZ": -52.0099335,
"rotX": 359.979156,
"rotY": 89.9852448,
"rotZ": 359.983215,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "The Dunwich Legacy",
"Description": "tdlmat",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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.3400859832764,\"y\":1.33480167388916,\"z\":-52.009635925293},\"rotation\":{\"x\":0.0208267811685801,\"y\":270.028442382813,\"z\":0.0166774820536375}},\"0d397a\":{\"lock\":false,\"position\":{\"x\":40.2900810241699,\"y\":1.38355588912964,\"z\":-75.0199813842773},\"rotation\":{\"x\":358.457366943359,\"y\":269.985076904297,\"z\":0.0167983770370483}},\"21d971\":{\"lock\":false,\"position\":{\"x\":40.2900657653809,\"y\":1.38485586643219,\"z\":-70.4198455810547},\"rotation\":{\"x\":358.458770751953,\"y\":269.987030029297,\"z\":0.0167951062321663}},\"2cce8e\":{\"lock\":false,\"position\":{\"x\":32.9853019714355,\"y\":1.33747291564941,\"z\":-47.409538269043},\"rotation\":{\"x\":0.0208195019513369,\"y\":270.025177001953,\"z\":0.0167117398232222}},\"2d3119\":{\"lock\":false,\"position\":{\"x\":40.2900581359863,\"y\":1.38893461227417,\"z\":-56.6199798583984},\"rotation\":{\"x\":358.457550048828,\"y\":269.983795166016,\"z\":0.0167835336178541}},\"330f36\":{\"lock\":false,\"position\":{\"x\":36.6243362426758,\"y\":1.39067852497101,\"z\":-47.4083976745605},\"rotation\":{\"x\":358.446075439453,\"y\":270.029449462891,\"z\":0.0168121848255396}},\"490ee5\":{\"lock\":false,\"position\":{\"x\":40.2910575866699,\"y\":1.38625061511993,\"z\":-65.8197937011719},\"rotation\":{\"x\":358.457305908203,\"y\":269.983306884766,\"z\":0.0167823601514101}},\"491ba2\":{\"lock\":false,\"position\":{\"x\":32.9844627380371,\"y\":1.38793182373047,\"z\":-52.0096168518066},\"rotation\":{\"x\":358.448455810547,\"y\":270.039215087891,\"z\":0.0168358646333218}},\"4bfe23\":{\"lock\":false,\"position\":{\"x\":36.6243591308594,\"y\":1.32936596870422,\"z\":-79.608268737793},\"rotation\":{\"x\":0.0208485554903746,\"y\":269.983917236328,\"z\":0.0165696386247873}},\"53627d\":{\"lock\":false,\"position\":{\"x\":32.9853057861328,\"y\":1.33208239078522,\"z\":-65.8082427978516},\"rotation\":{\"x\":0.0208651907742023,\"y\":269.98486328125,\"z\":0.0165079906582832}},\"5fa489\":{\"lock\":false,\"position\":{\"x\":29.3400783538818,\"y\":1.3825421333313,\"z\":-65.8084564208984},\"rotation\":{\"x\":1.59238505363464,\"y\":269.986999511719,\"z\":0.016799682751298}},\"6f347f\":{\"lock\":false,\"position\":{\"x\":36.6221656799316,\"y\":1.33205735683441,\"z\":-70.4083862304688},\"rotation\":{\"x\":0.020858833566308,\"y\":269.994812011719,\"z\":0.0165370889008045}},\"75474e\":{\"lock\":false,\"position\":{\"x\":40.2878494262695,\"y\":1.33876860141754,\"z\":-52.0200080871582},\"rotation\":{\"x\":0.0208697244524956,\"y\":269.990295410156,\"z\":0.0164402443915606}},\"784bfe\":{\"lock\":false,\"position\":{\"x\":29.3400745391846,\"y\":1.32807147502899,\"z\":-75.0085678100586},\"rotation\":{\"x\":0.0208148900419474,\"y\":270.017791748047,\"z\":0.0167522989213467}},\"7ec346\":{\"lock\":false,\"position\":{\"x\":32.9853172302246,\"y\":1.38119006156921,\"z\":-75.0083618164063},\"rotation\":{\"x\":358.448760986328,\"y\":270.005767822266,\"z\":0.0168228913098574}},\"7fc275\":{\"lock\":false,\"position\":{\"x\":40.2900695800781,\"y\":1.39162695407867,\"z\":-47.4199905395508},\"rotation\":{\"x\":358.457580566406,\"y\":270.023223876953,\"z\":0.016811341047287}},\"87c00f\":{\"lock\":false,\"position\":{\"x\":40.2900733947754,\"y\":1.33608496189117,\"z\":-61.2199859619141},\"rotation\":{\"x\":0.0208142343908548,\"y\":269.981628417969,\"z\":0.016764285042882}},\"995d75\":{\"lock\":false,\"position\":{\"x\":40.2900466918945,\"y\":1.38221669197083,\"z\":-79.6198806762695},\"rotation\":{\"x\":358.457122802734,\"y\":269.980773925781,\"z\":0.0167763847857714}},\"ad222a\":{\"lock\":false,\"position\":{\"x\":36.6243553161621,\"y\":1.33610224723816,\"z\":-56.6084136962891},\"rotation\":{\"x\":0.0208268202841282,\"y\":269.986450195313,\"z\":0.016710827127099}},\"b1efff\":{\"lock\":false,\"position\":{\"x\":32.9847984313965,\"y\":1.37990999221802,\"z\":-79.6079940795898},\"rotation\":{\"x\":1.59491741657257,\"y\":269.980163574219,\"z\":0.0167928170412779}},\"b32939\":{\"lock\":false,\"position\":{\"x\":29.3388404846191,\"y\":1.38123536109924,\"z\":-70.4083404541016},\"rotation\":{\"x\":1.59352207183838,\"y\":270.034545898438,\"z\":0.0168794970959425}},\"b70302\":{\"lock\":false,\"position\":{\"x\":36.6243209838867,\"y\":1.38257992267609,\"z\":-75.0083770751953},\"rotation\":{\"x\":358.446685791016,\"y\":269.996704101563,\"z\":0.0168163944035769}},\"bebff6\":{\"lock\":false,\"position\":{\"x\":25.4906044006348,\"y\":1.32666826248169,\"z\":-75.0282440185547},\"rotation\":{\"x\":0.0208054818212986,\"y\":270.011474609375,\"z\":0.0167752020061016}},\"cbbd36\":{\"lock\":false,\"position\":{\"x\":32.982177734375,\"y\":1.38260364532471,\"z\":-70.4079666137695},\"rotation\":{\"x\":1.59503698348999,\"y\":269.964080810547,\"z\":0.016715144738555}},\"dae6ff\":{\"lock\":false,\"position\":{\"x\":36.6217803955078,\"y\":1.43930053710938,\"z\":-52.0080757141113},\"rotation\":{\"x\":359.962188720703,\"y\":270.015869140625,\"z\":0.0167557653039694}},\"ec83a8\":{\"lock\":false,\"position\":{\"x\":36.625431060791,\"y\":1.38528168201447,\"z\":-65.8083038330078},\"rotation\":{\"x\":358.446411132813,\"y\":269.979736328125,\"z\":0.0167838335037231}}}}",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "7fc275",
"Name": "Custom_Token",
"Transform": {
"posX": 40.29007,
"posY": 1.391627,
"posZ": -47.41999,
"rotX": 358.457581,
"rotY": 270.023224,
"rotZ": 0.016811341,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "TDL - 1A",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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.28785,
"posY": 1.3387686,
"posZ": -52.0200081,
"rotX": 0.0208697245,
"rotY": 269.9903,
"rotZ": 0.0164402444,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "TDL - 2A",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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.38893461,
"posZ": -56.61998,
"rotX": 358.45755,
"rotY": 269.9838,
"rotZ": 0.0167835336,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "TDL - 3A",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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.0208142344,
"rotY": 269.981628,
"rotZ": 0.016764285,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "TDL - 4",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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.6243362,
"posY": 1.39067852,
"posZ": -47.4083977,
"rotX": 358.446075,
"rotY": 270.029449,
"rotZ": 0.0168121848,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "TDL - 1B",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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.33747292,
"posZ": -47.40954,
"rotX": 0.020819502,
"rotY": 270.025177,
"rotZ": 0.01671174,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "TDL - 1C",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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.62178,
"posY": 1.43930054,
"posZ": -52.0080757,
"rotX": 359.9622,
"rotY": 270.015869,
"rotZ": 0.0167557653,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "TDL - 2B",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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.9844627,
"posY": 1.38793182,
"posZ": -52.0096169,
"rotX": 358.448456,
"rotY": 270.0392,
"rotZ": 0.0168358646,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "TDL - 2C",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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.33610225,
"posZ": -56.6084137,
"rotX": 0.02082682,
"rotY": 269.98645,
"rotZ": 0.0167108271,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "TDL - 3B",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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.2910576,
"posY": 1.38625062,
"posZ": -65.81979,
"rotX": 358.4573,
"rotY": 269.9833,
"rotZ": 0.01678236,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "TDL - 5A",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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.38528168,
"posZ": -65.8083038,
"rotX": 358.4464,
"rotY": 269.979736,
"rotZ": 0.0167838335,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "TDL - 5B",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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.33208239,
"posZ": -65.80824,
"rotX": 0.02086519,
"rotY": 269.984863,
"rotZ": 0.01650799,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "TDL - 5C",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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.2900658,
"posY": 1.38485587,
"posZ": -70.4198456,
"rotX": 358.458771,
"rotY": 269.98703,
"rotZ": 0.0167951062,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "TDL - 6A",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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.33205736,
"posZ": -70.40839,
"rotX": 0.0208588336,
"rotY": 269.9948,
"rotZ": 0.0165370889,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "TDL - 6B",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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.38260365,
"posZ": -70.40797,
"rotX": 1.595037,
"rotY": 269.964081,
"rotZ": 0.0167151447,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "TDL - 6C",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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.38355589,
"posZ": -75.01998,
"rotX": 358.457367,
"rotY": 269.985077,
"rotZ": 0.016798377,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "TDL - 7A",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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.38257992,
"posZ": -75.00838,
"rotX": 358.4467,
"rotY": 269.9967,
"rotZ": 0.0168163944,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "TDL - 7B",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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.38119006,
"posZ": -75.00836,
"rotX": 358.448761,
"rotY": 270.005768,
"rotZ": 0.0168228913,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "TDL - 7C",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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.340086,
"posY": 1.33480167,
"posZ": -52.0096359,
"rotX": 0.0208267812,
"rotY": 270.028442,
"rotZ": 0.0166774821,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "TDL - 2D",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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.3400784,
"posY": 1.38254213,
"posZ": -65.80846,
"rotX": 1.592385,
"rotY": 269.987,
"rotZ": 0.0167996828,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "TDL - 5D",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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.38123536,
"posZ": -70.40834,
"rotX": 1.59352207,
"rotY": 270.034546,
"rotZ": 0.0168794971,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "TDL - 6D",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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.3400745,
"posY": 1.32807148,
"posZ": -75.00857,
"rotX": 0.02081489,
"rotY": 270.0178,
"rotZ": 0.0167522989,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "TDL - 7D",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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.38221669,
"posZ": -79.61988,
"rotX": 358.457123,
"rotY": 269.980774,
"rotZ": 0.0167763848,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "TDL - 8A",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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.329366,
"posZ": -79.60827,
"rotX": 0.0208485555,
"rotY": 269.983917,
"rotZ": 0.0165696386,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "TDL - 8B",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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.37991,
"posZ": -79.6079941,
"rotX": 1.59491742,
"rotY": 269.980164,
"rotZ": 0.016792817,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "TDL - 8C",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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.4906044,
"posY": 1.32666826,
"posZ": -75.028244,
"rotX": 0.0208054818,
"rotY": 270.011475,
"rotZ": 0.016775202,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "TDL - 7E",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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.10299766,
"posZ": -61.2087135,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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.98562,
"rotZ": 359.983215,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "The Dream-Eaters",
"Description": "tdemat",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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.9846038818359,\"y\":1.38932967185974,\"z\":-47.4094314575195},\"rotation\":{\"x\":1.59471690654755,\"y\":269.985992431641,\"z\":0.0168394166976213}},\"256a94\":{\"lock\":false,\"position\":{\"x\":32.9853172302246,\"y\":1.326700091362,\"z\":-84.2082977294922},\"rotation\":{\"x\":0.020869268104434,\"y\":269.985046386719,\"z\":0.0166497677564621}},\"271e9a\":{\"lock\":false,\"position\":{\"x\":40.2898750305176,\"y\":1.38220512866974,\"z\":-79.6198883056641},\"rotation\":{\"x\":358.457550048828,\"y\":269.982177734375,\"z\":0.0167788900434971}},\"30d019\":{\"lock\":false,\"position\":{\"x\":36.6243209838867,\"y\":1.33610236644745,\"z\":-56.6083869934082},\"rotation\":{\"x\":0.0208411328494549,\"y\":270.00732421875,\"z\":0.0167256332933903}},\"3549ff\":{\"lock\":false,\"position\":{\"x\":40.2870330810547,\"y\":1.32934617996216,\"z\":-84.2198257446289},\"rotation\":{\"x\":0.0208312459290028,\"y\":269.974700927734,\"z\":0.0165553595870733}},\"3948b5\":{\"lock\":false,\"position\":{\"x\":40.2900695800781,\"y\":1.33608496189117,\"z\":-61.2199897766113},\"rotation\":{\"x\":0.0208136904984713,\"y\":269.9833984375,\"z\":0.0167649537324905}},\"3ac9be\":{\"lock\":false,\"position\":{\"x\":32.9867706298828,\"y\":1.32939422130585,\"z\":-75.0083312988281},\"rotation\":{\"x\":0.0208565834909678,\"y\":269.989349365234,\"z\":0.0166643485426903}},\"513b6f\":{\"lock\":false,\"position\":{\"x\":40.28759765625,\"y\":1.33203971385956,\"z\":-75.0200424194336},\"rotation\":{\"x\":0.0208294373005629,\"y\":269.982086181641,\"z\":0.0165824517607689}},\"5b18f5\":{\"lock\":false,\"position\":{\"x\":36.6241035461426,\"y\":1.43067157268524,\"z\":-75.0083999633789},\"rotation\":{\"x\":0.0210113320499659,\"y\":269.989685058594,\"z\":0.0163585692644119}},\"69f081\":{\"lock\":false,\"position\":{\"x\":36.6245422363281,\"y\":1.33879220485687,\"z\":-47.408332824707},\"rotation\":{\"x\":0.0208539385348558,\"y\":269.957397460938,\"z\":0.0165824443101883}},\"7cc49f\":{\"lock\":false,\"position\":{\"x\":40.2891006469727,\"y\":1.39029014110565,\"z\":-52.0199813842773},\"rotation\":{\"x\":358.457275390625,\"y\":270.006744384766,\"z\":0.0167833250015974}},\"89227a\":{\"lock\":false,\"position\":{\"x\":40.2900390625,\"y\":1.38893449306488,\"z\":-56.6200294494629},\"rotation\":{\"x\":358.45751953125,\"y\":270.002593994141,\"z\":0.0167992264032364}},\"90a381\":{\"lock\":false,\"position\":{\"x\":25.4876403808594,\"y\":1.33340740203857,\"z\":-52.0017509460449},\"rotation\":{\"x\":0.0208137053996325,\"y\":269.9833984375,\"z\":0.0167648587375879}},\"ad3576\":{\"lock\":false,\"position\":{\"x\":32.985294342041,\"y\":1.43609476089478,\"z\":-52.0096244812012},\"rotation\":{\"x\":0.0210697632282972,\"y\":269.979797363281,\"z\":0.0167141612619162}},\"b2b345\":{\"lock\":false,\"position\":{\"x\":36.6205215454102,\"y\":1.427973985672,\"z\":-84.2085266113281},\"rotation\":{\"x\":0.0210325140506029,\"y\":269.981384277344,\"z\":0.0166059881448746}},\"ba2453\":{\"lock\":false,\"position\":{\"x\":36.6246452331543,\"y\":1.3374434709549,\"z\":-52.0082092285156},\"rotation\":{\"x\":0.0208558533340693,\"y\":270.002410888672,\"z\":0.0165013372898102}},\"c36a9f\":{\"lock\":false,\"position\":{\"x\":40.2900695800781,\"y\":1.33339202404022,\"z\":-70.4198455810547},\"rotation\":{\"x\":0.0208149589598179,\"y\":269.978942871094,\"z\":0.0167633779346943}},\"d15fee\":{\"lock\":false,\"position\":{\"x\":40.2887001037598,\"y\":1.39166271686554,\"z\":-47.4199638366699},\"rotation\":{\"x\":358.456451416016,\"y\":269.961853027344,\"z\":0.0167476702481508}},\"e2f73e\":{\"lock\":false,\"position\":{\"x\":29.3377857208252,\"y\":1.33480083942413,\"z\":-52.0099182128906},\"rotation\":{\"x\":0.0208508707582951,\"y\":269.982696533203,\"z\":0.0166664440184832}},\"f97453\":{\"lock\":false,\"position\":{\"x\":36.6243553161621,\"y\":1.32936978340149,\"z\":-79.6082763671875},\"rotation\":{\"x\":0.0207974631339312,\"y\":269.984252929688,\"z\":0.0167127083986998}}}}",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "69f081",
"Name": "Custom_Token",
"Transform": {
"posX": 36.6245422,
"posY": 1.3387922,
"posZ": -47.4083328,
"rotX": 0.0208539385,
"rotY": 269.9574,
"rotZ": 0.0165824443,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "TDE Dreaming - 1B",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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.39166272,
"posZ": -47.4199638,
"rotX": 358.456451,
"rotY": 269.961853,
"rotZ": 0.01674767,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "TDE Dreaming - 1A",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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.39029014,
"posZ": -52.01998,
"rotX": 358.457275,
"rotY": 270.006744,
"rotZ": 0.016783325,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "TDE Dreaming - 2A",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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.33744347,
"posZ": -52.00821,
"rotX": 0.0208558533,
"rotY": 270.0024,
"rotZ": 0.0165013373,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "TDE Dreaming - 2B",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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.29004,
"posY": 1.38893449,
"posZ": -56.62003,
"rotX": 358.45752,
"rotY": 270.0026,
"rotZ": 0.0167992264,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "TDE Dreaming - 3A",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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.62432,
"posY": 1.33610237,
"posZ": -56.608387,
"rotX": 0.0208411328,
"rotY": 270.007324,
"rotZ": 0.0167256333,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "TDE Dreaming - 3B",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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.02081369,
"rotY": 269.9834,
"rotZ": 0.0167649537,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "TDE Dreaming - 4",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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.9846039,
"posY": 1.38932967,
"posZ": -47.40943,
"rotX": 1.59471691,
"rotY": 269.986,
"rotZ": 0.0168394167,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "TDE Dreaming - 1C",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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.9852943,
"posY": 1.43609476,
"posZ": -52.0096245,
"rotX": 0.0210697632,
"rotY": 269.9798,
"rotZ": 0.0167141613,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "TDE Dreaming - 2C",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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.33480084,
"posZ": -52.00992,
"rotX": 0.02085087,
"rotY": 269.9827,
"rotZ": 0.016666444,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "TDE Dreaming - 2D",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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.333392,
"posZ": -70.4198456,
"rotX": 0.020814959,
"rotY": 269.978943,
"rotZ": 0.0167633779,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "TDE Waking - 1",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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.98677,
"posY": 1.32939422,
"posZ": -75.00833,
"rotX": 0.0208565835,
"rotY": 269.989349,
"rotZ": 0.0166643485,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "TDE Waking - 2C",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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.6241035,
"posY": 1.43067157,
"posZ": -75.0084,
"rotX": 0.021011332,
"rotY": 269.9897,
"rotZ": 0.01635857,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "TDE Waking - 2B",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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.2875977,
"posY": 1.33203971,
"posZ": -75.02004,
"rotX": 0.0208294373,
"rotY": 269.9821,
"rotZ": 0.0165824518,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "TDE Waking - 2A",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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.0208137054,
"rotY": 269.9834,
"rotZ": 0.0167648587,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "TDE Dreaming - 2E",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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.289875,
"posY": 1.38220513,
"posZ": -79.61989,
"rotX": 358.45755,
"rotY": 269.982178,
"rotZ": 0.01677889,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "TDE Waking - 3A",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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.6243553,
"posY": 1.32936978,
"posZ": -79.60828,
"rotX": 0.0207974631,
"rotY": 269.984253,
"rotZ": 0.0167127084,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "TDE Waking - 3B",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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.2870331,
"posY": 1.32934618,
"posZ": -84.2198257,
"rotX": 0.0208312459,
"rotY": 269.9747,
"rotZ": 0.01655536,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "TDE Waking - 4A",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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.62052,
"posY": 1.427974,
"posZ": -84.20853,
"rotX": 0.0210325141,
"rotY": 269.981384,
"rotZ": 0.0166059881,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "TDE Waking - 4B",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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.9853172,
"posY": 1.32670009,
"posZ": -84.2083,
"rotX": 0.0208692681,
"rotY": 269.985046,
"rotZ": 0.0166497678,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "TDE Waking - 4C",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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.09895837,
"posZ": -75.00872,
"rotX": 359.979156,
"rotY": 89.98562,
"rotZ": 359.983215,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "The Innsmouth Conspiracy",
"Description": "ticmat",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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.38481879234314,\"z\":-65.8078918457031},\"rotation\":{\"x\":1.58113861083984,\"y\":270.013153076172,\"z\":0.0168895907700062}},\"08c430\":{\"lock\":false,\"position\":{\"x\":25.5426006317139,\"y\":1.3334151506424,\"z\":-52.0431976318359},\"rotation\":{\"x\":0.0208029337227345,\"y\":270.020446777344,\"z\":0.0167784541845322}},\"092468\":{\"lock\":false,\"position\":{\"x\":40.2902565002441,\"y\":1.38489079475403,\"z\":-70.4197998046875},\"rotation\":{\"x\":358.457733154297,\"y\":269.983093261719,\"z\":0.0168081410229206}},\"0eff3a\":{\"lock\":false,\"position\":{\"x\":29.3395824432373,\"y\":1.38256311416626,\"z\":-65.808479309082},\"rotation\":{\"x\":1.59300947189331,\"y\":269.992980957031,\"z\":0.0168074797838926}},\"3f0496\":{\"lock\":false,\"position\":{\"x\":36.6240577697754,\"y\":1.33475565910339,\"z\":-61.2084808349609},\"rotation\":{\"x\":0.0208406671881676,\"y\":269.996490478516,\"z\":0.0167188383638859}},\"4f17e8\":{\"lock\":false,\"position\":{\"x\":36.6241188049316,\"y\":1.33206379413605,\"z\":-70.4083480834961},\"rotation\":{\"x\":0.0208168532699347,\"y\":270.001953125,\"z\":0.0167598761618137}},\"660e61\":{\"lock\":false,\"position\":{\"x\":36.6243591308594,\"y\":1.3902941942215,\"z\":-47.4084205627441},\"rotation\":{\"x\":1.5838874578476,\"y\":269.987731933594,\"z\":0.0167927276343107}},\"6abdc5\":{\"lock\":false,\"position\":{\"x\":40.2911682128906,\"y\":1.39026665687561,\"z\":-52.0199394226074},\"rotation\":{\"x\":358.4580078125,\"y\":269.984069824219,\"z\":0.0168000254780054}},\"7486a3\":{\"lock\":false,\"position\":{\"x\":32.9846954345703,\"y\":1.38791227340698,\"z\":-52.0095405578613},\"rotation\":{\"x\":358.449035644531,\"y\":269.984741210938,\"z\":0.0167792793363333}},\"77a94c\":{\"lock\":false,\"position\":{\"x\":40.2915649414063,\"y\":1.38890874385834,\"z\":-56.6198844909668},\"rotation\":{\"x\":358.458312988281,\"y\":270.019104003906,\"z\":0.0167943090200424}},\"7e861b\":{\"lock\":false,\"position\":{\"x\":40.2902374267578,\"y\":1.38354241847992,\"z\":-75.0199127197266},\"rotation\":{\"x\":358.457763671875,\"y\":269.983245849609,\"z\":0.0167876947671175}},\"957b29\":{\"lock\":false,\"position\":{\"x\":40.2902297973633,\"y\":1.38758146762848,\"z\":-61.2199325561523},\"rotation\":{\"x\":358.457733154297,\"y\":269.992248535156,\"z\":0.0167983192950487}},\"979352\":{\"lock\":false,\"position\":{\"x\":36.6241989135742,\"y\":1.3893209695816,\"z\":-52.008430480957},\"rotation\":{\"x\":358.446380615234,\"y\":269.986480712891,\"z\":0.0167909879237413}},\"979594\":{\"lock\":false,\"position\":{\"x\":40.2900772094727,\"y\":1.34012138843536,\"z\":-47.4199867248535},\"rotation\":{\"x\":0.020835580304265,\"y\":269.985260009766,\"z\":0.0166482981294394}},\"9a7d80\":{\"lock\":false,\"position\":{\"x\":40.2900733947754,\"y\":1.33473515510559,\"z\":-65.8198394775391},\"rotation\":{\"x\":0.0208256263285875,\"y\":270.007568359375,\"z\":0.0166513193398714}},\"9c79a5\":{\"lock\":false,\"position\":{\"x\":36.6241989135742,\"y\":1.38796746730804,\"z\":-56.608512878418},\"rotation\":{\"x\":358.446624755859,\"y\":269.989440917969,\"z\":0.016850559040904}},\"a8957d\":{\"lock\":false,\"position\":{\"x\":32.9840278625488,\"y\":1.33477926254272,\"z\":-56.6084213256836},\"rotation\":{\"x\":0.0208590421825647,\"y\":269.987182617188,\"z\":0.0166654288768768}},\"c53204\":{\"lock\":false,\"position\":{\"x\":29.3396053314209,\"y\":1.33480095863342,\"z\":-52.009521484375},\"rotation\":{\"x\":0.0208586659282446,\"y\":269.987213134766,\"z\":0.0166388098150492}},\"d31f0f\":{\"lock\":false,\"position\":{\"x\":36.6240577697754,\"y\":1.33071637153625,\"z\":-75.0084533691406},\"rotation\":{\"x\":0.020815584808588,\"y\":269.989013671875,\"z\":0.016719076782465}},\"e0348a\":{\"lock\":false,\"position\":{\"x\":40.2902565002441,\"y\":1.3821964263916,\"z\":-79.6198425292969},\"rotation\":{\"x\":358.457733154297,\"y\":269.983215332031,\"z\":0.0167914871126413}},\"ebe3a7\":{\"lock\":false,\"position\":{\"x\":32.9844970703125,\"y\":1.38402533531189,\"z\":-65.8082275390625},\"rotation\":{\"x\":1.59724962711334,\"y\":269.976989746094,\"z\":0.0167587772011757}},\"f1db94\":{\"lock\":false,\"position\":{\"x\":36.6241264343262,\"y\":1.32936978340149,\"z\":-79.6083221435547},\"rotation\":{\"x\":0.020829314365983,\"y\":269.987213134766,\"z\":0.0167126581072807}}}}",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "979594",
"Name": "Custom_Token",
"Transform": {
"posX": 40.2900772,
"posY": 1.34012139,
"posZ": -47.4199867,
"rotX": 0.02083558,
"rotY": 269.98526,
"rotZ": 0.0166482981,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "TIC - 1A",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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.39029419,
"posZ": -47.40842,
"rotX": 1.58388746,
"rotY": 269.987732,
"rotZ": 0.0167927276,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "TIC - 1B",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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.39026666,
"posZ": -52.01994,
"rotX": 358.458,
"rotY": 269.98407,
"rotZ": 0.0168000255,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "TIC - 2A",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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.6242,
"posY": 1.389321,
"posZ": -52.00843,
"rotX": 358.446381,
"rotY": 269.986481,
"rotZ": 0.0167909879,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "TIC - 2B",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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.9846954,
"posY": 1.38791227,
"posZ": -52.00954,
"rotX": 358.449036,
"rotY": 269.984741,
"rotZ": 0.01677928,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "TIC - 2C",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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.3396053,
"posY": 1.334801,
"posZ": -52.00952,
"rotX": 0.0208586659,
"rotY": 269.9872,
"rotZ": 0.01663881,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "TIC - 2D",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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.2915649,
"posY": 1.38890874,
"posZ": -56.6198845,
"rotX": 358.4583,
"rotY": 270.0191,
"rotZ": 0.016794309,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "TIC - 3A",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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.6242,
"posY": 1.38796747,
"posZ": -56.6085129,
"rotX": 358.446625,
"rotY": 269.989441,
"rotZ": 0.016850559,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "TIC - 3B",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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.60842,
"rotX": 0.0208590422,
"rotY": 269.987183,
"rotZ": 0.0166654289,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "TIC - 3C",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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.6240578,
"posY": 1.33475566,
"posZ": -61.20848,
"rotX": 0.0208406672,
"rotY": 269.9965,
"rotZ": 0.0167188384,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "TIC - 4B",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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.29023,
"posY": 1.38758147,
"posZ": -61.2199326,
"rotX": 358.457733,
"rotY": 269.992249,
"rotZ": 0.01679832,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "TIC - 4A",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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.0208256263,
"rotY": 270.007568,
"rotZ": 0.01665132,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "TIC - 5A",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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.38481879,
"posZ": -65.80789,
"rotX": 1.58113861,
"rotY": 270.013153,
"rotZ": 0.01688959,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "TIC - 5B",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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.38402534,
"posZ": -65.80823,
"rotX": 1.59724963,
"rotY": 269.977,
"rotZ": 0.0167587772,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "TIC - 5C",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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.3395824,
"posY": 1.38256311,
"posZ": -65.80848,
"rotX": 1.59300947,
"rotY": 269.992981,
"rotZ": 0.01680748,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "TIC - 5D",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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.4198,
"rotX": 358.457733,
"rotY": 269.9831,
"rotZ": 0.016808141,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "TIC - 6A",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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.33206379,
"posZ": -70.40835,
"rotX": 0.0208168533,
"rotY": 270.001953,
"rotZ": 0.0167598762,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "TIC - 6B",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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.5426,
"posY": 1.33341515,
"posZ": -52.0431976,
"rotX": 0.0208029337,
"rotY": 270.020447,
"rotZ": 0.0167784542,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "TIC - 2E",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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.2902374,
"posY": 1.38354242,
"posZ": -75.01991,
"rotX": 358.457764,
"rotY": 269.983246,
"rotZ": 0.0167876948,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "TIC - 7A",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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.33071637,
"posZ": -75.00845,
"rotX": 0.0208155848,
"rotY": 269.989,
"rotZ": 0.0167190768,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "TIC - 7B",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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.38219643,
"posZ": -79.61984,
"rotX": 358.457733,
"rotY": 269.983215,
"rotZ": 0.0167914871,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "TIC - 8A",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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.32936978,
"posZ": -79.60832,
"rotX": 0.0208293144,
"rotY": 269.9872,
"rotZ": 0.0167126581,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "TIC - 8B",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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.64006,
"posY": 1.0962503,
"posZ": -84.25828,
"rotX": 359.979156,
"rotY": 89.98743,
"rotZ": 359.983215,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Side Missions",
"Description": "sidemat",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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.619873046875},\"rotation\":{\"x\":0.0208131559193134,\"y\":269.985595703125,\"z\":0.0167657025158405}},\"07d749\":{\"lock\":false,\"position\":{\"x\":25.6873207092285,\"y\":1.38649654388428,\"z\":-47.4359703063965},\"rotation\":{\"x\":1.58943736553192,\"y\":269.995300292969,\"z\":0.0167984291911125}},\"12dc42\":{\"lock\":false,\"position\":{\"x\":25.497371673584,\"y\":1.38354790210724,\"z\":-56.611457824707},\"rotation\":{\"x\":358.458099365234,\"y\":269.9794921875,\"z\":0.0167887043207884}},\"1948e6\":{\"lock\":false,\"position\":{\"x\":40.2902412414551,\"y\":1.38488984107971,\"z\":-70.4197998046875},\"rotation\":{\"x\":358.457763671875,\"y\":269.983093261719,\"z\":0.0168045125901699}},\"1e0757\":{\"lock\":false,\"position\":{\"x\":40.2900772094727,\"y\":1.33877789974213,\"z\":-52.0199775695801},\"rotation\":{\"x\":0.0208130832761526,\"y\":269.985412597656,\"z\":0.0167656317353249}},\"218bf9\":{\"lock\":false,\"position\":{\"x\":40.2899436950684,\"y\":1.33742809295654,\"z\":-56.6199073791504},\"rotation\":{\"x\":0.0208324305713177,\"y\":269.998474121094,\"z\":0.0166420117020607}},\"268604\":{\"lock\":false,\"position\":{\"x\":21.8304271697998,\"y\":1.33073222637177,\"z\":-56.6004219055176},\"rotation\":{\"x\":0.0208226758986712,\"y\":269.988494873047,\"z\":0.0167297348380089}},\"2a2e57\":{\"lock\":false,\"position\":{\"x\":29.3394107818604,\"y\":1.3852299451828,\"z\":-56.6081314086914},\"rotation\":{\"x\":1.59222602844238,\"y\":269.988037109375,\"z\":0.0167940221726894}},\"32c136\":{\"lock\":false,\"position\":{\"x\":40.274284362793,\"y\":1.32800400257111,\"z\":-88.8075485229492},\"rotation\":{\"x\":0.0208088848739862,\"y\":270.000030517578,\"z\":0.0167711488902569}},\"36e6f8\":{\"lock\":false,\"position\":{\"x\":40.2904167175293,\"y\":1.38624262809753,\"z\":-65.8198394775391},\"rotation\":{\"x\":358.457550048828,\"y\":269.992553710938,\"z\":0.016792930662632}},\"46cd9b\":{\"lock\":false,\"position\":{\"x\":36.6242561340332,\"y\":1.38526940345764,\"z\":-65.8083877563477},\"rotation\":{\"x\":358.446746826172,\"y\":269.997253417969,\"z\":0.0167947746813297}},\"63b912\":{\"lock\":false,\"position\":{\"x\":36.624397277832,\"y\":1.39066696166992,\"z\":-47.4084243774414},\"rotation\":{\"x\":358.446441650391,\"y\":269.986907958984,\"z\":0.0168084967881441}},\"6d39e9\":{\"lock\":false,\"position\":{\"x\":36.6240463256836,\"y\":1.33206403255463,\"z\":-70.4083557128906},\"rotation\":{\"x\":0.0208107903599739,\"y\":270.004913330078,\"z\":0.0167715772986412}},\"71c514\":{\"lock\":false,\"position\":{\"x\":40.2900657653809,\"y\":1.33204543590546,\"z\":-75.0199737548828},\"rotation\":{\"x\":0.020813150331378,\"y\":269.985626220703,\"z\":0.0167658105492592}},\"76157c\":{\"lock\":false,\"position\":{\"x\":36.6238708496094,\"y\":1.38624787330627,\"z\":-61.2081832885742},\"rotation\":{\"x\":1.58368766307831,\"y\":269.984252929688,\"z\":0.0167866926640272}},\"77cf3d\":{\"lock\":false,\"position\":{\"x\":29.3391380310059,\"y\":1.33614194393158,\"z\":-47.4095993041992},\"rotation\":{\"x\":0.0208786576986313,\"y\":269.988494873047,\"z\":0.0164429545402527}},\"969149\":{\"lock\":false,\"position\":{\"x\":40.289981842041,\"y\":1.3293524980545,\"z\":-84.2198638916016},\"rotation\":{\"x\":0.0208130199462175,\"y\":269.985595703125,\"z\":0.0167657379060984}},\"96fe2f\":{\"lock\":false,\"position\":{\"x\":32.9849624633789,\"y\":1.38926637172699,\"z\":-47.4095344543457},\"rotation\":{\"x\":358.44873046875,\"y\":270.020874023438,\"z\":0.0167370550334454}},\"99ee1e\":{\"lock\":false,\"position\":{\"x\":40.2900695800781,\"y\":1.33608162403107,\"z\":-61.2199897766113},\"rotation\":{\"x\":0.0208375491201878,\"y\":269.985595703125,\"z\":0.0166378431022167}},\"a9db71\":{\"lock\":false,\"position\":{\"x\":36.6273536682129,\"y\":1.43608236312866,\"z\":-56.6083679199219},\"rotation\":{\"x\":0.0203358624130487,\"y\":269.975708007813,\"z\":0.0164193212985992}},\"be250d\":{\"lock\":false,\"position\":{\"x\":32.9853019714355,\"y\":1.33477675914764,\"z\":-56.6083221435547},\"rotation\":{\"x\":0.0208540260791779,\"y\":269.985595703125,\"z\":0.0165619384497404}},\"d39fc2\":{\"lock\":false,\"position\":{\"x\":32.9843368530273,\"y\":1.3320859670639,\"z\":-65.8083038330078},\"rotation\":{\"x\":0.0208368692547083,\"y\":269.999786376953,\"z\":0.0166636761277914}},\"fa41e2\":{\"lock\":false,\"position\":{\"x\":40.2912559509277,\"y\":1.39161622524261,\"z\":-47.4199562072754},\"rotation\":{\"x\":358.457946777344,\"y\":269.987091064453,\"z\":0.0168129969388247}}}}",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "1948e6",
"Name": "Custom_Token",
"Transform": {
"posX": 40.29024,
"posY": 1.38488984,
"posZ": -70.4198,
"rotX": 358.457764,
"rotY": 269.9831,
"rotZ": 0.0168045126,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Blob A",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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.6240463,
"posY": 1.332064,
"posZ": -70.4083557,
"rotX": 0.02081079,
"rotY": 270.0049,
"rotZ": 0.0167715773,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Blob B",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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.39161623,
"posZ": -47.4199562,
"rotX": 358.457947,
"rotY": 269.9871,
"rotZ": 0.0168129969,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Rougarou A",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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.390667,
"posZ": -47.4084244,
"rotX": 358.446442,
"rotY": 269.9869,
"rotZ": 0.0168084968,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Rougarou B",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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.0208130833,
"rotY": 269.9854,
"rotZ": 0.0167656317,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Carnevale",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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.43608236,
"posZ": -56.6083679,
"rotX": 0.0203358624,
"rotY": 269.9757,
"rotZ": 0.0164193213,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Guardians of the Abyss B",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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.33742809,
"posZ": -56.6199074,
"rotX": 0.02083243,
"rotY": 269.998474,
"rotZ": 0.0166420117,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Guardians of the Abyss A",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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.02083755,
"rotY": 269.9856,
"rotZ": 0.0166378431,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Hotel Excelsior A",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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.62387,
"posY": 1.38624787,
"posZ": -61.2081833,
"rotX": 1.58368766,
"rotY": 269.984253,
"rotZ": 0.0167866927,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Hotel Excelsior B",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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.38926637,
"posZ": -47.4095345,
"rotX": 358.44873,
"rotY": 270.020874,
"rotZ": 0.016737055,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Rougarou C",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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.0208540261,
"rotY": 269.9856,
"rotZ": 0.0165619384,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Guardians of the Abyss C",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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.33941,
"posY": 1.38523,
"posZ": -56.60813,
"rotX": 1.592226,
"rotY": 269.988037,
"rotZ": 0.0167940222,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Guardians of the Abyss D",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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.38624263,
"posZ": -65.81984,
"rotX": 358.45755,
"rotY": 269.992554,
"rotZ": 0.01679293,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Labyrinth A",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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.3852694,
"posZ": -65.80839,
"rotX": 358.446747,
"rotY": 269.997253,
"rotZ": 0.0167947747,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Labyrinth B",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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.332086,
"posZ": -65.8083038,
"rotX": 0.02083687,
"rotY": 269.9998,
"rotZ": 0.0166636761,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Labyrinth C",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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.339138,
"posY": 1.336142,
"posZ": -47.4096,
"rotX": 0.0208786577,
"rotY": 269.9885,
"rotZ": 0.0164429545,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Rougarou D",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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.68732,
"posY": 1.38649654,
"posZ": -47.43597,
"rotX": 1.58943737,
"rotY": 269.9953,
"rotZ": 0.01679843,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Rougarou E",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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.4973717,
"posY": 1.3835479,
"posZ": -56.6114578,
"rotX": 358.4581,
"rotY": 269.9795,
"rotZ": 0.0167887043,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Guardians of the Abyss E",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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.33204544,
"posZ": -75.01997,
"rotX": 0.02081315,
"rotY": 269.985626,
"rotZ": 0.01676581,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "War of the Outer Gods",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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.61987,
"rotX": 0.0208131559,
"rotY": 269.9856,
"rotZ": 0.0167657025,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Kingsport",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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.3293525,
"posZ": -84.2198639,
"rotX": 0.02081302,
"rotY": 269.9856,
"rotZ": 0.0167657379,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Erich Zann",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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.8304272,
"posY": 1.33073223,
"posZ": -56.60042,
"rotX": 0.0208226759,
"rotY": 269.9885,
"rotZ": 0.0167297348,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Guardians of the Abyss F",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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.0208088849,
"rotY": 270.000031,
"rotZ": 0.0167711489,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Consternation",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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.64006,
"posY": 1.09490371,
"posZ": -88.85825,
"rotX": 359.979156,
"rotY": 89.98755,
"rotZ": 359.983215,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Dark Matter",
"Description": "darkmat",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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.623706817627,\"y\":1.38624560832977,\"z\":-61.2081680297852},\"rotation\":{\"x\":1.58361685276031,\"y\":269.985961914063,\"z\":0.0167917627841234}},\"28ae75\":{\"lock\":false,\"position\":{\"x\":36.6238632202148,\"y\":1.39028799533844,\"z\":-47.4081726074219},\"rotation\":{\"x\":1.5836409330368,\"y\":269.986114501953,\"z\":0.0168468002229929}},\"28d283\":{\"lock\":false,\"position\":{\"x\":40.2900657653809,\"y\":1.33204317092896,\"z\":-75.0199737548828},\"rotation\":{\"x\":0.0208335369825363,\"y\":269.973022460938,\"z\":0.0166720375418663}},\"2c73fd\":{\"lock\":false,\"position\":{\"x\":29.3394870758057,\"y\":1.38794434070587,\"z\":-47.4095726013184},\"rotation\":{\"x\":1.59289479255676,\"y\":269.987457275391,\"z\":0.0167952030897141}},\"3531c0\":{\"lock\":false,\"position\":{\"x\":40.2900695800781,\"y\":1.33069288730621,\"z\":-79.619873046875},\"rotation\":{\"x\":0.0208573695272207,\"y\":269.982849121094,\"z\":0.0165296271443367}},\"3d76cc\":{\"lock\":false,\"position\":{\"x\":40.2900695800781,\"y\":1.33608186244965,\"z\":-61.2199897766113},\"rotation\":{\"x\":0.0208359826356173,\"y\":269.9833984375,\"z\":0.016648031771183}},\"3ef3dc\":{\"lock\":false,\"position\":{\"x\":36.6236991882324,\"y\":1.38220632076263,\"z\":-75.0081329345703},\"rotation\":{\"x\":1.58361315727234,\"y\":269.985473632813,\"z\":0.0168022811412811}},\"44139a\":{\"lock\":false,\"position\":{\"x\":32.9847183227539,\"y\":1.3799329996109,\"z\":-79.6082000732422},\"rotation\":{\"x\":1.59562170505524,\"y\":269.974456787109,\"z\":0.0167868956923485}},\"645dee\":{\"lock\":false,\"position\":{\"x\":40.2900772094727,\"y\":1.33877515792847,\"z\":-52.0199775695801},\"rotation\":{\"x\":0.0208353772759438,\"y\":269.980987548828,\"z\":0.0166546702384949}},\"7b795b\":{\"lock\":false,\"position\":{\"x\":36.623348236084,\"y\":1.38084447383881,\"z\":-79.6079254150391},\"rotation\":{\"x\":1.58317255973816,\"y\":269.966369628906,\"z\":0.0167705658823252}},\"85cf7e\":{\"lock\":false,\"position\":{\"x\":40.2900733947754,\"y\":1.33339202404022,\"z\":-70.4198455810547},\"rotation\":{\"x\":0.0208157505840063,\"y\":269.976196289063,\"z\":0.0167624223977327}},\"8832eb\":{\"lock\":false,\"position\":{\"x\":40.2900772094727,\"y\":1.34012115001678,\"z\":-47.4199905395508},\"rotation\":{\"x\":0.0208338815718889,\"y\":269.981719970703,\"z\":0.0166406370699406}},\"9a09ee\":{\"lock\":false,\"position\":{\"x\":40.2900733947754,\"y\":1.3347384929657,\"z\":-65.8198394775391},\"rotation\":{\"x\":0.0208138152956963,\"y\":269.9833984375,\"z\":0.0167650319635868}},\"a099cd\":{\"lock\":false,\"position\":{\"x\":40.2900810241699,\"y\":1.33743143081665,\"z\":-56.6199836730957},\"rotation\":{\"x\":0.0208138581365347,\"y\":269.9833984375,\"z\":0.0167650245130062}},\"acae33\":{\"lock\":false,\"position\":{\"x\":32.9845352172852,\"y\":1.389328956604,\"z\":-47.4093360900879},\"rotation\":{\"x\":1.59472358226776,\"y\":269.982452392578,\"z\":0.0167991146445274}},\"ec4b5d\":{\"lock\":false,\"position\":{\"x\":36.6238670349121,\"y\":1.38894069194794,\"z\":-52.0081672668457},\"rotation\":{\"x\":1.5836797952652,\"y\":269.986236572266,\"z\":0.0167956613004208}}}}",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "8832eb",
"Name": "Custom_Token",
"Transform": {
"posX": 40.2900772,
"posY": 1.34012115,
"posZ": -47.41999,
"rotX": 0.0208338816,
"rotY": 269.98172,
"rotZ": 0.0166406371,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "DM - 1A",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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.33877516,
"posZ": -52.0199776,
"rotX": 0.0208353773,
"rotY": 269.981,
"rotZ": 0.01665467,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "DM - 2A",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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.390288,
"posZ": -47.4081726,
"rotX": 1.58364093,
"rotY": 269.9861,
"rotZ": 0.0168468,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "DM - 1B",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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.38894069,
"posZ": -52.0081673,
"rotX": 1.5836798,
"rotY": 269.986237,
"rotZ": 0.0167956613,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "DM - 2B",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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.33743143,
"posZ": -56.6199837,
"rotX": 0.0208138581,
"rotY": 269.9834,
"rotZ": 0.0167650245,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "DM - 3",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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.33608186,
"posZ": -61.21999,
"rotX": 0.0208359826,
"rotY": 269.9834,
"rotZ": 0.0166480318,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "DM - 4A",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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.6237068,
"posY": 1.38624561,
"posZ": -61.208168,
"rotX": 1.58361685,
"rotY": 269.985962,
"rotZ": 0.0167917628,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "DM - 4B",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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.33473849,
"posZ": -65.81984,
"rotX": 0.0208138153,
"rotY": 269.9834,
"rotZ": 0.016765032,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "DM - 5",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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.33204317,
"posZ": -75.01997,
"rotX": 0.020833537,
"rotY": 269.973022,
"rotZ": 0.0166720375,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "DM - 7A",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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.6237,
"posY": 1.38220632,
"posZ": -75.00813,
"rotX": 1.58361316,
"rotY": 269.985474,
"rotZ": 0.0168022811,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "DM - 7B",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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.389329,
"posZ": -47.4093361,
"rotX": 1.59472358,
"rotY": 269.982452,
"rotZ": 0.0167991146,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "DM - 1C",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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.33069289,
"posZ": -79.61987,
"rotX": 0.02085737,
"rotY": 269.982849,
"rotZ": 0.0165296271,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "DM - 8A",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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.38084447,
"posZ": -79.6079254,
"rotX": 1.58317256,
"rotY": 269.96637,
"rotZ": 0.0167705659,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "DM - 8B",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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.379933,
"posZ": -79.6082,
"rotX": 1.59562171,
"rotY": 269.974457,
"rotZ": 0.0167868957,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "DM - 8C",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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.3394871,
"posY": 1.38794434,
"posZ": -47.4095726,
"rotX": 1.59289479,
"rotY": 269.987457,
"rotZ": 0.0167952031,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "DM - 1D",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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.02081575,
"rotY": 269.9762,
"rotZ": 0.0167624224,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "DM - 6",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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.6243744,
"posY": 1.09355545,
"posZ": -93.44771,
"rotX": 359.979156,
"rotY": 89.98763,
"rotZ": 359.983215,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Cyclopean Foundations",
"Description": "cfmat",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "1b9b55",
"Name": "Bag",
"Transform": {
"posX": 45.63476,
"posY": 1.0976125,
"posZ": -79.6012344,
"rotX": 359.979156,
"rotY": 89.98579,
"rotZ": 359.983215,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Edge of the Earth",
"Description": "ticmat",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.831010461,
"g": 0.9761426,
"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\":{\"03b860\":{\"lock\":false,\"position\":{\"x\":36.575008392334,\"y\":1.33339524269104,\"z\":-65.7999954223633},\"rotation\":{\"x\":0.0208085235208273,\"y\":270.001068115234,\"z\":0.0167712904512882}},\"1d1397\":{\"lock\":false,\"position\":{\"x\":40.4250068664551,\"y\":1.33872747421265,\"z\":-52.3599967956543},\"rotation\":{\"x\":0.0208140071481466,\"y\":269.982727050781,\"z\":0.0167648307979107}},\"37ff1a\":{\"lock\":false,\"position\":{\"x\":36.5720520019531,\"y\":1.33863949775696,\"z\":-47.8800773620605},\"rotation\":{\"x\":0.0208113212138414,\"y\":269.992004394531,\"z\":0.0167681202292442}},\"6f0cc7\":{\"lock\":false,\"position\":{\"x\":40.4250068664551,\"y\":1.33479332923889,\"z\":-65.7999954223633},\"rotation\":{\"x\":0.0208089388906956,\"y\":269.999481201172,\"z\":0.0167709868401289}},\"704a25\":{\"lock\":false,\"position\":{\"x\":40.4250068664551,\"y\":1.33348190784454,\"z\":-70.2799911499023},\"rotation\":{\"x\":0.0208080839365721,\"y\":270.003479003906,\"z\":0.0167722757905722}},\"7a68b3\":{\"lock\":false,\"position\":{\"x\":36.575008392334,\"y\":1.33208382129669,\"z\":-70.2799911499023},\"rotation\":{\"x\":0.02080755867064,\"y\":270.004425048828,\"z\":0.0167725197970867}},\"7ab1bc\":{\"lock\":false,\"position\":{\"x\":32.7250137329102,\"y\":1.33724236488342,\"z\":-47.8799896240234},\"rotation\":{\"x\":0.0208022426813841,\"y\":270.0224609375,\"z\":0.0167790539562702}},\"bef931\":{\"lock\":false,\"position\":{\"x\":40.4250068664551,\"y\":1.3374160528183,\"z\":-56.8399925231934},\"rotation\":{\"x\":0.0208131764084101,\"y\":269.985534667969,\"z\":0.0167656857520342}},\"e75ebc\":{\"lock\":false,\"position\":{\"x\":40.4250068664551,\"y\":1.33610463142395,\"z\":-61.3199920654297},\"rotation\":{\"x\":0.0208084508776665,\"y\":270.001281738281,\"z\":0.0167715884745121}},\"f4a462\":{\"lock\":false,\"position\":{\"x\":40.4250068664551,\"y\":1.34003889560699,\"z\":-47.8799934387207},\"rotation\":{\"x\":0.0208105836063623,\"y\":269.993957519531,\"z\":0.0167687349021435}}}}",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "03b860",
"Name": "Custom_Token",
"Transform": {
"posX": 36.57501,
"posY": 1.33339524,
"posZ": -65.7999954,
"rotX": 0.0208085235,
"rotY": 270.001068,
"rotZ": 0.01677129,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "EOTE - 4B",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": true,
"CustomImage": {
"ImageURL": "https://i.ibb.co/ncRvHr3/Edge-4-City-Francois-Baranger-2.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/ncRvHr3/Edge-4-City-Francois-Baranger-2.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": "7a68b3",
"Name": "Custom_Token",
"Transform": {
"posX": 36.57501,
"posY": 1.33208382,
"posZ": -70.27999,
"rotX": 0.0208075587,
"rotY": 270.004425,
"rotZ": 0.01677252,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "EOTE - 5B",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": true,
"CustomImage": {
"ImageURL": "https://i.ibb.co/NVFjx6N/Edge-5-Heart-of-Madness-Miguel-Coimbra.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/NVFjx6N/Edge-5-Heart-of-Madness-Miguel-Coimbra.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": "f4a462",
"Name": "Custom_Token",
"Transform": {
"posX": 40.4250069,
"posY": 1.3400389,
"posZ": -47.8799934,
"rotX": 0.0208105836,
"rotY": 269.993958,
"rotZ": 0.0167687349,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "EOTE - 1A",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": true,
"CustomImage": {
"ImageURL": "https://i.ibb.co/FWZMWtW/Edge-1-Ice-and-Death-David-Frasheski.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/FWZMWtW/Edge-1-Ice-and-Death-David-Frasheski.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": "1d1397",
"Name": "Custom_Token",
"Transform": {
"posX": 40.4250069,
"posY": 1.33872747,
"posZ": -52.3599968,
"rotX": 0.0208140071,
"rotY": 269.982727,
"rotZ": 0.01676483,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "EOTE - Fatal Mirage",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": true,
"CustomImage": {
"ImageURL": "https://i.ibb.co/KzwvjJN/Edge-2-Fatal-Mirage-David-Frasheski.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/KzwvjJN/Edge-2-Fatal-Mirage-David-Frasheski.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": "bef931",
"Name": "Custom_Token",
"Transform": {
"posX": 40.4250069,
"posY": 1.337416,
"posZ": -56.8399925,
"rotX": 0.0208131764,
"rotY": 269.985535,
"rotZ": 0.0167656858,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "EOTE - 2A",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": true,
"CustomImage": {
"ImageURL": "https://i.ibb.co/C2SLByt/Edge-2-Forbidden-Peaks-David-Frasheski-2.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/C2SLByt/Edge-2-Forbidden-Peaks-David-Frasheski-2.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": "e75ebc",
"Name": "Custom_Token",
"Transform": {
"posX": 40.4250069,
"posY": 1.33610463,
"posZ": -61.3199921,
"rotX": 0.02080845,
"rotY": 270.001282,
"rotZ": 0.0167715885,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "EOTE - 3A",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": true,
"CustomImage": {
"ImageURL": "https://i.ibb.co/0cGkkBL/Edge-3-Forbidden-Peaks-David-Frasheski.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/0cGkkBL/Edge-3-Forbidden-Peaks-David-Frasheski.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": "6f0cc7",
"Name": "Custom_Token",
"Transform": {
"posX": 40.4250069,
"posY": 1.33479333,
"posZ": -65.7999954,
"rotX": 0.0208089389,
"rotY": 269.999481,
"rotZ": 0.0167709868,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "EOTE - 4A",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": true,
"CustomImage": {
"ImageURL": "https://i.ibb.co/FbpgBD3/Edge-4-City-Francois-Baranger.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/FbpgBD3/Edge-4-City-Francois-Baranger.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": "704a25",
"Name": "Custom_Token",
"Transform": {
"posX": 40.4250069,
"posY": 1.33348191,
"posZ": -70.27999,
"rotX": 0.0208080839,
"rotY": 270.003479,
"rotZ": 0.0167722758,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "EOTE - 5A",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": true,
"CustomImage": {
"ImageURL": "https://i.ibb.co/rk0qR4z/Edge-5-Heart-of-Madness-Karol-Sollich.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/rk0qR4z/Edge-5-Heart-of-Madness-Karol-Sollich.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": "37ff1a",
"Name": "Custom_Token",
"Transform": {
"posX": 36.572052,
"posY": 1.3386395,
"posZ": -47.8800774,
"rotX": 0.0208113212,
"rotY": 269.992,
"rotZ": 0.01676812,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "EOTE - 1B",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": true,
"CustomImage": {
"ImageURL": "https://i.ibb.co/QDGV0jQ/Edge-1-Ice-and-Death-Felix-Riano.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/QDGV0jQ/Edge-1-Ice-and-Death-Felix-Riano.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": "7ab1bc",
"Name": "Custom_Token",
"Transform": {
"posX": 32.7250137,
"posY": 1.33724236,
"posZ": -47.87999,
"rotX": 0.0208022427,
"rotY": 270.022461,
"rotZ": 0.016779054,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "EOTE - 1C",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": true,
"CustomImage": {
"ImageURL": "https://i.ibb.co/hFJQM8v/Edge-1-Ice-and-Death-Mike-Gizienski.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/hFJQM8v/Edge-1-Ice-and-Death-Mike-Gizienski.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": "17aed0",
"Name": "Custom_Tile",
"Transform": {
"posX": 29.2449589,
"posY": 8.401558,
"posZ": -27.0894718,
"rotX": 359.9201,
"rotY": 269.997833,
"rotZ": 0.0168794841,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Search Assistant",
"Description": "Searches your top X cards by setting your hand aside and putting the cards into your hand.\n\nPut the target of your search on your set aside hand.\n\nSelect \"Shuffle\" or \"No Shuffle\" to put the cards back in your deck.\n\nCheck context menu for additional information.",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"CleanUpHelper_ignore"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1838053776205435595/ECFB88938ADBD1EF7AEF713111A11330FD9FAA5A/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1838053776205435595/ECFB88938ADBD1EF7AEF713111A11330FD9FAA5A/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "-- Search Assistant\n-- made by: Chr1Z\n-- original by: Tikatoy\n-- description: search the top X cards of your deck\ninformation = {\n version = \"1.3\",\n last_updated = \"26.09.2022\"\n}\n\nMAT_GUIDS = { \"8b081b\", \"bd0ff4\", \"383d8b\", \"0840d5\" }\n\n-- common parameters\nlocal BUTTON_PARAMETERS = {}\nBUTTON_PARAMETERS.function_owner = self\nBUTTON_PARAMETERS.font_size = 125\nBUTTON_PARAMETERS.width = 650\nBUTTON_PARAMETERS.height = 225\n\nlocal INPUT_PARAMETERS = {}\nINPUT_PARAMETERS.function_owner = self\nINPUT_PARAMETERS.input_function = \"updateSearchNumber\"\nINPUT_PARAMETERS.tooltip = \"number of cards to search\"\nINPUT_PARAMETERS.label = \"#\"\nINPUT_PARAMETERS.font_size = 175\nINPUT_PARAMETERS.width = 400\nINPUT_PARAMETERS.height = INPUT_PARAMETERS.font_size + 23\nINPUT_PARAMETERS.position = { 0, 0.1, 0 }\nINPUT_PARAMETERS.alignment = 3\nINPUT_PARAMETERS.validation = 2\n\nfunction onLoad(save_state)\n if save_state ~= nil then\n local loaded_data = JSON.decode(save_state)\n if loaded_data.playerColor ~= nil then\n playerColor = loaded_data.playerColor\n end\n end\n\n if playerColor == nil then\n playerColor = Player.getAvailableColors()[1]\n end\n\n normalView()\n\n self.addContextMenuItem(\"More Information\", function()\n printToAll(\"------------------------------\", \"White\")\n printToAll(\"Search Assistant v\" .. information[\"version\"] .. \" by Chr1Z\", \"Orange\")\n printToAll(\"last updated: \" .. information[\"last_updated\"], \"White\")\n printToAll(\"original concept by Tikatoy\", \"White\")\n end)\nend\n\nfunction onSave()\n return JSON.encode({ playerColor = playerColor })\nend\n\n-- regular view with search box and color switcher\nfunction normalView()\n self.clearButtons()\n self.clearInputs()\n\n createSearchButton()\n changeColor(\"initialize\")\n self.createInput(INPUT_PARAMETERS)\nend\n\n-- view during a search with \"done\" buttons\nfunction searchView()\n self.clearButtons()\n self.clearInputs()\n\n createDoneButton(true)\n createDoneButton(false)\nend\n\n-- change color (or initialize button)\nfunction changeColor(arg)\n if arg ~= \"initialize\" then\n -- update table with colors\n COLORS = Player.getAvailableColors()\n table.insert(COLORS, COLORS[1])\n\n -- get index of current color and move up one step\n local pos = indexOf(COLORS, playerColor)\n if pos == nil then pos = 0 end\n playerColor = COLORS[pos + 1]\n\n -- remove button and recreate it afterwards\n self.removeButton(1)\n end\n\n BUTTON_PARAMETERS.click_function = \"changeColor\"\n BUTTON_PARAMETERS.tooltip = \"change color\"\n BUTTON_PARAMETERS.position = { 0, 0.1, -0.65 }\n BUTTON_PARAMETERS.label = playerColor\n BUTTON_PARAMETERS.color = Color.fromString(playerColor)\n BUTTON_PARAMETERS.hover_color = BUTTON_PARAMETERS.color\n self.createButton(BUTTON_PARAMETERS)\nend\n\n-- create the search button\nfunction createSearchButton()\n BUTTON_PARAMETERS.click_function = \"startSearch\"\n BUTTON_PARAMETERS.tooltip = \"start the search\"\n BUTTON_PARAMETERS.position = { 0, 0.1, 0.65 }\n BUTTON_PARAMETERS.label = \"Search\"\n BUTTON_PARAMETERS.color = Color.fromString(\"White\")\n BUTTON_PARAMETERS.hover_color = nil\n self.createButton(BUTTON_PARAMETERS)\nend\n\n-- create the done buttons (with and without shuffle)\nfunction createDoneButton(arg)\n if arg then\n BUTTON_PARAMETERS.click_function = \"endSearch1\"\n BUTTON_PARAMETERS.tooltip = \"Done (Shuffle)\"\n BUTTON_PARAMETERS.position = { 0, 0.1, -0.65 }\n BUTTON_PARAMETERS.label = \"Shuffle\"\n else\n BUTTON_PARAMETERS.click_function = \"endSearch2\"\n BUTTON_PARAMETERS.tooltip = \"Done (No Shuffle)\"\n BUTTON_PARAMETERS.position = { 0, 0.1, 0.65 }\n BUTTON_PARAMETERS.label = \"No Shuffle\"\n end\n\n BUTTON_PARAMETERS.color = Color.fromString(\"White\")\n BUTTON_PARAMETERS.hover_color = nil\n self.createButton(BUTTON_PARAMETERS)\nend\n\n-- get the draw deck from the player mat\nfunction getDrawDeck()\n mat.call(\"getDrawDiscardDecks\")\n return mat.getVar(\"drawDeck\")\nend\n\n-- input_function to get number of cards to search\nfunction updateSearchNumber(_, _, input)\n INPUT_PARAMETERS.value = tonumber(input)\nend\n\n-- start the search (change UI, set hand aside, draw cards)\nfunction startSearch(_, color)\n if INPUT_PARAMETERS.value == nil then\n printToColor(\"Enter the number of cards to search in the textbox.\", color, \"Orange\")\n return\n end\n\n local hand_data = Player[playerColor].getHandTransform()\n\n -- make distinction between players based on hand position\n if hand_data.position.x < -30 then\n if hand_data.position.z > 0 then\n playerNumber = 1\n else\n playerNumber = 2\n end\n else\n if hand_data.position.z > 0 then\n playerNumber = 3\n else\n playerNumber = 4\n end\n end\n\n mat = getObjectFromGUID(MAT_GUIDS[playerNumber])\n local zoneID = mat.getVar(\"zoneID\")\n\n drawDeck = getDrawDeck()\n if drawDeck == nil then\n printToColor(\"Draw pile could not be found!\", color, \"Red\")\n return\n end\n\n drawDeckPos = drawDeck.getPosition()\n printToColor(\"Place target(s) of search on set aside hand.\", color, \"Green\")\n\n -- get position for set aside cards\n local hand = Player[playerColor].getHandObjects()\n deck_rotation = { hand_data.rotation.x, hand_data.rotation.y + 180, 180 }\n\n -- for left players (p1 and p3) move to the left, for right players (p2 and p4) to the right\n if playerNumber == 1 or playerNumber == 3 then\n set_aside_pos = hand_data.position - 15 * hand_data.right\n else\n set_aside_pos = hand_data.position + 15 * hand_data.right\n end\n\n for i = #hand, 1, -1 do\n hand[i].setPosition(set_aside_pos - Vector(0, i * 0.3, 0))\n hand[i].setRotation(deck_rotation)\n end\n\n searchView()\n\n -- handling for Norman Withers\n for i, object in ipairs(getObjectFromGUID(zoneID).getObjects()) do\n if self.positionToLocal(object.getPosition()).z < 0.5 and object.tag == \"Card\" and not object.is_face_down then\n object.flip()\n Wait.time(function()\n drawDeck = getDrawDeck()\n end, 1)\n break\n end\n end\n\n Wait.time(function()\n drawDeck.deal(INPUT_PARAMETERS.value, playerColor)\n end, 1)\nend\n\n-- place hand back into deck and optionally shuffle\nfunction endSearch1()\n endSearch(\"true\")\nend\n\nfunction endSearch2()\n endSearch(\"false\")\nend\n\nfunction endSearch(shuffle)\n local hand = Player[playerColor].getHandObjects()\n\n for i = #hand, 1, -1 do\n hand[i].setPosition(drawDeckPos + Vector(0, 6 - i * 0.3, 0))\n hand[i].setRotation(deck_rotation)\n end\n\n if shuffle == \"true\" then\n Wait.time(function()\n local deck = getDrawDeck()\n if deck ~= nil then\n deck.shuffle()\n end\n end, 2)\n end\n\n -- draw set aside cards (from the ground!)\n local objs = Physics.cast({\n origin = set_aside_pos - Vector(0, 5, 0),\n direction = { x = 0, y = 1, z = 0 },\n type = 3,\n size = { 2, 2, 2 }\n })\n\n for i, v in ipairs(objs) do\n local obj = v.hit_object\n if obj.tag == \"Deck\" then\n Wait.time(function()\n obj.deal(#obj.getObjects(), playerColor)\n end, 1)\n break\n end\n end\n\n normalView()\nend\n\n-- helper to search array\nfunction indexOf(array, value)\n for i, v in ipairs(array) do\n if v == value then\n return i\n end\n end\nend",
"LuaScriptState": "{\"playerColor\":\"White\"}",
"XmlUI": ""
},
{
"GUID": "450688",
"Name": "Custom_Tile",
"Transform": {
"posX": 37.613,
"posY": 2.21325469,
"posZ": -51.9647179,
"rotX": 0.0208069123,
"rotY": 269.9996,
"rotZ": 0.0167712662,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Hand Helper",
"Description": "- DIsplays the hand size (total or by title for \"Dream Enhancing Serum\"), hover over it to briefly toggle counting method\n\n- Adds a context menu to \"Short Supply\" for the 1st turn\n\n- Allows you to randomly discard a card from your hand\n\nSee context menu for additional information.",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"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": "-- Hand Helper\n-- updated by: Chr1Z\n-- original by: -\n-- description: counts cards in your hand (all or unique), can discard a random card\ninformation = {\n version = \"1.2\",\n last_updated = \"11.10.2022\"\n}\n\nMAT_GUIDS = { \"8b081b\", \"bd0ff4\", \"383d8b\", \"0840d5\" }\n\nlocal BUTTON_PARAMETERS = {}\nBUTTON_PARAMETERS.function_owner = self\n\n-- saving \"playerColor\" and \"des\"\nfunction onSave() return JSON.encode({ playerColor, des}) end\n\nfunction onLoad(saved_data)\n -- loading saved data\n local loaded_data = JSON.decode(saved_data)\n playerColor = loaded_data[1] or Player.getAvailableColors()[1]\n des = loaded_data[2] or false\n\n -- index 0: button as hand size label\n BUTTON_PARAMETERS.hover_color = \"White\"\n BUTTON_PARAMETERS.click_function = \"none\"\n BUTTON_PARAMETERS.position = { 0, 0.1, -0.4 }\n BUTTON_PARAMETERS.height = 0\n BUTTON_PARAMETERS.width = 0\n BUTTON_PARAMETERS.font_size = 500\n BUTTON_PARAMETERS.font_color = \"White\"\n self.createButton(BUTTON_PARAMETERS)\n\n -- index 1: button to toggle \"des\"\n BUTTON_PARAMETERS.label = \"DES: \" .. (des and \"✓\" or \"✗\")\n BUTTON_PARAMETERS.click_function = \"toggleDES\"\n BUTTON_PARAMETERS.position = { 0.475, 0.1, 0.25 }\n BUTTON_PARAMETERS.height = 175\n BUTTON_PARAMETERS.width = 440\n BUTTON_PARAMETERS.font_size = 90\n BUTTON_PARAMETERS.font_color = \"Black\"\n self.createButton(BUTTON_PARAMETERS)\n\n -- index 2: button to discard a card\n BUTTON_PARAMETERS.label = \"discard random card\"\n BUTTON_PARAMETERS.click_function = \"discardRandom\"\n BUTTON_PARAMETERS.position = { 0, 0.1, 0.7 }\n BUTTON_PARAMETERS.width = 900\n self.createButton(BUTTON_PARAMETERS)\n\n -- index 3: button to select color\n BUTTON_PARAMETERS.label = playerColor\n BUTTON_PARAMETERS.color = playerColor\n BUTTON_PARAMETERS.hover_color = playerColor\n BUTTON_PARAMETERS.click_function = \"changeColor\"\n BUTTON_PARAMETERS.tooltip = \"change color\"\n BUTTON_PARAMETERS.position = { -0.475, 0.1, 0.25 }\n BUTTON_PARAMETERS.width = 440\n self.createButton(BUTTON_PARAMETERS)\n\n -- start loop to update card count\n loopId = Wait.time(||updateValue(), 1, -1)\n\n -- context menu to quickly bind color\n self.addContextMenuItem(\"Bind to my color\", function(color)\n changeColor(_, _, _, color)\n end)\n\n -- context menu to display additional information\n self.addContextMenuItem(\"More Information\", function()\n printToAll(\"------------------------------\", \"White\")\n printToAll(\"Hand Helper v\" .. information[\"version\"] .. \" by Chr1Z\", \"Orange\")\n printToAll(\"last updated: \" .. information[\"last_updated\"], \"White\")\n printToAll(\"original by Tikatoy\", \"White\")\n printToAll(\"Note: 'Hidden' cards can't be randomly discarded.\", \"Yellow\")\n printToAll(\"Set them aside beforehand!\", \"Yellow\")\n end)\n\n -- initialize the pseudo random number generator\n math.randomseed(os.time())\nend\n\nfunction onObjectHover(hover_color, obj)\n -- error handling\n if obj == nil then return end\n\n -- add context menu to \"short supply\"\n if obj.getName() == \"Short Supply\" then\n obj.addContextMenuItem(\"Discard 10 (\" .. playerColor .. \")\", shortSupply)\n end\n\n -- only continue if correct player hovers over \"self\"\n if obj ~= self or hover_color ~= playerColor then return end\n\n -- stop loop, toggle \"des\" and displayed value briefly, then start new loop\n Wait.stop(loopId)\n des = not des\n updateValue()\n des = not des\n loopId = Wait.time(||updateValue(), 1, -1)\nend\n\n-- toggle \"des\" and update button label\nfunction toggleDES()\n des = not des\n self.editButton({index = 1, label = \"DES: \" .. (des and \"✓\" or \"✗\")})\n updateValue()\nend\n\n-- count cards in hand (by name for DES)\nfunction updateValue()\n if not playerExists(playerColor) then return end\n\n local hand = Player[playerColor].getHandObjects()\n local size = 0\n\n if des then\n local cardHash = {}\n for _, obj in pairs(hand) do\n if obj.tag == \"Card\" then\n local name = obj.getName()\n local title = string.match(name, '(.+)(%s%(%d+%))') or name\n cardHash[title] = obj\n end\n end\n for _, obj in pairs(cardHash) do\n size = size + 1\n end\n else\n for _, obj in pairs(hand) do\n if obj.tag == \"Card\" then size = size + 1 end\n end\n end\n -- change button label and color\n self.editButton({index = 0, font_color = des and \"Green\" or \"White\", label = size})\nend\n\n-- get index of current color and move up one step (or down for right-click)\nfunction changeColor(_, _, isRightClick, color)\n if color then\n playerColor = color\n else\n local COLORS = Player.getAvailableColors()\n local pos = indexOf(COLORS, playerColor)\n\n if isRightClick then\n if pos == nil or pos == 1 then pos = #COLORS\n else pos = pos - 1 end\n else\n if pos == nil or pos == #COLORS then pos = 1\n else pos = pos + 1 end\n end\n\n -- update playerColor\n playerColor = COLORS[pos]\n end\n\n -- update \"change color\" button (note: remove and create instantly updates hover_color)\n BUTTON_PARAMETERS.label = playerColor\n BUTTON_PARAMETERS.color = playerColor\n BUTTON_PARAMETERS.hover_color = playerColor\n self.removeButton(3)\n self.createButton(BUTTON_PARAMETERS)\nend\n\n---------------------------------------------------------\n-- discards a random card from hand\n---------------------------------------------------------\nfunction discardRandom()\n if not playerExists(playerColor) then return end\n\n -- error handling: hand is empty\n local hand = Player[playerColor].getHandObjects()\n if #hand == 0 then\n broadcastToAll(\"Cannot discard from empty hand!\", \"Red\")\n else\n local mat = getPlayermat(playerColor)\n if mat == nil then return end\n\n local discardPos = mat.getTable(\"DISCARD_PILE_POSITION\")\n if discardPos == nil then\n broadcastToAll(\"Couldn't retrieve discard position from playermat!\", \"Red\")\n return\n end\n\n local num = math.random(1, #hand)\n hand[num].setPosition(discardPos)\n broadcastToAll(playerColor .. \" randomly discarded card \" .. num .. \"/\" .. #hand .. \".\", \"White\")\n end\nend\n\n---------------------------------------------------------\n-- discards the top 10 cards of your deck\n---------------------------------------------------------\nfunction shortSupply(color)\n local mat = getPlayermat(playerColor)\n if mat == nil then return end\n\n -- get draw deck and discard pile\n mat.call(\"getDrawDiscardDecks\")\n drawDeck = mat.getVar(\"drawDeck\")\n local discardPos = mat.getTable(\"DISCARD_PILE_POSITION\")\n if discardPos == nil then\n broadcastToAll(\"Couldn't retrieve discard position from playermat!\", \"Red\")\n return\n end\n\n if drawDeck == nil then\n broadcastToColor(\"Deck not found!\", color, \"Yellow\")\n return\n elseif drawDeck.tag ~= \"Deck\" then\n broadcastToColor(\"Deck only contains a single card!\", color, \"Yellow\")\n return\n end\n\n -- discard cards\n discardPos[2] = 0.5\n for i = 1, 10 do\n discardPos[2] = discardPos[2] + 0.05 * i\n drawDeck.takeObject({ flip = true; position = discardPos })\n end\nend\n\n---------------------------------------------------------\n-- helper functions\n---------------------------------------------------------\n\n-- helper to search array\nfunction indexOf(array, value)\n for i, v in ipairs(array) do\n if v == value then return i end\n end\nend\n\n-- helper to check if player exists\nfunction playerExists(color)\n local COLORS = Player.getAvailableColors()\n return indexOf(COLORS, color) and true or false\nend\n\n-- helper to find playermat based on hand position\nfunction getPlayermat(color) \n local pos = Player[playerColor].getHandTransform().position\n if pos.x < -30 then\n if pos.z > 0 then\n playerNumber = 1\n else\n playerNumber = 2\n end\n else\n if pos.z > 0 then\n playerNumber = 3\n else\n playerNumber = 4\n end\n end\n\n local mat = getObjectFromGUID(MAT_GUIDS[playerNumber])\n if mat == nil then\n broadcastToAll(playerColor .. \" playermat could not be found!\", \"Yellow\")\n end\n return mat\nend",
"LuaScriptState": "[\"Green\",false]",
"XmlUI": ""
},
{
"GUID": "0f1374",
"Name": "Checker_white",
"Transform": {
"posX": 29.5567017,
"posY": 4.093773,
"posZ": -21.4372673,
"rotX": 359.918335,
"rotY": 270.000671,
"rotZ": 0.0166481379,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Displacement Tool",
"Description": "a2f932",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"LuaScript": "---\r\n--- Generated by Luanalysis\r\n--- Created by Whimsical.\r\n--- DateTime: 2022-01-21 1:39 p.m.\r\n---\r\n\r\nfunction onload()\r\n self:getRotation(Vector(0, 270, 0))\r\nend\r\n\r\nlocal excluded = {\r\n [\"b7b45b\"] = true,\r\n [\"f182ee\"] = true,\r\n [\"721ba2\"] = true\r\n}\r\n\r\n---@type table>\r\nlocal OFFSETS = {\r\n left = {\r\n axis = \"z\",\r\n offset = 7.67\r\n },\r\n right = {\r\n axis = \"z\",\r\n offset = -7.67\r\n },\r\n up = {\r\n axis = \"x\",\r\n offset = 6.54\r\n },\r\n down = {\r\n axis = \"x\",\r\n offset = -6.54\r\n }\r\n}\r\n\r\n---@param player Player\r\n---@param direction string\r\nfunction shift(player, direction)\r\n if self:getDescription()==\"\" then\r\n player:broadcast(\"The description of the displacement tool must contain (only) the GUID for a scripting zone that contains the play field.\", Color.RED)\r\n return\r\n end\r\n\r\n local zone = getObjectFromGUID(self:getDescription())\r\n local offset = OFFSETS[direction]\r\n\r\n if not zone then\r\n player:broadcast(\"The description of the displacement tool either contains text that is not a GUID or contains a GUID for a scripting zone that does not exist.\", Color.RED)\r\n return\r\n end\r\n\r\n local adjustment = Vector(0, 0, 0)\r\n adjustment[offset.axis] = offset.offset\r\n\r\n ---@param object TTSObject\r\n for _, object in ipairs(zone:getObjects()) do\r\n if not (excluded[object:getGUID():lower()] or object:hasTag(\"displacement_excluded\")) then\r\n object:translate(adjustment)\r\n end\r\n end\r\nend\r\n",
"LuaScriptState": "",
"XmlUI": "\n\r\n\n",
"CustomUIAssets": [
{
"Type": 0,
"Name": "down-arrow",
"URL": "http://cloud-3.steamusercontent.com/ugc/1849291925327196037/A32E84E24065356A759D8676A90FF698A05FE691/"
}
]
},
{
"GUID": "2ab443",
"Name": "Custom_Model",
"Transform": {
"posX": 29.5853634,
"posY": 4.0936017,
"posZ": -21.0778732,
"rotX": 0.0166704375,
"rotY": 179.983185,
"rotZ": 0.081662,
"scaleX": 0.300000429,
"scaleY": 0.300000429,
"scaleZ": 0.300000429
},
"Nickname": "\"Lucky\" Penny",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomMesh": {
"MeshURL": "https://www.dropbox.com/s/wyu6zud8r8ewqnt/Coin.obj?dl=1",
"DiffuseURL": "https://www.dropbox.com/s/g0c0hdqw5w3q1an/Blursed-Coin-Faces.png?dl=1",
"NormalURL": "",
"ColliderURL": "https://www.dropbox.com/s/wyu6zud8r8ewqnt/Coin.obj?dl=1",
"Convex": true,
"MaterialIndex": 3,
"TypeIndex": 3,
"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": "bc81cb",
"Name": "Custom_Tile",
"Transform": {
"posX": 29.9001179,
"posY": 4.09535265,
"posZ": -21.012516,
"rotX": -0.004518453,
"rotY": 0.000700082048,
"rotZ": 359.385468,
"scaleX": 0.4615681,
"scaleY": 1.0,
"scaleZ": 0.4615681
},
"Nickname": "Double-Sided Resource",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1634201755654309427/59F903E0AF5599D782B756AB92B5D9203002DF61/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1634201755654309873/9A23829955A98CBAC1E6BA2D3E14D4FFF0A86463/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 1,
"Thickness": 0.1,
"Stackable": false,
"Stretch": false
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "b171c8",
"Name": "Custom_Tile",
"Transform": {
"posX": 43.12201,
"posY": 2.337774,
"posZ": -36.61812,
"rotX": 359.9201,
"rotY": 269.995972,
"rotZ": 0.01689566,
"scaleX": 1.5,
"scaleY": 1.0,
"scaleZ": 1.5
},
"Nickname": "Descriptive Phase Tracker",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.106235169,
"g": 0.008296312,
"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,
"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 = '1. Mythos Phase\\n\\n 1.1 Round begins. Mythos phase begins.\\n\\n 1.2 Place 1 doom on the current agenda.\\n\\n 1.3 Check doom threshold.\\n\\n 1.4 Each investigator draws 1\\n encounter card.\\n\\n> PLAYER WINDOW <\\n\\n 1.5 Mythos phase ends.'\n params.width = 600\n params.height = 600\n self.createButton(params)\nend\n\nfunction toPhaseTwo()\n self.setState(2)\nend",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"3": {
"GUID": "042d56",
"Name": "Custom_Tile",
"Transform": {
"posX": -39.1360855,
"posY": 1.24541819,
"posZ": 49.92741,
"rotX": 0.0208078064,
"rotY": 269.9888,
"rotZ": 0.016764963,
"scaleX": 1.5,
"scaleY": 1.0,
"scaleZ": 1.5
},
"Nickname": "Descriptive Phase Tracker",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.235189646,
"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,
"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 = '3. Enemy Phase\\n\\n 3.1 Enemy phase begins.\\n\\n 3.2 Hunter enemies move.\\n\\n> PLAYER WINDOW <\\n\\n 3.3 Next investigator resolves\\n engaged enemy attacks. If an\\n investigator has not yet\\n resolved enemy attacks this\\n phase, return to previous\\n player window. After final\\n investigator resolves engaged\\n enemy attacks, proceed to\\n next player window.\\n\\n> PLAYER WINDOW <\\n\\n 3.4 Enemy phase ends.'\n params.width = 600\n params.height = 600\n self.createButton(params)\nend\n\nfunction toPhaseFour()\n self.setState(4)\nend",
"LuaScriptState": "",
"XmlUI": ""
},
"4": {
"GUID": "44077a",
"Name": "Custom_Tile",
"Transform": {
"posX": -39.1360855,
"posY": 1.24541819,
"posZ": 49.92741,
"rotX": 0.0208078064,
"rotY": 269.9888,
"rotZ": 0.016764963,
"scaleX": 1.5,
"scaleY": 1.0,
"scaleZ": 1.5
},
"Nickname": "Descriptive Phase Tracker",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.5313587,
"g": 0.3496283,
"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,
"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 = '4. Upkeep Phase\\n\\n 4.1 Upkeep phase begins.\\n\\n> PLAYER WINDOW <\\n\\n 4.2 Reset actions.\\n\\n 4.3 Ready each exhausted card.\\n\\n 4.4 Each investigator draws 1\\n card and gains 1 resource.\\n\\n 4.5 Each investigator checks\\n hand size.\\n\\n 4.6 Upkeep phase ends.\\n Round ends.'\n params.width = 600\n params.height = 600\n self.createButton(params)\nend\n\nfunction toPhaseOne()\n self.setState(1)\nend",
"LuaScriptState": "",
"XmlUI": ""
},
"2": {
"GUID": "e75551",
"Name": "Custom_Tile",
"Transform": {
"posX": -39.1360855,
"posY": 1.24541819,
"posZ": 49.92741,
"rotX": 0.0208078064,
"rotY": 269.9888,
"rotZ": 0.016764963,
"scaleX": 1.5,
"scaleY": 1.0,
"scaleZ": 1.5
},
"Nickname": "Descriptive Phase Tracker",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.04146277,
"g": 0.113237955,
"b": 0.0009864086
},
"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/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 = '2. Investigation Phase\\n\\n 2.1 Investigation phase begins.\\n\\n> PLAYER WINDOW <\\n\\n 2.2 Next investigator’s turn begins.\\n\\n> PLAYER WINDOW <\\n\\n 2.2.1 Active investigator may take\\n an action, if able. If an action\\n was taken, return to previous\\n player window. If no action was\\n taken, proceed to 2.2.2.\\n\\n 2.2.2 Investigator’s turn ends.\\n If an investigator has not yet\\n taken a turn this phase, return\\n to 2.2. If each investigator has\\n taken a turn this phase,\\n proceed to 2.3.\\n\\n 2.3 Investigation phase ends.'\n params.width = 600\n params.height = 600\n self.createButton(params)\nend\n\nfunction toPhaseThree()\n self.setState(3)\nend",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "26cf4b",
"Name": "Custom_Token",
"Transform": {
"posX": 30.9640026,
"posY": 4.13152361,
"posZ": -20.81428,
"rotX": 359.918335,
"rotY": 269.9996,
"rotZ": 0.0166441277,
"scaleX": 1.2,
"scaleY": 1.0,
"scaleZ": 1.2
},
"Nickname": "Clean Up Helper",
"Description": "Cleans up the table for the next scenario.\n\nSee context menu for additional information.",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"CleanUpHelper_ignore"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1850441528393599634/FA79B99F5544D16D38DCC8A26F1CEB3E7D9FED17/",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "-- Clean Up Helper\r\n-- made by: Chr1Z\r\n-- description: Cleans up the table for the next scenario in a campaign:\r\n-- - sets counters to default values (resources and doom) or trauma values (health and sanity, if not disabled) from campaign log\r\n-- - puts everything on playmats and hands into respective trashcans\r\n-- - use the IGNORE_TAG to exclude objects from tidying (default: \"CleanUpHelper_Ignore\")\r\ninformation = {\r\n version = \"2.0\",\r\n last_updated = \"10.10.2022\"\r\n}\r\n\r\n-- enable this for debugging\r\nSHOW_RAYS = false\r\n\r\n-- these objects will be ignored\r\nIGNORE_GUIDS = {\r\n -- big playmat, change image panel and investigator counter\r\n \"b7b45b\"; \"f182ee\"; \"721ba2\";\r\n -- bless/curse manager\r\n \"afa06b\"; \"bd0253\"; \"5933fb\";\r\n -- stuff on agenda/act playmat\r\n \"85c4c6\"; \"4a3aa4\"; \"fea079\"; \"b015d8\"; \"11e0cf\"; \"9f334f\"; \"70b9f6\"; \"0a5a29\";\r\n -- doom/location token bag\r\n \"47ffc3\"; \"170f10\";\r\n -- table\r\n \"4ee1f2\"\r\n}\r\n\r\n-- objects with this tag will be ignored\r\nIGNORE_TAG = \"CleanUpHelper_ignore\"\r\n\r\n-- colors and order for following tables\r\nCOLORS = { \"White\"; \"Orange\"; \"Green\"; \"Red\"; \"Agenda\" }\r\n\r\n-- counter GUIDS (4x damage, 4x sanity, 4x resource and 1x doom)\r\nTOKEN_GUIDS = {\r\n \"eb08d6\"; \"e64eec\"; \"1f5a0a\"; \"591a45\";\r\n \"468e88\"; \"0257d9\"; \"7b5729\"; \"beb964\";\r\n \"4406f0\"; \"816d84\"; \"cd15ac\"; \"a4b60d\";\r\n \"85c4c6\"\r\n}\r\n\r\n-- default values (4x damage, 4x horror, 4x resources, 1x doom)\r\nDEFAULT_VALUES = {\r\n 0; 0; 0; 0;\r\n 0; 0; 0; 0;\r\n 5; 5; 5; 5;\r\n 0\r\n}\r\n\r\nPLAYERMAT_GUIDS = { \"8b081b\"; \"bd0ff4\"; \"383d8b\"; \"0840d5\" }\r\nCLUE_GUIDS = { \"d86b7c\"; \"1769ed\"; \"032300\"; \"37be78\" }\r\nTRASHCAN_GUIDS = { \"147e80\"; \"f7b6c8\"; \"5f896a\"; \"4b8594\"; \"70b9f6\" }\r\n\r\nPLAYMATZONE = getObjectFromGUID(\"a2f932\")\r\n\r\n-- values for physics.cast (4 entries for player zones, 5th entry for agenda/act deck, 6th for campaign log)\r\nPHYSICS_POSITION = {\r\n { x = -54.5, y = 2, z = 21 };\r\n { x = -54.5, y = 2, z = -21 };\r\n { x = -25.0, y = 2, z = 26 };\r\n { x = -25.0, y = 2, z = -26 };\r\n { x = -02.0, y = 2, z = 10 };\r\n { x = -00.0, y = 2, z = -27 }\r\n}\r\n\r\nPHYSICS_ROTATION = {\r\n { x = 0, y = 270, z = 0 };\r\n { x = 0, y = 270, z = 0 };\r\n { x = 0, y = 000, z = 0 };\r\n { x = 0, y = 180, z = 0 };\r\n { x = 0, y = 270, z = 0 };\r\n { x = 0, y = 000, z = 0 }\r\n}\r\n\r\nPHYSICS_SCALE = {\r\n { x = 36.6, y = 1, z = 14.5 };\r\n { x = 36.6, y = 1, z = 14.5 };\r\n { x = 28.0, y = 1, z = 14.5 };\r\n { x = 28.0, y = 1, z = 14.5 };\r\n { x = 55.0, y = 1, z = 13.5 };\r\n { x = 05.0, y = 1, z = 05.0 }\r\n}\r\n\r\nlocal BUTTON_PARAMETERS = {}\r\nBUTTON_PARAMETERS.function_owner = self\r\n\r\n-- saving the options\r\nfunction onSave() return JSON.encode({ tidy_playermats, import_trauma, reset_resources }) end\r\n\r\nfunction onLoad(saved_data)\r\n local loaded_data = JSON.decode(saved_data)\r\n if loaded_data ~= nil then\r\n tidy_playermats = loaded_data[1]\r\n import_trauma = loaded_data[2]\r\n reset_resources = loaded_data[3]\r\n else\r\n tidy_playermats = true\r\n import_trauma = true\r\n reset_resources = true\r\n end\r\n\r\n self.addContextMenuItem(\"More Information\", function()\r\n printToAll(\"------------------------------\", \"White\")\r\n printToAll(\"Clean Up Helper v\" .. information[\"version\"] .. \" by Chr1Z\", \"Orange\")\r\n printToAll(\"last updated: \" .. information[\"last_updated\"], \"White\")\r\n printToAll(\"ignore tag: \" .. IGNORE_TAG, \"White\")\r\n printToAll(\"Player order in the campaign log for trauma import:\\nWhite, Orange, Green, Red\", \"White\")\r\n end)\r\n\r\n -- index 0: button as label\r\n BUTTON_PARAMETERS.label = \"Clean Up Helper v\" .. information[\"version\"]\r\n BUTTON_PARAMETERS.click_function = \"none\"\r\n BUTTON_PARAMETERS.position = { x = 0, y = 0.1, z = -1.525 }\r\n BUTTON_PARAMETERS.height = 0\r\n BUTTON_PARAMETERS.width = 0\r\n BUTTON_PARAMETERS.font_size = 165\r\n BUTTON_PARAMETERS.font_color = \"Black\"\r\n self.createButton(BUTTON_PARAMETERS)\r\n\r\n -- index 1: option button for playermats\r\n BUTTON_PARAMETERS.label = \"Tidy playermats: \" .. (tidy_playermats and \"✓\" or \"✗\")\r\n BUTTON_PARAMETERS.color = { 0, 0, 0, 0.95 }\r\n BUTTON_PARAMETERS.click_function = \"toggle1\"\r\n BUTTON_PARAMETERS.position.z = -0.8\r\n BUTTON_PARAMETERS.height = 275\r\n BUTTON_PARAMETERS.width = 1550\r\n BUTTON_PARAMETERS.font_size = 165\r\n BUTTON_PARAMETERS.font_color = \"White\"\r\n self.createButton(BUTTON_PARAMETERS)\r\n\r\n -- index 2: option button for trauma import\r\n BUTTON_PARAMETERS.label = \"Import trauma: \" .. (import_trauma and \"✓\" or \"✗\")\r\n BUTTON_PARAMETERS.click_function = \"toggle2\"\r\n BUTTON_PARAMETERS.position.z = -0.1\r\n self.createButton(BUTTON_PARAMETERS)\r\n\r\n -- index 3: option button for resources\r\n BUTTON_PARAMETERS.label = \"Reset resources: \" .. (reset_resources and \"✓\" or \"✗\")\r\n BUTTON_PARAMETERS.click_function = \"toggle3\"\r\n BUTTON_PARAMETERS.position.z = 0.6\r\n self.createButton(BUTTON_PARAMETERS)\r\n\r\n -- index 4: start button\r\n BUTTON_PARAMETERS.label = \"Start!\"\r\n BUTTON_PARAMETERS.click_function = \"cleanUp\"\r\n BUTTON_PARAMETERS.position.z = 1.3\r\n BUTTON_PARAMETERS.width = 775\r\n self.createButton(BUTTON_PARAMETERS)\r\n\r\n -- create single table for ignoring\r\n for _, v in ipairs(CLUE_GUIDS) do table.insert(IGNORE_GUIDS, v) end\r\n for _, v in ipairs(TRASHCAN_GUIDS) do table.insert(IGNORE_GUIDS, v) end\r\n for _, v in ipairs(PLAYERMAT_GUIDS) do table.insert(IGNORE_GUIDS, v) end\r\n for _, v in ipairs(TOKEN_GUIDS) do table.insert(IGNORE_GUIDS, v) end\r\nend\r\n\r\n---------------------------------------------------------\r\n-- click functions for option buttons\r\n---------------------------------------------------------\r\nfunction toggle1()\r\n tidy_playermats = not tidy_playermats\r\n self.editButton({ index = 1, label = \"Tidy playermats: \" .. (tidy_playermats and \"✓\" or \"✗\") })\r\nend\r\n\r\nfunction toggle2()\r\n import_trauma = not import_trauma\r\n self.editButton({ index = 2, label = \"Import trauma: \" .. (import_trauma and \"✓\" or \"✗\") })\r\nend\r\n\r\nfunction toggle3()\r\n reset_resources = not reset_resources\r\n self.editButton({ index = 3, label = \"Reset resources: \" .. (reset_resources and \"✓\" or \"✗\") })\r\nend\r\n\r\n---------------------------------------------------------\r\n-- main function\r\n---------------------------------------------------------\r\n\r\nfunction cleanUp()\r\n printToAll(\"------------------------------\", \"White\")\r\n printToAll(\"Clean up started!\", \"Orange\")\r\n printToAll(\"Resetting counters...\", \"White\")\r\n\r\n getTrauma()\r\n resetCounters()\r\n\r\n printToAll(\"Discarding player hands...\", \"White\")\r\n discardHands()\r\n\r\n printToAll(\"Tidying big playmat...\", \"White\")\r\n startLuaCoroutine(self, \"tidyPlaymatCoroutine\")\r\nend\r\n\r\n---------------------------------------------------------\r\n-- modular functions, called by other functions\r\n---------------------------------------------------------\r\n\r\n-- set counters to reset values\r\nfunction resetCounters()\r\n for i, guid in ipairs(TOKEN_GUIDS) do\r\n -- skip this step for resource tokens when option disabled (token number 9-12)\r\n if reset_resources or (i < 9 or i > 12) then\r\n local TOKEN = getObjectFromGUID(guid)\r\n if TOKEN ~= nil then\r\n TOKEN.setVar(\"val\", RESET_VALUES[i])\r\n TOKEN.call(\"updateVal\")\r\n TOKEN.call(\"updateSave\")\r\n else\r\n printToAll(\"Token number \" .. i .. \" could not be found and was skipped.\", \"Yellow\")\r\n end\r\n end\r\n end\r\nend\r\n\r\n-- read values for trauma from campaign log if enabled\r\nfunction getTrauma()\r\n -- load default values\r\n RESET_VALUES = {}\r\n for k, v in pairs(DEFAULT_VALUES) do\r\n RESET_VALUES[k] = v\r\n end\r\n\r\n -- stop here if trauma import is disabled\r\n if not import_trauma then\r\n printToAll(\"Default values for health and sanity loaded.\", \"Yellow\")\r\n return\r\n end\r\n\r\n -- get campaign log\r\n local c_log = findObjects(6)[1]\r\n if c_log == nil then\r\n printToAll(\"Campaign log not found in standard position!\", \"Yellow\")\r\n printToAll(\"Default values for health and sanity loaded.\", \"Yellow\")\r\n return\r\n end\r\n\r\n -- get data from campaign log if possible\r\n local counterData = c_log.hit_object.getVar(\"ref_buttonData\")\r\n if counterData ~= nil then\r\n printToAll(\"Trauma values found in campaign log!\", \"Green\")\r\n for i = 1, 10, 3 do\r\n RESET_VALUES[1 + (i - 1) / 3] = counterData.counter[i].value\r\n RESET_VALUES[5 + (i - 1) / 3] = counterData.counter[i + 1].value\r\n end\r\n else\r\n printToAll(\"Trauma values could not be found in campaign log!\", \"Yellow\")\r\n printToAll(\"Default values for health and sanity loaded.\", \"Yellow\")\r\n end\r\nend\r\n\r\n-- discard all hand objects\r\nfunction discardHands()\r\n for i = 1, 4 do\r\n local trashcan = getObjectFromGUID(TRASHCAN_GUIDS[i])\r\n local hand = Player[COLORS[i]].getHandObjects()\r\n if trashcan == nil then return end\r\n for j = #hand, 1, -1 do trashcan.putObject(hand[j]) end\r\n end\r\nend\r\n\r\n-- clean up for big playmat\r\nfunction tidyPlaymatCoroutine()\r\n local trashcan = getObjectFromGUID(TRASHCAN_GUIDS[5])\r\n\r\n if PLAYMATZONE == nil then\r\n printToAll(\"Scripting zone for big playmat could not be found!\", \"Red\")\r\n elseif trashcan == nil then\r\n printToAll(\"Trashcan for big playmat could not be found!\", \"Red\")\r\n else\r\n for _, obj in ipairs(PLAYMATZONE.getObjects()) do\r\n -- ignore these elements\r\n if indexOf(IGNORE_GUIDS, obj.getGUID()) == nil and obj.hasTag(IGNORE_TAG) == false then\r\n coroutine.yield(0)\r\n trashcan.putObject(obj)\r\n end\r\n end\r\n end\r\n printToAll(\"Tidying playermats and agenda mat...\", \"White\")\r\n startLuaCoroutine(self, \"tidyPlayerMatCoroutine\")\r\n return 1\r\nend\r\n\r\n-- clean up for the four playermats and the agenda/act playmat\r\nfunction tidyPlayerMatCoroutine()\r\n for i = 1, 5 do\r\n -- skip playermat (1-4) if option disabled\r\n if tidy_playermats or i == 5 then\r\n -- delay for animation purpose\r\n for k = 1, 30 do coroutine.yield(0) end\r\n\r\n -- get respective trashcan\r\n local trashcan = getObjectFromGUID(TRASHCAN_GUIDS[i])\r\n if trashcan == nil then\r\n printToAll(\"Trashcan for \" .. COLORS[i] .. \" playmat could not be found!\", \"Red\")\r\n return\r\n end\r\n\r\n for _, entry in ipairs(findObjects(i)) do\r\n local obj = entry.hit_object\r\n local desc_low = string.lower(obj.getDescription())\r\n\r\n -- ignore these elements\r\n if indexOf(IGNORE_GUIDS, obj.getGUID()) == nil and\r\n obj.hasTag(IGNORE_TAG) == false and\r\n desc_low ~= \"action token\" then\r\n coroutine.yield(0)\r\n trashcan.putObject(obj)\r\n\r\n -- flip action tokens back to ready\r\n elseif desc_low == \"action token\" and obj.is_face_down then\r\n obj.flip()\r\n end\r\n end\r\n end\r\n end\r\n printToAll(\"Clean up completed!\", \"Green\")\r\n return 1\r\nend\r\n\r\n---------------------------------------------------------\r\n-- helper functions\r\n---------------------------------------------------------\r\n\r\n-- find objects depending on index (1 to 4 for playermats, 5 for agenda/act playmat, 6 for campaign log)\r\nfunction findObjects(num)\r\n return Physics.cast({\r\n direction = { 0, 1, 0 },\r\n max_distance = 2,\r\n type = 3,\r\n size = PHYSICS_SCALE[num],\r\n origin = PHYSICS_POSITION[num],\r\n orientation = PHYSICS_ROTATION[num],\r\n debug = SHOW_RAYS\r\n })\r\nend\r\n\r\n-- helper to search array\r\nfunction indexOf(array, value)\r\n for i, v in ipairs(array) do\r\n if v == value then\r\n return i\r\n end\r\n end\r\nend",
"LuaScriptState": "[true,true,true]",
"XmlUI": ""
}
]
},
{
"GUID": "ddd2eb",
"Name": "Checker_black",
"Transform": {
"posX": 77.05995,
"posY": 1.29604709,
"posZ": 8.94234,
"rotX": 359.989868,
"rotY": 270.018127,
"rotZ": 179.984467,
"scaleX": 0.250000417,
"scaleY": 0.250000417,
"scaleZ": 0.250000417
},
"Nickname": "UI Builder",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "a0b1de",
"Name": "Checker_black",
"Transform": {
"posX": 77.05995,
"posY": 1.29592955,
"posZ": 9.378033,
"rotX": 359.989868,
"rotY": 270.009918,
"rotZ": 179.984467,
"scaleX": 0.250000417,
"scaleY": 0.250000417,
"scaleZ": 0.250000417
},
"Nickname": "Command Manager",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "d932ff",
"Name": "Bag",
"Transform": {
"posX": 78.23339,
"posY": 1.0649451,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": 80.37318,
"posY": 3.04628325,
"posZ": 30.6730347,
"rotX": 0.08402716,
"rotY": 180.0031,
"rotZ": 0.213153377,
"scaleX": 2.25,
"scaleY": 1.0,
"scaleZ": 2.99246836
},
"Nickname": "Metadata Helper",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"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 \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 \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 \r\n\r\n\n"
}
]
},
{
"GUID": "8553dc",
"Name": "3DText",
"Transform": {
"posX": -26.7945538,
"posY": 1.49997556,
"posZ": 70.7100754,
"rotX": 90.0,
"rotY": 90.16656,
"rotZ": 0.0,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": 58.5300636,
"posY": 1.40831161,
"posZ": 28.5245667,
"rotX": 359.920135,
"rotY": 269.998566,
"rotZ": 0.01687399,
"scaleX": 1.0,
"scaleY": 0.139652729,
"scaleZ": 1.0
},
"Nickname": "Core/Night of the Zealot",
"Description": "",
"GMNotes": "campaigns/night_of_the_zealot.json",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": 58.54813,
"posY": 1.404146,
"posZ": 14.4638433,
"rotX": 359.9202,
"rotY": 269.7826,
"rotZ": 0.0171750337,
"scaleX": 1.0,
"scaleY": 0.139652729,
"scaleZ": 1.0
},
"Nickname": "The Dunwich Legacy",
"Description": "",
"GMNotes": "campaigns/dunwich_legacy.json",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": 58.5053978,
"posY": 1.39998257,
"posZ": 0.121920146,
"rotX": 359.920135,
"rotY": 270.006165,
"rotZ": 0.0168642886,
"scaleX": 1.0,
"scaleY": 0.139652729,
"scaleZ": 1.0
},
"Nickname": "The Path to Carcosa",
"Description": "",
"GMNotes": "campaigns/path_to_carcosa.json",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": 58.50204,
"posY": 1.39975548,
"posZ": -14.3541193,
"rotX": 359.920135,
"rotY": 270.007324,
"rotZ": 0.0168619361,
"scaleX": 1.0,
"scaleY": 0.139652729,
"scaleZ": 1.0
},
"Nickname": "The Forgotten Age",
"Description": "",
"GMNotes": "campaigns/forgotten_age.json",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": 58.4531136,
"posY": 1.39584064,
"posZ": -27.8804817,
"rotX": 359.920135,
"rotY": 269.9959,
"rotZ": 0.01687852,
"scaleX": 1.0,
"scaleY": 0.139652729,
"scaleZ": 1.0
},
"Nickname": "The Circle Undone",
"Description": "",
"GMNotes": "campaigns/circle_undone.json",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "465aab",
"Name": "Custom_Model",
"Transform": {
"posX": 40.21428,
"posY": 1.4337461,
"posZ": 14.4971485,
"rotX": 359.920135,
"rotY": 269.986816,
"rotZ": 0.01689093,
"scaleX": 1.0,
"scaleY": 0.139652729,
"scaleZ": 1.0
},
"Nickname": "The Innsmouth Conspiracy",
"Description": "",
"GMNotes": "campaigns/innsmouth_conspiracy.json",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": 66.98355,
"posY": 1.76707482,
"posZ": 28.531786,
"rotX": 359.9201,
"rotY": 269.998566,
"rotZ": 0.0168746822,
"scaleX": 2.00002885,
"scaleY": 0.10587021,
"scaleZ": 1.69295752
},
"Nickname": "Return to the Night of the Zealot",
"Description": "",
"GMNotes": "campaigns/return_to_notz.json",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": 66.99206,
"posY": 1.76293135,
"posZ": 14.501462,
"rotX": 359.920135,
"rotY": 269.984741,
"rotZ": 0.0168940015,
"scaleX": 2.00002885,
"scaleY": 0.10587021,
"scaleZ": 1.69295752
},
"Nickname": "Return to The Dunwich Legacy",
"Description": "",
"GMNotes": "campaigns/return_to_tdl.json",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": 66.9913,
"posY": 1.75870371,
"posZ": 0.1411017,
"rotX": 359.9201,
"rotY": 270.012573,
"rotZ": 0.0168549325,
"scaleX": 2.00002885,
"scaleY": 0.10587021,
"scaleZ": 1.69295752
},
"Nickname": "Return to The Path to Carcosa",
"Description": "",
"GMNotes": "campaigns/return_to_tptc.json",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": 66.9946,
"posY": 1.75443459,
"posZ": -14.3410578,
"rotX": 359.920135,
"rotY": 269.983826,
"rotZ": 0.0168949515,
"scaleX": 2.00002885,
"scaleY": 0.10587021,
"scaleZ": 1.69295752
},
"Nickname": "Return to The Forgotten Age",
"Description": "",
"GMNotes": "campaigns/return_to_tfa.json",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": -54.89064,
"posY": 1.35460091,
"posZ": -72.71108,
"rotX": 0.0207971,
"rotY": 270.01825,
"rotZ": 0.0167775974,
"scaleX": 0.7000001,
"scaleY": 0.7000001,
"scaleZ": 0.7000001
},
"Nickname": "Weakness Generator",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.249987066,
"g": 0.249987066,
"b": 0.249987066
},
"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\")\n if (weaknessId == nil) then\r\n broadcastToAll(\"All basic weaknesses are in play!\", {0.9, 0.2, 0.2})\r\n return\r\n end\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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.3331146,
"posY": 1.29029679,
"posZ": -80.0,
"rotX": 0.0208101384,
"rotY": 270.00058,
"rotZ": 0.0167707354,
"scaleX": 0.5,
"scaleY": 0.139652729,
"scaleZ": 0.5
},
"Nickname": "Promo Investigators",
"Description": "",
"GMNotes": "investigators/promos.json",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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.33,
"posY": 1.29227924,
"posZ": -73.23,
"rotX": 0.0208102819,
"rotY": 270.0,
"rotZ": 0.0167704169,
"scaleX": 0.5,
"scaleY": 0.139652729,
"scaleZ": 0.5
},
"Nickname": "Starter Deck Investigators",
"Description": "",
"GMNotes": "investigators/starter_decks.json",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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.33,
"posY": 1.29614,
"posZ": -60.0414963,
"rotX": 0.0208097287,
"rotY": 270.002,
"rotZ": 0.0167711452,
"scaleX": 0.5,
"scaleY": 0.139652729,
"scaleZ": 0.5
},
"Nickname": "Edge of the Earth Investigators",
"Description": "",
"GMNotes": "investigators/edge_of_the_earth.json",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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.3324165,
"posY": 1.29793072,
"posZ": -53.9200134,
"rotX": 0.0208104178,
"rotY": 269.999939,
"rotZ": 0.0167705435,
"scaleX": 0.5,
"scaleY": 0.139652729,
"scaleZ": 0.5
},
"Nickname": "The Innsmouth Conspiracy",
"Description": "",
"GMNotes": "investigators/innsmouth_conspiracy.json",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "5889dd",
"Name": "Custom_Model",
"Transform": {
"posX": -9.766504,
"posY": 1.30469775,
"posZ": -60.0408478,
"rotX": 0.0208118372,
"rotY": 269.9933,
"rotZ": 0.0167683326,
"scaleX": 0.5,
"scaleY": 0.139652729,
"scaleZ": 0.5
},
"Nickname": "The Dunwich Legacy",
"Description": "",
"GMNotes": "investigators/dunwich_legacy.json",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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.7669735,
"posY": 1.30279517,
"posZ": -66.54027,
"rotX": 0.020811826,
"rotY": 269.993317,
"rotZ": 0.0167683,
"scaleX": 0.5,
"scaleY": 0.139652729,
"scaleZ": 0.5
},
"Nickname": "The Path to Carcosa",
"Description": "",
"GMNotes": "investigators/path_to_carcosa.json",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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.767552,
"posY": 1.30083668,
"posZ": -73.23052,
"rotX": 0.020811744,
"rotY": 269.9936,
"rotZ": 0.0167684648,
"scaleX": 0.5,
"scaleY": 0.139652729,
"scaleZ": 0.5
},
"Nickname": "The Forgotten Age",
"Description": "",
"GMNotes": "investigators/forgotten_age.json",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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.766738,
"posY": 1.29885674,
"posZ": -79.99525,
"rotX": 0.0208108351,
"rotY": 269.998749,
"rotZ": 0.0167699531,
"scaleX": 0.5,
"scaleY": 0.139652729,
"scaleZ": 0.5
},
"Nickname": "The Circle Undone",
"Description": "",
"GMNotes": "investigators/circle_undone.json",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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.764009,
"posY": 1.29687285,
"posZ": -86.77553,
"rotX": 0.0208100863,
"rotY": 270.000366,
"rotZ": 0.01677074,
"scaleX": 0.5,
"scaleY": 0.139652729,
"scaleZ": 0.5
},
"Nickname": "The Dream-Eaters",
"Description": "",
"GMNotes": "investigators/dream-eaters.json",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "fea079",
"Name": "Custom_Model_Bag",
"Transform": {
"posX": 1.59813273,
"posY": 1.57873893,
"posZ": -13.7461329,
"rotX": 359.931335,
"rotY": 315.009155,
"rotZ": 359.955139,
"scaleX": 3.0,
"scaleY": 3.0,
"scaleZ": 3.0
},
"Nickname": "Chaos Bag",
"Description": "Chaos Bag",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"chaos_bag"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"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/87098596225685535/6C95EB6308A0A9E89367DD67D5C65D09EB3C06A0/",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/959719855127933035/B199A5F515A8F3ED7E06780D3723285C02ADE085/",
"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": "function filterObjectEnter(obj)\n local props = obj.getCustomObject()\n if props ~= nil and props.image ~= nil then\n obj.setName(Global.call(\"getTokenName\", { url=props.image }))\n end\n return true\nend\n\nfunction onCollisionEnter(collision_info)\n self.shuffle()\n self.shuffle()\n self.shuffle()\nend",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "b8dc75",
"Name": "Custom_Tile",
"Transform": {
"posX": 0.0,
"posY": 8.712436,
"posZ": 0.0,
"rotX": 359.931335,
"rotY": 315.009155,
"rotZ": 359.955139,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "0",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/btEtVfd.png",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "17e7c4",
"Name": "Custom_Tile",
"Transform": {
"posX": 0.0,
"posY": 7.89369631,
"posZ": 0.0,
"rotX": 359.931335,
"rotY": 315.009155,
"rotZ": 359.955139,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "Auto-fail",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/lns4fhz.png",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "238252",
"Name": "Custom_Tile",
"Transform": {
"posX": 0.0,
"posY": 7.074957,
"posZ": 0.0,
"rotX": 359.931335,
"rotY": 315.009155,
"rotZ": 359.955139,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "Skull",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/stbBxtx.png",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "8e06b9",
"Name": "Custom_Tile",
"Transform": {
"posX": 0.0,
"posY": 8.712436,
"posZ": 0.0,
"rotX": 359.931335,
"rotY": 315.009155,
"rotZ": 359.955139,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "-4",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/qrgGQRD.png",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "957602",
"Name": "Custom_Tile",
"Transform": {
"posX": 0.0,
"posY": 8.712436,
"posZ": 0.0,
"rotX": 359.931335,
"rotY": 315.009155,
"rotZ": 359.955139,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "Elder Sign",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/nEmqjmj.png",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "6f16f0",
"Name": "Custom_Tile",
"Transform": {
"posX": 0.0,
"posY": 8.712436,
"posZ": 0.0,
"rotX": 359.931335,
"rotY": 315.009155,
"rotZ": 359.955139,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "-3",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/yfs8gHq.png",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "25f01b",
"Name": "Custom_Tile",
"Transform": {
"posX": 0.0,
"posY": 5.43747854,
"posZ": 0.0,
"rotX": 359.931335,
"rotY": 315.009155,
"rotZ": 359.955139,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "Skull",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/stbBxtx.png",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "540149",
"Name": "Custom_Tile",
"Transform": {
"posX": 0.0,
"posY": 4.618739,
"posZ": 0.0,
"rotX": 359.931335,
"rotY": 315.009155,
"rotZ": 359.955139,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "-2",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/bfTg2hb.png",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "6ca146",
"Name": "Custom_Tile",
"Transform": {
"posX": 0.0,
"posY": 8.712436,
"posZ": 0.0,
"rotX": 359.931335,
"rotY": 315.009155,
"rotZ": 359.955139,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "Tablet",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/1plY463.png",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "b08198",
"Name": "Custom_Tile",
"Transform": {
"posX": 0.0,
"posY": 8.712436,
"posZ": 0.0,
"rotX": 359.931335,
"rotY": 315.009155,
"rotZ": 359.955139,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "-1",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/w3XbrCC.png",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "6633aa",
"Name": "Custom_Tile",
"Transform": {
"posX": 0.0,
"posY": 8.712436,
"posZ": 0.0,
"rotX": 359.931335,
"rotY": 315.009155,
"rotZ": 359.955139,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "-1",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/w3XbrCC.png",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "6e0c0d",
"Name": "Custom_Tile",
"Transform": {
"posX": 0.0,
"posY": 8.712436,
"posZ": 0.0,
"rotX": 359.931335,
"rotY": 315.009155,
"rotZ": 359.955139,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "+1",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/uIx8jbY.png",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "e30eb1",
"Name": "Custom_Tile",
"Transform": {
"posX": 0.0,
"posY": 6.256218,
"posZ": 0.0,
"rotX": 359.931335,
"rotY": 315.009155,
"rotZ": 359.955139,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "-2",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/bfTg2hb.png",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "370e96",
"Name": "Custom_Tile",
"Transform": {
"posX": 0.0,
"posY": 8.712436,
"posZ": 0.0,
"rotX": 359.931335,
"rotY": 315.009155,
"rotZ": 359.955139,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "Cultist",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/VzhJJaH.png",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "15e190",
"Name": "Custom_Tile",
"Transform": {
"posX": 0.0,
"posY": 8.712436,
"posZ": 0.0,
"rotX": 359.931335,
"rotY": 315.009155,
"rotZ": 359.955139,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "-1",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/w3XbrCC.png",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "90356c",
"Name": "Custom_Tile",
"Transform": {
"posX": 0.0,
"posY": 8.712436,
"posZ": 0.0,
"rotX": 359.931335,
"rotY": 315.009155,
"rotZ": 359.955139,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "0",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/btEtVfd.png",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "708279",
"Name": "Custom_Tile",
"Transform": {
"posX": 34.4081154,
"posY": 1.43585539,
"posZ": -22.8922825,
"rotX": 359.920654,
"rotY": 254.949371,
"rotZ": 0.0371938832,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Data Helper",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": true,
"Grid": true,
"Snap": true,
"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/254843371583173230/BECDC34EB4D2C8C5F9F9933C97085F82A2F21AE3/",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 0,
"Thickness": 0.1,
"Stackable": false,
"Stretch": 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 \"Study\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\r\n \"Study_670914\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"Attic_377b20\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"Attic\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\r\n \"Cellar_5d3bcc\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"Cellar\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\r\n \"Bathroom\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"Bedroom\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"Far Above Your House\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"Deep Below Your House\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n\r\n \"Northside_86faac\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"Northside\": {\"type\" : \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\r\n \"Graveyard\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\r\n \"Miskatonic University_cedb0a\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"Miskatonic University\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\r\n \"Downtown_1aa7cb\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\r\n \"Downtown\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"St. Mary's Hospital\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"Easttown_88245c\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\r\n \"Easttown\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"Southside\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"Rivertown\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"Your House_377b20\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"Your House_b28633\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n\r\n \"Ritual Site\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\r\n \"Arkham Woods_e8e04b\": {\"type\": \"perPlayer\", \"value\": 0, \"clueSide\": \"back\"},\r\n \"Arkham Woods\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n\r\n \"New Orleans_5ab18a\": {\"type\": \"perPlayer\", \"value\": 0, \"clueSide\": \"back\"},\r\n \"New Orleans\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"Riverside_ab9d69\": {\"type\": \"perPlayer\", \"value\": 0, \"clueSide\": \"back\"},\r\n \"Riverside\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"Wilderness_3c5ea8\": {\"type\": \"perPlayer\", \"value\": 0, \"clueSide\": \"back\"},\r\n \"Wilderness\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"Unhallowed Land_552a1d\": {\"type\": \"perPlayer\", \"value\": 0, \"clueSide\": \"back\"},\r\n \"Unhallowed Land_15983c\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n\r\n \"Flooded Square\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"Streets of Venice\": {\"type\": \"fixed\", \"value\": 2, \"clueSide\": \"back\"},\r\n \"Rialto Bridge\": {\"type\": \"fixed\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"Venetian Garden\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"The Guardian\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\r\n \"Canal-side\": {\"type\": \"fixed\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"Accademia Bridge\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"Bridge of Sighs\": {\"type\": \"fixed\", \"value\": 2, \"clueSide\": \"back\"},\r\n\r\n \"Warren Observatory\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"Science Building\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"Orne Library\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"Administration Building\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"Student Union\": {\"type\": \"fixed\", \"value\": 2, \"clueSide\": \"back\"},\r\n \"Humanities Building\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\r\n \"Dormitories\": {\"type\": \"perPlayer\", \"value\": 3, \"clueSide\": \"back\"},\r\n \"Faculty Offices\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\r\n \"Faculty Offices_1c567d\": {\"type\": \"perPlayer\", \"value\": 0, \"clueSide\": \"back\"},\r\n\r\n \"La Bella Luna\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"Back Hall Doorway\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n\r\n \"Museum Entrance\": {\"type\": \"fixed\", \"value\": 2, \"clueSide\": \"back\"},\r\n \"Security Office\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\r\n \"Security Office_fcb3e4\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"Administration Office\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\r\n \"Administration Office_d2eb25\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"Exhibit Hall\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"Exhibit Hall_563240\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\r\n \"Exhibit Hall_f3ffb6\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\r\n \"Exhibit Hall_0b0c58\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\r\n \"Exhibit Hall_2d87e6\": {\"type\": \"perPlayer\", \"value\": 0, \"clueSide\": \"back\"},\r\n \"Exhibit Hall_da02ea\": {\"type\": \"perPlayer\", \"value\": 0, \"clueSide\": \"back\"},\r\n\r\n \"Train Car\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"Train Car_f3f902\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\r\n \"Train Car_905f69\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\r\n \"Train Car_a3a321\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\r\n \"Train Car_464528\": {\"type\": \"perPlayer\", \"value\": 0, \"clueSide\": \"back\"},\r\n \"Train Car_3cfca4\": {\"type\": \"fixed\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"Train Car_64ffb0\": {\"type\": \"fixed\", \"value\": 3, \"clueSide\": \"back\"},\r\n \"Train Car_0fb5f0\": {\"type\": \"perPlayer\", \"value\": 3, \"clueSide\": \"back\"},\r\n \"Engine Car\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\r\n\r\n \"House in the Reeds\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"Osborn's General Store\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"Congregational Church\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"Bishop's Brook\": {\"type\": \"fixed\", \"value\": 2, \"clueSide\": \"back\"},\r\n \"Burned Ruins\": {\"type\": \"fixed\", \"value\": 3, \"clueSide\": \"back\"},\r\n \"Schoolhouse\": {\"type\": \"fixed\", \"value\": 1, \"clueSide\": \"back\"},\r\n\r\n \"Dunwich Village\": {\"type\": \"fixed\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"Dunwich Village_ac4427\": {\"type\": \"fixed\", \"value\": 3, \"clueSide\": \"back\"},\r\n \"Cold Spring Glen\": {\"type\": \"fixed\", \"value\": 0, \"clueSide\": \"back\"},\r\n \"Cold Spring Glen_e58475\": {\"type\": \"fixed\", \"value\": 2, \"clueSide\": \"back\"},\r\n \"Ten-Acre Meadow\": {\"type\": \"fixed\", \"value\": 3, \"clueSide\": \"back\"},\r\n \"Ten-Acre Meadow_05b0dd\": {\"type\": \"fixed\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"Blasted Heath\": {\"type\": \"fixed\", \"value\": 3, \"clueSide\": \"back\"},\r\n \"Blasted Heath_995fe7\": {\"type\": \"fixed\", \"value\": 2, \"clueSide\": \"back\"},\r\n \"Whateley Ruins\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\r\n \"Devil's Hop Yard\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"Devil's Hop Yard_f7dd31\": {\"type\": \"fixed\", \"value\": 2, \"clueSide\": \"back\"},\r\n\r\n \"Base of the Hill\": {\"type\": \"fixed\", \"value\": 3, \"clueSide\": \"back\"},\r\n \"Base of the Hill_80236e\": {\"type\": \"fixed\", \"value\": 0, \"clueSide\": \"back\"},\r\n \"Ascending Path\": {\"type\": \"fixed\", \"value\": 3, \"clueSide\": \"back\"},\r\n \"Ascending Path_d3ae26\": {\"type\": \"fixed\", \"value\": 0, \"clueSide\": \"back\"},\r\n \"Sentinel Peak\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\r\n \"Diverging Path\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"Diverging Path_7239aa\": {\"type\": \"fixed\", \"value\": 0, \"clueSide\": \"back\"},\r\n \"Altered Path\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n\r\n \"The Edge of the Universe\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\r\n \"Tear Through Time\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\r\n \"Prismatic Cascade\": {\"type\": \"fixed\", \"value\": 3, \"clueSide\": \"front\"},\r\n \"Towering Luminosity\": {\"type\": \"fixed\", \"value\": 4, \"clueSide\": \"front\"},\r\n \"Tear Through Space\": {\"type\": \"fixed\", \"value\": 1, \"clueSide\": \"front\"},\r\n \"Endless Bridge\": {\"type\": \"fixed\", \"value\": 2, \"clueSide\": \"front\"},\r\n \"Dimensional Doorway\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\r\n \"Steps of Y'hagharl\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\r\n \"Unstable Vortex\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\r\n \"Indecipherable Stairs\": {\"type\": \"fixed\", \"value\": 1, \"clueSide\": \"front\"},\r\n\r\n \"Backstage Doorway\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"Backstage Doorway_0797a9\": {\"type\": \"fixed\", \"value\": 0, \"clueSide\": \"back\"},\r\n \"Lobby Doorway\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"Lobby Doorway_7605cf\": {\"type\": \"fixed\", \"value\": 0, \"clueSide\": \"back\"},\r\n \"Lobby\": {\"type\": \"fixed\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"Backstage\": {\"type\": \"fixed\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"Balcony\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n\r\n \"Foyer\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n\r\n \"Historical Society\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"Historical Society_40f79d\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\r\n \"Historical Society_b352f8\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\r\n \"Historical Society_0cf5d5\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\r\n \"Historical Society_abc0cb\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\r\n \"Historical Society_ab6a72\": {\"type\": \"fixed\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"Hidden Library\": {\"type\": \"perPlayer\", \"value\": 3, \"clueSide\": \"back\"},\r\n\r\n \"Patient Confinement\": {\"type\": \"fixed\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"Asylum Halls\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"Asylum Halls_f99530\": {\"type\": \"fixed\", \"value\": 0, \"clueSide\": \"back\"},\r\n \"Asylum Halls_576595\": {\"type\": \"fixed\", \"value\": 0, \"clueSide\": \"back\"},\r\n \"Infirmary\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"Basement Hall\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"Yard\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"Garden\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"Kitchen\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"Mess Hall\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\r\n\r\n \"Grand Guignol\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"Montmartre\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"Montmartre_cbaacc\": {\"type\": \"perPlayer\", \"value\": 0, \"clueSide\": \"front\"},\r\n \"Montparnasse\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"Notre-Dame\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"Gare d'Orsay\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"Opéra Garnier\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"Canal Saint-Martin\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"Le Marais\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"Gardens of Luxembourg\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"Père Lachaise Cemetery\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\r\n\r\n \"Catacombs\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\r\n \"Catacombs_29170f\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"Catacombs_f1237c\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"Catacombs_c3151e\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"Catacombs_14b1cb\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"Catacombs_81920c\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"Catacombs_c14c8b\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"Catacombs_ea2a55\": {\"type\": \"fixed\", \"value\": 0, \"clueSide\": \"back\"},\r\n \"Catacombs_8bcab3\": {\"type\": \"fixed\", \"value\": 0, \"clueSide\": \"back\"},\r\n \"Catacombs_7c7f4a\": {\"type\": \"fixed\", \"value\": 0, \"clueSide\": \"back\"},\r\n \"Catacombs_80cf41\": {\"type\": \"fixed\", \"value\": 0, \"clueSide\": \"back\"},\r\n\r\n \"Abbey Church\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"Porte de l'Avancée\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"Grand Rue\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"Cloister\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"Knight's Hall\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"Chœur Gothique\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"Outer Wall\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"Outer Wall_014bd6\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\r\n \"North Tower\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"North Tower_69eae5\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\r\n \"Chapel of St. Aubert\": {\"type\": \"perPlayer\", \"value\": 3, \"clueSide\": \"back\"},\r\n \"Chapel of St. Aubert_e75ba8\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\r\n \"Abbey Tower\": {\"type\": \"perPlayer\", \"value\": 3, \"clueSide\": \"back\"},\r\n \"Abbey Tower_2f3d21\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\r\n\r\n \"Shores of Hali\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"front\"},\r\n \"Dark Spires\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"front\"},\r\n \"Palace of the King\": {\"type\": \"perPlayer\", \"value\": 3, \"clueSide\": \"front\"},\r\n \"Palace of the King_60d758\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\r\n \"Ruins of Carcosa\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\r\n \"Dim Streets\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\r\n \"Depths of Demhe\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\r\n \"Bleak Plains\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\r\n \"Recesses of Your Own Mind\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"front\"},\r\n \"The Throne Room\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"front\"},\r\n \"Stage of the Ward Theatre\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"front\"},\r\n\r\n \"Serpent’s Haven\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"front\"},\r\n \"Ruins of Eztli\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"front\"},\r\n \"Rope Bridge\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\r\n \"Overgrown Ruins\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\r\n \"River Canyon\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\r\n \"Path of Thorns\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\r\n \"Temple of the Fang\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\r\n \"Circuitous Trail\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\r\n \"Riverside Temple\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\r\n \"Waterfall\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\r\n \"Trail of the Dead\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\r\n \"Cloud Forest\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"front\"},\r\n\r\n \"Chamber of Time\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"front\"},\r\n \"Ancient Hall\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"front\"},\r\n \"Ancient Hall_b9acb8\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\r\n \"Grand Chamber\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\r\n \"Entryway\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"Underground Ruins\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\r\n \"Burial Pit\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\r\n \"Secret Passage\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\r\n \"Snake Pit\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\r\n \"Throne Room\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\r\n \"Mosaic Chamber\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\r\n \"Tomb of the Ancients\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\r\n\r\n \"Town Hall\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"Curiositie Shoppe\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\r\n \"At the Station\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"At the Station_e0833c\": {\"type\": \"perPlayer\", \"value\": 0, \"clueSide\": \"back\"},\r\n \"Missing Persons\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\r\n \"The Relic is Missing!\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\r\n \"Trial of the Huntress\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\r\n \"Search for the Meaning\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\r\n \"Seeking Trouble\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\r\n \"Seeking Trouble_42f93b\": {\"type\": \"perPlayer\", \"value\": 0, \"clueSide\": \"back\"},\r\n\r\n \"Sacred Woods\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\r\n \"Chapultepec Hill\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"front\"},\r\n \"Chapultepec Hill_baec21\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\r\n \"Canals of Tenochtitlán\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\r\n \"Lake Xochimilco\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"front\"},\r\n \"Lake Xochimilco_59bf7d\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\r\n \"Templo Mayor\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"front\"},\r\n \"Templo Mayor_fb0083\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\r\n \"Temples of Tenochtitlán\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"front\"},\r\n \"Temples of Tenochtitlán_80cef8\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\r\n\r\n \"Mouth of K'n-yan_38a3e5\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"Stone Altar\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\r\n \"Time-Wracked Woods\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"front\"},\r\n \"Vast Passages\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\r\n \"Perilous Gulch\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\r\n \"Dark Hollow\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\r\n \"Hall of Idolatry\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"front\"},\r\n \"Crystal Pillars\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"front\"},\r\n \"Ruins of K’n-yan\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"front\"},\r\n \"Chthonian Depths\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\r\n \"Subterranean Swamp\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"front\"},\r\n \"Treacherous Descent\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\r\n\r\n \"Interview Room\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"Interview Room_b1861c\": {\"type\": \"perPlayer\", \"value\": 0, \"clueSide\": \"back\"},\r\n \"Halls of Pnakotus\": {\"type\": \"fixed\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"Deconstruction Room\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"Towers of Pnakotus\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\r\n \"Laboratory of the Great Race\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"Yithian Orrery\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"Great Library\": {\"type\": \"fixed\", \"value\": 4, \"clueSide\": \"back\"},\r\n \"Cyclopean Vaults\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"Alien Conservatory\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n\r\n \"City of the Serpents\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\r\n \"Bridge over N'kai\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\r\n \"Abandoned Site\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\r\n \"Caverns of Yoth\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\r\n \"Hall of Heresy\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\r\n \"Bright Canyon\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"front\"},\r\n \"Forked Path\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"front\"},\r\n\r\n \"Nexus of N'kai\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"A Pocket in Time\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\r\n \"City of the Unseen\": {\"type\": \"fixed\", \"value\": 1, \"clueSide\": \"front\"},\r\n \"Valusia\": {\"type\": \"fixed\", \"value\": 2, \"clueSide\": \"front\"},\r\n \"Great Hall of Celeano\": {\"type\": \"fixed\", \"value\": 3, \"clueSide\": \"front\"},\r\n \"Buenos Aires\": {\"type\": \"fixed\", \"value\": 3, \"clueSide\": \"front\"},\r\n \"Ultima Thule\": {\"type\": \"fixed\", \"value\": 2, \"clueSide\": \"front\"},\r\n\r\n \"Shores of R’lyeh\": {\"type\": \"fixed\", \"value\": 2, \"clueSide\": \"front\"},\r\n \"Atlantis\": {\"type\": \"fixed\", \"value\": 2, \"clueSide\": \"front\"},\r\n \"Pnakotus\": {\"type\": \"fixed\", \"value\": 3, \"clueSide\": \"front\"},\r\n \"Ruins of New York\": {\"type\": \"fixed\", \"value\": 3, \"clueSide\": \"front\"},\r\n \"Yuggoth\": {\"type\": \"fixed\", \"value\": 3, \"clueSide\": \"front\"},\r\n \"Mu\": {\"type\": \"fixed\", \"value\": 4, \"clueSide\": \"front\"},\r\n \"Plateau of Leng_0ab6ff\": {\"type\": \"fixed\", \"value\": 1, \"clueSide\": \"front\"},\r\n\r\n \"Billiards Room\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"Billiards Room_33990b\": {\"type\": \"perPlayer\", \"value\": 0, \"clueSide\": \"back\"},\r\n \"Trophy Room\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"Trophy Room_e9160a\": {\"type\": \"perPlayer\", \"value\": 0, \"clueSide\": \"back\"},\r\n \"Master Bedroom\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"Balcony_1b5483\": {\"type\": \"fixed\", \"value\": 0, \"clueSide\": \"back\"},\r\n \"Office\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\r\n \"Office_a1bd9a\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"Witch-Haunted Woods_1539ea\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\r\n \"Witch-Haunted Woods_db1663\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\r\n \"Witch-Haunted Woods\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"Witch-Haunted Woods_d3f8c3\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\r\n \"Witch-Haunted Woods_eca18e\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\r\n \"Paths into Twilight\": {\"type\": \"perPlayer\", \"value\": 3, \"clueSide\": \"back\"},\r\n\r\n \"The Imperial Entrance\": {\"type\": \"fixed\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"Dark Stairwell\": {\"type\": \"fixed\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"Stairway\": {\"type\": \"fixed\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"The Balcony\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"The Back Booths\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"The Lobby\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"Backroom Door\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\r\n \"Backroom Door_ed439d\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"The Dining Area\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\r\n \"The Dance Floor\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\r\n \"Gateway to the East\": {\"type\": \"fixed\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"Back Alley\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"Mingzhu Laundry\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"The Dragon's Den\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\r\n \"The Phoenix's Nest\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"Golden Temple of the Heavens\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\r\n \"Flea Market\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\r\n \"Zihao's House of Fighting Arts\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\r\n \"Daiyu's Tea Garden\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\r\n\r\n \"Moldy Halls\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"Decrepit Door\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"Walter Gilman's Room\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"Unknown Places_b538f8\": {\"type\": \"perPlayer\", \"value\": 0, \"clueSide\": \"back\"},\r\n \"Unknown Places_7bea34\": {\"type\": \"perPlayer\", \"value\": 0, \"clueSide\": \"back\"},\r\n \"Unknown Places\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\r\n \"Unknown Places_9a471d\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"Unknown Places_0ac3ea\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"Unknown Places_ea7a2b\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"Unknown Places_713ec2\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"Unknown Places_609112\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\r\n \"Strange Geometry\": {\"type\": \"fixed\", \"value\": 1, \"clueSide\": \"front\"},\r\n \"Site of the Sacrifice\": {\"type\": \"perPlayer\", \"value\": 3, \"clueSide\": \"back\"},\r\n\r\n \"Hangman's Brook\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"Abandoned Chapel\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\r\n \"Haunted Fields\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\r\n\r\n \"Lobby_1c2dfe\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"Lobby_bcd556\": {\"type\": \"perPlayer\", \"value\": 0, \"clueSide\": \"back\"},\r\n \"Lodge Gates_fa6a29\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"Lodge Gates\": {\"type\": \"perPlayer\", \"value\": 0, \"clueSide\": \"back\"},\r\n \"Lodge Cellar\": {\"type\": \"perPlayer\", \"value\": 0, \"clueSide\": \"back\"},\r\n \"Lodge Cellar_8ea4fd\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"Lounge\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\r\n \"Vault\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"Inner Sanctum\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"Library\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"Library_47ccbc\": {\"type\": \"perPlayer\", \"value\": 0, \"clueSide\": \"back\"},\r\n \"Sanctum Doorway\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\r\n \"Sanctum Doorway_4da6c3\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"Sanctum Doorway_587a15\": {\"type\": \"perPlayer\", \"value\": 0, \"clueSide\": \"back\"},\r\n\r\n \"The Geist-Trap\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"Forbidding Shore\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"Unvisited Isle\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\r\n\r\n \"Rivertown_92ee68\": {\"type\": \"fixed\", \"value\": 0, \"clueSide\": \"back\"},\r\n \"Rivertown_db4b20\": {\"type\": \"fixed\", \"value\": 0, \"clueSide\": \"back\"},\r\n \"Rivertown_ca2443\": {\"type\": \"fixed\", \"value\": 0, \"clueSide\": \"back\"},\r\n \"Southside_c898a0\": {\"type\": \"fixed\", \"value\": 0, \"clueSide\": \"back\"},\r\n \"Southside_e7f5fa\": {\"type\": \"fixed\", \"value\": 0, \"clueSide\": \"back\"},\r\n \"Southside_9fed9d\": {\"type\": \"fixed\", \"value\": 0, \"clueSide\": \"back\"},\r\n \"Silver Twilight Lodge\": {\"type\": \"fixed\", \"value\": 0, \"clueSide\": \"back\"},\r\n \"Silver Twilight Lodge_17e686\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"Hangman's Hill\": {\"type\": \"fixed\", \"value\": 0, \"clueSide\": \"back\"},\r\n \"Hangman's Hill_5f4d8a\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n\r\n \"Cosmic Ingress\": {\"type\": \"fixed\", \"value\": 3, \"clueSide\": \"back\"},\r\n \"Cosmos\": {\"type\": \"fixed\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"Cosmos_a89dbf\": {\"type\": \"fixed\", \"value\": 2, \"clueSide\": \"back\"},\r\n \"Cosmos_1a0ad2\": {\"type\": \"fixed\", \"value\": 2, \"clueSide\": \"back\"},\r\n \"Cosmos_30fc53\": {\"type\": \"fixed\", \"value\": 2, \"clueSide\": \"back\"},\r\n \"Cosmos_8f3e16\": {\"type\": \"fixed\", \"value\": 2, \"clueSide\": \"back\"},\r\n \"Cosmos_4e8ae3\": {\"type\": \"fixed\", \"value\": 2, \"clueSide\": \"back\"},\r\n \"Cosmos_a8d84d\": {\"type\": \"fixed\", \"value\": 4, \"clueSide\": \"back\"},\r\n \"Cosmos_7a3ece\": {\"type\": \"fixed\", \"value\": 6, \"clueSide\": \"back\"},\r\n \"Cosmos_311eb1\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\r\n \"Cosmos_6bd5ca\": {\"type\": \"perPlayer\", \"value\": 0, \"clueSide\": \"back\"},\r\n \"Cosmos_294c00\": {\"type\": \"fixed\", \"value\": 2, \"clueSide\": \"back\"},\r\n\r\n \"Seventy Steps\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"Seven Hundred Steps\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"Base of the Steps\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"Enchanted Woods\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n\r\n \"Stairwell\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"Basement Door_42fa87\": {\"type\": \"perPlayer\", \"value\": 0, \"clueSide\": \"back\"},\r\n \"Basement Door\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"Waiting Room\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"Emergency Room\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"Experimental Therapies Ward\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\r\n \"Records Office\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\r\n\r\n \"Foyer_9a9f9a\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"Room 245\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"Hotel Roof\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"Office_b3ed47\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\r\n \"Room 212\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\r\n \"Basement\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"Second Floor Hall\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"Room 225\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"Restaurant\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"Suite Balcony\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n\r\n \"Ulthar\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\r\n \"Dylath-Leen\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\r\n \"Mt. Ngranek\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\r\n \"Baharna\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\r\n \"Zulan-Thek\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\r\n \"Sarnath\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\r\n \"City-Which-Appears-On-No-Map\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"front\"},\r\n \"Celephaïs\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\r\n \"Nameless Ruins\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\r\n \"Kadatheron\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\r\n \"Ilek-Vad\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\r\n \"Ruins of Ib\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\r\n \"Temple of Unattainable Desires\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\r\n \"Hazuth-Kleg\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\r\n \"Serannian\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\r\n\r\n \"Mysterious Stairs\": {\"type\": \"perPlayer\", \"value\": 0, \"clueSide\": \"back\"},\r\n \"Mysterious Stairs_df1a40\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"Attic_10faf9\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"Unmarked Tomb\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"Upstairs Doorway\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"Front Porch\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"Downstairs Doorway\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"Downstairs Doorway_c93906\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\r\n \"Burial Ground\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n\r\n \"Temple of the Moon Lizard\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"City of the Moon-Beasts\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"Moon-Forest\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"The Dark Crater\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"Caverns Beneath the Moon\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"The Black Core\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"Light Side of the Moon\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n\r\n \"City of Gugs\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\r\n \"Vaults of Zin\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\r\n \"Plain of the Ghouls\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\r\n \"Sea of Bones\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\r\n \"Vale of Pnath\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\r\n \"Crag of the Ghouls\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"front\"},\r\n \"Sea of Pitch\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\r\n\r\n \"Plateau of Leng\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"Cold Wastes\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"Monastery of Leng\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\r\n \"Onyx Gates\": {\"type\": \"fixed\", \"value\": 12, \"clueSide\": \"back\"},\r\n \"Forsaken Tower\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n\r\n \"The Crater\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\r\n \"Quarantine Zone\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"Quarantine Zone_5f2a9b\": {\"type\": \"perPlayer\", \"value\": 0, \"clueSide\": \"back\"},\r\n \"Quarantine Zone_4a8e9c\": {\"type\": \"perPlayer\", \"value\": 0, \"clueSide\": \"back\"},\r\n \"Quarantine Zone_5193e9\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\r\n \"Quarantine Zone_b3a920\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\r\n\r\n \"The Great Web\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"The Great Web_39ace3\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\r\n \"The Great Web_727790\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\r\n \"The Great Web_5c5ec4\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\r\n \"The Great Web_361fd7\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\r\n \"The Great Web_dfdc8c\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\r\n\r\n \"Expedition Camp\": {\"type\": \"perPlayer\", \"value\": 0, \"clueSide\": \"back\"},\r\n \"Desert Oasis\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\r\n \"Untouched Vault\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\r\n \"Sands of Dashur\": {\"type\": \"perPlayer\", \"value\": 0, \"clueSide\": \"front\"},\r\n \"Sandswept Ruins\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\r\n \"Nile River\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\r\n \"Faceless Sphinx\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\r\n \"Dunes of the Sahara\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\r\n\r\n \"Streets of Cairo\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\r\n \"Cairo Bazaar\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"Temple Courtyard\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"Museum of Egyptian Antiquities\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"Outskirts of Cairo\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n\r\n \"Eldritch Gate\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\r\n \"Mist-Filled Caverns\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\r\n \"Stairway to Sarkomand\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\r\n \"Tunnels under Ngranek\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\r\n \"The Great Abyss\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\r\n \"A Dream Betwixt\": {\"type\": \"perPlayer\", \"value\": 0, \"clueSide\": \"front\"},\r\n\r\n \"Velma's Doghouse\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\r\n \"Barkham City Pound\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\r\n \"Barkham Asylum\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"Beasttown\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"Tailside\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"Slobbertown\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"Snoutside\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"Muttskatonic University\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"Boneyard\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\r\n \"St. Mary's Animal Hospital\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\r\n \r\n \"Arkham\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"Streets of New York City\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"The Penthouse\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"The Burning Pit\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"Streets of Providence\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"Athenaeum of the Empty Sky\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"The Arcade\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"Streets of Montréal\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"Chateau Ramezay\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"Shrine of Magh’an Ark’at\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n\r\n \"Unfamiliar Chamber\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"Tidal Tunnel\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"Tidal Tunnel_0f20fc\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\r\n \"Tidal Tunnel_d5566b\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\r\n \"Tidal Tunnel_dc9eb7\": {\"type\": \"perPlayer\", \"value\": 0, \"clueSide\": \"back\"},\r\n \"Tidal Tunnel_513d82\": {\"type\": \"perPlayer\", \"value\": 0, \"clueSide\": \"back\"},\r\n\r\n \"First National Grocery\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"Marsh Refinery\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"Innsmouth Square\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"Innsmouth Harbour\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\r\n \"Fish Street Bridge_b6b9b7\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"Gilman House\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"The Little Bookshop\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\r\n\r\n \"Innsmouth Jail_f63738\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\r\n \"New Church Green_d1ef9c\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"front\"},\r\n \"Sawbone Alley_899c2c\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"front\"},\r\n \"The House on Water Street_e4f53a\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"front\"},\r\n \"Shoreward Slums_24e42d\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\r\n \"Esoteric Order of Dagon_28c301\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\r\n\r\n \"Esoteric Order of Dagon_ef8cef\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"New Church Green_921a9b\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"Marsh Refinery_44c342\": {\"type\": \"fixed\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"The House on Water Street_104e07\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"The Little Bookshop_a17a82\": {\"type\": \"fixed\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"First National Grocery_9ae75c\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\r\n \"Fish Street Bridge_a358fc\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\r\n \"Innsmouth Harbour_30b2c0\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"Sawbone Alley_e58cff\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\r\n \"Gilman House_e589b8\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\r\n \"Innsmouth Jail_755fc0\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"Shoreward Slums_c0d0df\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"Desolate Coastline\": {\"type\": \"fixed\", \"value\": 1, \"clueSide\": \"back\"},\r\n\r\n \"Unfathomable Depths_cb5e3e\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\r\n \"Unfathomable Depths_7d180e\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"Unfathomable Depths_fdf43f\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\r\n \"Unfathomable Depths_431ca2\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"Unfathomable Depths_dfc9b4\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\r\n \"Unfathomable Depths_086743\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"Tidal Tunnel_0e611a\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\r\n \"Tidal Tunnel_b1a7f2\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\r\n\r\n \"Old Innsmouth Road\": {\"type\": \"perPlayer\", \"value\": 0, \"clueSide\": \"back\"},\r\n \"Old Innsmouth Road_07ba2e\": {\"type\": \"perPlayer\", \"value\": 3, \"clueSide\": \"back\"},\r\n \"Old Innsmouth Road_48b819\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"Old Innsmouth Road_02e79c\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"Old Innsmouth Road_27826a\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"Old Innsmouth Road_dd62cc\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"Old Innsmouth Road_687b03\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"Old Innsmouth Road_eb3303\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\r\n \"Old Innsmouth Road_bebfba\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\r\n \"Old Innsmouth Road_c36e38\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\r\n \"Old Innsmouth Road_175a8a\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\r\n \"Old Innsmouth Road_d2c47a\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\r\n \"Old Innsmouth Road_095dac\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\r\n \"Old Innsmouth Road_fe2e46\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\r\n \"Old Innsmouth Road_f35c3d\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\r\n \r\n \"Falcon Point Cliffside\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"Lighthouse Stairwell\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"Lantern Room\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\r\n \"Lighthouse Keeper's Cottage\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\r\n \r\n \"Tidal Tunnel_7eba72\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\r\n \"Tidal Tunnel_b4bcd8\": {\"type\": \"perPlayer\", \"value\": 0, \"clueSide\": \"back\"},\r\n \"Tidal Tunnel_4ba689\": {\"type\": \"perPlayer\", \"value\": 0, \"clueSide\": \"back\"},\r\n \"Tidal Tunnel_ffdbef\": {\"type\": \"perPlayer\", \"value\": 0, \"clueSide\": \"back\"},\r\n \r\n \"First Floor Hall\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"First Floor Hall\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"Second Floor Hall\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"Second Floor Hall_b06d36\": {\"type\": \"fixed\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"Third Floor Hall\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"Lair of Dagon\": {\"type\": \"perPlayer\", \"value\": 3, \"clueSide\": \"back\"},\r\n \r\n \"Tidal Tunnel_01c28f\": {\"type\": \"fixed\", \"value\": 1, \"clueSide\": \"back\"},\r\n \r\n \"Y'ha-nthlei\": {\"type\": \"perPlayer\", \"value\": 0, \"clueSide\": \"back\"},\r\n \"Y'ha-nthlei_014f88\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"Y'ha-nthlei_eca6a9\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"Y'ha-nthlei_3e58ef\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\r\n \"Y'ha-nthlei_ce1a94\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\r\n \"Y'ha-nthlei Sanctum\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"Lair of Dagon_819894\": {\"type\": \"perPlayer\", \"value\": 3, \"clueSide\": \"back\"},\r\n \"Lair of Hydra\": {\"type\": \"perPlayer\", \"value\": 3, \"clueSide\": \"back\"},\r\n \r\n \"Arkham Police Station\": {\"type\": \"fixed\", \"value\": 4, \"clueSide\": \"back\"},\r\n \r\n \"Senator Nathaniel Rhodes\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\r\n \"Wine Cellar\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"Wine Cellar_9d0410\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\r\n \"Wine Cellar_b882f3\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\r\n \"Hidden Passageway\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n \r\n \"Frozen Shores\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"Treacherous Path\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"Precarious Ice Sheet\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"Broad Snowdrifts\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\r\n \"Icy Wastes\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\r\n \"Rocky Crags\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\r\n \"Snow Graves\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\r\n \"Icebreaker Landing\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\r\n \"Frigid Cave\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\r\n \"Barrier Camp\": {\"type\": \"perPlayer\", \"value\": 3, \"clueSide\": \"back\"},\r\n \"Remnants of Lake's Camp\": {\"type\": \"perPlayer\", \"value\": 3, \"clueSide\": \"back\"},\r\n \"Crystalline Cavern\": {\"type\": \"perPlayer\", \"value\": 3, \"clueSide\": \"back\"},\r\n \r\n \"Prison of Memories\": {\"type\": \"perPlayer\", \"value\": 3, \"clueSide\": \"front\"},\r\n \"Base Camp\": {\"type\": \"perPlayer\", \"value\": 3, \"clueSide\": \"front\"},\r\n \"Deck of the Theodosia\": {\"type\": \"perPlayer\", \"value\": 3, \"clueSide\": \"front\"},\r\n \"University Halls\": {\"type\": \"perPlayer\", \"value\": 3, \"clueSide\": \"front\"},\r\n \"Hedge Maze\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"front\"},\r\n \"Deserted Station\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"front\"},\r\n \"Hedge Maze\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"front\"},\r\n \"Coastal Waters\": {\"type\": \"perPlayer\", \"value\": 4, \"clueSide\": \"front\"},\r\n \"Elder Chamber\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"front\"},\r\n \"Riverview Theatre\": {\"type\": \"perPlayer\", \"value\": 4, \"clueSide\": \"front\"},\r\n \"Standing Stones\": {\"type\": \"perPlayer\", \"value\": 4, \"clueSide\": \"front\"},\r\n \"Airfield\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"front\"},\r\n \"Alaskan Wilds\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"front\"},\r\n \"Cluttered Dormitory\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"front\"},\r\n \"Dyer's Classroom\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"front\"},\r\n \"Infirmary_80c56d\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"front\"},\r\n \"Dr. Kensler's Office\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"front\"},\r\n \"Moʻai Statues\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"front\"},\r\n \"Ottoman Front\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"front\"},\r\n \"The Black Stone\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"front\"},\r\n \r\n \"The Summit\": {\"type\": \"perPlayer\", \"value\": 3, \"clueSide\": \"back\"},\r\n \"Mountainside\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\r\n \"Mountainside_0dd2ac\": {\"type\": \"perPlayer\", \"value\": 0, \"clueSide\": \"back\"},\r\n \"Mountainside_62fb7b\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"Mountainside_0a512e\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"Mountainside_163ba8\": {\"type\": \"perPlayer\", \"value\": 3, \"clueSide\": \"back\"},\r\n \r\n \"Hidden Tunnel\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\r\n \"City Landscape\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"City Landscape_ec2d80\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\r\n \"City Landscape_d84841\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\r\n \r\n \r\n \"Ancient Facility\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"Ancient Facility_97d88d\": {\"type\": \"perPlayer\", \"value\": 0, \"clueSide\": \"back\"},\r\n \"Ancient Facility_0ff8d1\": {\"type\": \"perPlayer\", \"value\": 0, \"clueSide\": \"back\"},\r\n \"Ancient Facility_42f1ad\": {\"type\": \"perPlayer\", \"value\": 0, \"clueSide\": \"back\"},\r\n \"Ancient Facility_710850\": {\"type\": \"perPlayer\", \"value\": 0, \"clueSide\": \"back\"},\r\n \"Ancient Facility_27771a\": {\"type\": \"perPlayer\", \"value\": 0, \"clueSide\": \"back\"},\r\n \"Ancient Facility_f9fc4d\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\r\n \"Ancient Facility_baf524\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\r\n \"Ancient Facility_c70271\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\r\n \"The Gate of Y'quaa\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"Mist-Pylon\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\r\n \"Mist-Pylon_9ca053\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"Mist-Pylon_c320b1\": {\"type\": \"perPlayer\", \"value\": 3, \"clueSide\": \"back\"},\r\n \"Mist-Pylon_cc2b13\": {\"type\": \"perPlayer\", \"value\": 4, \"clueSide\": \"back\"},\r\n\r\n \"River Docks\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"Miskatonic University_cf8d9e\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"Miskatonic University_b6c3a5\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"Miskatonic University_fb6a7c\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"Arkham Gazette\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"Arkham Advertiser\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"O'Malley's Watch Shop\": {\"type\": \"perPlayer\", \"value\": 3, \"clueSide\": \"back\"},\r\n \"Tick-Tock Club_e1116a\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\r\n \"Tick-Tock Club\": {\"type\": \"perPlayer\", \"value\": 3, \"clueSide\": \"back\"},\r\n \r\n \"Childhood Home\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\r\n \"Ye Olde Magick Shoppe\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"Corrigan Industries\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n \r\n \"XXXX\": {\"type\": \"fixed\", \"value\": 2, \"clueSide\": \"back\"},\r\n \"xxx\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"}\r\n}\r\n]]\r\n--[[\r\nPlayer cards with token counts and types\r\n]]\r\nPLAYER_CARD_DATA_JSON = [[\r\n{\r\n \"xxx\": {\r\n \"tokenType\": \"resource\",\r\n \"tokenCount\": 3\r\n },\r\n \r\n \"yyy\": {\r\n \"tokenType\": \"resource\",\r\n \"tokenCount\": 3\r\n }\r\n}\r\n]]\r\n\r\n-- Encounter Cards with Hidden.\r\nHIDDEN_CARD_DATA = {\r\n \"Visions in Your Mind (Death)\",\r\n \"Visions in Your Mind (Failure)\",\r\n \"Visions in Your Mind (Hatred)\",\r\n \"Visions in Your Mind (Horrors)\",\r\n \"Gift of Madness (Misery)\",\r\n \"Gift of Madness (Pity)\",\r\n \"Possession (Murderous)\",\r\n \"Possession (Torturous)\",\r\n \"Possession (Traitorous)\",\r\n \r\n \"Whispers in Your Head (Anxiety)\",\r\n \"Whispers in Your Head (Dismay)\",\r\n \"Whispers in Your Head (Doubt)\",\r\n \"Whispers in Your Head (Dread)\",\r\n \"Delusory Evils\",\r\n \"Hastur's Gaze\",\r\n \"Hastur's Grasp\",\r\n \r\n \"Law of 'Ygiroth (Chaos)\",\r\n \"Law of 'Ygiroth (Discord)\",\r\n \"Law of 'Ygiroth (Pandemonium)\",\r\n \"Nyarlathotep\",\r\n \"Restless Journey (Fallacy)\",\r\n \"Restless Journey (Hardship)\",\r\n \"Restless Journey (Lies)\",\r\n \"Whispering Chaos (East)\",\r\n \"Whispering Chaos (North)\",\r\n \"Whispering Chaos (South)\",\r\n \"Whispering Chaos (West)\"\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\nPLAYER_CARD_TOKEN_OFFSETS = {\r\n [1] = {\r\n { 0, 3, -0.2 },\r\n },\r\n [2] = {\r\n { 0.4, 3, -0.2 },\r\n { -0.4, 3, -0.2 },\r\n },\r\n [3] = {\r\n { 0, 3, -0.9 },\r\n { 0.4, 3, -0.2 },\r\n { -0.4, 3, -0.2 },\r\n },\r\n [4] = {\r\n { 0.4, 3, -0.9 },\r\n { -0.4, 3, -0.9 },\r\n { 0.4, 3, -0.2 },\r\n { -0.4, 3, -0.2 }\r\n },\r\n [5] = {\r\n { 0.7, 3, -0.9 },\r\n { 0, 3, -0.9 },\r\n { -0.7, 3, -0.9 },\r\n { 0.4, 3, -0.2 },\r\n { -0.4, 3, -0.2 }\r\n },\r\n [6] = {\r\n { 0.7, 3, -0.9 },\r\n { 0, 3, -0.9 },\r\n { -0.7, 3, -0.9 },\r\n { 0.7, 3, -0.2 },\r\n { 0, 3, -0.2 },\r\n { -0.7, 3, -0.2 },\r\n },\r\n [7] = {\r\n { 0.7, 3, -0.9 },\r\n { 0, 3, -0.9 },\r\n { -0.7, 3, -0.9 },\r\n { 0.7, 3, -0.2 },\r\n { 0, 3, -0.2 },\r\n { -0.7, 3, -0.2 },\r\n { 0, 3, 0.5 },\r\n },\r\n [8] = {\r\n { 0.7, 3, -0.9 },\r\n { 0, 3, -0.9 },\r\n { -0.7, 3, -0.9 },\r\n { 0.7, 3, -0.2 },\r\n { 0, 3, -0.2 },\r\n { -0.7, 3, -0.2 },\r\n { -0.35, 3, 0.5 },\r\n { 0.35, 3, 0.5 },\r\n },\r\n [9] = {\r\n { 0.7, 3, -0.9 },\r\n { 0, 3, -0.9 },\r\n { -0.7, 3, -0.9 },\r\n { 0.7, 3, -0.2 },\r\n { 0, 3, -0.2 },\r\n { -0.7, 3, -0.2 },\r\n { 0.7, 3, 0.5 },\r\n { 0, 3, 0.5 },\r\n { -0.7, 3, 0.5 },\r\n },\r\n [12] = {\r\n { 0.7, 3, -0.9 },\r\n { 0, 3, -0.9 },\r\n { -0.7, 3, -0.9 },\r\n { 0.7, 3, -0.2 },\r\n { 0, 3, -0.2 },\r\n { -0.7, 3, -0.2 },\r\n { 0.7, 3, 0.5 },\r\n { 0, 3, 0.5 },\r\n { -0.7, 3, 0.5 },\r\n { 0.7, 3, 1.2 },\r\n { 0, 3, 1.2 },\r\n { -0.7, 3, 1.2 },\r\n }\r\n\r\n}\r\n\r\nmodeData = {\r\n ['Core Set'] = {\r\n easy = { token = { 'p1', 'p1', '0', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'skull', 'skull', 'cultist', 'tablet', 'red', 'blue' } },\r\n normal = { token = { 'p1', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'm3', 'm4', 'skull', 'skull', 'cultist', 'tablet', 'red', 'blue' } },\r\n hard = { token = { '0', '0', '0', 'm1', 'm1', 'm2', 'm2', 'm3', 'm3', 'm4', 'm5', 'skull', 'skull', 'cultist', 'tablet', 'red', 'blue' } },\r\n expert = { token = { '0', 'm1', 'm1', 'm2', 'm2', 'm3', 'm3', 'm4', 'm4', 'm5', 'm6', 'm8', 'skull', 'skull', 'cultist', 'tablet', 'red', 'blue' } }\r\n },\r\n ['The Devourer Below'] = {\r\n easy = { parent = 'Core Set', append = { 'elder' }, message = 'An additional token for the preparation of this scenario has been added to the bag.' },\r\n normal = { parent = 'Core Set', append = { 'elder' }, message = 'An additional token for the preparation of this scenario has been added to the bag.' },\r\n hard = { parent = 'Core Set', append = { 'elder' }, message = 'An additional token for the preparation of this scenario has been added to the bag.' },\r\n expert = { parent = 'Core Set', append = { 'elder' }, message = 'An additional token for the preparation of this scenario has been added to the bag.' }\r\n },\r\n -----------------The Dunwich Legacy\r\n\r\n ['The Dunwich Legacy'] = {\r\n easy = { token = { 'p1', 'p1', '0', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'skull', 'skull', 'cultist', 'red', 'blue' } },\r\n normal = { token = { 'p1', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'm3', 'm4', 'skull', 'skull', 'cultist', 'red', 'blue' } },\r\n hard = { token = { '0', '0', '0', 'm1', 'm1', 'm2', 'm2', 'm3', 'm3', 'm4', 'm5', 'skull', 'skull', 'cultist', 'red', 'blue' } },\r\n expert = { token = { '0', 'm1', 'm1', 'm2', 'm2', 'm3', 'm3', 'm4', 'm4', 'm5', 'm6', 'm8', 'skull', 'skull', 'cultist', 'red', 'blue' } }\r\n },\r\n ['The Miskatonic Museum'] = {\r\n standalone = { token = { 'p1', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'm3', 'm4', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } }\r\n },\r\n ['The Essex County Express'] = {\r\n standalone = { token = { 'p1', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'm3', 'm3', 'm4', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } }\r\n },\r\n ['Blood on the Altar'] = {\r\n standalone = { token = { 'p1', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'm3', 'm3', 'm4', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } }\r\n },\r\n ['Undimensioned and Unseen'] = {\r\n standalone = { token = { 'p1', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'm3', 'm3', 'm4', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } }\r\n },\r\n ['Where Doom Awaits'] = {\r\n standalone = { token = { 'p1', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'm3', 'm3', 'm4', 'm5', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } }\r\n },\r\n ['Lost in Time and Space'] = {\r\n standalone = { token = { 'p1', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'm3', 'm3', 'm4', 'm5', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } }\r\n },\r\n -----------------The Path to Carcosa\r\n\r\n ['The Path to Carcosa'] = {\r\n easy = { token = { 'p1', 'p1', '0', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'skull', 'skull', 'skull', 'red', 'blue' } },\r\n normal = { token = { 'p1', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'm3', 'm4', 'skull', 'skull', 'skull', 'red', 'blue' } },\r\n hard = { token = { '0', '0', '0', 'm1', 'm1', 'm2', 'm2', 'm3', 'm3', 'm4', 'm5', 'skull', 'skull', 'skull', 'red', 'blue' } },\r\n expert = { token = { '0', 'm1', 'm1', 'm2', 'm2', 'm3', 'm3', 'm4', 'm4', 'm5', 'm6', 'm8', 'skull', 'skull', 'skull', 'red', 'blue' } }\r\n },\r\n ['The Last King'] = {\r\n standalone = { token = { 'p1', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'm3', 'm4', 'skull', 'skull', 'skull', 'red', 'blue' }, random = { {'cultist', 'cultist'}, {'tablet', 'tablet'}, {'elder', 'elder'} } }\r\n },\r\n ['Echoes of the Past'] = {\r\n standalone = { token = { 'p1', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'm3', 'm4', 'skull', 'skull', 'skull', 'red', 'blue' }, random = { {'cultist', 'cultist'}, {'tablet', 'tablet'}, {'elder', 'elder'} } }\r\n },\r\n ['The Unspeakable Oath'] = {\r\n standalone = { token = { 'p1', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'm3', 'm3', 'm4', 'skull', 'skull', 'skull', 'red', 'blue' }, random = { {'cultist', 'cultist'}, {'tablet', 'tablet'}, {'elder', 'elder'} } }\r\n },\r\n ['A Phantom of Truth'] = {\r\n standalone = { token = { 'p1', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'm3', 'm3', 'm4', 'skull', 'skull', 'skull', 'red', 'blue' }, random = { {'cultist', 'cultist'}, {'tablet', 'tablet'}, {'elder', 'elder'} } }\r\n },\r\n ['The Pallid Mask'] = {\r\n standalone = { token = { 'p1', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'm3', 'm3', 'm4', 'skull', 'skull', 'skull', 'red', 'blue' }, random = { {'cultist', 'cultist'}, {'tablet', 'tablet'}, {'elder', 'elder'} } }\r\n },\r\n ['Black Stars Rise'] = {\r\n standalone = { token = { 'p1', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'm3', 'm3', 'm4', 'm5', 'skull', 'skull', 'skull', 'red', 'blue' }, random = { {'cultist', 'cultist'}, {'tablet', 'tablet'}, {'elder', 'elder'} } }\r\n },\r\n ['Dim Carcosa'] = {\r\n standalone = { token = { 'p1', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'm3', 'm3', 'm4', 'm5', 'skull', 'skull', 'skull', 'red', 'blue' } }\r\n },\r\n -----------------The Forgotten Age\r\n\r\n ['The Forgotten Age'] = {\r\n easy = { token = { 'p1', 'p1', '0', '0', '0', 'm1', 'm1', 'm2', 'm3', 'skull', 'skull', 'elder', 'red', 'blue' } },\r\n normal = { token = { 'p1', '0', '0', '0', 'm1', 'm2', 'm2', 'm3', 'm5', 'skull', 'skull', 'elder', 'red', 'blue' } },\r\n hard = { token = { 'p1', '0', '0', 'm1', 'm2', 'm3', 'm3', 'm4', 'm6', 'skull', 'skull', 'elder', 'red', 'blue' } },\r\n expert = { token = { '0', 'm1', 'm2', 'm2', 'm3', 'm3', 'm4', 'm4', 'm6', 'm8', 'skull', 'skull', 'elder', 'red', 'blue' } }\r\n },\r\n ['The Doom of Eztli'] = {\r\n standalone = { token = { 'p1', '0', '0', '0','m1', 'm2', 'm2', 'm3', 'm5', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } }\r\n },\r\n ['Threads of Fate'] = {\r\n standalone = { token = { 'p1', '0', '0', '0','m1', 'm2', 'm2', 'm3', 'm5', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } }\r\n },\r\n ['The Boundary Beyond'] = {\r\n standalone = { token = { 'p1', '0', '0', '0','m1', 'm2', 'm2', 'm3', 'm5', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } }\r\n },\r\n ['The City of Archives'] = {\r\n standalone = { token = { 'p1', '0', '0', '0','m1', 'm2', 'm2', 'm3', 'm5', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } }\r\n },\r\n ['The Depths of Yoth'] = {\r\n standalone = { token = { 'p1', '0', '0', '0','m1', 'm2', 'm2', 'm3', 'm5', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } }\r\n },\r\n ['Heart of the Elders'] = {\r\n standalone = { token = { 'p1', '0', '0', '0','m1', 'm2', 'm2', 'm3', 'm5', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } }\r\n },\r\n ['Shattered Aeons'] = {\r\n standalone = { token = { 'p1', '0', '0', '0','m1', 'm2', 'm2', 'm3', 'm4', 'm5', 'skull', 'skull', 'elder', 'red', 'blue' } }\r\n },\r\n\r\n -----------------The Circle Undone\r\n\r\n ['The Circle Undone'] = {\r\n easy = { token = { 'p1', 'p1', '0', '0', '0', 'm1', 'm1', 'm2', 'm3', 'skull', 'skull', 'red', 'blue' } },\r\n normal = { token = { 'p1', '0', '0', 'm1', 'm1', 'm2', 'm2', 'm3', 'm4', 'skull', 'skull', 'red', 'blue' } },\r\n hard = { token = { '0', '0', 'm1', 'm1', 'm2', 'm2', 'm3', 'm4', 'm5', 'skull', 'skull', 'red', 'blue' } },\r\n expert = { token = { '0', 'm1', 'm1', 'm2', 'm2', 'm3', 'm4', 'm6', 'm8', 'skull', 'skull', 'red', 'blue' } }\r\n },\r\n [\"At Death's Doorstep\"] = {\r\n standalone = { token = { 'p1', '0', '0', 'm1','m1', 'm2', 'm2', 'm3', 'm4', 'skull', 'skull', 'tablet', 'elder', 'red', 'blue' } }\r\n },\r\n ['The Secret Name'] = {\r\n standalone = { token = { 'p1', '0', '0', 'm1','m1', 'm2', 'm2', 'm3', 'm4', 'skull', 'skull', 'tablet', 'elder', 'red', 'blue' } }\r\n },\r\n ['The Wages of Sin'] = {\r\n standalone = { token = { 'p1', '0', '0', 'm1','m1', 'm2', 'm2', 'm3', 'm4', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } }\r\n },\r\n ['For the Greater Good'] = {\r\n standalone = { token = { 'p1', '0', '0', 'm1','m1', 'm2', 'm2', 'm3', 'm4', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } }\r\n },\r\n ['Union and Disillusion'] = {\r\n standalone = { token = { 'p1', '0', '0', 'm1','m1', 'm2', 'm2', 'm3', 'm4', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } }\r\n },\r\n ['In the Clutches of Chaos'] = {\r\n standalone = { token = { 'p1', '0', '0', 'm1','m1', 'm2', 'm2', 'm3', 'm4', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } }\r\n },\r\n ['Before the Black Throne'] = {\r\n standalone = { token = { 'p1', '0', '0', 'm1','m1', 'm2', 'm2', 'm3', 'm4', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } }\r\n },\r\n\r\n\r\n -----------------The Dream-Eaters\r\n\r\n ['TDE_A'] = {\r\n easy = { token = { 'p1', 'p1', '0', '0', '0', 'm1', 'm1', 'm2', 'm2', 'cultist', 'tablet', 'tablet', 'red', 'blue' } },\r\n normal = { token = { 'p1', '0', '0', 'm1', 'm1', 'm2', 'm2', 'm3', 'm4', 'cultist', 'tablet', 'tablet', 'red', 'blue' } },\r\n hard = { token = { '0', '0', 'm1', 'm1', 'm2', 'm2', 'm3', 'm3', 'm4', 'm5', 'cultist', 'tablet', 'tablet', 'red', 'blue' } },\r\n expert = { token = { '0', 'm1', 'm1', 'm2', 'm2', 'm3', 'm4', 'm4', 'm5', 'm6', 'm8', 'cultist', 'tablet', 'tablet', 'red', 'blue' } }\r\n },\r\n ['TDE_B'] = {\r\n easy = { token = { 'p1', 'p1', '0', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'skull', 'skull', 'cultist', 'elder', 'elder', 'red', 'blue' } },\r\n normal = { token = { 'p1', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'm3', 'm4', 'skull', 'skull', 'cultist', 'elder', 'elder', 'red', 'blue' } },\r\n hard = { token = { '0', '0', '0', 'm1', 'm1', 'm2', 'm2', 'm3', 'm3', 'm4', 'm5', 'skull', 'skull', 'cultist', 'elder', 'elder', 'red', 'blue' } },\r\n expert = { token = { '0', 'm1', 'm1', 'm2', 'm2', 'm3', 'm3', 'm4', 'm4', 'm5', 'm6', 'm8', 'skull', 'skull', 'cultist', 'elder', 'elder', 'red', 'blue' } }\r\n },\r\n ['The Search For Kadath'] = {\r\n standalone = { token = { 'p1', '0', '0', 'm1', 'm1', 'm2', 'm2', 'm3', 'm4', 'skull', 'skull', 'skull', 'cultist', 'tablet', 'tablet', 'red', 'blue' } }\r\n },\r\n ['A Thousand Shapes of Horror'] = {\r\n standalone = { token = { 'p1', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'm3', 'm4', 'skull', 'skull', 'cultist', 'elder', 'elder', 'red', 'blue' } }\r\n },\r\n ['Dark Side of the Moon'] = {\r\n standalone = { token = { 'p1', '0', '0', 'm1', 'm1', 'm2', 'm2', 'm3', 'm4', 'skull', 'skull', 'skull', 'cultist', 'tablet', 'tablet', 'red', 'blue' } }\r\n },\r\n ['Point of No Return'] = {\r\n standalone = { token = { 'p1', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'm3', 'm4', 'skull', 'skull', 'skull', 'cultist', 'elder', 'elder', 'red', 'blue' } }\r\n },\r\n ['Where the Gods Dwell'] = {\r\n standalone = { token = { 'p1', '0', '0', 'm1', 'm1', 'm2', 'm2', 'm3', 'm4', 'skull', 'skull', 'skull', 'cultist', 'tablet', 'tablet', 'red', 'blue' } }\r\n },\r\n ['Weaver of the Cosmos'] = {\r\n standalone = { token = { 'p1', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'm3', 'm4', 'skull', 'skull', 'skull', 'cultist', 'elder', 'elder', 'red', 'blue' } }\r\n },\r\n\r\n\r\n -----------------The Innsmouth Conspiracy\r\n ['The Innsmouth Conspiracy'] = {\r\n easy = { token = { 'p1', 'p1', '0', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'skull', 'skull', 'cultist', 'cultist', 'tablet', 'tablet', 'elder', 'elder', 'red', 'blue' } },\r\n normal = { token = { 'p1', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'm3', 'm4', 'skull', 'skull', 'cultist', 'cultist', 'tablet', 'tablet', 'elder', 'elder', 'red', 'blue' } },\r\n hard = { token = { '0', '0', '0', 'm1', 'm1', 'm2', 'm2', 'm3', 'm3', 'm4', 'm5', 'skull', 'skull', 'cultist', 'cultist', 'tablet', 'tablet', 'elder', 'elder', 'red', 'blue' } } ,\r\n expert = { token = { '0', 'm1', 'm1', 'm2', 'm2', 'm3', 'm3', 'm4', 'm4', 'm5', 'm6', 'm8', 'skull', 'skull', 'cultist', 'cultist', 'tablet', 'tablet', 'elder', 'elder', 'red', 'blue' } }\r\n },\r\n ['TIC_Standalone'] = {\r\n standalone = { token = { 'p1', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'm3', 'm4', 'skull', 'skull', 'cultist', 'cultist', 'tablet', 'tablet', 'elder', 'elder', 'red', 'blue' } }\r\n },\r\n \r\n -----------------Edge of the Earth\r\n ['Edge of the Earth'] = {\r\n easy = { token = { 'p1', 'p1', 'p1', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'skull', 'skull', 'cultist', 'tablet', 'red', 'blue' } },\r\n normal = { token = { 'p1', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'm3', 'm4', 'frost', 'skull', 'skull', 'cultist', 'tablet', 'red', 'blue' } },\r\n hard = { token = { '0', '0', 'm1', 'm1', 'm2', 'm2', 'm3', 'm4', 'm4', 'm5', 'frost', 'frost', 'skull', 'skull', 'cultist', 'tablet', 'red', 'blue' } },\r\n expert = { token = { '0', 'm1', 'm2', 'm2', 'm3', 'm4', 'm4', 'm5', 'm7', 'frost', 'frost', 'frost', 'skull', 'skull', 'cultist', 'tablet', 'red', 'blue' } }\r\n },\r\n \r\n ['City of the Elder Things'] = {\r\n easy = { token = { 'p1', 'p1', 'p1', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } },\r\n normal = { token = { 'p1', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'm3', 'm4', 'frost', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } },\r\n hard = { token = { '0', '0', 'm1', 'm1', 'm2', 'm2', 'm3', 'm4', 'm4', 'm5', 'frost', 'frost', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } },\r\n expert = { token = { '0', 'm1', 'm2', 'm2', 'm3', 'm4', 'm4', 'm5', 'm7', 'frost', 'frost', 'frost', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } }\r\n },\r\n \r\n -----------------The Side Missions\r\n --official\r\n ['Curse of the Rougarou'] = {\r\n normal = { token = { 'p1', 'p1', '0', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'm3', 'm3', 'm4', 'm4', 'm5', 'm6', 'skull', 'skull', 'cultist', 'cultist', 'tablet', 'elder', 'red', 'blue' } },\r\n hard = { token = { 'p1', '0', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'm3', 'm3', 'm4', 'm4', 'm5', 'm5', 'm6', 'm8', 'skull', 'skull', 'skull', 'cultist', 'cultist', 'tablet', 'elder', 'red', 'blue' } }\r\n },\r\n ['Carnevale of Horrors'] = {\r\n normal = { token = { 'p1', '0', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm3', 'm4', 'm6', 'skull', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } },\r\n hard = { token = { 'p1', '0', '0', '0', 'm1', 'm1', 'm3', 'm4', 'm5', 'm6', 'm7', 'skull', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } }\r\n },\r\n ['The Labyrinths of Lunacy'] = {\r\n normal = { token = { 'p1', '0', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'm3', 'm4', 'm5', 'skull', 'skull', 'red', 'blue' } },\r\n hard = { token = { 'p1', '0','m1', 'm1', 'm1', 'm2', 'm2', 'm2', 'm3', 'm4', 'm5', 'm6', 'skull', 'skull', 'red', 'blue' } }\r\n },\r\n ['Guardians of the Abyss'] = {\r\n normal = { token = { 'p1', 'p1', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'm3', 'm3', 'm4', 'm6', 'skull', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } },\r\n hard = { token = { 'p1', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'm2', 'm3', 'm3', 'm4', 'm4', 'm5', 'm7', 'skull', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } },\r\n },\r\n ['Excelsior'] = {\r\n normal = { token = { 'p1', '0', 'm1', 'm1', 'm2', 'm3', 'm3', 'm4', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } },\r\n hard = { token = { '0', 'm1', 'm2', 'm3', 'm4', 'm4', 'm5', 'm6', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } },\r\n },\r\n ['Read or Die'] = {\r\n easy = { token = { 'p1', 'p1', '0', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } },\r\n normal = { token = { 'p1', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'm3', 'm4', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } },\r\n hard = { token = { '0', '0', 'm1', 'm1', 'm2', 'm2', 'm3', 'm4', 'm5', 'm6', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } },\r\n expert = { token = { '0', 'm1', 'm2', 'm3', 'm4', 'm5', 'm6', 'm7', 'm8', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } }\r\n },\r\n ['All or Nothing'] = {\r\n easy = { token = { 'p1', 'p1', '0', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } },\r\n normal = { token = { 'p1', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'm3', 'm4', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } },\r\n hard = { token = { '0', '0', 'm1', 'm1', 'm2', 'm2', 'm3', 'm4', 'm5', 'm6', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } },\r\n expert = { token = { '0', 'm1', 'm2', 'm3', 'm4', 'm5', 'm6', 'm7', 'm8', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } }\r\n },\r\n\r\n ['Meowlathotep'] = {\r\n easy = { token = { 'p1', 'p1', '0', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } },\r\n normal = { token = { 'p1', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'm3', 'm4', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } },\r\n hard = { token = { '0', '0', '0', 'm1', 'm1', 'm2', 'm2', 'm3', 'm3', 'm4', 'm5', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } },\r\n expert = { token = { '0', 'm1', 'm1', 'm2', 'm2', 'm3', 'm3', 'm4', 'm4', 'm5', 'm6', 'm8', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } }\r\n },\r\n \r\n ['WotOG'] = {\r\n easy = { token = { 'p1', 'p1', '0', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'skull', 'skull', 'skull', 'red', 'blue' } },\r\n normal = { token = { 'p1', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'm3', 'm4', 'skull', 'skull', 'skull', 'red', 'blue' } },\r\n hard = { token = { '0', '0', 'm1', 'm1', 'm2', 'm2', 'm3', 'm4', 'm5', 'm6', 'skull', 'skull', 'skull', 'red', 'blue' } },\r\n expert = { token = { '0', 'm1', 'm2', 'm3', 'm4', 'm5', 'm6', 'm7', 'm8', 'skull', 'skull', 'skull', 'red', 'blue' } }\r\n },\r\n \r\n ['Bad Blood'] = {\r\n easy = { token = { 'p1', 'p1', '0', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } },\r\n normal = { token = { 'p1', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'm3', 'm4', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } },\r\n hard = { token = { '0', '0', 'm1', 'm1', 'm2', 'm2', 'm3', 'm4', 'm5', 'm6', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } },\r\n expert = { token = { '0', 'm1', 'm2', 'm3', 'm4', 'm5', 'm6', 'm7', 'm8', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } }\r\n },\r\n \r\n ['Machinations'] = {\r\n easy = { token = { 'p1', 'p1', 'p1', '0', '0', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } },\r\n normal = { token = { 'p1', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'm3', 'm4', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } },\r\n hard = { token = { '0', '0', 'm1', 'm1', 'm1', 'm2', 'm3', 'm4', 'm6', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'elder', 'red', 'blue' } },\r\n expert = { token = { '0', 'm1', 'm1', 'm2', 'm3', 'm4', 'm5', 'm6', 'm8', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'elder', 'red', 'blue' } }\r\n },\r\n \r\n ['Red Tide'] = {\r\n easy = { token = { 'p1', 'p1', '0', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'skull', 'skull', 'cultist', 'cultist', 'tablet', 'elder', 'red', 'blue' } },\r\n normal = { token = { 'p1', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'm3', 'm4', 'skull', 'skull', 'cultist', 'cultist', 'tablet', 'elder', 'red', 'blue' } },\r\n hard = { token = { '0', '0', 'm1', 'm1', 'm2', 'm2', 'm3', 'm4', 'm5', 'm6', 'skull', 'skull', 'cultist', 'cultist', 'tablet', 'elder', 'red', 'blue' } },\r\n expert = { token = { '0', 'm1', 'm2', 'm3', 'm4', 'm5', 'm6', 'm7', 'm8', 'skull', 'skull', 'cultist', 'cultist', 'tablet', 'elder', 'red', 'blue' } }\r\n },\r\n\r\n --fan-made\r\n ['Carnevale of Spiders'] = {\r\n normal = { token = { 'p1', '0', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm3', 'm4', 'm6', 'skull', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } },\r\n hard = { token = { 'p1', '0', '0', '0', 'm1', 'm1', 'm3', 'm4', 'm5', 'm6', 'm7', 'skull', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } }\r\n },\r\n\r\n ['The Nephew Calls'] = {\r\n easy = { token = { 'p1', 'p1', '0', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } },\r\n normal = { token = { 'p1', '0', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'm3', 'm4', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } },\r\n hard = { token = { '0', '0', '0', 'm1', 'm2', 'm3', 'm3', 'm4', 'm5', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } },\r\n expert = { token = { '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'm3', 'm3', 'm3', 'm4', 'm4', 'm5', 'm6', 'm8', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } }\r\n },\r\n ['The Outsider'] = {\r\n easy = { token = { 'p1', 'p1', '0', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } },\r\n normal = { token = { 'p1', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'm3', 'm4', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } }\r\n },\r\n ['Stranger Things'] = {\r\n normal = { token = { 'p1', '0', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm3', 'm4', 'm5', 'skull', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } },\r\n hard = { token = { 'p1', '0', '0', '0', 'm1', 'm1', 'm2', 'm3', 'm4', 'm5', 'm6', 'skull', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } }\r\n },\r\n ['Winter Winds'] = {\r\n easy = { token = { 'p1', 'p1', '0', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm3', 'skull', 'cultist', 'red', 'blue' } },\r\n normal = { token = { 'p1', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'm3', 'm4', 'skull', 'cultist', 'red', 'blue' } },\r\n hard = { token = { '0', '0', 'm1', 'm1', 'm2', 'm2', 'm3', 'm4', 'm5', 'm6', 'skull', 'cultist', 'red', 'blue' } },\r\n expert = { token = { '0', 'm1', 'm1', 'm2', 'm3', 'm4', 'm5', 'm6', 'm7', 'm8', 'skull', 'cultist', 'red', 'blue' } }\r\n },\r\n ['The Festival'] = {\r\n normal = { token = { 'p1', '0', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm3', 'm4', 'm6', 'skull', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } },\r\n hard = { token = { 'p1', '0', '0', '0', 'm1', 'm1', 'm3', 'm4', 'm5', 'm6', 'm7', 'skull', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } }\r\n },\r\n ['Forbidding Desert'] = {\r\n easy = { token = { 'p1', 'p1', '0', '0', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'skull', 'skull', 'cultist', 'tablet', 'red', 'blue' } },\r\n normal = { token = { '0', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'm3', 'm4', 'skull', 'skull', 'cultist', 'tablet', 'tablet', 'red', 'blue' } },\r\n expert = { token = { '0', 'm1', 'm1', 'm2', 'm2', 'm2', 'm3', 'm3', 'm4', 'm4', 'skull', 'skull', 'cultist', 'tablet', 'tablet', 'red', 'blue' } }\r\n },\r\n ['Happys Funhouse'] = {\r\n normal = { token = { 'p1', 'p1', '0', '0', '0', 'm1', 'm1', 'm2', 'm2', 'm3', 'm4', 'm5', 'skull', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } },\r\n hard = { token = { 'p1', '0', '0', '0', 'm1', 'm2', 'm3', 'm3', 'm5', 'm7', 'skull', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } }\r\n },\r\n ['Knightfall'] = {\r\n normal = { token = { 'p1', '0', '0', '0', 'm1', 'm1', 'm2', 'm2', 'm3', 'm3', 'm4', 'm4', 'm5', 'm6', 'cultist', 'cultist', 'tablet', 'elder', 'red', 'blue' } },\r\n hard = { token = { 'p1', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'm3', 'm3', 'm4', 'm4', 'm5', 'm5', 'm6', 'm8', 'cultist', 'cultist', 'cultist', 'tablet', 'elder', 'red', 'blue' } }\r\n },\r\n ['Last Call at Roxies'] = {\r\n easy = { token = { 'p1', '0', '0', '0', 'm1', 'm1', 'm2', 'm3', 'skull', 'elder', 'cultist', 'tablet', 'red', 'blue' } },\r\n normal = { token = { 'p1', '0', '0', 'm1', 'm1', 'm2', 'm3', 'm4', 'skull', 'skull', 'cultist', 'cultist', 'tablet', 'tablet', 'elder', 'red', 'blue' } },\r\n hard = { token = { '0', 'm1', 'm1', 'm2', 'm3', 'm4', 'm5', 'skull', 'skull', 'cultist', 'cultist', 'tablet', 'tablet', 'elder', 'elder', 'red', 'blue' } },\r\n expert = { token = { '0', 'm1', 'm1', 'm2', 'm3', 'm4', 'm5', 'm6', 'm7', 'skull', 'skull', 'cultist', 'cultist', 'tablet', 'tablet', 'elder', 'elder', 'red', 'blue' } }\r\n },\r\n ['The Limens of Belief'] = {\r\n easy = { token = { 'p1', 'p1', '0', '0', '0', '0', 'm1', 'm1', 'm1', 'm2', 'cultist', 'tablet', 'red', 'blue' } },\r\n normal = { token = { '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'skull', 'cultist', 'cultist', 'tablet', 'tablet', 'red', 'blue' } },\r\n expert = { token = { '0', 'm1', 'm1', 'm2', 'm3', 'm4', 'm5', 'skull', 'cultist', 'cultist', 'tablet', 'tablet', 'red', 'blue' } }\r\n },\r\n ['Blood Spilled in Salem'] = {\r\n normal = { token = { 'p1', 'p1', '0', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm3', 'm4', 'm5', 'm6', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } },\r\n hard = { token = { 'p1', '0', '0', 'm1', 'm1', 'm2', 'm3', 'm4', 'm5', 'm6', 'm7', 'skull', 'skull', 'skull', 'cultist', 'cultist', 'tablet', 'elder', 'red', 'blue' } }\r\n },\r\n ['Bread and Circuses'] = {\r\n easy = { token = { 'p1', 'p1', '0', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'skull', 'skull', 'cultist', 'tablet', 'red', 'blue' } },\r\n normal = { token = { 'p1', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'm3', 'm4', 'skull', 'skull', 'cultist', 'tablet', 'red', 'blue' } },\r\n hard = { token = { '0', '0', '0', 'm1', 'm1', 'm2', 'm2', 'm3', 'm3', 'm4', 'm5', 'skull', 'skull', 'cultist', 'tablet', 'red', 'blue' } },\r\n expert = { token = { '0', 'm1', 'm1', 'm2', 'm2', 'm3', 'm3', 'm4', 'm4', 'm5', 'm6', 'm8', 'skull', 'skull', 'cultist', 'tablet', 'red', 'blue' } }\r\n },\r\n ['Bridge of Sighs'] = {\r\n easy = { token = { 'p1', 'p1', '0', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'skull', 'skull', 'cultist', 'tablet', 'red', 'blue' } },\r\n normal = { token = { 'p1', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'm3', 'm4', 'skull', 'skull', 'cultist', 'tablet', 'red', 'blue' } },\r\n hard = { token = { '0', '0', '0', 'm1', 'm1', 'm2', 'm3', 'm3', 'm4', 'm5', 'skull', 'skull', 'cultist', 'tablet', 'red', 'blue' } },\r\n expert = { token = { '0', 'm1', 'm1', 'm2', 'm2', 'm3', 'm3', 'm4', 'm4', 'm5', 'm6', 'm8', 'skull', 'skull', 'cultist', 'tablet', 'red', 'blue' } }\r\n },\r\n ['The Collector'] = {\r\n normal = { token = { 'p1', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'm3', 'm4', 'skull', 'skull', 'cultist', 'tablet', 'red', 'blue' } }\r\n },\r\n ['The Colour out of Space'] = {\r\n normal = { token = { 'p1', '0', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'm3', 'm3', 'm4', 'm5', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } },\r\n hard = { token = { 'p1', '0', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'm3', 'm3', 'm4', 'm4', 'm5', 'm5', 'm6', 'skull', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } }\r\n },\r\n ['The Curse of Amultep'] = {\r\n normal = { token = { 'p1', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'm3', 'm4', 'skull', 'skull', 'cultist', 'tablet', 'red', 'blue' } }\r\n },\r\n ['The Dying Star'] = {\r\n normal = { token = { 'p1', '0', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'm3', 'm3', 'm4', 'skull', 'skull', 'cultist', 'tablet', 'blue', 'red', 'blue' } },\r\n hard = { token = { 'p1', '0', '0', '0', 'm1', 'm1', 'm2', 'm3', 'm4', 'm5', 'm6', 'm7', 'skull', 'skull', 'cultist', 'tablet', 'tablet', 'blue', 'red', 'blue' } }\r\n },\r\n ['Against the Wendigo'] = {\r\n easy = { token = { 'p1', 'p1', '0', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } },\r\n normal = { token = { 'p1', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'm3', 'm4', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } },\r\n hard = { token = { '0', '0', '0', 'm1', 'm1', 'm2', 'm2', 'm3', 'm3', 'm4', 'm5', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } },\r\n expert = { token = { '0', 'm1', 'm1', 'm2', 'm2', 'm3', 'm3', 'm4', 'm4', 'm5', 'm6', 'm7', 'm8', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } }\r\n },\r\n ['The Pensher Wyrm'] = {\r\n easy = { token = { 'p1', 'p1', '0', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'skull', 'skull', 'cultist', 'tablet', 'red', 'blue' } },\r\n normal = { token = { 'p1', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'm3', 'm4', 'skull', 'skull', 'cultist', 'cultist', 'tablet', 'elder', 'red', 'blue' } },\r\n hard = { token = { '0', '0', '0', 'm1', 'm1', 'm2', 'm2', 'm3', 'm3', 'm4', 'm5', 'm6', 'skull', 'skull', 'skull', 'cultist', 'cultist', 'tablet', 'elder', 'red', 'blue' } },\r\n expert = { token = { '0', 'm1', 'm1', 'm2', 'm2', 'm3', 'm3', 'm4', 'm4', 'm5', 'm5', 'm6', 'm8', 'skull', 'skull', 'skull', 'cultist', 'cultist', 'tablet', 'elder', 'elder', 'red', 'blue' } }\r\n },\r\n ['Approaching Storm'] = {\r\n easy = { token = { 'p1', 'p1', '0', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'skull', 'cultist', 'cultist', 'tablet', 'elder', 'red', 'blue' } },\r\n normal = { token = { 'p1', '0', '0', 'm1', 'm1', 'm2', 'm2', 'm3', 'm4', 'skull', 'skull', 'cultist', 'cultist', 'tablet', 'elder', 'red', 'blue' } },\r\n hard = { token = { '0', 'm1', 'm1', 'm2', 'm3', 'm3', 'm4', 'm5', 'skull', 'skull', 'cultist', 'cultist', 'tablet', 'elder', 'red', 'blue' } },\r\n expert = { token = { '0', 'm1', 'm2', 'm3', 'm3', 'm4', 'm4', 'm5', 'm6', 'skull', 'skull', 'cultist', 'cultist', 'tablet', 'elder', 'red', 'blue' } }\r\n },\r\n ['Into the Shadowlands'] = {\r\n easy = { token = { 'p1', 'p1', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'skull', 'skull', 'cultist', 'tablet', 'red', 'blue' } },\r\n normal = { token = { 'p1', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'm3', 'm4', 'skull', 'skull', 'cultist', 'tablet', 'red', 'blue' } },\r\n hard = { token = { '0', '0', '0', 'm1', 'm1', 'm2', 'm2', 'm3', 'm4', 'm5', 'skull', 'skull', 'cultist', 'tablet', 'red', 'blue' } },\r\n expert = { token = { '0', 'm1', 'm1', 'm2', 'm3', 'm3', 'm4', 'm5', 'm6', 'm7', 'skull', 'skull', 'cultist', 'tablet', 'red', 'blue' } }\r\n },\r\n ['London Set 1'] = {\r\n easy = { token = { 'p2', 'p1', '0', '0', '0', 'm1', 'm2', 'skull', 'cultist', 'tablet', 'red', 'blue' } },\r\n normal = { token = { 'p1', '0', '0', 'm2', 'skull', 'skull', 'cultist', 'cultist', 'tablet', 'tablet', 'red', 'blue' } },\r\n hard = { token = { '0', '0', 'm2', 'm4', 'skull', 'skull', 'cultist', 'cultist', 'tablet', 'tablet', 'red', 'blue' } },\r\n },\r\n ['London Set 2'] = {\r\n normal = { token = { 'p1', '0', '0', 'm1', 'm2', 'm3', 'skull', 'skull', 'elder', 'tablet', 'red', 'blue' } },\r\n hard = { token = { '0', '0', 'm1', 'm2', 'm3', 'skull', 'skull', 'elder', 'elder', 'tablet', 'red', 'blue' } },\r\n },\r\n ['London Set 3'] = {\r\n normal = { token = { 'p1', 'p1', '0', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'skull', 'skull', 'cultist', 'tablet', 'red', 'blue' } },\r\n },\r\n ['Delta Green'] = {\r\n normal = { token = { 'p1', '0', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'm2', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } },\r\n hard = { token = { '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'm2', 'm3', 'm4', 'm5', 'skull', 'skull', 'cultist', 'cultist', 'tablet', 'elder', 'red', 'blue' } },\r\n },\r\n ['Jennys Choice'] = {\r\n easy = { token = { 'p1', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'm3', 'm4','skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } },\r\n hard = { token = { 'p1', '0', 'm1', 'm2', 'm2', 'm3', 'm3', 'm5', 'skull', 'skull', 'skull', 'cultist', 'tablet', 'tablet', 'elder', 'red', 'blue' } }\r\n },\r\n ['The Blob'] = {\r\n normal = { token = { 'p1', '0', '0', '0', 'm1', 'm2', 'm2', 'm3', 'm4', 'm5', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } },\r\n hard = { token = { '0', '0', '0', 'm1', 'm1', 'm2', 'm3', 'm4', 'm5', 'm6', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } },\r\n },\r\n ['The Initiation'] = {\r\n easy = { token = { 'p1', 'p1', '0', '0', '0', 'm1', 'm1', 'm2', 'm3', 'skull', 'skull', 'elder', 'red', 'blue' } },\r\n normal = { token = { 'p1', '0', '0', '0', 'm1', 'm2', 'm2', 'm3', 'm5', 'skull', 'skull', 'elder', 'red', 'blue' } },\r\n hard = { token = { 'p1', '0', '0', 'm1', 'm2', 'm3', 'm3', 'm4', 'm6', 'skull', 'skull', 'elder', 'red', 'blue' } },\r\n expert = { token = { '0', 'm1', 'm2', 'm2', 'm3', 'm3', 'm4', 'm4', 'm6', 'm8', 'skull', 'skull', 'elder', 'red', 'blue' } }\r\n },\r\n ['Consternation'] = {\r\n normal = { token = { 'p1', '0', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'm3', 'm4', 'm4', 'm5', 'm6', 'skull', 'skull', 'skull', 'red', 'blue' } },\r\n hard = { token = { 'p1', '0', '0', '0', 'm1', 'm1', 'm2', 'm2', 'm3', 'm4', 'm4', 'm5', 'm6', 'm7', 'skull', 'skull', 'skull', 'red', 'blue' } },\r\n },\r\n ['Of Sphinx'] = {\r\n easy = { token = { 'p1', 'p1', '0', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'm3', 'skull', 'elder', 'cultist', 'tablet', 'red', 'blue' } },\r\n normal = { token = { 'p1', '0', '0', 'm1', 'm1', 'm1', 'm1', 'm2', 'm2', 'm3', 'm4', 'skull', 'elder', 'cultist', 'cultist', 'tablet', 'red', 'blue' } },\r\n hard = { token = { '0', '0', '0', 'm1', 'm1', 'm2', 'm3', 'm4', 'm5', 'skull', 'elder', 'cultist', 'cultist', 'tablet', 'red', 'blue' } },\r\n expert = { token = { '0', 'm1', 'm1', 'm2', 'm2', 'm3', 'm3', 'm4', 'm4', 'm5', 'm6', 'm8', 'elder', 'skull', 'skull', 'cultist', 'tablet', 'red', 'blue' } }\r\n },\r\n ['Ordis'] = {\r\n easy = { token = { 'p1', 'p1', '0', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'skull', 'elder', 'cultist', 'tablet', 'red', 'blue' } },\r\n normal = { token = { 'p1', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'm3', 'm4', 'skull', 'elder', 'cultist', 'tablet', 'red', 'blue' } },\r\n hard = { token = { '0', '0', '0', 'm1', 'm1', 'm2', 'm2', 'm3', 'm3', 'm4', 'm5', 'skull', 'elder', 'cultist', 'tablet', 'red', 'blue' } },\r\n expert = { token = { '0', 'm1', 'm1', 'm2', 'm2', 'm3', 'm3', 'm4', 'm4', 'm5', 'm6', 'm8', 'skull', 'elder', 'cultist', 'tablet', 'red', 'blue' } }\r\n },\r\n ['Darkness Falls'] = {\r\n normal = { token = { 'p1', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'm3', 'm4', 'skull', 'skull', 'cultist', 'tablet', 'red', 'blue' } },\r\n hard = { token = { '0', '0', '0', 'm1', 'm1', 'm2', 'm2', 'm3', 'm3', 'm4', 'm5', 'skull', 'skull', 'cultist', 'tablet', 'red', 'blue' } }\r\n },\r\n ['War of the Worlds'] = {\r\n easy = { token = { 'p1', 'p1', '0', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'skull', 'skull', 'elder', 'red', 'blue' } },\r\n normal = { token = { 'p1', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'm3', 'm4', 'skull', 'skull', 'elder', 'red', 'blue' } },\r\n hard = { token = { 'p1', '0', 'm1', 'm1', 'm2', 'm2', 'm3', 'm4', 'm5', 'm6', 'skull', 'skull', 'elder', 'red', 'blue' } },\r\n expert = { token = { '0', 'm1', 'm1', 'm2', 'm2', 'm3', 'm4', 'm5', 'm6', 'm8', 'skull', 'skull', 'elder', 'red', 'blue' } }\r\n },\r\n ['Alice in Wonderland'] = {\r\n easy = { token = { 'p1', 'p1', '0', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'skull', 'skull', 'elder', 'red', 'blue' } },\r\n normal = { token = { 'p1', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'm3', 'm4', 'skull', 'skull', 'elder', 'red', 'blue' } },\r\n hard = { token = { 'p1', '0', 'm1', 'm1', 'm2', 'm2', 'm3', 'm4', 'm5', 'm6', 'skull', 'skull', 'elder', 'red', 'blue' } },\r\n expert = { token = { '0', 'm1', 'm1', 'm2', 'm3', 'm4', 'm5', 'm6', 'm7', 'm8', 'skull', 'skull', 'elder', 'red', 'blue' } }\r\n },\r\n ['Pokemon'] = {\r\n easy = { token = { 'p1', 'p1', '0', '0', '0', 'm1', 'm1', 'm2', 'm3', 'skull', 'skull', 'tablet', 'elder', 'red', 'blue' } },\r\n normal = { token = { 'p1', '0', '0', '0', 'm1', 'm2', 'm2', 'm3', 'm5', 'skull', 'skull', 'tablet', 'elder', 'red', 'blue' } },\r\n hard = { token = { 'p1', '0', '0', 'm1', 'm2', 'm3', 'm3', 'm4', 'm6', 'skull', 'skull', 'tablet', 'elder', 'red', 'blue' } },\r\n expert = { token = { '0', 'm1', 'm2', 'm2', 'm3', 'm3', 'm4', 'm4', 'm6', 'm8', 'skull', 'skull', 'tablet', 'elder', 'red', 'blue' } }\r\n },\r\n ['Safari'] = {\r\n normal = { token = { 'p1', '0', '0', '0', 'm1', 'm2', 'm2', 'm3', 'm5', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } },\r\n hard = { token = { 'p1', '0', '0', 'm1', 'm2', 'm3', 'm3', 'm4', 'm6', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } },\r\n },\r\n ['Cerulean'] = {\r\n normal = { token = { 'p1', '0', '0', '0', 'm1', 'm2', 'm2', 'm3', 'm5', 'skull', 'skull', 'cultist', 'cultist', 'tablet', 'elder', 'red', 'blue' } },\r\n hard = { token = { 'p1', '0', '0', 'm1', 'm2', 'm3', 'm3', 'm4', 'm6', 'skull', 'skull', 'cultist', 'cultist', 'tablet', 'elder', 'red', 'blue' } },\r\n },\r\n ['Erich Zann'] = {\r\n easy = { token = { 'p1', '0', '0', 'm1', 'm1', 'm2', 'm2', 'm3', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } },\r\n normal = { token = { 'p1', '0', 'm1', 'm1', 'm2', 'm3', 'm3', 'm4', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } },\r\n hard = { token = { '0', 'm1', 'm2', 'm3', 'm4', 'm4', 'm5', 'm6', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } },\r\n expert = { token = { '0', 'm1', 'm2', 'm3', 'm4', 'm5', 'm6', 'm8', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } }\r\n },\r\n ['Kaimonogatari'] = {\r\n easy = { token = { 'p1', 'p1', '0', '0', '0', 'm1', 'm1', 'm2', 'm2', 'skull', 'skull', 'cultist', 'red', 'blue' } },\r\n normal = { token = { 'p1', '0', '0', 'm1', 'm2', 'm2', 'm3', 'm3', 'm4', 'skull', 'skull', 'cultist', 'red', 'blue' } },\r\n hard = { token = { '0', '0', '0', 'm1', 'm2', 'm2', 'm3', 'm4', 'm4', 'm5', 'skull', 'skull', 'cultist', 'red', 'blue' } },\r\n expert = { token = { '0', '0', 'm1', 'm1', 'm2', 'm3', 'm4', 'm5', 'm6', 'm6', 'm8', 'skull', 'skull', 'cultist', 'red', 'blue' } }\r\n },\r\n ['Sleepy Hollow'] = {\r\n normal = { token = { 'p1', 'p1', '0', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'm3', 'm3', 'm4', 'm4', 'm5', 'm6', 'skull', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } },\r\n hard = { token = { 'p1', '0', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'm3', 'm3', 'm4', 'm4', 'm5', 'm6', 'm8', 'skull', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } },\r\n },\r\n ['Flesh'] = {\r\n easy = { token = { 'p1', 'p1', '0', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm3', 'skull', 'skull', 'cultist', 'tablet', 'tablet', 'red', 'blue' } },\r\n normal = { token = { 'p1', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'm3', 'm4', 'skull', 'skull', 'cultist', 'tablet', 'tablet', 'red', 'blue' } },\r\n hard = { token = { '0', '0', 'm1', 'm1', 'm2', 'm3', 'm3', 'm4', 'm4', 'm6', 'skull', 'skull', 'cultist', 'tablet', 'tablet', 'red', 'blue' } },\r\n },\r\n ['Dark Matter'] = {\r\n easy = { token = { 'p1', 'p1', '0', '0', '0', 'm1', 'm1', 'm2', 'm2', 'skull', 'skull', 'cultist', 'cultist', 'red', 'blue' } },\r\n normal = { token = { 'p1', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'm3', 'm4', 'skull', 'skull', 'cultist', 'cultist', 'red', 'blue' } },\r\n hard = { token = { '0', '0', '0', 'm1', 'm1', 'm2', 'm2', 'm3', 'm3', 'm4', 'm5', 'skull', 'skull', 'cultist', 'cultist', 'red', 'blue' } },\r\n expert = { token = { '0', 'm1', 'm2', 'm2', 'm3', 'm3', 'm4', 'm4', 'm5', 'm6', 'm8', 'skull', 'skull', 'cultist', 'cultist', 'red', 'blue' } }\r\n },\r\n ['Dont Starve'] = {\r\n normal = { token = { 'p1', '0', 'm1', 'm1', 'm2', 'm2', 'm3', 'm3', 'm5', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } },\r\n hard = { token = { '0', 'm1', 'm1', 'm2', 'm2', 'm3', 'm3', 'm5', 'm7', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } },\r\n },\r\n ['XXXX'] = {\r\n easy = { token = { 'p1', 'p1', '0', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'skull', 'skull', 'cultist', 'tablet', 'red', 'blue' } },\r\n normal = { token = { 'p1', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'm3', 'm4', 'skull', 'skull', 'cultist', 'tablet', 'red', 'blue' } },\r\n hard = { token = { '0', '0', '0', 'm1', 'm1', 'm2', 'm2', 'm3', 'm3', 'm4', 'm5', 'skull', 'skull', 'cultist', 'tablet', 'red', 'blue' } },\r\n expert = { token = { '0', 'm1', 'm1', 'm2', 'm2', 'm3', 'm3', 'm4', 'm4', 'm5', 'm6', 'm8', 'skull', 'skull', 'cultist', 'tablet', 'red', 'blue' } }\r\n },\r\n\r\n}\r\n\r\nfunction onSave()\r\n local globalState = JSON.encode(SPAWNED_PLAYER_CARD_GUIDS)\r\n log('saving global state: ' .. globalState)\r\n self.script_state = globalState\r\nend\r\n\r\nfunction onload(save_state)\r\n if save_state ~= '' then\r\n log('loading global state: ' .. save_state)\r\n SPAWNED_PLAYER_CARD_GUIDS = JSON.decode(save_state)\r\n else\r\n SPAWNED_PLAYER_CARD_GUIDS = {}\r\n end\r\nend\r\n\r\nfunction getSpawnedPlayerCardGuid(params)\r\n local guid = params[1]\r\n if SPAWNED_PLAYER_CARD_GUIDS == nil then\r\n return nil\r\n end\r\n return SPAWNED_PLAYER_CARD_GUIDS[guid]\r\nend\r\n\r\nfunction setSpawnedPlayerCardGuid(params)\r\n local guid = params[1]\r\n local value = params[2]\r\n if SPAWNED_PLAYER_CARD_GUIDS ~= nil then\r\n SPAWNED_PLAYER_CARD_GUIDS[guid] = value\r\n return true\r\n end\r\n return false\r\nend\r\n\r\nfunction checkHiddenCard(name)\r\n for _, n in ipairs(HIDDEN_CARD_DATA) do\r\n if name == n then\r\n return true\r\n end\r\n end\r\n return false\r\nend\r\n\r\nfunction updateHiddenCards(args)\r\n local custom_data_helper = getObjectFromGUID(args[1])\r\n local data_hiddenCards = custom_data_helper.getTable(\"HIDDEN_CARD_DATA\")\r\n for k, v in ipairs(data_hiddenCards) do\r\n table.insert(HIDDEN_CARD_DATA, v)\r\n end\r\nend",
"LuaScriptState": "{\"00f067\":false,\"01cd9f\":false,\"041012\":false,\"050ba1\":false,\"063fd8\":false,\"072b90\":false,\"0e64cb\":true,\"0fd716\":false,\"0fff60\":true,\"101a41\":false,\"16a89d\":false,\"17d34b\":false,\"1905cf\":true,\"1ac667\":false,\"1b4434\":false,\"1bdb15\":true,\"1d6d47\":true,\"1e6a06\":false,\"1ee492\":false,\"200b64\":true,\"2204cc\":false,\"2210c1\":false,\"25ae32\":false,\"275dc3\":false,\"27f6aa\":false,\"28080d\":false,\"29d06d\":true,\"2c6509\":false,\"2e5b03\":false,\"2ea0d0\":false,\"2f9064\":false,\"308967\":false,\"30f860\":false,\"312d38\":false,\"31cfbf\":false,\"320bbe\":false,\"334f03\":false,\"33f906\":false,\"3442f5\":false,\"3549e7\":false,\"37153b\":false,\"37882c\":false,\"37c24c\":false,\"3feff1\":false,\"423d46\":false,\"426d28\":false,\"42b36d\":false,\"431c15\":false,\"438cca\":false,\"452db2\":true,\"491c09\":false,\"4e2d75\":false,\"4e43bc\":true,\"4ea68b\":false,\"4edb91\":false,\"4fb446\":false,\"50fb37\":false,\"510c0d\":false,\"522d77\":false,\"53d103\":false,\"53f076\":false,\"541ee9\":false,\"55001f\":false,\"55fc3d\":false,\"57f037\":true,\"5888da\":false,\"58f2af\":true,\"5a305e\":false,\"5a7a85\":true,\"5ab9f4\":false,\"5ade28\":false,\"5b6c9f\":false,\"5be76d\":true,\"655049\":true,\"658588\":false,\"65b6cb\":false,\"664b70\":false,\"6656ad\":false,\"673295\":false,\"679b13\":false,\"699a99\":true,\"6b2550\":false,\"6da7c4\":false,\"6fa7fa\":false,\"701c69\":true,\"73b311\":false,\"750fbc\":true,\"7651f3\":false,\"7686cb\":false,\"79870f\":true,\"7cdb0a\":false,\"7dc42a\":false,\"7ec473\":false,\"804397\":false,\"812175\":false,\"82775a\":false,\"8328fd\":false,\"83d8d7\":false,\"840ba5\":false,\"86d109\":false,\"87226d\":false,\"889121\":false,\"88a9b3\":false,\"88d3c0\":false,\"89fe92\":false,\"8a927c\":false,\"8aa0c3\":false,\"8ae314\":false,\"8b46b2\":false,\"8be589\":false,\"8cc0a6\":false,\"8cf335\":false,\"8ec9cb\":false,\"8f1420\":false,\"8f7289\":false,\"8f91ce\":false,\"914053\":false,\"927d34\":false,\"93e52d\":false,\"9417a7\":false,\"95b0cf\":false,\"96c9be\":false,\"97781f\":false,\"98eb87\":false,\"9934d2\":false,\"9a5782\":false,\"9da37c\":false,\"a00798\":false,\"a31ea1\":false,\"a5087b\":false,\"a565d5\":false,\"a57f19\":false,\"a5be8b\":false,\"a5c780\":false,\"a65852\":true,\"a6d017\":false,\"a85f1d\":false,\"a92a90\":false,\"aa3984\":false,\"acd0da\":false,\"aefe13\":true,\"b03e83\":false,\"b176fc\":false,\"b239d7\":false,\"b265c4\":false,\"b2e27e\":false,\"b460e1\":true,\"b4666d\":false,\"b80459\":false,\"b8843c\":false,\"ba16cb\":false,\"bad631\":false,\"baef55\":false,\"bb1cce\":false,\"bb640d\":false,\"bc3451\":false,\"bcf406\":false,\"bf3dd1\":false,\"c025bf\":false,\"c09a15\":false,\"c127db\":true,\"c17498\":false,\"c17f2c\":false,\"c26a48\":true,\"c332af\":false,\"c4282a\":false,\"c607c5\":false,\"c6ac19\":false,\"c7d9b5\":false,\"ca25bc\":false,\"ca9a60\":false,\"cc6e4d\":false,\"cc8571\":true,\"cc9563\":false,\"cd0ac1\":false,\"cdfd9f\":false,\"ce0dd5\":false,\"d02825\":true,\"d099f4\":false,\"d36d80\":false,\"d3a90d\":true,\"d3ad2d\":false,\"d4fd4a\":false,\"d5d07a\":false,\"d6771f\":false,\"d83baf\":false,\"d87128\":false,\"d8b64b\":false,\"da227d\":false,\"dacc75\":false,\"dbdaff\":true,\"dc3b07\":false,\"dcdcea\":false,\"dfbc13\":false,\"e0ad3b\":false,\"e2e3a0\":false,\"e419b4\":false,\"e5e392\":false,\"e628de\":false,\"e69708\":false,\"e701af\":false,\"e70b0a\":true,\"e929f9\":false,\"e99f0d\":false,\"e9fef2\":false,\"ea0fa1\":false,\"eabad6\":true,\"eb6165\":false,\"ee4a47\":false,\"eeb330\":false,\"efccba\":false,\"f2726b\":true,\"f34090\":false,\"f35e37\":false,\"f59085\":false,\"f633db\":false,\"f6dfe5\":false,\"f85d4e\":true,\"f91fd9\":false,\"fa1d67\":false,\"fa994a\":true,\"fc9e1b\":false,\"fd9c56\":false,\"fe2db3\":false,\"ffa4f9\":false,\"ffb72a\":false,\"ffdeb5\":false,\"ffef17\":true}",
"XmlUI": ""
},
{
"GUID": "5933fb",
"Name": "Custom_Token",
"Transform": {
"posX": -47.62,
"posY": 1.5979,
"posZ": 0.0,
"rotX": 359.9201,
"rotY": 270.000183,
"rotZ": 0.0168410838,
"scaleX": 0.6836529,
"scaleY": 1.0,
"scaleZ": 0.6836529
},
"Nickname": "Bless/Curse Token Manager",
"Description": "See Notebook for Instructions",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"displacement_excluded"
],
"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, 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 sealedTokens = {}\r\n Wait.time(initializeState, 1)\r\n\r\n addHotkey(\"Bless Curse Status\", printStatus, false)\r\n addHotkey(\"Wendy's Menu\", addMenuOptions, 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 = getObjects()\r\n for i, obj in ipairs(objs) do\r\n local pos = obj.getPosition()\r\n if (pos.x > -110 and pos.x < 44 and pos.z > -77 and pos.z < 77) then\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 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 if not remove and not SEAL_CARD_MESSAGE then\r\n broadcastToColor(\"Are you trying to seal a token on a card? Return \" ..\r\n \"this one, then try right-clicking on the card for seal options.\",\r\n _color)\r\n SEAL_CARD_MESSAGE = true\r\n 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 local position = Vector({ pos.x - 2, pos.y, pos.z + 2.5 })\r\n if type == \"Curse\" then\r\n position = position + Vector({ 0, 0, -5 })\r\n end\r\n chaosbag.takeObject({\r\n guid = guid,\r\n position = position,\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\r\n\r\nfunction addMenuOptions(playerColor, hoveredObject, pointerPosition, isKeyUp)\r\n local manager = self\r\n if hoveredObject == nil or hoveredObject.getVar(\"MENU_ADDED\") == true then return end\r\n if hoveredObject.tag ~= \"Card\" then\r\n broadcastToColor(\"Right-click seal options can only be added to cards\", playerColor)\r\n return\r\n end\r\n hoveredObject.addContextMenuItem(\"Seal Bless\", function(color)\r\n manager.call(\"sealToken\", {\r\n type = \"Bless\",\r\n playerColor = color,\r\n enemy = hoveredObject\r\n })\r\n end, true)\r\n hoveredObject.addContextMenuItem(\"Release Bless\", function(color)\r\n manager.call(\"releaseToken\", {\r\n type = \"Bless\",\r\n playerColor = color,\r\n enemy = hoveredObject\r\n })\r\n end, true)\r\n hoveredObject.addContextMenuItem(\"Seal Curse\", function(color)\r\n manager.call(\"sealToken\", {\r\n type = \"Curse\",\r\n playerColor = color,\r\n enemy = hoveredObject\r\n })\r\n end, true)\r\n hoveredObject.addContextMenuItem(\"Release Curse\", function(color)\r\n manager.call(\"releaseToken\", {\r\n type = \"Curse\",\r\n playerColor = color,\r\n enemy = hoveredObject\r\n })\r\n end, true)\r\n broadcastToColor(\"Right-click seal options added to \" .. hoveredObject.getName(), playerColor)\r\n hoveredObject.setVar(\"MENU_ADDED\", true)\r\n sealedTokens[hoveredObject.getGUID()] = {}\r\nend\r\n\r\nfunction sealToken(params)\r\n playerColor = params.playerColor\r\n local chaosbag = getChaosBag()\r\n if chaosbag == nil then return end\r\n local pos = params.enemy.getPosition()\r\n local manager = self\r\n\r\n for i, token in ipairs(chaosbag.getObjects()) do\r\n if token.name == params.type 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 = function(obj)\r\n Wait.frames(function()\r\n local mSealedTokens = manager.getVar(\"sealedTokens\")\r\n local tokens = mSealedTokens[params.enemy.getGUID()]\r\n table.insert(tokens, obj)\r\n manager.setVar(\"sealedTokens\", mSealedTokens)\r\n local guid = obj.getGUID()\r\n local tokensTaken = manager.getVar(\"tokensTaken\")\r\n table.insert(tokensTaken[params.type], guid)\r\n manager.setVar(\"tokensTaken\", tokensTaken)\r\n manager.setVar(\"mode\", params.type)\r\n printToColor(\"Sealing \" .. params.type .. \" token \" .. manager.call(\"getTokenCount\"),\r\n params.playerColor)\r\n end\r\n , 1)\r\n end\r\n })\r\n return\r\n end\r\n end\r\n printToColor(params.type .. \" token not found in bag\", playerColor)\r\nend\r\n\r\nfunction releaseToken(params)\r\n playerColor = params.playerColor\r\n local chaosbag = getChaosBag()\r\n if chaosbag == nil then return end\r\n local tokens = sealedTokens[params.enemy.getGUID()]\r\n if tokens == nil or #tokens == 0 then return end\r\n mode = params.type\r\n\r\n for i, token in ipairs(tokens) do\r\n if token ~= nil and token.getName() == params.type then\r\n local guid = token.getGUID()\r\n chaosbag.putObject(token)\r\n for j, v in ipairs(tokensTaken[mode]) do\r\n if v == guid then\r\n table.remove(tokensTaken[mode], j)\r\n table.remove(tokens, i)\r\n printToColor(\"Releasing \" .. mode .. \" token\" .. getTokenCount(), params.playerColor)\r\n return\r\n end\r\n end\r\n end\r\n end\r\n printToColor(params.type .. \" token not sealed on \" .. params.enemy.getName(), params.playerColor)\r\nend",
"LuaScriptState": "{\"Bless\":8,\"Curse\":0}",
"XmlUI": ""
},
{
"GUID": "d8d357",
"Name": "Notecard",
"Transform": {
"posX": 77.83561,
"posY": 1.24414432,
"posZ": 33.5828476,
"rotX": 0.0100286258,
"rotY": 89.99965,
"rotZ": 0.0154513223,
"scaleX": 0.250000417,
"scaleY": 0.250000417,
"scaleZ": 0.250000417
},
"Nickname": "",
"Description": "lua setNotes(getObjectFromGUID('the objects guid').getJSON())",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": true,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": false,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "445115",
"Name": "Checker_black",
"Transform": {
"posX": 77.1586761,
"posY": 1.29673862,
"posZ": 6.31477737,
"rotX": 359.989868,
"rotY": 269.999939,
"rotZ": 179.984467,
"scaleX": 0.250000417,
"scaleY": 0.250000417,
"scaleZ": 0.250000417
},
"Nickname": "Arkham Deck Cutter",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.0,
"g": 0.0,
"b": 0.0
},
"Tags": [
"arkham_setup_memory_object"
],
"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: 2020-09-26 5:50 p.m.\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 (index>=1 and index<=3) then return end\r\n\r\n local count = index * 3\r\n\r\n ---@type Player\r\n local player = Player[player_color]\r\n local object = player:getHoverObject()\r\n\r\n\r\n if (not object) then return end\r\n if (object.tag~=\"Deck\") then return end\r\n if (count >= object:getQuantity()) then return end\r\n\r\n for _ =1, count do\r\n local target_position = object:positionToWorld(Vector(0, 0, -3.5))\r\n\r\n object:takeObject {\r\n index = 0,\r\n position = target_position,\r\n smooth = false\r\n }\r\n end\r\nend",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "a2f932",
"Name": "ScriptingTrigger",
"Transform": {
"posX": -27.8733368,
"posY": 4.14678335,
"posZ": -0.203914642,
"rotX": 0.0,
"rotY": 90.00002,
"rotZ": 0.0,
"scaleX": 36.3702774,
"scaleY": 5.1,
"scaleZ": 36.91981
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "2585f4",
"Name": "Custom_Model",
"Transform": {
"posX": -9.703798,
"posY": 1.30651176,
"posZ": -53.9218,
"rotX": 0.0208093356,
"rotY": 270.0032,
"rotZ": 0.01677172,
"scaleX": 0.5,
"scaleY": 0.139652729,
"scaleZ": 0.5
},
"Nickname": "Core",
"Description": "",
"GMNotes": "investigators/core_investigators.json\r\n",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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.3001308441162,\"y\":1.27337777614594,\"z\":-61.2409515380859},\"rot\":{\"x\":359.979156494141,\"y\":90.0000534057617,\"z\":359.983215332031}},\"0de2c4\":{\"lock\":false,\"pos\":{\"x\":-16.6317176818848,\"y\":1.35992956161499,\"z\":-67.8122329711914},\"rot\":{\"x\":0.0208165403455496,\"y\":269.999755859375,\"z\":0.0167678650468588}},\"171f17\":{\"lock\":false,\"pos\":{\"x\":-22.6138954162598,\"y\":1.35177934169769,\"z\":-53.4381256103516},\"rot\":{\"x\":0.0167780090123415,\"y\":180.016967773438,\"z\":359.979187011719}},\"1f564c\":{\"lock\":false,\"pos\":{\"x\":-22.6169490814209,\"y\":1.34468019008636,\"z\":-61.2413787841797},\"rot\":{\"x\":0.0167712792754173,\"y\":179.999359130859,\"z\":359.979187011719}},\"226716\":{\"lock\":false,\"pos\":{\"x\":-16.6317138671875,\"y\":1.35920643806458,\"z\":-70.2822341918945},\"rot\":{\"x\":0.0208166521042585,\"y\":269.999542236328,\"z\":0.0167673751711845}},\"24e4f2\":{\"lock\":false,\"pos\":{\"x\":-19.293586730957,\"y\":1.32684934139252,\"z\":-76.9415283203125},\"rot\":{\"x\":0.0208132099360228,\"y\":269.981689453125,\"z\":0.0167603269219399}},\"2e7dd9\":{\"lock\":false,\"pos\":{\"x\":-22.6156787872314,\"y\":1.34238731861115,\"z\":-69.0755996704102},\"rot\":{\"x\":0.016772024333477,\"y\":180.002990722656,\"z\":359.979187011719}},\"307044\":{\"lock\":false,\"pos\":{\"x\":-16.6318778991699,\"y\":1.35495400428772,\"z\":-84.8098449707031},\"rot\":{\"x\":0.0208094697445631,\"y\":270.022247314453,\"z\":0.0167762581259012}},\"3ddfeb\":{\"lock\":false,\"pos\":{\"x\":-16.6310443878174,\"y\":1.35460293292999,\"z\":-86.0102386474609},\"rot\":{\"x\":0.0208166632801294,\"y\":269.999542236328,\"z\":0.0167674161493778}},\"41bfc7\":{\"lock\":false,\"pos\":{\"x\":-16.6467533111572,\"y\":1.36185228824615,\"z\":-61.2247848510742},\"rot\":{\"x\":0.0208130516111851,\"y\":270.010894775391,\"z\":0.0167722497135401}},\"468a7c\":{\"lock\":false,\"pos\":{\"x\":-19.2958545684814,\"y\":1.32915532588959,\"z\":-69.0606842041016},\"rot\":{\"x\":0.0208133887499571,\"y\":269.981384277344,\"z\":0.0167612247169018}},\"4ad11b\":{\"lock\":false,\"pos\":{\"x\":-16.631233215332,\"y\":1.35725867748261,\"z\":-76.9372863769531},\"rot\":{\"x\":0.0208172146230936,\"y\":269.999664306641,\"z\":0.0167672913521528}},\"4c86dd\":{\"lock\":false,\"pos\":{\"x\":-22.6168842315674,\"y\":1.33777868747711,\"z\":-84.818473815918},\"rot\":{\"x\":0.0167789775878191,\"y\":180.022750854492,\"z\":359.979187011719}},\"543164\":{\"lock\":false,\"pos\":{\"x\":-16.6319351196289,\"y\":1.35956656932831,\"z\":-69.0519485473633},\"rot\":{\"x\":0.0208163019269705,\"y\":269.999450683594,\"z\":0.0167674608528614}},\"6330da\":{\"lock\":false,\"pos\":{\"x\":-16.6317100524902,\"y\":1.36379337310791,\"z\":-54.6123695373535},\"rot\":{\"x\":0.0208169054239988,\"y\":270.000213623047,\"z\":0.016768217086792}},\"779aa6\":{\"lock\":false,\"pos\":{\"x\":-16.6301956176758,\"y\":1.35532832145691,\"z\":-83.5331726074219},\"rot\":{\"x\":0.0208166800439358,\"y\":269.998016357422,\"z\":0.0167674235999584}},\"7a6af2\":{\"lock\":false,\"pos\":{\"x\":-19.2997856140137,\"y\":1.30758762359619,\"z\":-84.8181838989258},\"rot\":{\"x\":0.020803352817893,\"y\":270.018859863281,\"z\":0.016777291893959}},\"965031\":{\"lock\":false,\"pos\":{\"x\":-19.3000774383545,\"y\":1.31449115276337,\"z\":-61.2332534790039},\"rot\":{\"x\":0.0208074133843184,\"y\":270.005187988281,\"z\":0.016772611066699}},\"978a0e\":{\"lock\":false,\"pos\":{\"x\":-26.2999897003174,\"y\":1.27566194534302,\"z\":-53.4368362426758},\"rot\":{\"x\":359.979156494141,\"y\":90.000358581543,\"z\":359.983215332031}},\"9e80b9\":{\"lock\":false,\"pos\":{\"x\":-16.6316967010498,\"y\":1.36415350437164,\"z\":-53.3820648193359},\"rot\":{\"x\":0.020821375772357,\"y\":269.983795166016,\"z\":0.0167624186724424}},\"bde4a6\":{\"lock\":false,\"pos\":{\"x\":-16.631706237793,\"y\":1.36451590061188,\"z\":-52.1436500549316},\"rot\":{\"x\":0.0208170115947723,\"y\":269.999755859375,\"z\":0.0167683809995651}},\"bed196\":{\"lock\":false,\"pos\":{\"x\":-19.295877456665,\"y\":1.31220149993896,\"z\":-69.0607070922852},\"rot\":{\"x\":0.0207997281104326,\"y\":270.031768798828,\"z\":0.0167825166136026}},\"cbcf3e\":{\"lock\":false,\"pos\":{\"x\":-19.2997627258301,\"y\":1.32454144954681,\"z\":-84.8181610107422},\"rot\":{\"x\":0.0208172630518675,\"y\":269.969055175781,\"z\":0.0167543943971395}},\"d3b405\":{\"lock\":false,\"pos\":{\"x\":-19.3000068664551,\"y\":1.33854138851166,\"z\":-53.4358291625977},\"rot\":{\"x\":0.0208118334412575,\"y\":269.99267578125,\"z\":0.0167693011462688}},\"d3cab5\":{\"lock\":false,\"pos\":{\"x\":-22.6157493591309,\"y\":1.34008347988129,\"z\":-76.9460296630859},\"rot\":{\"x\":0.0167705453932285,\"y\":179.999984741211,\"z\":359.979187011719}},\"d6fdbf\":{\"lock\":false,\"pos\":{\"x\":-16.6316871643066,\"y\":1.36149835586548,\"z\":-62.4525566101074},\"rot\":{\"x\":0.0208269469439983,\"y\":269.965209960938,\"z\":0.016755286604166}},\"d9fb86\":{\"lock\":false,\"pos\":{\"x\":-16.6317729949951,\"y\":1.35689842700958,\"z\":-78.1672897338867},\"rot\":{\"x\":0.0208139196038246,\"y\":270.008666992188,\"z\":0.0167712420225143}},\"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.6467628479004,\"y\":1.36221206188202,\"z\":-59.995361328125},\"rot\":{\"x\":0.0208131168037653,\"y\":270.010681152344,\"z\":0.0167723800987005}},\"e04b48\":{\"lock\":false,\"pos\":{\"x\":-16.6361293792725,\"y\":1.35761880874634,\"z\":-75.7012634277344},\"rot\":{\"x\":0.0208205860108137,\"y\":269.987365722656,\"z\":0.0167635306715965}},\"e9ad05\":{\"lock\":false,\"pos\":{\"x\":-19.2936096191406,\"y\":1.30989551544189,\"z\":-76.9415512084961},\"rot\":{\"x\":0.0208100210875273,\"y\":269.995941162109,\"z\":0.016769165173173}},\"f62044\":{\"lock\":false,\"pos\":{\"x\":-19.3000545501709,\"y\":1.33144497871399,\"z\":-61.2332344055176},\"rot\":{\"x\":0.0208065081387758,\"y\":270.012023925781,\"z\":0.0167752727866173}}}}",
"XmlUI": ""
},
{
"GUID": "895eaa",
"Name": "Custom_Model",
"Transform": {
"posX": 40.2920341,
"posY": 1.42948055,
"posZ": 0.379370779,
"rotX": 359.920135,
"rotY": 269.989227,
"rotZ": 0.0168868471,
"scaleX": 1.0,
"scaleY": 0.139652729,
"scaleZ": 1.0
},
"Nickname": "Edge of the Earth",
"Description": "",
"GMNotes": "campaigns/edge_of_the_earth.json",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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/1856042908471857208/3B48FFA47FB366932049AD9CD8A3222A8F89FAEB/",
"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\":{\"0b0b79\":{\"lock\":false,\"pos\":{\"x\":-1.46565234661102,\"y\":1.47562205791473,\"z\":-26.9321918487549},\"rot\":{\"x\":359.920135498047,\"y\":269.997589111328,\"z\":0.0168750546872616}},\"0cdf95\":{\"lock\":false,\"pos\":{\"x\":12.2519302368164,\"y\":1.46795833110809,\"z\":11.9864377975464},\"rot\":{\"x\":359.920135498047,\"y\":269.996398925781,\"z\":0.0168785694986582}},\"210053\":{\"lock\":false,\"pos\":{\"x\":0.270083129405975,\"y\":1.4896068572998,\"z\":28.7771110534668},\"rot\":{\"x\":359.920104980469,\"y\":270.018585205078,\"z\":0.0168460682034492}},\"31cdb9\":{\"lock\":false,\"pos\":{\"x\":12.2497777938843,\"y\":1.46560573577881,\"z\":3.98639631271362},\"rot\":{\"x\":359.920135498047,\"y\":269.999938964844,\"z\":0.0168741177767515}},\"460ef8\":{\"lock\":false,\"pos\":{\"x\":2.7240903377533,\"y\":1.54846370220184,\"z\":22.0571899414063},\"rot\":{\"x\":359.920104980469,\"y\":270.032989501953,\"z\":0.0168298408389091}},\"470ad0\":{\"lock\":false,\"pos\":{\"x\":2.7083432674408,\"y\":1.58133733272552,\"z\":19.1819362640381},\"rot\":{\"x\":359.920104980469,\"y\":270.006195068359,\"z\":180.016845703125}},\"655d56\":{\"lock\":false,\"pos\":{\"x\":12.249605178833,\"y\":1.46325016021729,\"z\":-4.01364898681641},\"rot\":{\"x\":359.920135498047,\"y\":269.999938964844,\"z\":0.0168741792440414}},\"97e141\":{\"lock\":false,\"pos\":{\"x\":-1.09167885780334,\"y\":1.47204566001892,\"z\":20.4249095916748},\"rot\":{\"x\":359.983093261719,\"y\":3.91473658964969E-05,\"z\":359.920043945313}},\"9d4840\":{\"lock\":false,\"pos\":{\"x\":12.2501087188721,\"y\":1.46089375019073,\"z\":-12.013650894165},\"rot\":{\"x\":359.920135498047,\"y\":269.999938964844,\"z\":0.016874086111784}},\"efaa42\":{\"lock\":false,\"pos\":{\"x\":12.2496566772461,\"y\":1.4585382938385,\"z\":-20.0140609741211},\"rot\":{\"x\":359.920104980469,\"y\":270.060791015625,\"z\":0.016789399087429}}}}",
"XmlUI": ""
},
{
"GUID": "a16a1a",
"Name": "Custom_Model",
"Transform": {
"posX": 40.0372047,
"posY": 1.43812156,
"posZ": 28.5179424,
"rotX": 359.920135,
"rotY": 269.972015,
"rotZ": 0.0169116128,
"scaleX": 1.0,
"scaleY": 0.139652729,
"scaleZ": 1.0
},
"Nickname": "The Dream-Eaters",
"Description": "",
"GMNotes": "campaigns/dream_eaters.json",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "757324",
"Name": "Custom_Model",
"Transform": {
"posX": 66.90692,
"posY": 1.75056124,
"posZ": -27.9115314,
"rotX": 359.9201,
"rotY": 269.992218,
"rotZ": 0.0168836955,
"scaleX": 2.0,
"scaleY": 0.10587021,
"scaleZ": 1.69295752
},
"Nickname": "Return to The Circle Undone",
"Description": "",
"GMNotes": "campaigns/return_to_tcu.json",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "0016fc",
"Name": "Custom_Token",
"Transform": {
"posX": -32.672,
"posY": 1.5827,
"posZ": 19.236,
"rotX": 359.9831,
"rotY": 359.9894,
"rotZ": 359.9201,
"scaleX": 0.429196239,
"scaleY": 1.0,
"scaleZ": 0.429196239
},
"Nickname": "Intellect",
"Description": "Left click - Increase\nRight click - Decrease",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"CleanUpHelper_ignore"
],
"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/sj8GatY.png",
"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": "0840d5",
"Name": "Custom_Tile",
"Transform": {
"posX": -25.4933,
"posY": 1.54,
"posZ": -26.54,
"rotX": 0.0,
"rotY": 180.0,
"rotZ": 0.0,
"scaleX": 6.43188572,
"scaleY": 1.0,
"scaleZ": 6.43188572
},
"Nickname": "Playermat 4: Red",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": false,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1859438430150777205/4ED2E0BC2A2C4728DA5E155C06AF1BA1FCB00D3B/",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "-- set true to enable debug logging\r\nDEBUG = false\r\n-- we use this to turn off collision handling (for clue spawning)\r\n-- until after load is complete (probably a better way to do this)\r\nCOLLISION_ENABLED = false\r\n-- position offsets, adjust these to reposition things relative to mat [x,y,z]\r\nDRAWN_ENCOUNTER_CARD_OFFSET = {1.365, 0.5, -0.635}\r\nDRAWN_CHAOS_TOKEN_OFFSET = {-1.55, 0.5, -0.58}\r\nDISCARD_BUTTON_OFFSETS = {\r\n {-1.365, 0.2, -0.945},\r\n {-0.91, 0.2, -0.945},\r\n {-0.455, 0.2, -0.945},\r\n {0, 0.2, -0.945},\r\n {0.455, 0.2, -0.945},\r\n {0.91, 0.2, -0.945},\r\n}\r\n-- draw deck and discard zone\r\nDECK_POSITION = { x=-1.4, y=0, z=0.3 }\r\nDECK_ZONE_SCALE = { x=3, y=5, z=8 }\r\nDRAW_DECK_POSITION = { x=-13.7, y=2.5, z=-26.4 }\r\n\r\n-- play zone\r\nPLAYER_COLOR = \"Red\"\r\nPLAY_ZONE_POSITION = { x=-25, y=4, z=-27 }\r\nPLAY_ZONE_ROTATION = { x=0, y=180, z=0 }\r\nPLAY_ZONE_SCALE = { x=30, y=5, z=15 }\r\n\r\nRESOURCE_COUNTER_GUID = \"a4b60d\"\r\n\r\n-- the position of the global discard pile\r\n-- TODO: delegate to global for any auto discard actions\r\nDISCARD_POSITION = {-3.85, 3, 10.38}\r\n-- DISCARD PILE POSITION\r\nDISCARD_PILE_POSITION = { -18.79, 4, -30.84 }\r\n\r\nlocal activeInvestigatorId = nil\r\nlocal willpowerTokenGuid = \"8b6743\"\r\nlocal intellectTokenGuid = \"b4ef12\"\r\nlocal combatTokenGuid = \"93a48b\"\r\nlocal agilityTokenGuid = \"2c3f8d\"\r\n\r\nfunction log(message)\r\n if DEBUG then\r\n print(message)\r\n end\r\nend\r\n\r\n-- builds a function that discards things in searchPostion to discardPostition\r\nfunction makeDiscardHandlerFor(searchPosition, discardPosition)\r\n return function (_)\r\n local discardItemList = findObjectsAtPosition(searchPosition)\r\n for _, obj in ipairs(discardItemList) do\r\n obj.setPositionSmooth(discardPosition, false, true)\r\n obj.setRotation({0, -90, 0})\r\n end\r\n end\r\nend\r\n\r\n-- build a discard button at position to discard from searchPosition to discardPosition\r\n-- number must be unique\r\nfunction makeDiscardButton(position, searchPosition, discardPosition, number)\r\n local handler = makeDiscardHandlerFor(searchPosition, discardPosition)\r\n local handlerName = 'handler' .. number\r\n self.setVar(handlerName, handler)\r\n self.createButton({\r\n label = \"Discard\",\r\n click_function= handlerName,\r\n function_owner= self,\r\n position = position,\r\n scale = {0.12, 0.12, 0.12},\r\n width = 800,\r\n height = 280,\r\n font_size = 180,\r\n })\r\nend\r\n\r\nfunction onload(save_state)\r\n\r\n self.interactable = DEBUG\r\n DATA_HELPER = getObjectFromGUID('708279')\r\n PLAYER_CARDS = DATA_HELPER.getTable('PLAYER_CARD_DATA')\r\n PLAYER_CARD_TOKEN_OFFSETS = DATA_HELPER.getTable('PLAYER_CARD_TOKEN_OFFSETS')\r\n\r\n -- positions of encounter card slots\r\n local encounterSlots = {\r\n {1.365, 0, -0.7},\r\n {0.91, 0, -0.7},\r\n {0.455, 0, -0.7},\r\n {0, 0, -0.7},\r\n {-0.455, 0, -0.7},\r\n {-0.91, 0, -0.7},\r\n }\r\n\r\n local i = 1\r\n while i <= 6 do\r\n makeDiscardButton(DISCARD_BUTTON_OFFSETS[i], encounterSlots[i], DISCARD_POSITION, i)\r\n i = i + 1\r\n end\r\n\r\n self.createButton({\r\n label = \" \",\r\n click_function = \"drawEncountercard\",\r\n function_owner = self,\r\n position = {-1.88,0,-0.7},\r\n rotation = {0,-15,0},\r\n width = 170,\r\n height = 255,\r\n font_size = 50\r\n })\r\n\r\n self.createButton({\r\n label=\" \",\r\n click_function = \"drawChaostokenButton\",\r\n function_owner = self,\r\n position = {1.84,0.0,-0.74},\r\n rotation = {0,-45,0},\r\n width = 125,\r\n height = 125,\r\n font_size = 50\r\n })\r\n\r\n self.createButton({\r\n label=\"Upkeep\",\r\n click_function = \"doUpkeep\",\r\n function_owner = self,\r\n position = {1.84,0.1,-0.44},\r\n scale = {0.12, 0.12, 0.12},\r\n width = 800,\r\n height = 280,\r\n font_size = 180\r\n })\r\n\r\n local state = JSON.decode(save_state)\r\n if state ~= nil then\r\n if state.playerColor ~= nil then\r\n PLAYER_COLOR = state.playerColor\r\n end\r\n if state.zoneID ~= nil then\r\n zoneID = state.zoneID\r\n Wait.time(checkDeckZoneExists, 30)\r\n else\r\n spawnDeckZone()\r\n end\r\n else\r\n spawnDeckZone()\r\n end\r\n\r\n COLLISION_ENABLED = true\r\nend\r\n\r\nfunction onSave()\r\n return JSON.encode({ zoneID=zoneID, playerColor=PLAYER_COLOR })\r\nend\r\n\r\nfunction setMessageColor(color)\r\n -- send messages to player who clicked button if no seated player found\r\n messageColor = Player[PLAYER_COLOR].seated and PLAYER_COLOR or color\r\nend\r\n\r\n-- get the draw deck and discard pile objects\r\nfunction getDrawDiscardDecks()\r\n drawDeck = nil\r\n discardPile = nil\r\n topCard = nil\r\n\r\n local zone = getObjectFromGUID(zoneID)\r\n if zone == nil then return end\r\n\r\n for i,object in ipairs(zone.getObjects()) do\r\n if object.tag == \"Deck\" or object.tag == \"Card\" then\r\n local relativePos = self.positionToLocal(object.getPosition())\r\n if relativePos.z > 0.5 then\r\n discardPile = object\r\n else\r\n if investigator == \"Norman Withers\" and object.tag == \"Card\" and not object.is_face_down then\r\n topCard = object\r\n else\r\n drawDeck = object\r\n end\r\n end\r\n end\r\n end\r\nend\r\n\r\nfunction doUpkeep(obj, color, alt_click)\r\n -- right-click binds to new player color\r\n if alt_click then\r\n PLAYER_COLOR = color\r\n printToColor(\"Upkeep button bound to \" .. color, color)\r\n return\r\n end\r\n\r\n setMessageColor(color)\r\n\r\n -- unexhaust cards in play zone\r\n local objs = Physics.cast({\r\n origin = PLAY_ZONE_POSITION,\r\n direction = { x=0, y=1, z=0 },\r\n type = 3,\r\n size = PLAY_ZONE_SCALE,\r\n orientation = PLAY_ZONE_ROTATION\r\n })\r\n\r\n local y = PLAY_ZONE_ROTATION.y\r\n\r\n investigator = nil\r\n local miniId = nil\r\n local forcedLearning = false\r\n for i,v in ipairs(objs) do\r\n local obj = v.hit_object\r\n local props = obj.getCustomObject() or {}\r\n if obj.tag == \"Card\" and not obj.is_face_down and not doNotReady(obj) then\r\n local notes = JSON.decode(obj.getGMNotes()) or {}\r\n local name = obj.getName()\r\n if notes.type == \"Investigator\" and notes.id ~= nil then\r\n miniId = string.match(notes.id, \"%d%d%d%d%d%d-\") .. \"-m\"\r\n end\r\n if notes.type == \"Investigator\" or props.unique_back then\r\n if string.match(name, \"Jenny Barnes\") ~= nil then\r\n investigator = \"Jenny Barnes\"\r\n elseif name == \"Patrice Hathaway\" then\r\n investigator = name\r\n elseif string.match(name, \"Norman Withers\") ~= nil then\r\n investigator = \"Norman Withers\"\r\n end\r\n elseif name == \"Forced Learning\" then\r\n forcedLearning = true\r\n else\r\n local r = obj.getRotation()\r\n if (r.y - y > 10) or (y - r.y > 10) then\r\n obj.setRotation(PLAY_ZONE_ROTATION)\r\n end\r\n end\r\n elseif obj.getDescription() == \"Action Token\" then\r\n if obj.is_face_down then obj.flip() end\r\n end\r\n end\r\n\r\n -- flip investigator mini-card if found\r\n if miniId ~= nil then\r\n objs = getObjects()\r\n for i, obj in ipairs(objs) do\r\n if obj.tag == \"Card\" then\r\n local notes = JSON.decode(obj.getGMNotes())\r\n if notes ~= nil and notes.type == \"Minicard\" and notes.id == miniId then\r\n if obj.is_face_down then\r\n obj.flip()\r\n end\r\n goto done\r\n end\r\n end\r\n end\r\n end\r\n ::done::\r\n\r\n -- flip summoned servitor mini-cards (To-Do: don't flip all of them)\r\n for i, obj in ipairs(getObjects()) do\r\n if obj.tag == \"Card\" then\r\n local notes = JSON.decode(obj.getGMNotes())\r\n if notes ~= nil and notes.type == \"Minicard\" and notes.id == \"09080-m\" then\r\n if obj.is_face_down then\r\n obj.flip()\r\n end\r\n end\r\n end\r\n end\r\n\r\n -- gain resource\r\n getObjectFromGUID(RESOURCE_COUNTER_GUID).call(\"add_subtract\")\r\n if investigator == \"Jenny Barnes\" then\r\n getObjectFromGUID(RESOURCE_COUNTER_GUID).call(\"add_subtract\")\r\n printToColor(\"Gaining 2 resources (Jenny)\", messageColor)\r\n end\r\n\r\n -- special draw for Patrice Hathaway (shuffle discards if necessary)\r\n if investigator == \"Patrice Hathaway\" then\r\n patriceDraw()\r\n return\r\n end\r\n\r\n -- special draw for Forced Learning\r\n if forcedLearning then\r\n forcedLearningDraw()\r\n return\r\n end\r\n\r\n drawCardsWithReshuffle(1)\r\nend\r\n\r\nfunction doDrawOne(obj, color)\r\n setMessageColor(color)\r\n drawCardsWithReshuffle(1)\r\nend\r\n\r\nfunction doNotReady(card)\r\n if card.getVar(\"do_not_ready\") == true then\r\n return true\r\n else\r\n return false\r\n end\r\nend\r\n\r\n-- draw X cards (shuffle discards if necessary)\r\nfunction drawCardsWithReshuffle(numCards)\r\n if type(numCards) ~= \"number\" then numCards = 1 end\r\n\r\n getDrawDiscardDecks()\r\n\r\n if investigator == \"Norman Withers\" then\r\n local harbinger = false\r\n if topCard ~= nil and topCard.getName() == \"The Harbinger\" then\r\n harbinger = true\r\n else\r\n if drawDeck ~= nil and not drawDeck.is_face_down then\r\n local cards = drawDeck.getObjects()\r\n local bottomCard = cards[#cards]\r\n if bottomCard.name == \"The Harbinger\" then\r\n harbinger = true\r\n end\r\n end\r\n end\r\n\r\n if harbinger then\r\n printToColor(\"The Harbinger is on top of your deck, not drawing cards\", messageColor)\r\n return -1\r\n end\r\n\r\n if topCard ~= nil then\r\n topCard.deal(numCards, PLAYER_COLOR)\r\n numCards = numCards - 1\r\n if numCards == 0 then return end\r\n end\r\n end\r\n\r\n local deckSize\r\n if drawDeck == nil then\r\n deckSize = 0\r\n elseif drawDeck.tag == \"Deck\" then\r\n deckSize = #drawDeck.getObjects()\r\n else\r\n deckSize = 1\r\n end\r\n\r\n if deckSize >= numCards then\r\n drawCards(numCards)\r\n return\r\n end\r\n\r\n drawCards(deckSize)\r\n if discardPile ~= nil then\r\n shuffleDiscardIntoDeck()\r\n Wait.time(|| drawCards(numCards - deckSize), 1)\r\n end\r\n printToColor(\"Take 1 horror (drawing card from empty deck)\", messageColor)\r\nend\r\n\r\nfunction drawCards(numCards)\r\n if drawDeck == nil then return end\r\n drawDeck.deal(numCards, PLAYER_COLOR)\r\nend\r\n\r\nfunction shuffleDiscardIntoDeck()\r\n discardPile.flip()\r\n discardPile.shuffle()\r\n discardPile.setPositionSmooth(DRAW_DECK_POSITION, false, false)\r\n drawDeck = discardPile\r\n discardPile = nil\r\nend\r\n\r\nfunction patriceDraw()\r\n local handSize = #Player[PLAYER_COLOR].getHandObjects()\r\n if handSize >= 5 then return end\r\n local cardsToDraw = 5 - handSize\r\n printToColor(\"Drawing \" .. cardsToDraw .. \" cards (Patrice)\", messageColor)\r\n drawCardsWithReshuffle(cardsToDraw)\r\nend\r\n\r\nfunction forcedLearningDraw()\r\n printToColor(\"Drawing 2 cards, discard 1 (Forced Learning)\", messageColor)\r\n drawCardsWithReshuffle(2)\r\nend\r\n\r\nfunction checkDeckZoneExists()\r\n if getObjectFromGUID(zoneID) ~= nil then return end\r\n spawnDeckZone()\r\nend\r\n\r\nfunction spawnDeckZone()\r\n local pos = self.positionToWorld(DECK_POSITION)\r\n local zoneProps = {\r\n position = pos,\r\n scale = DECK_ZONE_SCALE,\r\n type = 'ScriptingTrigger',\r\n callback = 'zoneCallback',\r\n callback_owner = self,\r\n rotation = self.getRotation()\r\n }\r\n spawnObject(zoneProps)\r\nend\r\n\r\nfunction zoneCallback(zone)\r\n zoneID = zone.getGUID()\r\nend\r\n\r\nfunction findObjectsAtPosition(localPos)\r\n local globalPos = self.positionToWorld(localPos)\r\n local objList = Physics.cast({\r\n origin=globalPos, --Where the cast takes place\r\n direction={0,1,0}, --Which direction it moves (up is shown)\r\n type=2, --Type. 2 is \"sphere\"\r\n size={2,2,2}, --How large that sphere is\r\n max_distance=1, --How far it moves. Just a little bit\r\n debug=false --If it displays the sphere when casting.\r\n })\r\n local decksAndCards = {}\r\n for _, obj in ipairs(objList) do\r\n if obj.hit_object.tag == \"Deck\" or obj.hit_object.tag == \"Card\" then\r\n table.insert(decksAndCards, obj.hit_object)\r\n end\r\n end\r\n return decksAndCards\r\nend\r\n\r\nfunction spawnTokenOn(object, offsets, tokenType)\r\n local tokenPosition = object.positionToWorld(offsets)\r\n spawnToken(tokenPosition, tokenType)\r\nend\r\n\r\n-- spawn a group of tokens of the given type on the object\r\nfunction spawnTokenGroup(object, tokenType, tokenCount)\r\n if (tokenCount < 1 or tokenCount > 12) then\r\n return\r\n end\r\n local offsets = PLAYER_CARD_TOKEN_OFFSETS[tokenCount]\r\n if offsets == nil then\r\n error(\"couldn't find offsets for \" .. tokenCount .. ' tokens')\r\n end\r\n local i = 0\r\n while i < tokenCount do\r\n local offset = offsets[i + 1]\r\n spawnTokenOn(object, offset, tokenType)\r\n i = i + 1\r\n end\r\nend\r\n\r\nfunction buildPlayerCardKey(object)\r\n return object.getName() .. ':' .. object.getDescription()\r\nend\r\n\r\nfunction getPlayerCardData(object)\r\n return PLAYER_CARDS[buildPlayerCardKey(object)] or PLAYER_CARDS[object.getName()]\r\nend\r\n\r\nfunction shouldSpawnTokens(object)\r\n -- we assume we shouldn't spawn tokens if in doubt, this should\r\n -- only ever happen on load and in that case prevents respawns\r\n local spawned = DATA_HELPER.call('getSpawnedPlayerCardGuid', {object.getGUID()})\r\n local hasDataHelperData = getPlayerCardData(object)\r\n local cardMetadata = JSON.decode(object.getGMNotes()) or {}\r\n local hasUses = cardMetadata.uses ~= nil\r\n return not spawned and (hasDataHelperData or hasUses)\r\nend\r\n\r\nfunction markSpawned(object)\r\n local saved = DATA_HELPER.call('setSpawnedPlayerCardGuid', {object.getGUID(), true})\r\n if not saved then\r\n error('attempt to mark player card spawned before data loaded')\r\n end\r\nend\r\n\r\nfunction spawnTokensFor(object)\r\n local cardMetadata = JSON.decode(object.getGMNotes()) or {}\r\n local token = nil\r\n local type = nil\r\n local tokenCount = 0\r\n if (cardMetadata.uses ~= nil) then\r\n for i, useInfo in ipairs(cardMetadata.uses) do\r\n token = useInfo.token\r\n type = useInfo.type\r\n tokenCount = useInfo.count\r\n if (activeInvestigatorId == \"03004\" and useInfo.type == \"Charge\") then\r\n tokenCount = tokenCount + 1\r\n end\r\n log(\"Spawning tokens for \"..object.getName()..'['..object.getDescription()..']: '..tokenCount..\"x \"..token)\r\n spawnTokenGroup(object, token, tokenCount)\r\n end\r\n else\r\n local data = getPlayerCardData(object)\r\n if data == nil then\r\n error('attempt to spawn tokens for ' .. object.getName() .. ': no token data')\r\n end\r\n token = data['tokenType']\r\n tokenCount = data['tokenCount']\r\n log(object.getName() .. '[' .. object.getDescription() .. ']' .. ' : ' .. data['tokenType'] .. ' : ' .. data['tokenCount'])\r\n log(\"Spawning tokens for \"..object.getName()..'['..object.getDescription()..']: '..tokenCount..\"x \"..token)\r\n spawnTokenGroup(object, token, tokenCount)\r\n end\r\n markSpawned(object)\r\nend\r\n\r\nfunction resetSpawnState()\r\n local zone = getObjectFromGUID(zoneID)\r\n if zone == nil then return end\r\n\r\n for i,object in ipairs(zone.getObjects()) do\r\n if object.tag == \"Card\" then\r\n local guid = object.getGUID()\r\n if guid ~= nil then unmarkSpawned(guid, true) end\r\n elseif object.tag == \"Deck\" then\r\n local cards = object.getObjects()\r\n if (cards ~= nil) then\r\n for i,v in ipairs(cards) do\r\n if v.guid ~= nil then unmarkSpawned(v.guid) end\r\n end\r\n end\r\n end\r\n end\r\nend\r\n\r\nfunction unmarkSpawned(guid, force)\r\n if not force and getObjectFromGUID(guid) ~= nil then return end\r\n DATA_HELPER.call('setSpawnedPlayerCardGuid', {guid, false})\r\nend\r\n\r\nfunction onCollisionEnter(collision_info)\r\n if (collision_info.collision_object.name == \"Card\") then\r\n maybeUpdateActiveInvestigator(collision_info.collision_object)\r\n end\r\n if not COLLISION_ENABLED then\r\n return\r\n end\r\n\r\n local object = collision_info.collision_object\r\n Wait.time(resetSpawnState, 1)\r\n -- anything to the left of this is legal to spawn\r\n local discardSpawnBoundary = self.positionToWorld({-1.2, 0, 0})\r\n local boundaryLocalToCard = object.positionToLocal(discardSpawnBoundary)\r\n if boundaryLocalToCard.x > 0 then\r\n log('not checking for token spawn, boundary relative is ' .. boundaryLocalToCard.x)\r\n return\r\n end\r\n if not object.is_face_down and shouldSpawnTokens(object) then\r\n spawnTokensFor(object)\r\n end\r\nend\r\n\r\nfunction maybeUpdateActiveInvestigator(card)\r\n local cardMetadata = JSON.decode(card.getGMNotes()) or {}\r\n if (cardMetadata.type == \"Investigator\") then\r\n activeInvestigatorId = cardMetadata.id\r\n updateStatToken(willpowerTokenGuid, cardMetadata.willpowerIcons)\r\n updateStatToken(intellectTokenGuid, cardMetadata.intellectIcons)\r\n updateStatToken(combatTokenGuid, cardMetadata.combatIcons)\r\n updateStatToken(agilityTokenGuid, cardMetadata.agilityIcons)\r\n end\r\nend\r\n\r\nfunction updateStatToken(tokenGuid, val)\r\n local statToken = getObjectFromGUID(tokenGuid)\r\n if (statToken == nil) then\r\n return\r\n end\r\n statToken.call(\"reset_val\")\r\n for i = 1, val do\r\n statToken.call(\"add_subtract\", { alt_click = false })\r\n end\r\nend\r\n\r\n-- functions delegated to Global\r\nfunction drawChaostokenButton(object, player, isRightClick)\r\n -- local toPosition = self.positionToWorld(DRAWN_CHAOS_TOKEN_OFFSET)\r\n Global.call(\"drawChaostoken\", {self, DRAWN_CHAOS_TOKEN_OFFSET, isRightClick})\r\nend\r\n\r\nfunction drawEncountercard(object, player, isRightClick)\r\nlocal toPosition = self.positionToWorld(DRAWN_ENCOUNTER_CARD_OFFSET)\r\nGlobal.call(\"drawEncountercard\", {toPosition, self.getRotation(), isRightClick})\r\nend\r\n\r\nfunction spawnToken(position, tokenType)\r\n Global.call('spawnToken', {position, tokenType})\r\nend\r\n\r\nfunction updatePlayerCards(args)\r\n local custom_data_helper = getObjectFromGUID(args[1])\r\n data_player_cards = custom_data_helper.getTable(\"PLAYER_CARD_DATA\")\r\n for k, v in pairs(data_player_cards) do\r\n PLAYER_CARDS[k] = v\r\n end\r\nend",
"LuaScriptState": "{\"playerColor\":\"Red\",\"zoneID\":\"18538f\"}",
"XmlUI": "",
"AttachedSnapPoints": [
{
"Position": {
"x": -0.629111648,
"y": 0.100000143,
"z": 0.554754734
}
},
{
"Position": {
"x": -0.613958359,
"y": 0.100000143,
"z": 0.0280519947
}
},
{
"Position": {
"x": -0.17480278,
"y": 0.100000143,
"z": 0.0360359326
}
},
{
"Position": {
"x": -0.1723685,
"y": 0.100000143,
"z": 0.55498457
}
},
{
"Position": {
"x": 0.21396634,
"y": 0.100000143,
"z": 0.562727451
}
},
{
"Position": {
"x": 0.218466476,
"y": 0.100000143,
"z": 0.03913161
}
},
{
"Position": {
"x": 0.6033764,
"y": 0.100000143,
"z": 0.0369475856
}
},
{
"Position": {
"x": 0.6065171,
"y": 0.100000143,
"z": 0.558838844
}
},
{
"Position": {
"x": 0.978043854,
"y": 0.100000143,
"z": 0.5603886
}
},
{
"Position": {
"x": 0.982044935,
"y": 0.100000143,
"z": 0.03901247
}
},
{
"Position": {
"x": 1.37323213,
"y": 0.100000143,
"z": 0.0426395535
}
},
{
"Position": {
"x": 1.37244391,
"y": 0.100000143,
"z": 0.562716246
}
},
{
"Position": {
"x": 1.75598085,
"y": 0.100000143,
"z": 0.568205357
}
},
{
"Position": {
"x": 1.76020014,
"y": 0.100000143,
"z": 0.0443841629
}
},
{
"Position": {
"x": -1.1752795,
"y": 0.100000143,
"z": 0.005508829
}
},
{
"Position": {
"x": -1.82094121,
"y": 0.100000143,
"z": 0.6123939
},
"Rotation": {
"x": 4.89472329E-09,
"y": 0.0200124569,
"z": -2.44013663E-08
}
},
{
"Position": {
"x": -1.82094061,
"y": 0.100000143,
"z": -0.0257329214
},
"Rotation": {
"x": 3.62628718E-08,
"y": 0.0200261548,
"z": 2.64634075E-08
}
},
{
"Position": {
"x": 0.91052705,
"y": 0.100000143,
"z": -0.64106077
},
"Rotation": {
"x": -2.40847982E-08,
"y": 0.020176379,
"z": 1.62659841E-08
}
},
{
"Position": {
"x": 1.36664355,
"y": 0.100000143,
"z": -0.6410325
},
"Rotation": {
"x": -4.23876649E-08,
"y": 0.0200124569,
"z": -2.25093757E-08
}
},
{
"Position": {
"x": -0.98203814,
"y": 0.100000143,
"z": 0.12119285
},
"Tags": [
"action_token"
]
},
{
"Position": {
"x": -1.000262,
"y": 0.100000143,
"z": -0.27315554
},
"Tags": [
"action_token"
]
},
{
"Position": {
"x": -1.17774117,
"y": 0.100000143,
"z": -0.273151129
},
"Tags": [
"action_token"
]
},
{
"Position": {
"x": -1.35521638,
"y": 0.100000143,
"z": -0.273157358
},
"Tags": [
"action_token"
]
}
]
},
{
"GUID": "181fa2",
"Name": "Custom_Token",
"Transform": {
"posX": -35.6023,
"posY": 1.5868,
"posZ": 19.236,
"rotX": 359.9832,
"rotY": 359.9901,
"rotZ": 359.9201,
"scaleX": 0.429196239,
"scaleY": 1.0,
"scaleZ": 0.429196239
},
"Nickname": "Agility",
"Description": "Left click - Increase\nRight click - Decrease",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"CleanUpHelper_ignore"
],
"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/vXVWwD0.png",
"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": "19026b",
"Name": "Custom_Token",
"Transform": {
"posX": -34.1371,
"posY": 1.5848,
"posZ": 19.236,
"rotX": 359.9831,
"rotY": 359.9896,
"rotZ": 359.9201,
"scaleX": 0.429196239,
"scaleY": 1.0,
"scaleZ": 0.429196239
},
"Nickname": "Combat",
"Description": "Left click - Increase\nRight click - Decrease",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"CleanUpHelper_ignore"
],
"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/YBjxze6.png",
"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": "2c3f8d",
"Name": "Custom_Token",
"Transform": {
"posX": -15.8606,
"posY": 1.548,
"posZ": -19.2159,
"rotX": 0.016800452,
"rotY": 180.0226,
"rotZ": 0.0798999444,
"scaleX": 0.429196239,
"scaleY": 1.0,
"scaleZ": 0.429196239
},
"Nickname": "Agility",
"Description": "Left click - Increase\nRight click - Decrease",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"CleanUpHelper_ignore"
],
"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/vXVWwD0.png",
"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": "383d8b",
"Name": "Custom_Tile",
"Transform": {
"posX": -25.57,
"posY": 1.43,
"posZ": 26.54,
"rotX": 359.98,
"rotY": 0.0211,
"rotZ": 359.9201,
"scaleX": 6.43188572,
"scaleY": 1.0,
"scaleZ": 6.43188572
},
"Nickname": "Playermat 3: Green",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": false,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1859438430150777205/4ED2E0BC2A2C4728DA5E155C06AF1BA1FCB00D3B/",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "-- set true to enable debug logging\r\nDEBUG = false\r\n-- we use this to turn off collision handling (for clue spawning)\r\n-- until after load is complete (probably a better way to do this)\r\nCOLLISION_ENABLED = false\r\n-- position offsets, adjust these to reposition things relative to mat [x,y,z]\r\nDRAWN_ENCOUNTER_CARD_OFFSET = {1.365, 0.5, -0.635}\r\nDRAWN_CHAOS_TOKEN_OFFSET = {-1.55, 0.5, -0.58}\r\nDISCARD_BUTTON_OFFSETS = {\r\n {-1.365, 0.2, -0.945},\r\n {-0.91, 0.2, -0.945},\r\n {-0.455, 0.2, -0.945},\r\n {0, 0.2, -0.945},\r\n {0.455, 0.2, -0.945},\r\n {0.91, 0.2, -0.945},\r\n}\r\n-- draw deck and discard zone\r\nDECK_POSITION = { x=-1.4, y=0, z=0.3 }\r\nDECK_ZONE_SCALE = { x=3, y=5, z=8 }\r\nDRAW_DECK_POSITION = { x=-37.2, y=2.5, z=26.3 }\r\n\r\n-- play zone\r\nPLAYER_COLOR = \"Green\"\r\nPLAY_ZONE_POSITION = { x=-25, y=4, z=27 }\r\nPLAY_ZONE_ROTATION = { x=0, y=0, z=0 }\r\nPLAY_ZONE_SCALE = { x=30, y=5, z=15 }\r\n\r\nRESOURCE_COUNTER_GUID = \"cd15ac\"\r\n\r\n-- the position of the global discard pile\r\n-- TODO: delegate to global for any auto discard actions\r\nDISCARD_POSITION = {-3.85, 3, 10.38}\r\n-- DISCARD PILE POSITION\r\nDISCARD_PILE_POSITION = { -37.11, 4, 30.76 }\r\n\r\nlocal activeInvestigatorId = nil\r\nlocal willpowerTokenGuid = \"fa6df4\"\r\nlocal intellectTokenGuid = \"0016fc\"\r\nlocal combatTokenGuid = \"19026b\"\r\nlocal agilityTokenGuid = \"181fa2\"\r\n\r\nfunction log(message)\r\n if DEBUG then\r\n print(message)\r\n end\r\nend\r\n\r\n-- builds a function that discards things in searchPostion to discardPostition\r\nfunction makeDiscardHandlerFor(searchPosition, discardPosition)\r\n return function (_)\r\n local discardItemList = findObjectsAtPosition(searchPosition)\r\n for _, obj in ipairs(discardItemList) do\r\n obj.setPositionSmooth(discardPosition, false, true)\r\n obj.setRotation({0, -90, 0})\r\n end\r\n end\r\nend\r\n\r\n-- build a discard button at position to discard from searchPosition to discardPosition\r\n-- number must be unique\r\nfunction makeDiscardButton(position, searchPosition, discardPosition, number)\r\n local handler = makeDiscardHandlerFor(searchPosition, discardPosition)\r\n local handlerName = 'handler' .. number\r\n self.setVar(handlerName, handler)\r\n self.createButton({\r\n label = \"Discard\",\r\n click_function= handlerName,\r\n function_owner= self,\r\n position = position,\r\n scale = {0.12, 0.12, 0.12},\r\n width = 800,\r\n height = 280,\r\n font_size = 180,\r\n })\r\nend\r\n\r\nfunction onload(save_state)\r\n\r\n self.interactable = DEBUG\r\n DATA_HELPER = getObjectFromGUID('708279')\r\n PLAYER_CARDS = DATA_HELPER.getTable('PLAYER_CARD_DATA')\r\n PLAYER_CARD_TOKEN_OFFSETS = DATA_HELPER.getTable('PLAYER_CARD_TOKEN_OFFSETS')\r\n\r\n -- positions of encounter card slots\r\n local encounterSlots = {\r\n {1.365, 0, -0.7},\r\n {0.91, 0, -0.7},\r\n {0.455, 0, -0.7},\r\n {0, 0, -0.7},\r\n {-0.455, 0, -0.7},\r\n {-0.91, 0, -0.7},\r\n }\r\n\r\n local i = 1\r\n while i <= 6 do\r\n makeDiscardButton(DISCARD_BUTTON_OFFSETS[i], encounterSlots[i], DISCARD_POSITION, i)\r\n i = i + 1\r\n end\r\n\r\n self.createButton({\r\n label = \" \",\r\n click_function = \"drawEncountercard\",\r\n function_owner = self,\r\n position = {-1.88,0,-0.7},\r\n rotation = {0,-15,0},\r\n width = 170,\r\n height = 255,\r\n font_size = 50\r\n })\r\n\r\n self.createButton({\r\n label=\" \",\r\n click_function = \"drawChaostokenButton\",\r\n function_owner = self,\r\n position = {1.84,0.0,-0.74},\r\n rotation = {0,-45,0},\r\n width = 125,\r\n height = 125,\r\n font_size = 50\r\n })\r\n\r\n self.createButton({\r\n label=\"Upkeep\",\r\n click_function = \"doUpkeep\",\r\n function_owner = self,\r\n position = {1.84,0.1,-0.44},\r\n scale = {0.12, 0.12, 0.12},\r\n width = 800,\r\n height = 280,\r\n font_size = 180\r\n })\r\n\r\n local state = JSON.decode(save_state)\r\n if state ~= nil then\r\n if state.playerColor ~= nil then\r\n PLAYER_COLOR = state.playerColor\r\n end\r\n if state.zoneID ~= nil then\r\n zoneID = state.zoneID\r\n Wait.time(checkDeckZoneExists, 30)\r\n else\r\n spawnDeckZone()\r\n end\r\n else\r\n spawnDeckZone()\r\n end\r\n\r\n COLLISION_ENABLED = true\r\nend\r\n\r\nfunction onSave()\r\n return JSON.encode({ zoneID=zoneID, playerColor=PLAYER_COLOR })\r\nend\r\n\r\nfunction setMessageColor(color)\r\n -- send messages to player who clicked button if no seated player found\r\n messageColor = Player[PLAYER_COLOR].seated and PLAYER_COLOR or color\r\nend\r\n\r\n-- get the draw deck and discard pile objects\r\nfunction getDrawDiscardDecks()\r\n drawDeck = nil\r\n discardPile = nil\r\n topCard = nil\r\n\r\n local zone = getObjectFromGUID(zoneID)\r\n if zone == nil then return end\r\n\r\n for i,object in ipairs(zone.getObjects()) do\r\n if object.tag == \"Deck\" or object.tag == \"Card\" then\r\n local relativePos = self.positionToLocal(object.getPosition())\r\n if relativePos.z > 0.5 then\r\n discardPile = object\r\n else\r\n if investigator == \"Norman Withers\" and object.tag == \"Card\" and not object.is_face_down then\r\n topCard = object\r\n else\r\n drawDeck = object\r\n end\r\n end\r\n end\r\n end\r\nend\r\n\r\nfunction doUpkeep(obj, color, alt_click)\r\n -- right-click binds to new player color\r\n if alt_click then\r\n PLAYER_COLOR = color\r\n printToColor(\"Upkeep button bound to \" .. color, color)\r\n return\r\n end\r\n\r\n setMessageColor(color)\r\n\r\n -- unexhaust cards in play zone\r\n local objs = Physics.cast({\r\n origin = PLAY_ZONE_POSITION,\r\n direction = { x=0, y=1, z=0 },\r\n type = 3,\r\n size = PLAY_ZONE_SCALE,\r\n orientation = PLAY_ZONE_ROTATION\r\n })\r\n\r\n local y = PLAY_ZONE_ROTATION.y\r\n\r\n investigator = nil\r\n local miniId = nil\r\n local forcedLearning = false\r\n for i,v in ipairs(objs) do\r\n local obj = v.hit_object\r\n local props = obj.getCustomObject() or {}\r\n if obj.tag == \"Card\" and not obj.is_face_down and not doNotReady(obj) then\r\n local notes = JSON.decode(obj.getGMNotes()) or {}\r\n local name = obj.getName()\r\n if notes.type == \"Investigator\" and notes.id ~= nil then\r\n miniId = string.match(notes.id, \"%d%d%d%d%d%d-\") .. \"-m\"\r\n end\r\n if notes.type == \"Investigator\" or props.unique_back then\r\n if string.match(name, \"Jenny Barnes\") ~= nil then\r\n investigator = \"Jenny Barnes\"\r\n elseif name == \"Patrice Hathaway\" then\r\n investigator = name\r\n elseif string.match(name, \"Norman Withers\") ~= nil then\r\n investigator = \"Norman Withers\"\r\n end\r\n elseif name == \"Forced Learning\" then\r\n forcedLearning = true\r\n else\r\n local r = obj.getRotation()\r\n if (r.y - y > 10) or (y - r.y > 10) then\r\n obj.setRotation(PLAY_ZONE_ROTATION)\r\n end\r\n end\r\n elseif obj.getDescription() == \"Action Token\" then\r\n if obj.is_face_down then obj.flip() end\r\n end\r\n end\r\n\r\n -- flip investigator mini-card if found\r\n if miniId ~= nil then\r\n objs = getObjects()\r\n for i,obj in ipairs(objs) do\r\n if obj.tag == \"Card\" then\r\n local notes = JSON.decode(obj.getGMNotes())\r\n if notes ~= nil and notes.type == \"Minicard\" and notes.id == miniId then\r\n if obj.is_face_down then\r\n obj.flip()\r\n end\r\n goto done\r\n end\r\n end\r\n end\r\n end\r\n ::done::\r\n \r\n -- flip summoned servitor mini-cards (To-Do: don't flip all of them)\r\n for i, obj in ipairs(getObjects()) do\r\n if obj.tag == \"Card\" then\r\n local notes = JSON.decode(obj.getGMNotes())\r\n if notes ~= nil and notes.type == \"Minicard\" and notes.id == \"09080-m\" then\r\n if obj.is_face_down then\r\n obj.flip()\r\n end\r\n end\r\n end\r\n end\r\n\r\n -- gain resource\r\n getObjectFromGUID(RESOURCE_COUNTER_GUID).call(\"add_subtract\")\r\n if investigator == \"Jenny Barnes\" then\r\n getObjectFromGUID(RESOURCE_COUNTER_GUID).call(\"add_subtract\")\r\n printToColor(\"Gaining 2 resources (Jenny)\", messageColor)\r\n end\r\n\r\n -- special draw for Patrice Hathaway (shuffle discards if necessary)\r\n if investigator == \"Patrice Hathaway\" then\r\n patriceDraw()\r\n return\r\n end\r\n\r\n -- special draw for Forced Learning\r\n if forcedLearning then\r\n forcedLearningDraw()\r\n return\r\n end\r\n\r\n drawCardsWithReshuffle(1)\r\nend\r\n\r\nfunction doDrawOne(obj, color)\r\n setMessageColor(color)\r\n drawCardsWithReshuffle(1)\r\nend\r\n\r\nfunction doNotReady(card)\r\n if card.getVar(\"do_not_ready\") == true then\r\n return true\r\n else\r\n return false\r\n end\r\nend\r\n\r\n-- draw X cards (shuffle discards if necessary)\r\nfunction drawCardsWithReshuffle(numCards)\r\n if type(numCards) ~= \"number\" then numCards = 1 end\r\n\r\n getDrawDiscardDecks()\r\n\r\n if investigator == \"Norman Withers\" then\r\n local harbinger = false\r\n if topCard ~= nil and topCard.getName() == \"The Harbinger\" then\r\n harbinger = true\r\n else\r\n if drawDeck ~= nil and not drawDeck.is_face_down then\r\n local cards = drawDeck.getObjects()\r\n local bottomCard = cards[#cards]\r\n if bottomCard.name == \"The Harbinger\" then\r\n harbinger = true\r\n end\r\n end\r\n end\r\n\r\n if harbinger then\r\n printToColor(\"The Harbinger is on top of your deck, not drawing cards\", messageColor)\r\n return -1\r\n end\r\n\r\n if topCard ~= nil then\r\n topCard.deal(numCards, PLAYER_COLOR)\r\n numCards = numCards - 1\r\n if numCards == 0 then return end\r\n end\r\n end\r\n\r\n local deckSize\r\n if drawDeck == nil then\r\n deckSize = 0\r\n elseif drawDeck.tag == \"Deck\" then\r\n deckSize = #drawDeck.getObjects()\r\n else\r\n deckSize = 1\r\n end\r\n\r\n if deckSize >= numCards then\r\n drawCards(numCards)\r\n return\r\n end\r\n\r\n drawCards(deckSize)\r\n if discardPile ~= nil then\r\n shuffleDiscardIntoDeck()\r\n Wait.time(|| drawCards(numCards - deckSize), 1)\r\n end\r\n printToColor(\"Take 1 horror (drawing card from empty deck)\", messageColor)\r\nend\r\n\r\nfunction drawCards(numCards)\r\n if drawDeck == nil then return end\r\n drawDeck.deal(numCards, PLAYER_COLOR)\r\nend\r\n\r\nfunction shuffleDiscardIntoDeck()\r\n discardPile.flip()\r\n discardPile.shuffle()\r\n discardPile.setPositionSmooth(DRAW_DECK_POSITION, false, false)\r\n drawDeck = discardPile\r\n discardPile = nil\r\nend\r\n\r\nfunction patriceDraw()\r\n local handSize = #Player[PLAYER_COLOR].getHandObjects()\r\n if handSize >= 5 then return end\r\n local cardsToDraw = 5 - handSize\r\n printToColor(\"Drawing \" .. cardsToDraw .. \" cards (Patrice)\", messageColor)\r\n drawCardsWithReshuffle(cardsToDraw)\r\nend\r\n\r\nfunction forcedLearningDraw()\r\n printToColor(\"Drawing 2 cards, discard 1 (Forced Learning)\", messageColor)\r\n drawCardsWithReshuffle(2)\r\nend\r\n\r\nfunction checkDeckZoneExists()\r\n if getObjectFromGUID(zoneID) ~= nil then return end\r\n spawnDeckZone()\r\nend\r\n\r\nfunction spawnDeckZone()\r\n local pos = self.positionToWorld(DECK_POSITION)\r\n local zoneProps = {\r\n position = pos,\r\n scale = DECK_ZONE_SCALE,\r\n type = 'ScriptingTrigger',\r\n callback = 'zoneCallback',\r\n callback_owner = self,\r\n rotation = self.getRotation()\r\n }\r\n spawnObject(zoneProps)\r\nend\r\n\r\nfunction zoneCallback(zone)\r\n zoneID = zone.getGUID()\r\nend\r\n\r\nfunction findObjectsAtPosition(localPos)\r\n local globalPos = self.positionToWorld(localPos)\r\n local objList = Physics.cast({\r\n origin=globalPos, --Where the cast takes place\r\n direction={0,1,0}, --Which direction it moves (up is shown)\r\n type=2, --Type. 2 is \"sphere\"\r\n size={2,2,2}, --How large that sphere is\r\n max_distance=1, --How far it moves. Just a little bit\r\n debug=false --If it displays the sphere when casting.\r\n })\r\n local decksAndCards = {}\r\n for _, obj in ipairs(objList) do\r\n if obj.hit_object.tag == \"Deck\" or obj.hit_object.tag == \"Card\" then\r\n table.insert(decksAndCards, obj.hit_object)\r\n end\r\n end\r\n return decksAndCards\r\nend\r\n\r\nfunction spawnTokenOn(object, offsets, tokenType)\r\n local tokenPosition = object.positionToWorld(offsets)\r\n spawnToken(tokenPosition, tokenType)\r\nend\r\n\r\n-- spawn a group of tokens of the given type on the object\r\nfunction spawnTokenGroup(object, tokenType, tokenCount)\r\n if (tokenCount < 1 or tokenCount > 12) then\r\n return\r\n end\r\n local offsets = PLAYER_CARD_TOKEN_OFFSETS[tokenCount]\r\n if offsets == nil then\r\n error(\"couldn't find offsets for \" .. tokenCount .. ' tokens')\r\n end\r\n local i = 0\r\n while i < tokenCount do\r\n local offset = offsets[i + 1]\r\n spawnTokenOn(object, offset, tokenType)\r\n i = i + 1\r\n end\r\nend\r\n\r\nfunction buildPlayerCardKey(object)\r\n return object.getName() .. ':' .. object.getDescription()\r\nend\r\n\r\nfunction getPlayerCardData(object)\r\n return PLAYER_CARDS[buildPlayerCardKey(object)] or PLAYER_CARDS[object.getName()]\r\nend\r\n\r\nfunction shouldSpawnTokens(object)\r\n -- we assume we shouldn't spawn tokens if in doubt, this should\r\n -- only ever happen on load and in that case prevents respawns\r\n local spawned = DATA_HELPER.call('getSpawnedPlayerCardGuid', {object.getGUID()})\r\n local hasDataHelperData = getPlayerCardData(object)\r\n local cardMetadata = JSON.decode(object.getGMNotes()) or {}\r\n local hasUses = cardMetadata.uses ~= nil\r\n return not spawned and (hasDataHelperData or hasUses)\r\nend\r\n\r\nfunction markSpawned(object)\r\n local saved = DATA_HELPER.call('setSpawnedPlayerCardGuid', {object.getGUID(), true})\r\n if not saved then\r\n error('attempt to mark player card spawned before data loaded')\r\n end\r\nend\r\n\r\nfunction spawnTokensFor(object)\r\n local cardMetadata = JSON.decode(object.getGMNotes()) or {}\r\n local token = nil\r\n local type = nil\r\n local tokenCount = 0\r\n if (cardMetadata.uses ~= nil) then\r\n for i, useInfo in ipairs(cardMetadata.uses) do\r\n token = useInfo.token\r\n type = useInfo.type\r\n tokenCount = useInfo.count\r\n if (activeInvestigatorId == \"03004\" and useInfo.type == \"Charge\") then\r\n tokenCount = tokenCount + 1\r\n end\r\n log(\"Spawning tokens for \"..object.getName()..'['..object.getDescription()..']: '..tokenCount..\"x \"..token)\r\n spawnTokenGroup(object, token, tokenCount)\r\n end\r\n else\r\n local data = getPlayerCardData(object)\r\n if data == nil then\r\n error('attempt to spawn tokens for ' .. object.getName() .. ': no token data')\r\n end\r\n token = data['tokenType']\r\n tokenCount = data['tokenCount']\r\n log(object.getName() .. '[' .. object.getDescription() .. ']' .. ' : ' .. data['tokenType'] .. ' : ' .. data['tokenCount'])\r\n log(\"Spawning tokens for \"..object.getName()..'['..object.getDescription()..']: '..tokenCount..\"x \"..token)\r\n spawnTokenGroup(object, token, tokenCount)\r\n end\r\n markSpawned(object)\r\nend\r\n\r\nfunction resetSpawnState()\r\n local zone = getObjectFromGUID(zoneID)\r\n if zone == nil then return end\r\n\r\n for i,object in ipairs(zone.getObjects()) do\r\n if object.tag == \"Card\" then\r\n local guid = object.getGUID()\r\n if guid ~= nil then unmarkSpawned(guid, true) end\r\n elseif object.tag == \"Deck\" then\r\n local cards = object.getObjects()\r\n if (cards ~= nil) then\r\n for i,v in ipairs(cards) do\r\n if v.guid ~= nil then unmarkSpawned(v.guid) end\r\n end\r\n end\r\n end\r\n end\r\nend\r\n\r\nfunction unmarkSpawned(guid, force)\r\n if not force and getObjectFromGUID(guid) ~= nil then return end\r\n DATA_HELPER.call('setSpawnedPlayerCardGuid', {guid, false})\r\nend\r\n\r\nfunction onCollisionEnter(collision_info)\r\n if (collision_info.collision_object.name == \"Card\") then\r\n maybeUpdateActiveInvestigator(collision_info.collision_object)\r\n end\r\n if not COLLISION_ENABLED then\r\n return\r\n end\r\n\r\n local object = collision_info.collision_object\r\n Wait.time(resetSpawnState, 1)\r\n -- anything to the left of this is legal to spawn\r\n local discardSpawnBoundary = self.positionToWorld({-1.2, 0, 0})\r\n local boundaryLocalToCard = object.positionToLocal(discardSpawnBoundary)\r\n if boundaryLocalToCard.x > 0 then\r\n log('not checking for token spawn, boundary relative is ' .. boundaryLocalToCard.x)\r\n return\r\n end\r\n if not object.is_face_down and shouldSpawnTokens(object) then\r\n spawnTokensFor(object)\r\n end\r\nend\r\n\r\nfunction maybeUpdateActiveInvestigator(card)\r\n local cardMetadata = JSON.decode(card.getGMNotes()) or {}\r\n if (cardMetadata.type == \"Investigator\") then\r\n activeInvestigatorId = cardMetadata.id\r\n updateStatToken(willpowerTokenGuid, cardMetadata.willpowerIcons)\r\n updateStatToken(intellectTokenGuid, cardMetadata.intellectIcons)\r\n updateStatToken(combatTokenGuid, cardMetadata.combatIcons)\r\n updateStatToken(agilityTokenGuid, cardMetadata.agilityIcons)\r\n end\r\nend\r\n\r\nfunction updateStatToken(tokenGuid, val)\r\n local statToken = getObjectFromGUID(tokenGuid)\r\n if (statToken == nil) then\r\n return\r\n end\r\n statToken.call(\"reset_val\")\r\n for i = 1, val do\r\n statToken.call(\"add_subtract\", { alt_click = false })\r\n end\r\nend\r\n\r\n-- functions delegated to Global\r\nfunction drawChaostokenButton(object, player, isRightClick)\r\n -- local toPosition = self.positionToWorld(DRAWN_CHAOS_TOKEN_OFFSET)\r\n Global.call(\"drawChaostoken\", {self, DRAWN_CHAOS_TOKEN_OFFSET, isRightClick})\r\nend\r\n\r\nfunction drawEncountercard(object, player, isRightClick)\r\nlocal toPosition = self.positionToWorld(DRAWN_ENCOUNTER_CARD_OFFSET)\r\nGlobal.call(\"drawEncountercard\", {toPosition, self.getRotation(), isRightClick})\r\nend\r\n\r\nfunction spawnToken(position, tokenType)\r\n Global.call('spawnToken', {position, tokenType})\r\nend\r\n\r\nfunction updatePlayerCards(args)\r\n local custom_data_helper = getObjectFromGUID(args[1])\r\n data_player_cards = custom_data_helper.getTable(\"PLAYER_CARD_DATA\")\r\n for k, v in pairs(data_player_cards) do\r\n PLAYER_CARDS[k] = v\r\n end\r\nend",
"LuaScriptState": "{\"playerColor\":\"Green\",\"zoneID\":\"fb28e1\"}",
"XmlUI": "",
"AttachedSnapPoints": [
{
"Position": {
"x": -0.625791669,
"y": 0.100095749,
"z": 0.557985
}
},
{
"Position": {
"x": -0.610447347,
"y": 0.100186668,
"z": 0.03128815
}
},
{
"Position": {
"x": -0.171289474,
"y": 0.0997019038,
"z": 0.03943211
}
},
{
"Position": {
"x": -0.169045955,
"y": 0.100598186,
"z": 0.5583811
}
},
{
"Position": {
"x": 0.217285246,
"y": 0.09896234,
"z": 0.566267431
}
},
{
"Position": {
"x": 0.221979842,
"y": 0.09991982,
"z": 0.0426741876
}
},
{
"Position": {
"x": 0.6068883,
"y": 0.09969026,
"z": 0.0406310931
}
},
{
"Position": {
"x": 0.6098372,
"y": 0.100233406,
"z": 0.562523842
}
},
{
"Position": {
"x": 0.981360734,
"y": 0.0991149843,
"z": 0.5642102
}
},
{
"Position": {
"x": 0.985554338,
"y": 0.09968248,
"z": 0.0428355038
}
},
{
"Position": {
"x": 1.37674308,
"y": 0.09993168,
"z": 0.046606753
}
},
{
"Position": {
"x": 1.375759,
"y": 0.100533977,
"z": 0.566684067
}
},
{
"Position": {
"x": 1.7592988,
"y": 0.0999765545,
"z": 0.572313
}
},
{
"Position": {
"x": 1.763711,
"y": 0.10076464,
"z": 0.0484937057
}
},
{
"Position": {
"x": 1.370408,
"y": 0.09954094,
"z": -0.6370675
},
"Rotation": {
"x": 6.83678536E-06,
"y": -0.00490288669,
"z": -1.70973374E-06
}
},
{
"Position": {
"x": 0.9142857,
"y": 0.100068606,
"z": -0.637263834
},
"Rotation": {
"x": 6.96017969E-06,
"y": -0.00499090366,
"z": -1.74511922E-06
}
},
{
"Position": {
"x": -1.81741154,
"y": 0.100180641,
"z": -0.0229415148
},
"Rotation": {
"x": 6.14644341E-06,
"y": -0.004407104,
"z": -1.53642054E-06
}
},
{
"Position": {
"x": -1.81764638,
"y": 0.100220434,
"z": 0.615185
},
"Rotation": {
"x": 6.40657254E-06,
"y": -0.00459463755,
"z": -1.602528E-06
}
},
{
"Position": {
"x": -1.17174816,
"y": 0.101030044,
"z": 0.008545909
}
},
{
"Position": {
"x": -0.9785419,
"y": 0.100085281,
"z": 0.124295451
},
"Tags": [
"action_token"
]
},
{
"Position": {
"x": -0.9966467,
"y": 0.09995937,
"z": -0.270059973
},
"Tags": [
"action_token"
]
},
{
"Position": {
"x": -1.174122,
"y": 0.100384742,
"z": -0.270122081
},
"Tags": [
"action_token"
]
},
{
"Position": {
"x": -1.35159886,
"y": 0.100181416,
"z": -0.27019316
},
"Tags": [
"action_token"
]
}
]
},
{
"GUID": "4ca990",
"Name": "Custom_Token",
"Transform": {
"posX": -47.6379,
"posY": 1.5912,
"posZ": -22.7132,
"rotX": 359.92,
"rotY": 270.013,
"rotZ": 0.0170000084,
"scaleX": 0.429196239,
"scaleY": 1.0,
"scaleZ": 0.429196239
},
"Nickname": "Intellect",
"Description": "Left click - Increase\nRight click - Decrease",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"CleanUpHelper_ignore"
],
"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/sj8GatY.png",
"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": "652ff3",
"Name": "Custom_Token",
"Transform": {
"posX": -6.1848,
"posY": 1.56,
"posZ": 1.3962,
"rotX": 359.9197,
"rotY": 270.0342,
"rotZ": 0.01680004,
"scaleX": 0.225855082,
"scaleY": 1.0,
"scaleZ": 0.225855082
},
"Nickname": "Misc. Doom in play",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 0.0,
"b": 0.0
},
"Tags": [
"CleanUpHelper_ignore"
],
"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/949592555964782208/CC876694A6684B3C2680CE2FE3259F574AE0AD97/",
"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": "85a8ed",
"Name": "Custom_Token",
"Transform": {
"posX": -47.642,
"posY": 1.6009,
"posZ": 10.2202,
"rotX": 359.9202,
"rotY": 269.9745,
"rotZ": 0.0169999935,
"scaleX": 0.429196239,
"scaleY": 1.0,
"scaleZ": 0.429196239
},
"Nickname": "Willpower",
"Description": "Left click - Increase\nRight click - Decrease",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"CleanUpHelper_ignore"
],
"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/i2IDOcO.png",
"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": "8b081b",
"Name": "Custom_Tile",
"Transform": {
"posX": -54.9888,
"posY": 1.54,
"posZ": 16.018,
"rotX": 359.9201,
"rotY": 269.9747,
"rotZ": 0.0169000011,
"scaleX": 6.43188572,
"scaleY": 1.0,
"scaleZ": 6.43188572
},
"Nickname": "Playermat 1: White",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": false,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1859438430150777205/4ED2E0BC2A2C4728DA5E155C06AF1BA1FCB00D3B/",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "-- set true to enable debug logging\r\nDEBUG = false\r\n-- we use this to turn off collision handling (for clue spawning)\r\n-- until after load is complete (probably a better way to do this)\r\nCOLLISION_ENABLED = false\r\n-- position offsets, adjust these to reposition things relative to mat [x,y,z]\r\nDRAWN_ENCOUNTER_CARD_OFFSET = {1.365, 0.5, -0.635}\r\nDRAWN_CHAOS_TOKEN_OFFSET = {-1.55, 0.5, -0.58}\r\nDISCARD_BUTTON_OFFSETS = {\r\n {-1.365, 0.2, -0.945},\r\n {-0.91, 0.2, -0.945},\r\n {-0.455, 0.2, -0.945},\r\n {0, 0.2, -0.945},\r\n {0.455, 0.2, -0.945},\r\n {0.91, 0.2, -0.945},\r\n}\r\n-- draw deck and discard zone\r\nDECK_POSITION = { x=-1.4, y=0, z=0.3 }\r\nDECK_ZONE_SCALE = { x=3, y=5, z=8 }\r\nDRAW_DECK_POSITION = { x=-54.8, y=2.5, z=4.3 }\r\n\r\n-- play zone\r\nPLAYER_COLOR = \"White\"\r\nPLAY_ZONE_POSITION = { x=-54.42, y=4.10, z=20.96}\r\nPLAY_ZONE_ROTATION = { x=0, y=270, z=0 }\r\nPLAY_ZONE_SCALE = { x=36.63, y=5.10, z=14.59}\r\n\r\nRESOURCE_COUNTER_GUID = \"4406f0\"\r\n\r\n-- the position of the global discard pile\r\n-- TODO: delegate to global for any auto discard actions\r\nDISCARD_POSITION = {-3.85, 3, 10.38}\r\n-- DISCARD PILE POSITION\r\nDISCARD_PILE_POSITION = {-59.13, 4, 4.40 }\r\n\r\nlocal activeInvestigatorId = nil\r\nlocal willpowerTokenGuid = \"85a8ed\"\r\nlocal intellectTokenGuid = \"c1fe65\"\r\nlocal combatTokenGuid = \"9136c6\"\r\nlocal agilityTokenGuid = \"a0b6df\"\r\n\r\nfunction log(message)\r\n if DEBUG then\r\n print(message)\r\n end\r\nend\r\n\r\n-- builds a function that discards things in searchPostion to discardPostition\r\nfunction makeDiscardHandlerFor(searchPosition, discardPosition)\r\n return function (_)\r\n local discardItemList = findObjectsAtPosition(searchPosition)\r\n for _, obj in ipairs(discardItemList) do\r\n obj.setPositionSmooth(discardPosition, false, true)\r\n obj.setRotation({0, -90, 0})\r\n end\r\n end\r\nend\r\n\r\n-- build a discard button at position to discard from searchPosition to discardPosition\r\n-- number must be unique\r\nfunction makeDiscardButton(position, searchPosition, discardPosition, number)\r\n local handler = makeDiscardHandlerFor(searchPosition, discardPosition)\r\n local handlerName = 'handler' .. number\r\n self.setVar(handlerName, handler)\r\n self.createButton({\r\n label = \"Discard\",\r\n click_function= handlerName,\r\n function_owner= self,\r\n position = position,\r\n scale = {0.12, 0.12, 0.12},\r\n width = 800,\r\n height = 280,\r\n font_size = 180,\r\n })\r\nend\r\n\r\nfunction onload(save_state)\r\n\r\n self.interactable = DEBUG\r\n DATA_HELPER = getObjectFromGUID('708279')\r\n PLAYER_CARDS = DATA_HELPER.getTable('PLAYER_CARD_DATA')\r\n PLAYER_CARD_TOKEN_OFFSETS = DATA_HELPER.getTable('PLAYER_CARD_TOKEN_OFFSETS')\r\n\r\n -- positions of encounter card slots\r\n local encounterSlots = {\r\n {1.365, 0, -0.7},\r\n {0.91, 0, -0.7},\r\n {0.455, 0, -0.7},\r\n {0, 0, -0.7},\r\n {-0.455, 0, -0.7},\r\n {-0.91, 0, -0.7},\r\n }\r\n\r\n local i = 1\r\n while i <= 6 do\r\n makeDiscardButton(DISCARD_BUTTON_OFFSETS[i], encounterSlots[i], DISCARD_POSITION, i)\r\n i = i + 1\r\n end\r\n\r\n self.createButton({\r\n label = \" \",\r\n click_function = \"drawEncountercard\",\r\n function_owner = self,\r\n position = {-1.88,0,-0.7},\r\n rotation = {0,-15,0},\r\n width = 170,\r\n height = 255,\r\n font_size = 50\r\n })\r\n\r\n self.createButton({\r\n label=\" \",\r\n click_function = \"drawChaostokenButton\",\r\n function_owner = self,\r\n position = {1.84,0.0,-0.74},\r\n rotation = {0,-45,0},\r\n width = 125,\r\n height = 125,\r\n font_size = 50\r\n })\r\n\r\n self.createButton({\r\n label=\"Upkeep\",\r\n click_function = \"doUpkeep\",\r\n function_owner = self,\r\n position = {1.84,0.1,-0.44},\r\n scale = {0.12, 0.12, 0.12},\r\n width = 800,\r\n height = 280,\r\n font_size = 180\r\n })\r\n\r\n local state = JSON.decode(save_state)\r\n if state ~= nil then\r\n if state.playerColor ~= nil then\r\n PLAYER_COLOR = state.playerColor\r\n end\r\n if state.zoneID ~= nil then\r\n zoneID = state.zoneID\r\n Wait.time(checkDeckZoneExists, 30)\r\n else\r\n spawnDeckZone()\r\n end\r\n else\r\n spawnDeckZone()\r\n end\r\n\r\n COLLISION_ENABLED = true\r\nend\r\n\r\nfunction onSave()\r\n return JSON.encode({ zoneID=zoneID, playerColor=PLAYER_COLOR })\r\nend\r\n\r\nfunction setMessageColor(color)\r\n -- send messages to player who clicked button if no seated player found\r\n messageColor = Player[PLAYER_COLOR].seated and PLAYER_COLOR or color\r\nend\r\n\r\n-- get the draw deck and discard pile objects\r\nfunction getDrawDiscardDecks()\r\n drawDeck = nil\r\n discardPile = nil\r\n topCard = nil\r\n\r\n local zone = getObjectFromGUID(zoneID)\r\n if zone == nil then return end\r\n\r\n for i,object in ipairs(zone.getObjects()) do\r\n if object.tag == \"Deck\" or object.tag == \"Card\" then\r\n local relativePos = self.positionToLocal(object.getPosition())\r\n if relativePos.z > 0.5 then\r\n discardPile = object\r\n else\r\n if investigator == \"Norman Withers\" and object.tag == \"Card\" and not object.is_face_down then\r\n topCard = object\r\n else\r\n drawDeck = object\r\n end\r\n end\r\n end\r\n end\r\nend\r\n\r\nfunction doUpkeep(obj, color, alt_click)\r\n -- right-click binds to new player color\r\n if alt_click then\r\n PLAYER_COLOR = color\r\n printToColor(\"Upkeep button bound to \" .. color, color)\r\n return\r\n end\r\n\r\n setMessageColor(color)\r\n\r\n -- unexhaust cards in play zone\r\n local objs = Physics.cast({\r\n origin = PLAY_ZONE_POSITION,\r\n direction = { x=0, y=1, z=0 },\r\n type = 3,\r\n size = PLAY_ZONE_SCALE,\r\n orientation = PLAY_ZONE_ROTATION\r\n })\r\n\r\n local y = PLAY_ZONE_ROTATION.y\r\n\r\n investigator = nil\r\n local miniId = nil\r\n local forcedLearning = false\r\n for i,v in ipairs(objs) do\r\n local obj = v.hit_object\r\n local props = obj.getCustomObject() or {}\r\n if obj.tag == \"Card\" and not obj.is_face_down and not doNotReady(obj) then\r\n local notes = JSON.decode(obj.getGMNotes()) or {}\r\n local name = obj.getName()\r\n if notes.type == \"Investigator\" and notes.id ~= nil then\r\n miniId = string.match(notes.id, \"%d%d%d%d%d%d-\") .. \"-m\"\r\n end\r\n if notes.type == \"Investigator\" or props.unique_back then\r\n if string.match(name, \"Jenny Barnes\") ~= nil then\r\n investigator = \"Jenny Barnes\"\r\n elseif name == \"Patrice Hathaway\" then\r\n investigator = name\r\n elseif string.match(name, \"Norman Withers\") ~= nil then\r\n investigator = \"Norman Withers\"\r\n end\r\n elseif name == \"Forced Learning\" then\r\n forcedLearning = true\r\n else\r\n local r = obj.getRotation()\r\n if (r.y - y > 10) or (y - r.y > 10) then\r\n obj.setRotation(PLAY_ZONE_ROTATION)\r\n end\r\n end\r\n elseif obj.getDescription() == \"Action Token\" then\r\n if obj.is_face_down then obj.flip() end\r\n end\r\n end\r\n\r\n -- flip investigator mini-card if found\r\n if miniId ~= nil then\r\n objs = getObjects()\r\n for i,obj in ipairs(objs) do\r\n if obj.tag == \"Card\" then\r\n local notes = JSON.decode(obj.getGMNotes())\r\n if notes ~= nil and notes.type == \"Minicard\" and notes.id == miniId then\r\n if obj.is_face_down then\r\n obj.flip()\r\n end\r\n goto done\r\n end\r\n end\r\n end\r\n end\r\n ::done::\r\n\r\n -- flip summoned servitor mini-cards (To-Do: don't flip all of them)\r\n for i, obj in ipairs(getObjects()) do\r\n if obj.tag == \"Card\" then\r\n local notes = JSON.decode(obj.getGMNotes())\r\n if notes ~= nil and notes.type == \"Minicard\" and notes.id == \"09080-m\" then\r\n if obj.is_face_down then\r\n obj.flip()\r\n end\r\n end\r\n end\r\n end\r\n\r\n -- gain resource\r\n getObjectFromGUID(RESOURCE_COUNTER_GUID).call(\"add_subtract\")\r\n if investigator == \"Jenny Barnes\" then\r\n getObjectFromGUID(RESOURCE_COUNTER_GUID).call(\"add_subtract\")\r\n printToColor(\"Gaining 2 resources (Jenny)\", messageColor)\r\n end\r\n\r\n -- special draw for Patrice Hathaway (shuffle discards if necessary)\r\n if investigator == \"Patrice Hathaway\" then\r\n patriceDraw()\r\n return\r\n end\r\n\r\n -- special draw for Forced Learning\r\n if forcedLearning then\r\n forcedLearningDraw()\r\n return\r\n end\r\n\r\n drawCardsWithReshuffle(1)\r\nend\r\n\r\nfunction doDrawOne(obj, color)\r\n setMessageColor(color)\r\n drawCardsWithReshuffle(1)\r\nend\r\n\r\nfunction doNotReady(card)\r\n if card.getVar(\"do_not_ready\") == true then\r\n return true\r\n else\r\n return false\r\n end\r\nend\r\n\r\n-- draw X cards (shuffle discards if necessary)\r\nfunction drawCardsWithReshuffle(numCards)\r\n if type(numCards) ~= \"number\" then numCards = 1 end\r\n\r\n getDrawDiscardDecks()\r\n\r\n if investigator == \"Norman Withers\" then\r\n local harbinger = false\r\n if topCard ~= nil and topCard.getName() == \"The Harbinger\" then\r\n harbinger = true\r\n else\r\n if drawDeck ~= nil and not drawDeck.is_face_down then\r\n local cards = drawDeck.getObjects()\r\n local bottomCard = cards[#cards]\r\n if bottomCard.name == \"The Harbinger\" then\r\n harbinger = true\r\n end\r\n end\r\n end\r\n\r\n if harbinger then\r\n printToColor(\"The Harbinger is on top of your deck, not drawing cards\", messageColor)\r\n return -1\r\n end\r\n\r\n if topCard ~= nil then\r\n topCard.deal(numCards, PLAYER_COLOR)\r\n numCards = numCards - 1\r\n if numCards == 0 then return end\r\n end\r\n end\r\n\r\n local deckSize\r\n if drawDeck == nil then\r\n deckSize = 0\r\n elseif drawDeck.tag == \"Deck\" then\r\n deckSize = #drawDeck.getObjects()\r\n else\r\n deckSize = 1\r\n end\r\n\r\n if deckSize >= numCards then\r\n drawCards(numCards)\r\n return\r\n end\r\n\r\n drawCards(deckSize)\r\n if discardPile ~= nil then\r\n shuffleDiscardIntoDeck()\r\n Wait.time(|| drawCards(numCards - deckSize), 1)\r\n end\r\n printToColor(\"Take 1 horror (drawing card from empty deck)\", messageColor)\r\nend\r\n\r\nfunction drawCards(numCards)\r\n if drawDeck == nil then return end\r\n drawDeck.deal(numCards, PLAYER_COLOR)\r\nend\r\n\r\nfunction shuffleDiscardIntoDeck()\r\n if not discardPile.is_face_down then discardPile.flip() end\r\n discardPile.shuffle()\r\n discardPile.setPositionSmooth(DRAW_DECK_POSITION, false, false)\r\n drawDeck = discardPile\r\n discardPile = nil\r\nend\r\n\r\nfunction patriceDraw()\r\n local handSize = #Player[PLAYER_COLOR].getHandObjects()\r\n if handSize >= 5 then return end\r\n local cardsToDraw = 5 - handSize\r\n printToColor(\"Drawing \" .. cardsToDraw .. \" cards (Patrice)\", messageColor)\r\n drawCardsWithReshuffle(cardsToDraw)\r\nend\r\n\r\nfunction forcedLearningDraw()\r\n printToColor(\"Drawing 2 cards, discard 1 (Forced Learning)\", messageColor)\r\n drawCardsWithReshuffle(2)\r\nend\r\n\r\nfunction checkDeckZoneExists()\r\n if getObjectFromGUID(zoneID) ~= nil then return end\r\n spawnDeckZone()\r\nend\r\n\r\nfunction spawnDeckZone()\r\n local pos = self.positionToWorld(DECK_POSITION)\r\n local zoneProps = {\r\n position = pos,\r\n scale = DECK_ZONE_SCALE,\r\n type = 'ScriptingTrigger',\r\n callback = 'zoneCallback',\r\n callback_owner = self,\r\n rotation = self.getRotation()\r\n }\r\n spawnObject(zoneProps)\r\nend\r\n\r\nfunction zoneCallback(zone)\r\n zoneID = zone.getGUID()\r\nend\r\n\r\nfunction findObjectsAtPosition(localPos)\r\n local globalPos = self.positionToWorld(localPos)\r\n local objList = Physics.cast({\r\n origin=globalPos, --Where the cast takes place\r\n direction={0,1,0}, --Which direction it moves (up is shown)\r\n type=2, --Type. 2 is \"sphere\"\r\n size={2,2,2}, --How large that sphere is\r\n max_distance=1, --How far it moves. Just a little bit\r\n debug=false --If it displays the sphere when casting.\r\n })\r\n local decksAndCards = {}\r\n for _, obj in ipairs(objList) do\r\n if obj.hit_object.tag == \"Deck\" or obj.hit_object.tag == \"Card\" then\r\n table.insert(decksAndCards, obj.hit_object)\r\n end\r\n end\r\n return decksAndCards\r\nend\r\n\r\nfunction spawnTokenOn(object, offsets, tokenType)\r\n local tokenPosition = object.positionToWorld(offsets)\r\n spawnToken(tokenPosition, tokenType)\r\nend\r\n\r\n-- spawn a group of tokens of the given type on the object\r\nfunction spawnTokenGroup(object, tokenType, tokenCount)\r\n if (tokenCount < 1 or tokenCount > 12) then\r\n return\r\n end\r\n local offsets = PLAYER_CARD_TOKEN_OFFSETS[tokenCount]\r\n if offsets == nil then\r\n error(\"couldn't find offsets for \" .. tokenCount .. ' tokens')\r\n end\r\n local i = 0\r\n while i < tokenCount do\r\n local offset = offsets[i + 1]\r\n spawnTokenOn(object, offset, tokenType)\r\n i = i + 1\r\n end\r\nend\r\n\r\nfunction buildPlayerCardKey(object)\r\n return object.getName() .. ':' .. object.getDescription()\r\nend\r\n\r\nfunction getPlayerCardData(object)\r\n return PLAYER_CARDS[buildPlayerCardKey(object)] or PLAYER_CARDS[object.getName()]\r\nend\r\n\r\nfunction shouldSpawnTokens(object)\r\n -- we assume we shouldn't spawn tokens if in doubt, this should\r\n -- only ever happen on load and in that case prevents respawns\r\n local spawned = DATA_HELPER.call('getSpawnedPlayerCardGuid', {object.getGUID()})\r\n local hasDataHelperData = getPlayerCardData(object)\r\n local cardMetadata = JSON.decode(object.getGMNotes()) or {}\r\n local hasUses = cardMetadata.uses ~= nil\r\n return not spawned and (hasDataHelperData or hasUses)\r\nend\r\n\r\nfunction markSpawned(object)\r\n local saved = DATA_HELPER.call('setSpawnedPlayerCardGuid', {object.getGUID(), true})\r\n if not saved then\r\n error('attempt to mark player card spawned before data loaded')\r\n end\r\nend\r\n\r\nfunction spawnTokensFor(object)\r\n local cardMetadata = JSON.decode(object.getGMNotes()) or {}\r\n local token = nil\r\n local type = nil\r\n local tokenCount = 0\r\n if (cardMetadata.uses ~= nil) then\r\n for i, useInfo in ipairs(cardMetadata.uses) do\r\n token = useInfo.token\r\n type = useInfo.type\r\n tokenCount = useInfo.count\r\n if (activeInvestigatorId == \"03004\" and useInfo.type == \"Charge\") then\r\n tokenCount = tokenCount + 1\r\n end\r\n log(\"Spawning tokens for \"..object.getName()..'['..object.getDescription()..']: '..tokenCount..\"x \"..token)\r\n spawnTokenGroup(object, token, tokenCount)\r\n end\r\n else\r\n local data = getPlayerCardData(object)\r\n if data == nil then\r\n error('attempt to spawn tokens for ' .. object.getName() .. ': no token data')\r\n end\r\n token = data['tokenType']\r\n tokenCount = data['tokenCount']\r\n log(object.getName() .. '[' .. object.getDescription() .. ']' .. ' : ' .. data['tokenType'] .. ' : ' .. data['tokenCount'])\r\n log(\"Spawning tokens for \"..object.getName()..'['..object.getDescription()..']: '..tokenCount..\"x \"..token)\r\n spawnTokenGroup(object, token, tokenCount)\r\n end\r\n markSpawned(object)\r\nend\r\n\r\nfunction resetSpawnState()\r\n local zone = getObjectFromGUID(zoneID)\r\n if zone == nil then return end\r\n\r\n for i,object in ipairs(zone.getObjects()) do\r\n if object.tag == \"Card\" then\r\n local guid = object.getGUID()\r\n if guid ~= nil then unmarkSpawned(guid, true) end\r\n elseif object.tag == \"Deck\" then\r\n local cards = object.getObjects()\r\n if (cards ~= nil) then\r\n for i,v in ipairs(cards) do\r\n if v.guid ~= nil then unmarkSpawned(v.guid) end\r\n end\r\n end\r\n end\r\n end\r\nend\r\n\r\nfunction unmarkSpawned(guid, force)\r\n if not force and getObjectFromGUID(guid) ~= nil then return end\r\n DATA_HELPER.call('setSpawnedPlayerCardGuid', {guid, false})\r\nend\r\n\r\nfunction onCollisionEnter(collision_info)\r\n if (collision_info.collision_object.name == \"Card\") then\r\n maybeUpdateActiveInvestigator(collision_info.collision_object)\r\n end\r\n if not COLLISION_ENABLED then\r\n return\r\n end\r\n\r\n local object = collision_info.collision_object\r\n Wait.time(resetSpawnState, 1)\r\n -- anything to the left of this is legal to spawn\r\n local discardSpawnBoundary = self.positionToWorld({-1.2, 0, 0})\r\n local boundaryLocalToCard = object.positionToLocal(discardSpawnBoundary)\r\n if boundaryLocalToCard.x > 0 then\r\n log('not checking for token spawn, boundary relative is ' .. boundaryLocalToCard.x)\r\n return\r\n end\r\n if not object.is_face_down and shouldSpawnTokens(object) then\r\n spawnTokensFor(object)\r\n end\r\nend\r\n\r\nfunction maybeUpdateActiveInvestigator(card)\r\n local cardMetadata = JSON.decode(card.getGMNotes()) or {}\r\n if (cardMetadata.type == \"Investigator\") then\r\n activeInvestigatorId = cardMetadata.id\r\n updateStatToken(willpowerTokenGuid, cardMetadata.willpowerIcons)\r\n updateStatToken(intellectTokenGuid, cardMetadata.intellectIcons)\r\n updateStatToken(combatTokenGuid, cardMetadata.combatIcons)\r\n updateStatToken(agilityTokenGuid, cardMetadata.agilityIcons)\r\n end\r\nend\r\n\r\nfunction updateStatToken(tokenGuid, val)\r\n local statToken = getObjectFromGUID(tokenGuid)\r\n if (statToken == nil) then\r\n return\r\n end\r\n statToken.call(\"reset_val\")\r\n for i = 1, val do\r\n statToken.call(\"add_subtract\", { alt_click = false })\r\n end\r\nend\r\n\r\n-- functions delegated to Global\r\nfunction drawChaostokenButton(object, player, isRightClick)\r\n -- local toPosition = self.positionToWorld(DRAWN_CHAOS_TOKEN_OFFSET)\r\n Global.call(\"drawChaostoken\", {self, DRAWN_CHAOS_TOKEN_OFFSET, isRightClick})\r\nend\r\n\r\nfunction drawEncountercard(object, player, isRightClick)\r\nlocal toPosition = self.positionToWorld(DRAWN_ENCOUNTER_CARD_OFFSET)\r\nGlobal.call(\"drawEncountercard\", {toPosition, self.getRotation(), isRightClick})\r\nend\r\n\r\nfunction spawnToken(position, tokenType)\r\n Global.call('spawnToken', {position, tokenType})\r\nend\r\n\r\nfunction updatePlayerCards(args)\r\n local custom_data_helper = getObjectFromGUID(args[1])\r\n data_player_cards = custom_data_helper.getTable(\"PLAYER_CARD_DATA\")\r\n for k, v in pairs(data_player_cards) do\r\n PLAYER_CARDS[k] = v\r\n end\r\nend\t",
"LuaScriptState": "{\"playerColor\":\"White\",\"zoneID\":\"7af2cf\"}",
"XmlUI": "",
"AttachedSnapPoints": [
{
"Position": {
"x": -0.983751,
"y": 0.100190088,
"z": 0.117691614
},
"Tags": [
"action_token"
]
},
{
"Position": {
"x": -1.002152,
"y": 0.1000069,
"z": -0.276675165
},
"Tags": [
"action_token"
]
},
{
"Position": {
"x": -1.1796267,
"y": 0.1000432,
"z": -0.276594937
},
"Tags": [
"action_token"
]
},
{
"Position": {
"x": -1.35710275,
"y": 0.09986354,
"z": -0.276518881
},
"Tags": [
"action_token"
]
},
{
"Position": {
"x": -0.6306517,
"y": 0.09955329,
"z": 0.5510622
}
},
{
"Position": {
"x": -0.6157261,
"y": 0.101774342,
"z": 0.0243498944
}
},
{
"Position": {
"x": -0.176562518,
"y": 0.100841753,
"z": 0.0321588553
}
},
{
"Position": {
"x": -0.173897132,
"y": 0.099196136,
"z": 0.5511041
}
},
{
"Position": {
"x": 0.212440282,
"y": 0.100284591,
"z": 0.558677137
}
},
{
"Position": {
"x": 0.216710016,
"y": 0.100098483,
"z": 0.035081517
}
},
{
"Position": {
"x": 0.6016163,
"y": 0.100474723,
"z": 0.03272724
}
},
{
"Position": {
"x": 0.604989231,
"y": 0.09951723,
"z": 0.554614663
}
},
{
"Position": {
"x": 0.9765138,
"y": 0.0994291157,
"z": 0.556000352
}
},
{
"Position": {
"x": 0.9802845,
"y": 0.09931167,
"z": 0.03462432
}
},
{
"Position": {
"x": 1.37147665,
"y": 0.0997811258,
"z": 0.0380788557
}
},
{
"Position": {
"x": 1.37091362,
"y": 0.0988806039,
"z": 0.5581557
}
},
{
"Position": {
"x": 1.75445855,
"y": 0.09959095,
"z": 0.563473046
}
},
{
"Position": {
"x": 1.75844467,
"y": 0.101310112,
"z": 0.0396501
}
},
{
"Position": {
"x": -1.82245028,
"y": 0.09895668,
"z": 0.609226465
},
"Rotation": {
"x": -2.06846253E-05,
"y": 0.022519134,
"z": 2.48722E-06
}
},
{
"Position": {
"x": -1.822731,
"y": 0.100285016,
"z": -0.0288989823
},
"Rotation": {
"x": -2.07411777E-05,
"y": 0.0223244727,
"z": 2.4639055E-06
}
},
{
"Position": {
"x": -1.17702615,
"y": 0.100166969,
"z": 0.00209376169
}
},
{
"Position": {
"x": 1.36458588,
"y": 0.101369888,
"z": -0.6455852
},
"Rotation": {
"x": -1.40879529E-05,
"y": 0.04494606,
"z": 2.02552064E-06
}
},
{
"Position": {
"x": 0.91696465,
"y": 0.101159953,
"z": -0.645419
},
"Rotation": {
"x": -1.41175333E-05,
"y": 0.0448367819,
"z": 9.14950533E-07
}
}
]
},
{
"GUID": "8b6743",
"Name": "Custom_Token",
"Transform": {
"posX": -20.2534,
"posY": 1.5541,
"posZ": -19.2159,
"rotX": 0.0169001184,
"rotY": 180.0218,
"rotZ": 0.0798999444,
"scaleX": 0.429196239,
"scaleY": 1.0,
"scaleZ": 0.429196239
},
"Nickname": "Willpower",
"Description": "Left click - Increase\nRight click - Decrease",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"CleanUpHelper_ignore"
],
"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/i2IDOcO.png",
"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": "9136c6",
"Name": "Custom_Token",
"Transform": {
"posX": -47.642,
"posY": 1.6001,
"posZ": 7.2898,
"rotX": 359.9202,
"rotY": 270.016479,
"rotZ": 0.0167999975,
"scaleX": 0.429196239,
"scaleY": 1.0,
"scaleZ": 0.429196239
},
"Nickname": "Combat",
"Description": "Left click - Increase\nRight click - Decrease",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"CleanUpHelper_ignore"
],
"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/YBjxze6.png",
"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": "93a48b",
"Name": "Custom_Token",
"Transform": {
"posX": -17.3258,
"posY": 1.55,
"posZ": -19.2161,
"rotX": 0.0169004519,
"rotY": 180.0228,
"rotZ": 0.0798999444,
"scaleX": 0.429196239,
"scaleY": 1.0,
"scaleZ": 0.429196239
},
"Nickname": "Combat",
"Description": "Left click - Increase\nRight click - Decrease",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"CleanUpHelper_ignore"
],
"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/YBjxze6.png",
"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": "a0b6df",
"Name": "Custom_Token",
"Transform": {
"posX": -47.642,
"posY": 1.5996,
"posZ": 5.8246,
"rotX": 359.9201,
"rotY": 270.0258,
"rotZ": 0.0168000013,
"scaleX": 0.429196239,
"scaleY": 1.0,
"scaleZ": 0.429196239
},
"Nickname": "Agility",
"Description": "Left click - Increase\nRight click - Decrease",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"CleanUpHelper_ignore"
],
"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/vXVWwD0.png",
"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": "afc290",
"Name": "Custom_Token",
"Transform": {
"posX": -47.638,
"posY": 1.5917,
"posZ": -21.2481,
"rotX": 359.9201,
"rotY": 270.021484,
"rotZ": 0.0167999975,
"scaleX": 0.429196239,
"scaleY": 1.0,
"scaleZ": 0.429196239
},
"Nickname": "Willpower",
"Description": "Left click - Increase\nRight click - Decrease",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"CleanUpHelper_ignore"
],
"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/i2IDOcO.png",
"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": "b4ef12",
"Name": "Custom_Token",
"Transform": {
"posX": -18.7896,
"posY": 1.552,
"posZ": -19.2159,
"rotX": 0.0169001184,
"rotY": 179.9784,
"rotZ": 0.07979997,
"scaleX": 0.429196239,
"scaleY": 1.0,
"scaleZ": 0.429196239
},
"Nickname": "Intellect",
"Description": "Left click - Increase\nRight click - Decrease",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"CleanUpHelper_ignore"
],
"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/sj8GatY.png",
"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": "b661a6",
"Name": "Custom_Token",
"Transform": {
"posX": -47.6407,
"posY": 1.5908,
"posZ": -24.1788,
"rotX": 359.9203,
"rotY": 270.0162,
"rotZ": 0.016800005,
"scaleX": 0.429196239,
"scaleY": 1.0,
"scaleZ": 0.429196239
},
"Nickname": "Combat",
"Description": "Left click - Increase\nRight click - Decrease",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"CleanUpHelper_ignore"
],
"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/YBjxze6.png",
"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": "bd0ff4",
"Name": "Custom_Tile",
"Transform": {
"posX": -54.9993,
"posY": 1.54,
"posZ": -16.0982,
"rotX": 0.032003928,
"rotY": 269.989,
"rotZ": 0.055405084,
"scaleX": 6.43188572,
"scaleY": 1.0,
"scaleZ": 6.43188572
},
"Nickname": "Playermat 2: Orange",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": false,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1859438430150777205/4ED2E0BC2A2C4728DA5E155C06AF1BA1FCB00D3B/",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "-- set true to enable debug logging\r\nDEBUG = false\r\n-- we use this to turn off collision handling (for clue spawning)\r\n-- until after load is complete (probably a better way to do this)\r\nCOLLISION_ENABLED = false\r\n-- position offsets, adjust these to reposition things relative to mat [x,y,z]\r\nDRAWN_ENCOUNTER_CARD_OFFSET = {1.365, 0.5, -0.635}\r\nDRAWN_CHAOS_TOKEN_OFFSET = {-1.55, 0.5, -0.58}\r\nDISCARD_BUTTON_OFFSETS = {\r\n {-1.365, 0.2, -0.945},\r\n {-0.91, 0.2, -0.945},\r\n {-0.455, 0.2, -0.945},\r\n {0, 0.2, -0.945},\r\n {0.455, 0.2, -0.945},\r\n {0.91, 0.2, -0.945},\r\n}\r\n-- draw deck and discard zone\r\nDECK_POSITION = { x=-1.4, y=0, z=0.3 }\r\nDECK_ZONE_SCALE = { x=3, y=5, z=8 }\r\nDRAW_DECK_POSITION = { x=-55, y=2.5, z=-27.8 }\r\n\r\n-- play zone\r\nPLAYER_COLOR = \"Orange\"\r\nPLAY_ZONE_POSITION = { x=-54.53, y=4.10, z=-20.94}\r\nPLAY_ZONE_ROTATION = { x=0, y=270, z=0 }\r\nPLAY_ZONE_SCALE = { x=36.96, y=5.10, z=14.70}\r\n\r\nRESOURCE_COUNTER_GUID = \"816d84\"\r\n\r\n-- the position of the global discard pile\r\n-- TODO: delegate to global for any auto discard actions\r\nDISCARD_POSITION = {-3.85, 3, 10.38}\r\n-- DISCARD PILE POSITION\r\nDISCARD_PILE_POSITION = { -59.19, 4, -22.78 }\r\n\r\nlocal activeInvestigatorId = nil\r\nlocal willpowerTokenGuid = \"afc290\"\r\nlocal intellectTokenGuid = \"4ca990\"\r\nlocal combatTokenGuid = \"b661a6\"\r\nlocal agilityTokenGuid = \"d4df33\"\r\n\r\nfunction log(message)\r\n if DEBUG then\r\n print(message)\r\n end\r\nend\r\n\r\n-- builds a function that discards things in searchPostion to discardPostition\r\nfunction makeDiscardHandlerFor(searchPosition, discardPosition)\r\n return function (_)\r\n local discardItemList = findObjectsAtPosition(searchPosition)\r\n for _, obj in ipairs(discardItemList) do\r\n obj.setPositionSmooth(discardPosition, false, true)\r\n obj.setRotation({0, -90, 0})\r\n end\r\n end\r\nend\r\n\r\n-- build a discard button at position to discard from searchPosition to discardPosition\r\n-- number must be unique\r\nfunction makeDiscardButton(position, searchPosition, discardPosition, number)\r\n local handler = makeDiscardHandlerFor(searchPosition, discardPosition)\r\n local handlerName = 'handler' .. number\r\n self.setVar(handlerName, handler)\r\n self.createButton({\r\n label = \"Discard\",\r\n click_function= handlerName,\r\n function_owner= self,\r\n position = position,\r\n scale = {0.12, 0.12, 0.12},\r\n width = 800,\r\n height = 280,\r\n font_size = 180,\r\n })\r\nend\r\n\r\nfunction onload(save_state)\r\n\r\n self.interactable = DEBUG\r\n DATA_HELPER = getObjectFromGUID('708279')\r\n PLAYER_CARDS = DATA_HELPER.getTable('PLAYER_CARD_DATA')\r\n PLAYER_CARD_TOKEN_OFFSETS = DATA_HELPER.getTable('PLAYER_CARD_TOKEN_OFFSETS')\r\n\r\n -- positions of encounter card slots\r\n local encounterSlots = {\r\n {1.365, 0, -0.7},\r\n {0.91, 0, -0.7},\r\n {0.455, 0, -0.7},\r\n {0, 0, -0.7},\r\n {-0.455, 0, -0.7},\r\n {-0.91, 0, -0.7},\r\n }\r\n\r\n local i = 1\r\n while i <= 6 do\r\n makeDiscardButton(DISCARD_BUTTON_OFFSETS[i], encounterSlots[i], DISCARD_POSITION, i)\r\n i = i + 1\r\n end\r\n\r\n self.createButton({\r\n label = \" \",\r\n click_function = \"drawEncountercard\",\r\n function_owner = self,\r\n position = {-1.88,0,-0.7},\r\n rotation = {0,-15,0},\r\n width = 170,\r\n height = 255,\r\n font_size = 50\r\n })\r\n\r\n self.createButton({\r\n label=\" \",\r\n click_function = \"drawChaostokenButton\",\r\n function_owner = self,\r\n position = {1.84,0.0,-0.74},\r\n rotation = {0,-45,0},\r\n width = 125,\r\n height = 125,\r\n font_size = 50\r\n })\r\n\r\n self.createButton({\r\n label=\"Upkeep\",\r\n click_function = \"doUpkeep\",\r\n function_owner = self,\r\n position = {1.84,0.1,-0.44},\r\n scale = {0.12, 0.12, 0.12},\r\n width = 800,\r\n height = 280,\r\n font_size = 180\r\n })\r\n\r\n local state = JSON.decode(save_state)\r\n if state ~= nil then\r\n if state.playerColor ~= nil then\r\n PLAYER_COLOR = state.playerColor\r\n end\r\n if state.zoneID ~= nil then\r\n zoneID = state.zoneID\r\n Wait.time(checkDeckZoneExists, 30)\r\n else\r\n spawnDeckZone()\r\n end\r\n else\r\n spawnDeckZone()\r\n end\r\n\r\n COLLISION_ENABLED = true\r\nend\r\n\r\nfunction onSave()\r\n return JSON.encode({ zoneID=zoneID, playerColor=PLAYER_COLOR })\r\nend\r\n\r\nfunction setMessageColor(color)\r\n -- send messages to player who clicked button if no seated player found\r\n messageColor = Player[PLAYER_COLOR].seated and PLAYER_COLOR or color\r\nend\r\n\r\n-- get the draw deck and discard pile objects\r\nfunction getDrawDiscardDecks()\r\n drawDeck = nil\r\n discardPile = nil\r\n topCard = nil\r\n\r\n local zone = getObjectFromGUID(zoneID)\r\n if zone == nil then return end\r\n\r\n for i,object in ipairs(zone.getObjects()) do\r\n if object.tag == \"Deck\" or object.tag == \"Card\" then\r\n local relativePos = self.positionToLocal(object.getPosition())\r\n if relativePos.z > 0.5 then\r\n discardPile = object\r\n else\r\n if investigator == \"Norman Withers\" and object.tag == \"Card\" and not object.is_face_down then\r\n topCard = object\r\n else\r\n drawDeck = object\r\n end\r\n end\r\n end\r\n end\r\nend\r\n\r\nfunction doUpkeep(obj, color, alt_click)\r\n -- right-click binds to new player color\r\n if alt_click then\r\n PLAYER_COLOR = color\r\n printToColor(\"Upkeep button bound to \" .. color, color)\r\n return\r\n end\r\n\r\n setMessageColor(color)\r\n\r\n -- unexhaust cards in play zone\r\n local objs = Physics.cast({\r\n origin = PLAY_ZONE_POSITION,\r\n direction = { x=0, y=1, z=0 },\r\n type = 3,\r\n size = PLAY_ZONE_SCALE,\r\n orientation = PLAY_ZONE_ROTATION\r\n })\r\n\r\n local y = PLAY_ZONE_ROTATION.y\r\n\r\n investigator = nil\r\n local miniId = nil\r\n local forcedLearning = false\r\n for i,v in ipairs(objs) do\r\n local obj = v.hit_object\r\n local props = obj.getCustomObject() or {}\r\n if obj.tag == \"Card\" and not obj.is_face_down and not doNotReady(obj) then\r\n local notes = JSON.decode(obj.getGMNotes()) or {}\r\n local name = obj.getName()\r\n if notes.type == \"Investigator\" and notes.id ~= nil then\r\n miniId = string.match(notes.id, \"%d%d%d%d%d%d-\") .. \"-m\"\r\n end\r\n if notes.type == \"Investigator\" or props.unique_back then\r\n if string.match(name, \"Jenny Barnes\") ~= nil then\r\n investigator = \"Jenny Barnes\"\r\n elseif name == \"Patrice Hathaway\" then\r\n investigator = name\r\n elseif string.match(name, \"Norman Withers\") ~= nil then\r\n investigator = \"Norman Withers\"\r\n end\r\n elseif name == \"Forced Learning\" then\r\n forcedLearning = true\r\n else\r\n local r = obj.getRotation()\r\n if (r.y - y > 10) or (y - r.y > 10) then\r\n obj.setRotation(PLAY_ZONE_ROTATION)\r\n end\r\n end\r\n elseif obj.getDescription() == \"Action Token\" then\r\n if obj.is_face_down then obj.flip() end\r\n end\r\n end\r\n\r\n -- flip investigator mini-card if found\r\n if miniId ~= nil then\r\n objs = getObjects()\r\n for i,obj in ipairs(objs) do\r\n if obj.tag == \"Card\" then\r\n local notes = JSON.decode(obj.getGMNotes())\r\n if notes ~= nil and notes.type == \"Minicard\" and notes.id == miniId then\r\n if obj.is_face_down then\r\n obj.flip()\r\n end\r\n goto done\r\n end\r\n end\r\n end\r\n end\r\n ::done::\r\n\r\n -- flip summoned servitor mini-cards (To-Do: don't flip all of them)\r\n for i, obj in ipairs(getObjects()) do\r\n if obj.tag == \"Card\" then\r\n local notes = JSON.decode(obj.getGMNotes())\r\n if notes ~= nil and notes.type == \"Minicard\" and notes.id == \"09080-m\" then\r\n if obj.is_face_down then\r\n obj.flip()\r\n end\r\n end\r\n end\r\n end\r\n\r\n -- gain resource\r\n getObjectFromGUID(RESOURCE_COUNTER_GUID).call(\"add_subtract\")\r\n if investigator == \"Jenny Barnes\" then\r\n getObjectFromGUID(RESOURCE_COUNTER_GUID).call(\"add_subtract\")\r\n printToColor(\"Gaining 2 resources (Jenny)\", messageColor)\r\n end\r\n\r\n -- special draw for Patrice Hathaway (shuffle discards if necessary)\r\n if investigator == \"Patrice Hathaway\" then\r\n patriceDraw()\r\n return\r\n end\r\n\r\n -- special draw for Forced Learning\r\n if forcedLearning then\r\n forcedLearningDraw()\r\n return\r\n end\r\n\r\n drawCardsWithReshuffle(1)\r\nend\r\n\r\nfunction doDrawOne(obj, color)\r\n setMessageColor(color)\r\n drawCardsWithReshuffle(1)\r\nend\r\n\r\nfunction doNotReady(card)\r\n if card.getVar(\"do_not_ready\") == true then\r\n return true\r\n else\r\n return false\r\n end\r\nend\r\n\r\n-- draw X cards (shuffle discards if necessary)\r\nfunction drawCardsWithReshuffle(numCards)\r\n if type(numCards) ~= \"number\" then numCards = 1 end\r\n\r\n getDrawDiscardDecks()\r\n\r\n if investigator == \"Norman Withers\" then\r\n local harbinger = false\r\n if topCard ~= nil and topCard.getName() == \"The Harbinger\" then\r\n harbinger = true\r\n else\r\n if drawDeck ~= nil and not drawDeck.is_face_down then\r\n local cards = drawDeck.getObjects()\r\n local bottomCard = cards[#cards]\r\n if bottomCard.name == \"The Harbinger\" then\r\n harbinger = true\r\n end\r\n end\r\n end\r\n\r\n if harbinger then\r\n printToColor(\"The Harbinger is on top of your deck, not drawing cards\", messageColor)\r\n return -1\r\n end\r\n\r\n if topCard ~= nil then\r\n topCard.deal(numCards, PLAYER_COLOR)\r\n numCards = numCards - 1\r\n if numCards == 0 then return end\r\n end\r\n end\r\n\r\n local deckSize\r\n if drawDeck == nil then\r\n deckSize = 0\r\n elseif drawDeck.tag == \"Deck\" then\r\n deckSize = #drawDeck.getObjects()\r\n else\r\n deckSize = 1\r\n end\r\n\r\n if deckSize >= numCards then\r\n drawCards(numCards)\r\n return\r\n end\r\n\r\n drawCards(deckSize)\r\n if discardPile ~= nil then\r\n shuffleDiscardIntoDeck()\r\n Wait.time(|| drawCards(numCards - deckSize), 1)\r\n end\r\n printToColor(\"Take 1 horror (drawing card from empty deck)\", messageColor)\r\nend\r\n\r\nfunction drawCards(numCards)\r\n if drawDeck == nil then return end\r\n drawDeck.deal(numCards, PLAYER_COLOR)\r\nend\r\n\r\nfunction shuffleDiscardIntoDeck()\r\n discardPile.flip()\r\n discardPile.shuffle()\r\n discardPile.setPositionSmooth(DRAW_DECK_POSITION, false, false)\r\n drawDeck = discardPile\r\n discardPile = nil\r\nend\r\n\r\nfunction patriceDraw()\r\n local handSize = #Player[PLAYER_COLOR].getHandObjects()\r\n if handSize >= 5 then return end\r\n local cardsToDraw = 5 - handSize\r\n printToColor(\"Drawing \" .. cardsToDraw .. \" cards (Patrice)\", messageColor)\r\n drawCardsWithReshuffle(cardsToDraw)\r\nend\r\n\r\nfunction forcedLearningDraw()\r\n printToColor(\"Drawing 2 cards, discard 1 (Forced Learning)\", messageColor)\r\n drawCardsWithReshuffle(2)\r\nend\r\n\r\nfunction checkDeckZoneExists()\r\n if getObjectFromGUID(zoneID) ~= nil then return end\r\n spawnDeckZone()\r\nend\r\n\r\nfunction spawnDeckZone()\r\n local pos = self.positionToWorld(DECK_POSITION)\r\n local zoneProps = {\r\n position = pos,\r\n scale = DECK_ZONE_SCALE,\r\n type = 'ScriptingTrigger',\r\n callback = 'zoneCallback',\r\n callback_owner = self,\r\n rotation = self.getRotation()\r\n }\r\n spawnObject(zoneProps)\r\nend\r\n\r\nfunction zoneCallback(zone)\r\n zoneID = zone.getGUID()\r\nend\r\n\r\nfunction findObjectsAtPosition(localPos)\r\n local globalPos = self.positionToWorld(localPos)\r\n local objList = Physics.cast({\r\n origin=globalPos, --Where the cast takes place\r\n direction={0,1,0}, --Which direction it moves (up is shown)\r\n type=2, --Type. 2 is \"sphere\"\r\n size={2,2,2}, --How large that sphere is\r\n max_distance=1, --How far it moves. Just a little bit\r\n debug=false --If it displays the sphere when casting.\r\n })\r\n local decksAndCards = {}\r\n for _, obj in ipairs(objList) do\r\n if obj.hit_object.tag == \"Deck\" or obj.hit_object.tag == \"Card\" then\r\n table.insert(decksAndCards, obj.hit_object)\r\n end\r\n end\r\n return decksAndCards\r\nend\r\n\r\nfunction spawnTokenOn(object, offsets, tokenType)\r\n local tokenPosition = object.positionToWorld(offsets)\r\n spawnToken(tokenPosition, tokenType)\r\nend\r\n\r\n-- spawn a group of tokens of the given type on the object\r\nfunction spawnTokenGroup(object, tokenType, tokenCount)\r\n if (tokenCount < 1 or tokenCount > 12) then\r\n return\r\n end\r\n local offsets = PLAYER_CARD_TOKEN_OFFSETS[tokenCount]\r\n if offsets == nil then\r\n error(\"couldn't find offsets for \" .. tokenCount .. ' tokens')\r\n end\r\n local i = 0\r\n while i < tokenCount do\r\n local offset = offsets[i + 1]\r\n spawnTokenOn(object, offset, tokenType)\r\n i = i + 1\r\n end\r\nend\r\n\r\nfunction buildPlayerCardKey(object)\r\n return object.getName() .. ':' .. object.getDescription()\r\nend\r\n\r\nfunction getPlayerCardData(object)\r\n return PLAYER_CARDS[buildPlayerCardKey(object)] or PLAYER_CARDS[object.getName()]\r\nend\r\n\r\nfunction shouldSpawnTokens(object)\r\n -- we assume we shouldn't spawn tokens if in doubt, this should\r\n -- only ever happen on load and in that case prevents respawns\r\n local spawned = DATA_HELPER.call('getSpawnedPlayerCardGuid', {object.getGUID()})\r\n local hasDataHelperData = getPlayerCardData(object)\r\n local cardMetadata = JSON.decode(object.getGMNotes()) or {}\r\n local hasUses = cardMetadata.uses ~= nil\r\n return not spawned and (hasDataHelperData or hasUses)\r\nend\r\n\r\nfunction markSpawned(object)\r\n local saved = DATA_HELPER.call('setSpawnedPlayerCardGuid', {object.getGUID(), true})\r\n if not saved then\r\n error('attempt to mark player card spawned before data loaded')\r\n end\r\nend\r\n\r\nfunction spawnTokensFor(object)\r\n local cardMetadata = JSON.decode(object.getGMNotes()) or {}\r\n local token = nil\r\n local type = nil\r\n local tokenCount = 0\r\n if (cardMetadata.uses ~= nil) then\r\n for i, useInfo in ipairs(cardMetadata.uses) do\r\n token = useInfo.token\r\n type = useInfo.type\r\n tokenCount = useInfo.count\r\n if (activeInvestigatorId == \"03004\" and useInfo.type == \"Charge\") then\r\n tokenCount = tokenCount + 1\r\n end\r\n log(\"Spawning tokens for \"..object.getName()..'['..object.getDescription()..']: '..tokenCount..\"x \"..token)\r\n spawnTokenGroup(object, token, tokenCount)\r\n end\r\n else\r\n local data = getPlayerCardData(object)\r\n if data == nil then\r\n error('attempt to spawn tokens for ' .. object.getName() .. ': no token data')\r\n end\r\n token = data['tokenType']\r\n tokenCount = data['tokenCount']\r\n log(object.getName() .. '[' .. object.getDescription() .. ']' .. ' : ' .. data['tokenType'] .. ' : ' .. data['tokenCount'])\r\n log(\"Spawning tokens for \"..object.getName()..'['..object.getDescription()..']: '..tokenCount..\"x \"..token)\r\n spawnTokenGroup(object, token, tokenCount)\r\n end\r\n markSpawned(object)\r\nend\r\n\r\nfunction resetSpawnState()\r\n local zone = getObjectFromGUID(zoneID)\r\n if zone == nil then return end\r\n\r\n for i,object in ipairs(zone.getObjects()) do\r\n if object.tag == \"Card\" then\r\n local guid = object.getGUID()\r\n if guid ~= nil then unmarkSpawned(guid, true) end\r\n elseif object.tag == \"Deck\" then\r\n local cards = object.getObjects()\r\n if (cards ~= nil) then\r\n for i,v in ipairs(cards) do\r\n if v.guid ~= nil then unmarkSpawned(v.guid) end\r\n end\r\n end\r\n end\r\n end\r\nend\r\n\r\nfunction unmarkSpawned(guid, force)\r\n if not force and getObjectFromGUID(guid) ~= nil then return end\r\n DATA_HELPER.call('setSpawnedPlayerCardGuid', {guid, false})\r\nend\r\n\r\nfunction onCollisionEnter(collision_info)\r\n if (collision_info.collision_object.name == \"Card\") then\r\n maybeUpdateActiveInvestigator(collision_info.collision_object)\r\n end\r\n if not COLLISION_ENABLED then\r\n return\r\n end\r\n\r\n local object = collision_info.collision_object\r\n Wait.time(resetSpawnState, 1)\r\n -- anything to the left of this is legal to spawn\r\n local discardSpawnBoundary = self.positionToWorld({-1.2, 0, 0})\r\n local boundaryLocalToCard = object.positionToLocal(discardSpawnBoundary)\r\n if boundaryLocalToCard.x > 0 then\r\n log('not checking for token spawn, boundary relative is ' .. boundaryLocalToCard.x)\r\n return\r\n end\r\n if not object.is_face_down and shouldSpawnTokens(object) then\r\n spawnTokensFor(object)\r\n end\r\nend\r\n\r\nfunction maybeUpdateActiveInvestigator(card)\r\n local cardMetadata = JSON.decode(card.getGMNotes()) or {}\r\n if (cardMetadata.type == \"Investigator\") then\r\n activeInvestigatorId = cardMetadata.id\r\n updateStatToken(willpowerTokenGuid, cardMetadata.willpowerIcons)\r\n updateStatToken(intellectTokenGuid, cardMetadata.intellectIcons)\r\n updateStatToken(combatTokenGuid, cardMetadata.combatIcons)\r\n updateStatToken(agilityTokenGuid, cardMetadata.agilityIcons)\r\n end\r\nend\r\n\r\nfunction updateStatToken(tokenGuid, val)\r\n local statToken = getObjectFromGUID(tokenGuid)\r\n if (statToken == nil) then\r\n return\r\n end\r\n statToken.call(\"reset_val\")\r\n for i = 1, val do\r\n statToken.call(\"add_subtract\", { alt_click = false })\r\n end\r\nend\r\n\r\n-- functions delegated to Global\r\nfunction drawChaostokenButton(object, player, isRightClick)\r\n -- local toPosition = self.positionToWorld(DRAWN_CHAOS_TOKEN_OFFSET)\r\n Global.call(\"drawChaostoken\", {self, DRAWN_CHAOS_TOKEN_OFFSET, isRightClick})\r\nend\r\n\r\nfunction drawEncountercard(object, player, isRightClick)\r\nlocal toPosition = self.positionToWorld(DRAWN_ENCOUNTER_CARD_OFFSET)\r\nGlobal.call(\"drawEncountercard\", {toPosition, self.getRotation(), isRightClick})\r\nend\r\n\r\nfunction spawnToken(position, tokenType)\r\n Global.call('spawnToken', {position, tokenType})\r\nend\r\n\r\nfunction updatePlayerCards(args)\r\n local custom_data_helper = getObjectFromGUID(args[1])\r\n data_player_cards = custom_data_helper.getTable(\"PLAYER_CARD_DATA\")\r\n for k, v in pairs(data_player_cards) do\r\n PLAYER_CARDS[k] = v\r\n end\r\nend",
"LuaScriptState": "{\"playerColor\":\"Orange\",\"zoneID\":\"b047f8\"}",
"XmlUI": "",
"AttachedSnapPoints": [
{
"Position": {
"x": 1.75864565,
"y": 0.09971247,
"z": 0.0475990139
}
},
{
"Position": {
"x": 1.7545191,
"y": 0.100397222,
"z": 0.5714399
}
},
{
"Position": {
"x": 1.37167931,
"y": 0.100284569,
"z": 0.0459325723
}
},
{
"Position": {
"x": 1.37097621,
"y": 0.100007735,
"z": 0.566032231
}
},
{
"Position": {
"x": 0.9804886,
"y": 0.100355349,
"z": 0.0423808433
}
},
{
"Position": {
"x": 0.9765783,
"y": 0.100250572,
"z": 0.563772261
}
},
{
"Position": {
"x": 0.601669431,
"y": 0.100177035,
"z": 0.0404168963
}
},
{
"Position": {
"x": 0.6048712,
"y": 0.09972893,
"z": 0.5623051
}
},
{
"Position": {
"x": 0.216902614,
"y": 0.0999965146,
"z": 0.04267274
}
},
{
"Position": {
"x": 0.212502986,
"y": 0.100201912,
"z": 0.5662675
}
},
{
"Position": {
"x": -0.176380113,
"y": 0.0997598842,
"z": 0.039623227
}
},
{
"Position": {
"x": -0.6155331,
"y": 0.0992250144,
"z": 0.0317370743
}
},
{
"Position": {
"x": -0.6305893,
"y": 0.09964579,
"z": 0.558445156
}
},
{
"Position": {
"x": -1.17681789,
"y": 0.09904622,
"z": 0.009343788
}
},
{
"Position": {
"x": -1.82239926,
"y": 0.100342259,
"z": 0.6163123
},
"Rotation": {
"x": 3.36023078E-07,
"y": 0.008230378,
"z": -2.2926298E-07
}
},
{
"Position": {
"x": -1.82252157,
"y": 0.09992266,
"z": -0.0218116846
},
"Rotation": {
"x": 2.0513167E-07,
"y": 0.008281603,
"z": -3.58503343E-07
}
},
{
"Position": {
"x": -0.17383261,
"y": 0.09963451,
"z": 0.5585994
}
},
{
"Position": {
"x": -1.00187755,
"y": 0.0998892859,
"z": -0.2693965
},
"Tags": [
"action_token"
]
},
{
"Position": {
"x": -1.17935324,
"y": 0.0997509658,
"z": -0.26936093
},
"Tags": [
"action_token"
]
},
{
"Position": {
"x": -1.356829,
"y": 0.09989397,
"z": -0.2693278
},
"Tags": [
"action_token"
]
},
{
"Position": {
"x": -0.9848527,
"y": 0.100038327,
"z": 0.121219918
},
"Tags": [
"action_token"
]
},
{
"Position": {
"x": 1.36515367,
"y": 0.09984004,
"z": -0.6376085
},
"Rotation": {
"x": 4.18553043E-07,
"y": 0.0303877313,
"z": -7.39285344E-09
}
},
{
"Position": {
"x": 0.9177431,
"y": 0.100884587,
"z": -0.6375221
},
"Rotation": {
"x": 4.34386578E-07,
"y": 0.0331981368,
"z": 2.59725077E-08
}
}
]
},
{
"GUID": "c1fe65",
"Name": "Custom_Token",
"Transform": {
"posX": -47.642,
"posY": 1.6005,
"posZ": 8.755,
"rotX": 359.9202,
"rotY": 269.971924,
"rotZ": 0.0169000011,
"scaleX": 0.429196239,
"scaleY": 1.0,
"scaleZ": 0.429196239
},
"Nickname": "Intellect",
"Description": "Left click - Increase\nRight click - Decrease",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"CleanUpHelper_ignore"
],
"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/sj8GatY.png",
"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": "d4df33",
"Name": "Custom_Token",
"Transform": {
"posX": -47.6407,
"posY": 1.5904,
"posZ": -25.644,
"rotX": 359.9202,
"rotY": 270.0248,
"rotZ": 0.0169000085,
"scaleX": 0.429196239,
"scaleY": 1.0,
"scaleZ": 0.429196239
},
"Nickname": "Agility",
"Description": "Left click - Increase\nRight click - Decrease",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"CleanUpHelper_ignore"
],
"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/vXVWwD0.png",
"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": "fa6df4",
"Name": "Custom_Token",
"Transform": {
"posX": -31.2076,
"posY": 1.5807,
"posZ": 19.236,
"rotX": 359.9831,
"rotY": 359.9886,
"rotZ": 359.9201,
"scaleX": 0.429196239,
"scaleY": 1.0,
"scaleZ": 0.429196239
},
"Nickname": "Willpower",
"Description": "Left click - Increase\nRight click - Decrease",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"CleanUpHelper_ignore"
],
"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/i2IDOcO.png",
"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": "2547b3",
"Name": "Custom_Model",
"Transform": {
"posX": 31.9989643,
"posY": 1.48899472,
"posZ": -24.4916439,
"rotX": 359.91806,
"rotY": 269.999939,
"rotZ": 0.016933782,
"scaleX": 0.5000004,
"scaleY": 0.5000004,
"scaleZ": 0.5000004
},
"Nickname": "Custom Data Helper",
"Description": "Include this in custom content for clue spawning!",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"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}\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": "637e17",
"Name": "Custom_Tile",
"Transform": {
"posX": -53.2063332,
"posY": 1.63528109,
"posZ": 8.431554,
"rotX": 359.920074,
"rotY": 269.977844,
"rotZ": 0.01687175,
"scaleX": 0.45083037,
"scaleY": 1.0,
"scaleZ": 0.45083037
},
"Nickname": "Lola/Neutral",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.247055411,
"g": 0.247055411,
"b": 0.247055411
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892160490185/08045D95997033A4D64764850FC2B68C4FB12A3C/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892160088122/7121223CA3F7CE68D5CDF9448A45A1B9471C5F02/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"7": {
"GUID": "18262f",
"Name": "Custom_Tile",
"Transform": {
"posX": -27.5766983,
"posY": 1.622816,
"posZ": 9.891064,
"rotX": 359.920135,
"rotY": 269.979858,
"rotZ": 0.0168843661,
"scaleX": 0.45083037,
"scaleY": 1.0,
"scaleZ": 0.45083037
},
"Nickname": "Guardian Engage/Fight Action",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.07450969,
"g": 0.3294116,
"b": 0.647058845
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892160205832/196A6AB09BE31462712BA7DF6F6698762B3FC98D/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892160206084/7DBCABEB4BF4F198808581A82535AFCF490F3AA4/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"8": {
"GUID": "2b07ee",
"Name": "Custom_Tile",
"Transform": {
"posX": -27.321558,
"posY": 1.62194133,
"posZ": 8.125641,
"rotX": 359.920074,
"rotY": 269.9797,
"rotZ": 0.0168532133,
"scaleX": 0.45083037,
"scaleY": 1.0,
"scaleZ": 0.45083037
},
"Nickname": "Investigate Action",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.894117653,
"g": 0.5803921,
"b": 0.2901958
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892160193705/9E0936305F807390EBA6AB130E498BFEDBA7596C/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892160193843/0E51341BE053D813766AE16EBDF0EE2B18D21DA6/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"9": {
"GUID": "7a63fd",
"Name": "Custom_Tile",
"Transform": {
"posX": -27.3002834,
"posY": 1.62138486,
"posZ": 6.333009,
"rotX": 359.9201,
"rotY": 269.9799,
"rotZ": 0.0168767553,
"scaleX": 0.45083037,
"scaleY": 1.0,
"scaleZ": 0.45083037
},
"Nickname": "Tome Action",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.894117653,
"g": 0.5803921,
"b": 0.290195882
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892160177206/F21B46B06BBF327601B4F8A5F9F00974149A6752/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892160178435/D0AC0567CCEBCE1C39AE42D4C41F7D430370CD63/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"10": {
"GUID": "0fa0b0",
"Name": "Custom_Tile",
"Transform": {
"posX": -27.369997,
"posY": 1.62108564,
"posZ": 4.984156,
"rotX": 359.9201,
"rotY": 269.979858,
"rotZ": 0.016851306,
"scaleX": 0.45083037,
"scaleY": 1.0,
"scaleZ": 0.45083037
},
"Nickname": "Rogue Engage/Fight Action",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.06666657,
"g": 0.282352835,
"b": 0.211764544
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892160208347/F53989F0806C796D180647A16C6BB4E9957F6DBF/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892160206084/7DBCABEB4BF4F198808581A82535AFCF490F3AA4/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"2": {
"GUID": "f81db8",
"Name": "Custom_Tile",
"Transform": {
"posX": -26.3750229,
"posY": 1.62159908,
"posZ": 11.452013,
"rotX": 359.9201,
"rotY": 269.980042,
"rotZ": 0.0168430787,
"scaleX": 0.45083037,
"scaleY": 1.0,
"scaleZ": 0.45083037
},
"Nickname": "Seeker",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.894117653,
"g": 0.5803921,
"b": 0.290195882
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892160172411/727C40B7A122B3EC91AD1EF76741A9888E1FF0FF/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892160081099/67A378F96CDA5FD152D491C8558170B6626F3B62/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"11": {
"GUID": "9f7077",
"Name": "Custom_Tile",
"Transform": {
"posX": -26.3748932,
"posY": 1.621599,
"posZ": 11.4519892,
"rotX": 359.9201,
"rotY": 269.9798,
"rotZ": 0.0168773085,
"scaleX": 0.45083037,
"scaleY": 1.0,
"scaleZ": 0.45083037
},
"Nickname": "Evade Action",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.06666653,
"g": 0.282352775,
"b": 0.211764485
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892160185563/042FBF813801CFDF4FEDA9ED3205D331842975FA/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892160185728/4D315AB296E7F8F10B1C98777814870192E41612/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"1": {
"GUID": "116e52",
"Name": "Custom_Tile",
"Transform": {
"posX": -26.3748932,
"posY": 1.62159884,
"posZ": 11.45199,
"rotX": 359.920135,
"rotY": 269.9798,
"rotZ": 0.0168823861,
"scaleX": 0.45083037,
"scaleY": 1.0,
"scaleZ": 0.45083037
},
"Nickname": "Guardian",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.07450964,
"g": 0.329411536,
"b": 0.647058845
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892159978320/6CBF573A12494524613C6280F558D4BED97CF007/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892160072062/DCA14B4419B0F8B8137E71F7A2CFDD40B72D7262/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"12": {
"GUID": "74ae43",
"Name": "Custom_Tile",
"Transform": {
"posX": -53.2062035,
"posY": 1.635617,
"posZ": 9.573014,
"rotX": 359.9201,
"rotY": 269.977661,
"rotZ": 0.0168937724,
"scaleX": 0.45083037,
"scaleY": 1.0,
"scaleZ": 0.45083037
},
"Nickname": "Parley Action",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.06666653,
"g": 0.282352775,
"b": 0.211764485
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892160455868/0D0F1B80B4E6A20B4728F1F7582FF09C1D4A3B9F/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892160456024/210D2A5D2C17F628302BD05065BB5C2F0BCAF842/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"3": {
"GUID": "2512b6",
"Name": "Custom_Tile",
"Transform": {
"posX": -53.20619,
"posY": 1.635617,
"posZ": 9.573011,
"rotX": 359.9201,
"rotY": 269.9775,
"rotZ": 0.01688007,
"scaleX": 0.45083037,
"scaleY": 1.0,
"scaleZ": 0.45083037
},
"Nickname": "Rogue",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.0666665062,
"g": 0.282352746,
"b": 0.211764455
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892159980250/FFA52250CDBE4067D16226E7B4C8D2E6BF263C5B/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892160084956/E2EB7A516BABA084BB8CE6F038BB22363DD647A9/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"13": {
"GUID": "441286",
"Name": "Custom_Tile",
"Transform": {
"posX": -53.2062035,
"posY": 1.635617,
"posZ": 9.573014,
"rotX": 359.9201,
"rotY": 269.977539,
"rotZ": 0.0168959163,
"scaleX": 0.45083037,
"scaleY": 1.0,
"scaleZ": 0.45083037
},
"Nickname": "Spell Action",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.3215684,
"g": 0.07058806,
"b": 0.380391926
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892160484534/A5506FADCE917AA99925516A147E0320322B5BDD/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892159981661/347ACFF6E4063121AA7D68045C7D501C22D058D4/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"5": {
"GUID": "d8fa67",
"Name": "Custom_Tile",
"Transform": {
"posX": -53.2062035,
"posY": 1.6356169,
"posZ": 9.573014,
"rotX": 359.9201,
"rotY": 269.977478,
"rotZ": 0.01691224,
"scaleX": 0.45083037,
"scaleY": 1.0,
"scaleZ": 0.45083037
},
"Nickname": "Survivor",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.745098054,
"g": 0.117646866,
"b": 0.1764704
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892159981185/8A83B84C4EC594D48259904616769E84C5191F83/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892160087156/4A5464A1B1A0905B79A8155B2CA71BAA74D5966B/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"4": {
"GUID": "fb5b15",
"Name": "Custom_Tile",
"Transform": {
"posX": -53.2062035,
"posY": 1.63561714,
"posZ": 9.573014,
"rotX": 359.920074,
"rotY": 269.977356,
"rotZ": 0.0168797281,
"scaleX": 0.45083037,
"scaleY": 1.0,
"scaleZ": 0.45083037
},
"Nickname": "Mystic",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.32156834,
"g": 0.070588015,
"b": 0.380391866
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892159980712/D6B1AAFF9763CD6F410D56A716D731714DE34EF8/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892160086074/8D2001374B0E757E52ABF406D8683C531F377350/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"20": {
"GUID": "2d0664",
"Name": "Custom_Model",
"Transform": {
"posX": -53.20612,
"posY": 1.69561684,
"posZ": 9.572996,
"rotX": 359.9201,
"rotY": 269.9773,
"rotZ": 0.0169064868,
"scaleX": 0.45,
"scaleY": 0.6,
"scaleZ": 0.45
},
"Nickname": "Neutral",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"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": ""
},
"19": {
"GUID": "0c9182",
"Name": "Custom_Model",
"Transform": {
"posX": -53.20612,
"posY": 1.69561708,
"posZ": 9.572996,
"rotX": 359.920074,
"rotY": 269.977234,
"rotZ": 0.0169148687,
"scaleX": 0.45,
"scaleY": 0.6,
"scaleZ": 0.45
},
"Nickname": "Survivor",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"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": ""
},
"18": {
"GUID": "6bd479",
"Name": "Custom_Model",
"Transform": {
"posX": -53.20612,
"posY": 1.69561708,
"posZ": 9.572996,
"rotX": 359.920074,
"rotY": 269.9772,
"rotZ": 0.01691519,
"scaleX": 0.45,
"scaleY": 0.6,
"scaleZ": 0.45
},
"Nickname": "Mystic",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"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": ""
},
"17": {
"GUID": "7f001b",
"Name": "Custom_Model",
"Transform": {
"posX": -53.20612,
"posY": 1.695617,
"posZ": 9.572996,
"rotX": 359.920074,
"rotY": 269.9771,
"rotZ": 0.0169141833,
"scaleX": 0.45,
"scaleY": 0.6,
"scaleZ": 0.45
},
"Nickname": "Rogue",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"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": ""
},
"14": {
"GUID": "1fc950",
"Name": "Custom_Tile",
"Transform": {
"posX": -53.20614,
"posY": 1.635617,
"posZ": 9.573,
"rotX": 359.9201,
"rotY": 269.976959,
"rotZ": 0.0169055313,
"scaleX": 0.45083037,
"scaleY": 1.0,
"scaleZ": 0.45083037
},
"Nickname": "Play Item Action",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.745098054,
"g": 0.117646866,
"b": 0.1764704
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892160364237/A92D5AF13B283117BD62EE84B657A3A71FBBD274/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892160364411/A2521332E179AA19AF2002427E8114316614D884/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"15": {
"GUID": "11508f",
"Name": "Custom_Model",
"Transform": {
"posX": -53.2060547,
"posY": 1.69561672,
"posZ": 9.572982,
"rotX": 359.920074,
"rotY": 269.976959,
"rotZ": 0.01690872,
"scaleX": 0.45,
"scaleY": 0.6,
"scaleZ": 0.45
},
"Nickname": "Guardian",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"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": ""
},
"16": {
"GUID": "8888ff",
"Name": "Custom_Model",
"Transform": {
"posX": -53.2060547,
"posY": 1.69561684,
"posZ": 9.572982,
"rotX": 359.920074,
"rotY": 269.976959,
"rotZ": 0.0169153865,
"scaleX": 0.45,
"scaleY": 0.6,
"scaleZ": 0.45
},
"Nickname": "Seeker",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"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": ""
}
}
},
{
"GUID": "e003fe",
"Name": "Custom_Tile",
"Transform": {
"posX": -53.2063179,
"posY": 1.63494515,
"posZ": 7.2900033,
"rotX": 359.920074,
"rotY": 269.9763,
"rotZ": 0.0168741439,
"scaleX": 0.45083037,
"scaleY": 1.0,
"scaleZ": 0.45083037
},
"Nickname": "Lola/Neutral",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.247055411,
"g": 0.247055411,
"b": 0.247055411
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892160490185/08045D95997033A4D64764850FC2B68C4FB12A3C/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892160088122/7121223CA3F7CE68D5CDF9448A45A1B9471C5F02/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"7": {
"GUID": "18262f",
"Name": "Custom_Tile",
"Transform": {
"posX": -27.5766983,
"posY": 1.622816,
"posZ": 9.891064,
"rotX": 359.920135,
"rotY": 269.979858,
"rotZ": 0.0168843661,
"scaleX": 0.45083037,
"scaleY": 1.0,
"scaleZ": 0.45083037
},
"Nickname": "Guardian Engage/Fight Action",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.07450969,
"g": 0.3294116,
"b": 0.647058845
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892160205832/196A6AB09BE31462712BA7DF6F6698762B3FC98D/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892160206084/7DBCABEB4BF4F198808581A82535AFCF490F3AA4/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"8": {
"GUID": "2b07ee",
"Name": "Custom_Tile",
"Transform": {
"posX": -27.321558,
"posY": 1.62194133,
"posZ": 8.125641,
"rotX": 359.920074,
"rotY": 269.9797,
"rotZ": 0.0168532133,
"scaleX": 0.45083037,
"scaleY": 1.0,
"scaleZ": 0.45083037
},
"Nickname": "Investigate Action",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.894117653,
"g": 0.5803921,
"b": 0.2901958
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892160193705/9E0936305F807390EBA6AB130E498BFEDBA7596C/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892160193843/0E51341BE053D813766AE16EBDF0EE2B18D21DA6/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"9": {
"GUID": "7a63fd",
"Name": "Custom_Tile",
"Transform": {
"posX": -27.3002834,
"posY": 1.62138486,
"posZ": 6.333009,
"rotX": 359.9201,
"rotY": 269.9799,
"rotZ": 0.0168767553,
"scaleX": 0.45083037,
"scaleY": 1.0,
"scaleZ": 0.45083037
},
"Nickname": "Tome Action",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.894117653,
"g": 0.5803921,
"b": 0.290195882
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892160177206/F21B46B06BBF327601B4F8A5F9F00974149A6752/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892160178435/D0AC0567CCEBCE1C39AE42D4C41F7D430370CD63/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"10": {
"GUID": "0fa0b0",
"Name": "Custom_Tile",
"Transform": {
"posX": -27.369997,
"posY": 1.62108564,
"posZ": 4.984156,
"rotX": 359.9201,
"rotY": 269.979858,
"rotZ": 0.016851306,
"scaleX": 0.45083037,
"scaleY": 1.0,
"scaleZ": 0.45083037
},
"Nickname": "Rogue Engage/Fight Action",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.06666657,
"g": 0.282352835,
"b": 0.211764544
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892160208347/F53989F0806C796D180647A16C6BB4E9957F6DBF/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892160206084/7DBCABEB4BF4F198808581A82535AFCF490F3AA4/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"2": {
"GUID": "f81db8",
"Name": "Custom_Tile",
"Transform": {
"posX": -26.3750229,
"posY": 1.62159908,
"posZ": 11.452013,
"rotX": 359.9201,
"rotY": 269.980042,
"rotZ": 0.0168430787,
"scaleX": 0.45083037,
"scaleY": 1.0,
"scaleZ": 0.45083037
},
"Nickname": "Seeker",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.894117653,
"g": 0.5803921,
"b": 0.290195882
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892160172411/727C40B7A122B3EC91AD1EF76741A9888E1FF0FF/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892160081099/67A378F96CDA5FD152D491C8558170B6626F3B62/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"11": {
"GUID": "9f7077",
"Name": "Custom_Tile",
"Transform": {
"posX": -26.3748932,
"posY": 1.621599,
"posZ": 11.4519892,
"rotX": 359.9201,
"rotY": 269.9798,
"rotZ": 0.0168773085,
"scaleX": 0.45083037,
"scaleY": 1.0,
"scaleZ": 0.45083037
},
"Nickname": "Evade Action",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.06666653,
"g": 0.282352775,
"b": 0.211764485
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892160185563/042FBF813801CFDF4FEDA9ED3205D331842975FA/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892160185728/4D315AB296E7F8F10B1C98777814870192E41612/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"1": {
"GUID": "116e52",
"Name": "Custom_Tile",
"Transform": {
"posX": -26.3748932,
"posY": 1.62159884,
"posZ": 11.45199,
"rotX": 359.920135,
"rotY": 269.9798,
"rotZ": 0.0168823861,
"scaleX": 0.45083037,
"scaleY": 1.0,
"scaleZ": 0.45083037
},
"Nickname": "Guardian",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.07450964,
"g": 0.329411536,
"b": 0.647058845
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892159978320/6CBF573A12494524613C6280F558D4BED97CF007/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892160072062/DCA14B4419B0F8B8137E71F7A2CFDD40B72D7262/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"12": {
"GUID": "74ae43",
"Name": "Custom_Tile",
"Transform": {
"posX": -53.2062035,
"posY": 1.635617,
"posZ": 9.573014,
"rotX": 359.9201,
"rotY": 269.977661,
"rotZ": 0.0168937724,
"scaleX": 0.45083037,
"scaleY": 1.0,
"scaleZ": 0.45083037
},
"Nickname": "Parley Action",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.06666653,
"g": 0.282352775,
"b": 0.211764485
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892160455868/0D0F1B80B4E6A20B4728F1F7582FF09C1D4A3B9F/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892160456024/210D2A5D2C17F628302BD05065BB5C2F0BCAF842/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"3": {
"GUID": "2512b6",
"Name": "Custom_Tile",
"Transform": {
"posX": -53.20619,
"posY": 1.635617,
"posZ": 9.573011,
"rotX": 359.9201,
"rotY": 269.9775,
"rotZ": 0.01688007,
"scaleX": 0.45083037,
"scaleY": 1.0,
"scaleZ": 0.45083037
},
"Nickname": "Rogue",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.0666665062,
"g": 0.282352746,
"b": 0.211764455
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892159980250/FFA52250CDBE4067D16226E7B4C8D2E6BF263C5B/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892160084956/E2EB7A516BABA084BB8CE6F038BB22363DD647A9/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"13": {
"GUID": "441286",
"Name": "Custom_Tile",
"Transform": {
"posX": -53.2062035,
"posY": 1.635617,
"posZ": 9.573014,
"rotX": 359.9201,
"rotY": 269.977539,
"rotZ": 0.0168959163,
"scaleX": 0.45083037,
"scaleY": 1.0,
"scaleZ": 0.45083037
},
"Nickname": "Spell Action",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.3215684,
"g": 0.07058806,
"b": 0.380391926
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892160484534/A5506FADCE917AA99925516A147E0320322B5BDD/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892159981661/347ACFF6E4063121AA7D68045C7D501C22D058D4/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"5": {
"GUID": "d8fa67",
"Name": "Custom_Tile",
"Transform": {
"posX": -53.2062035,
"posY": 1.6356169,
"posZ": 9.573014,
"rotX": 359.9201,
"rotY": 269.977478,
"rotZ": 0.01691224,
"scaleX": 0.45083037,
"scaleY": 1.0,
"scaleZ": 0.45083037
},
"Nickname": "Survivor",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.745098054,
"g": 0.117646866,
"b": 0.1764704
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892159981185/8A83B84C4EC594D48259904616769E84C5191F83/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892160087156/4A5464A1B1A0905B79A8155B2CA71BAA74D5966B/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"4": {
"GUID": "fb5b15",
"Name": "Custom_Tile",
"Transform": {
"posX": -53.2062035,
"posY": 1.63561714,
"posZ": 9.573014,
"rotX": 359.920074,
"rotY": 269.977356,
"rotZ": 0.0168797281,
"scaleX": 0.45083037,
"scaleY": 1.0,
"scaleZ": 0.45083037
},
"Nickname": "Mystic",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.32156834,
"g": 0.070588015,
"b": 0.380391866
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892159980712/D6B1AAFF9763CD6F410D56A716D731714DE34EF8/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892160086074/8D2001374B0E757E52ABF406D8683C531F377350/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"20": {
"GUID": "2d0664",
"Name": "Custom_Model",
"Transform": {
"posX": -53.20612,
"posY": 1.69561684,
"posZ": 9.572996,
"rotX": 359.9201,
"rotY": 269.9773,
"rotZ": 0.0169064868,
"scaleX": 0.45,
"scaleY": 0.6,
"scaleZ": 0.45
},
"Nickname": "Neutral",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"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": ""
},
"19": {
"GUID": "0c9182",
"Name": "Custom_Model",
"Transform": {
"posX": -53.20612,
"posY": 1.69561708,
"posZ": 9.572996,
"rotX": 359.920074,
"rotY": 269.977234,
"rotZ": 0.0169148687,
"scaleX": 0.45,
"scaleY": 0.6,
"scaleZ": 0.45
},
"Nickname": "Survivor",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"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": ""
},
"18": {
"GUID": "6bd479",
"Name": "Custom_Model",
"Transform": {
"posX": -53.20612,
"posY": 1.69561708,
"posZ": 9.572996,
"rotX": 359.920074,
"rotY": 269.9772,
"rotZ": 0.01691519,
"scaleX": 0.45,
"scaleY": 0.6,
"scaleZ": 0.45
},
"Nickname": "Mystic",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"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": ""
},
"17": {
"GUID": "7f001b",
"Name": "Custom_Model",
"Transform": {
"posX": -53.20612,
"posY": 1.695617,
"posZ": 9.572996,
"rotX": 359.920074,
"rotY": 269.9771,
"rotZ": 0.0169141833,
"scaleX": 0.45,
"scaleY": 0.6,
"scaleZ": 0.45
},
"Nickname": "Rogue",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"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": ""
},
"14": {
"GUID": "1fc950",
"Name": "Custom_Tile",
"Transform": {
"posX": -53.20614,
"posY": 1.635617,
"posZ": 9.573,
"rotX": 359.9201,
"rotY": 269.976959,
"rotZ": 0.0169055313,
"scaleX": 0.45083037,
"scaleY": 1.0,
"scaleZ": 0.45083037
},
"Nickname": "Play Item Action",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.745098054,
"g": 0.117646866,
"b": 0.1764704
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892160364237/A92D5AF13B283117BD62EE84B657A3A71FBBD274/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892160364411/A2521332E179AA19AF2002427E8114316614D884/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"15": {
"GUID": "11508f",
"Name": "Custom_Model",
"Transform": {
"posX": -53.2060547,
"posY": 1.69561672,
"posZ": 9.572982,
"rotX": 359.920074,
"rotY": 269.976959,
"rotZ": 0.01690872,
"scaleX": 0.45,
"scaleY": 0.6,
"scaleZ": 0.45
},
"Nickname": "Guardian",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"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": ""
},
"16": {
"GUID": "8888ff",
"Name": "Custom_Model",
"Transform": {
"posX": -53.2060547,
"posY": 1.69561684,
"posZ": 9.572982,
"rotX": 359.920074,
"rotY": 269.976959,
"rotZ": 0.0169153865,
"scaleX": 0.45,
"scaleY": 0.6,
"scaleZ": 0.45
},
"Nickname": "Seeker",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"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": ""
}
}
},
{
"GUID": "8a496e",
"Name": "Custom_Tile",
"Transform": {
"posX": -53.265377,
"posY": 1.63473654,
"posZ": -22.5419312,
"rotX": 0.0319955945,
"rotY": 269.988861,
"rotZ": 0.0554165766,
"scaleX": 0.45083037,
"scaleY": 1.0,
"scaleZ": 0.45083037
},
"Nickname": "Lola/Neutral",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.247055411,
"g": 0.247055411,
"b": 0.247055411
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892160490185/08045D95997033A4D64764850FC2B68C4FB12A3C/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892160088122/7121223CA3F7CE68D5CDF9448A45A1B9471C5F02/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"7": {
"GUID": "18262f",
"Name": "Custom_Tile",
"Transform": {
"posX": -27.5766983,
"posY": 1.622816,
"posZ": 9.891064,
"rotX": 359.920135,
"rotY": 269.979858,
"rotZ": 0.0168843661,
"scaleX": 0.45083037,
"scaleY": 1.0,
"scaleZ": 0.45083037
},
"Nickname": "Guardian Engage/Fight Action",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.07450969,
"g": 0.3294116,
"b": 0.647058845
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892160205832/196A6AB09BE31462712BA7DF6F6698762B3FC98D/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892160206084/7DBCABEB4BF4F198808581A82535AFCF490F3AA4/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"8": {
"GUID": "2b07ee",
"Name": "Custom_Tile",
"Transform": {
"posX": -27.321558,
"posY": 1.62194133,
"posZ": 8.125641,
"rotX": 359.920074,
"rotY": 269.9797,
"rotZ": 0.0168532133,
"scaleX": 0.45083037,
"scaleY": 1.0,
"scaleZ": 0.45083037
},
"Nickname": "Investigate Action",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.894117653,
"g": 0.5803921,
"b": 0.2901958
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892160193705/9E0936305F807390EBA6AB130E498BFEDBA7596C/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892160193843/0E51341BE053D813766AE16EBDF0EE2B18D21DA6/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"9": {
"GUID": "7a63fd",
"Name": "Custom_Tile",
"Transform": {
"posX": -27.3002834,
"posY": 1.62138486,
"posZ": 6.333009,
"rotX": 359.9201,
"rotY": 269.9799,
"rotZ": 0.0168767553,
"scaleX": 0.45083037,
"scaleY": 1.0,
"scaleZ": 0.45083037
},
"Nickname": "Tome Action",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.894117653,
"g": 0.5803921,
"b": 0.290195882
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892160177206/F21B46B06BBF327601B4F8A5F9F00974149A6752/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892160178435/D0AC0567CCEBCE1C39AE42D4C41F7D430370CD63/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"10": {
"GUID": "0fa0b0",
"Name": "Custom_Tile",
"Transform": {
"posX": -27.369997,
"posY": 1.62108564,
"posZ": 4.984156,
"rotX": 359.9201,
"rotY": 269.979858,
"rotZ": 0.016851306,
"scaleX": 0.45083037,
"scaleY": 1.0,
"scaleZ": 0.45083037
},
"Nickname": "Rogue Engage/Fight Action",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.06666657,
"g": 0.282352835,
"b": 0.211764544
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892160208347/F53989F0806C796D180647A16C6BB4E9957F6DBF/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892160206084/7DBCABEB4BF4F198808581A82535AFCF490F3AA4/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"2": {
"GUID": "f81db8",
"Name": "Custom_Tile",
"Transform": {
"posX": -26.3750229,
"posY": 1.62159908,
"posZ": 11.452013,
"rotX": 359.9201,
"rotY": 269.980042,
"rotZ": 0.0168430787,
"scaleX": 0.45083037,
"scaleY": 1.0,
"scaleZ": 0.45083037
},
"Nickname": "Seeker",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.894117653,
"g": 0.5803921,
"b": 0.290195882
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892160172411/727C40B7A122B3EC91AD1EF76741A9888E1FF0FF/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892160081099/67A378F96CDA5FD152D491C8558170B6626F3B62/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"11": {
"GUID": "9f7077",
"Name": "Custom_Tile",
"Transform": {
"posX": -26.3748932,
"posY": 1.621599,
"posZ": 11.4519892,
"rotX": 359.9201,
"rotY": 269.9798,
"rotZ": 0.0168773085,
"scaleX": 0.45083037,
"scaleY": 1.0,
"scaleZ": 0.45083037
},
"Nickname": "Evade Action",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.06666653,
"g": 0.282352775,
"b": 0.211764485
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892160185563/042FBF813801CFDF4FEDA9ED3205D331842975FA/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892160185728/4D315AB296E7F8F10B1C98777814870192E41612/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"1": {
"GUID": "116e52",
"Name": "Custom_Tile",
"Transform": {
"posX": -26.3748932,
"posY": 1.62159884,
"posZ": 11.45199,
"rotX": 359.920135,
"rotY": 269.9798,
"rotZ": 0.0168823861,
"scaleX": 0.45083037,
"scaleY": 1.0,
"scaleZ": 0.45083037
},
"Nickname": "Guardian",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.07450964,
"g": 0.329411536,
"b": 0.647058845
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892159978320/6CBF573A12494524613C6280F558D4BED97CF007/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892160072062/DCA14B4419B0F8B8137E71F7A2CFDD40B72D7262/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"12": {
"GUID": "74ae43",
"Name": "Custom_Tile",
"Transform": {
"posX": -53.2062035,
"posY": 1.635617,
"posZ": 9.573014,
"rotX": 359.9201,
"rotY": 269.977661,
"rotZ": 0.0168937724,
"scaleX": 0.45083037,
"scaleY": 1.0,
"scaleZ": 0.45083037
},
"Nickname": "Parley Action",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.06666653,
"g": 0.282352775,
"b": 0.211764485
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892160455868/0D0F1B80B4E6A20B4728F1F7582FF09C1D4A3B9F/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892160456024/210D2A5D2C17F628302BD05065BB5C2F0BCAF842/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"3": {
"GUID": "2512b6",
"Name": "Custom_Tile",
"Transform": {
"posX": -53.20619,
"posY": 1.635617,
"posZ": 9.573011,
"rotX": 359.9201,
"rotY": 269.9775,
"rotZ": 0.01688007,
"scaleX": 0.45083037,
"scaleY": 1.0,
"scaleZ": 0.45083037
},
"Nickname": "Rogue",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.0666665062,
"g": 0.282352746,
"b": 0.211764455
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892159980250/FFA52250CDBE4067D16226E7B4C8D2E6BF263C5B/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892160084956/E2EB7A516BABA084BB8CE6F038BB22363DD647A9/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"13": {
"GUID": "441286",
"Name": "Custom_Tile",
"Transform": {
"posX": -53.2062035,
"posY": 1.635617,
"posZ": 9.573014,
"rotX": 359.9201,
"rotY": 269.977539,
"rotZ": 0.0168959163,
"scaleX": 0.45083037,
"scaleY": 1.0,
"scaleZ": 0.45083037
},
"Nickname": "Spell Action",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.3215684,
"g": 0.07058806,
"b": 0.380391926
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892160484534/A5506FADCE917AA99925516A147E0320322B5BDD/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892159981661/347ACFF6E4063121AA7D68045C7D501C22D058D4/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"5": {
"GUID": "d8fa67",
"Name": "Custom_Tile",
"Transform": {
"posX": -53.2062035,
"posY": 1.6356169,
"posZ": 9.573014,
"rotX": 359.9201,
"rotY": 269.977478,
"rotZ": 0.01691224,
"scaleX": 0.45083037,
"scaleY": 1.0,
"scaleZ": 0.45083037
},
"Nickname": "Survivor",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.745098054,
"g": 0.117646866,
"b": 0.1764704
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892159981185/8A83B84C4EC594D48259904616769E84C5191F83/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892160087156/4A5464A1B1A0905B79A8155B2CA71BAA74D5966B/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"4": {
"GUID": "fb5b15",
"Name": "Custom_Tile",
"Transform": {
"posX": -53.2062035,
"posY": 1.63561714,
"posZ": 9.573014,
"rotX": 359.920074,
"rotY": 269.977356,
"rotZ": 0.0168797281,
"scaleX": 0.45083037,
"scaleY": 1.0,
"scaleZ": 0.45083037
},
"Nickname": "Mystic",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.32156834,
"g": 0.070588015,
"b": 0.380391866
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892159980712/D6B1AAFF9763CD6F410D56A716D731714DE34EF8/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892160086074/8D2001374B0E757E52ABF406D8683C531F377350/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"20": {
"GUID": "2d0664",
"Name": "Custom_Model",
"Transform": {
"posX": -53.20612,
"posY": 1.69561684,
"posZ": 9.572996,
"rotX": 359.9201,
"rotY": 269.9773,
"rotZ": 0.0169064868,
"scaleX": 0.45,
"scaleY": 0.6,
"scaleZ": 0.45
},
"Nickname": "Neutral",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"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": ""
},
"19": {
"GUID": "0c9182",
"Name": "Custom_Model",
"Transform": {
"posX": -53.20612,
"posY": 1.69561708,
"posZ": 9.572996,
"rotX": 359.920074,
"rotY": 269.977234,
"rotZ": 0.0169148687,
"scaleX": 0.45,
"scaleY": 0.6,
"scaleZ": 0.45
},
"Nickname": "Survivor",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"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": ""
},
"18": {
"GUID": "6bd479",
"Name": "Custom_Model",
"Transform": {
"posX": -53.20612,
"posY": 1.69561708,
"posZ": 9.572996,
"rotX": 359.920074,
"rotY": 269.9772,
"rotZ": 0.01691519,
"scaleX": 0.45,
"scaleY": 0.6,
"scaleZ": 0.45
},
"Nickname": "Mystic",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"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": ""
},
"17": {
"GUID": "7f001b",
"Name": "Custom_Model",
"Transform": {
"posX": -53.20612,
"posY": 1.695617,
"posZ": 9.572996,
"rotX": 359.920074,
"rotY": 269.9771,
"rotZ": 0.0169141833,
"scaleX": 0.45,
"scaleY": 0.6,
"scaleZ": 0.45
},
"Nickname": "Rogue",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"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": ""
},
"14": {
"GUID": "1fc950",
"Name": "Custom_Tile",
"Transform": {
"posX": -53.20614,
"posY": 1.635617,
"posZ": 9.573,
"rotX": 359.9201,
"rotY": 269.976959,
"rotZ": 0.0169055313,
"scaleX": 0.45083037,
"scaleY": 1.0,
"scaleZ": 0.45083037
},
"Nickname": "Play Item Action",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.745098054,
"g": 0.117646866,
"b": 0.1764704
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892160364237/A92D5AF13B283117BD62EE84B657A3A71FBBD274/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892160364411/A2521332E179AA19AF2002427E8114316614D884/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"15": {
"GUID": "11508f",
"Name": "Custom_Model",
"Transform": {
"posX": -53.2060547,
"posY": 1.69561672,
"posZ": 9.572982,
"rotX": 359.920074,
"rotY": 269.976959,
"rotZ": 0.01690872,
"scaleX": 0.45,
"scaleY": 0.6,
"scaleZ": 0.45
},
"Nickname": "Guardian",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"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": ""
},
"16": {
"GUID": "8888ff",
"Name": "Custom_Model",
"Transform": {
"posX": -53.2060547,
"posY": 1.69561684,
"posZ": 9.572982,
"rotX": 359.920074,
"rotY": 269.976959,
"rotZ": 0.0169153865,
"scaleX": 0.45,
"scaleY": 0.6,
"scaleZ": 0.45
},
"Nickname": "Seeker",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"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": ""
}
}
},
{
"GUID": "e1ab8d",
"Name": "Custom_Tile",
"Transform": {
"posX": -53.2653847,
"posY": 1.63363254,
"posZ": -23.68344,
"rotX": 0.0318978429,
"rotY": 270.0952,
"rotZ": 0.0554674342,
"scaleX": 0.45083037,
"scaleY": 1.0,
"scaleZ": 0.45083037
},
"Nickname": "Lola/Neutral",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.247055411,
"g": 0.247055411,
"b": 0.247055411
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892160490185/08045D95997033A4D64764850FC2B68C4FB12A3C/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892160088122/7121223CA3F7CE68D5CDF9448A45A1B9471C5F02/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"7": {
"GUID": "18262f",
"Name": "Custom_Tile",
"Transform": {
"posX": -27.5766983,
"posY": 1.622816,
"posZ": 9.891064,
"rotX": 359.920135,
"rotY": 269.979858,
"rotZ": 0.0168843661,
"scaleX": 0.45083037,
"scaleY": 1.0,
"scaleZ": 0.45083037
},
"Nickname": "Guardian Engage/Fight Action",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.07450969,
"g": 0.3294116,
"b": 0.647058845
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892160205832/196A6AB09BE31462712BA7DF6F6698762B3FC98D/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892160206084/7DBCABEB4BF4F198808581A82535AFCF490F3AA4/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"8": {
"GUID": "2b07ee",
"Name": "Custom_Tile",
"Transform": {
"posX": -27.321558,
"posY": 1.62194133,
"posZ": 8.125641,
"rotX": 359.920074,
"rotY": 269.9797,
"rotZ": 0.0168532133,
"scaleX": 0.45083037,
"scaleY": 1.0,
"scaleZ": 0.45083037
},
"Nickname": "Investigate Action",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.894117653,
"g": 0.5803921,
"b": 0.2901958
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892160193705/9E0936305F807390EBA6AB130E498BFEDBA7596C/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892160193843/0E51341BE053D813766AE16EBDF0EE2B18D21DA6/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"9": {
"GUID": "7a63fd",
"Name": "Custom_Tile",
"Transform": {
"posX": -27.3002834,
"posY": 1.62138486,
"posZ": 6.333009,
"rotX": 359.9201,
"rotY": 269.9799,
"rotZ": 0.0168767553,
"scaleX": 0.45083037,
"scaleY": 1.0,
"scaleZ": 0.45083037
},
"Nickname": "Tome Action",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.894117653,
"g": 0.5803921,
"b": 0.290195882
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892160177206/F21B46B06BBF327601B4F8A5F9F00974149A6752/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892160178435/D0AC0567CCEBCE1C39AE42D4C41F7D430370CD63/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"10": {
"GUID": "0fa0b0",
"Name": "Custom_Tile",
"Transform": {
"posX": -27.369997,
"posY": 1.62108564,
"posZ": 4.984156,
"rotX": 359.9201,
"rotY": 269.979858,
"rotZ": 0.016851306,
"scaleX": 0.45083037,
"scaleY": 1.0,
"scaleZ": 0.45083037
},
"Nickname": "Rogue Engage/Fight Action",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.06666657,
"g": 0.282352835,
"b": 0.211764544
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892160208347/F53989F0806C796D180647A16C6BB4E9957F6DBF/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892160206084/7DBCABEB4BF4F198808581A82535AFCF490F3AA4/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"2": {
"GUID": "f81db8",
"Name": "Custom_Tile",
"Transform": {
"posX": -26.3750229,
"posY": 1.62159908,
"posZ": 11.452013,
"rotX": 359.9201,
"rotY": 269.980042,
"rotZ": 0.0168430787,
"scaleX": 0.45083037,
"scaleY": 1.0,
"scaleZ": 0.45083037
},
"Nickname": "Seeker",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.894117653,
"g": 0.5803921,
"b": 0.290195882
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892160172411/727C40B7A122B3EC91AD1EF76741A9888E1FF0FF/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892160081099/67A378F96CDA5FD152D491C8558170B6626F3B62/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"11": {
"GUID": "9f7077",
"Name": "Custom_Tile",
"Transform": {
"posX": -26.3748932,
"posY": 1.621599,
"posZ": 11.4519892,
"rotX": 359.9201,
"rotY": 269.9798,
"rotZ": 0.0168773085,
"scaleX": 0.45083037,
"scaleY": 1.0,
"scaleZ": 0.45083037
},
"Nickname": "Evade Action",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.06666653,
"g": 0.282352775,
"b": 0.211764485
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892160185563/042FBF813801CFDF4FEDA9ED3205D331842975FA/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892160185728/4D315AB296E7F8F10B1C98777814870192E41612/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"1": {
"GUID": "116e52",
"Name": "Custom_Tile",
"Transform": {
"posX": -26.3748932,
"posY": 1.62159884,
"posZ": 11.45199,
"rotX": 359.920135,
"rotY": 269.9798,
"rotZ": 0.0168823861,
"scaleX": 0.45083037,
"scaleY": 1.0,
"scaleZ": 0.45083037
},
"Nickname": "Guardian",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.07450964,
"g": 0.329411536,
"b": 0.647058845
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892159978320/6CBF573A12494524613C6280F558D4BED97CF007/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892160072062/DCA14B4419B0F8B8137E71F7A2CFDD40B72D7262/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"12": {
"GUID": "74ae43",
"Name": "Custom_Tile",
"Transform": {
"posX": -53.2062035,
"posY": 1.635617,
"posZ": 9.573014,
"rotX": 359.9201,
"rotY": 269.977661,
"rotZ": 0.0168937724,
"scaleX": 0.45083037,
"scaleY": 1.0,
"scaleZ": 0.45083037
},
"Nickname": "Parley Action",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.06666653,
"g": 0.282352775,
"b": 0.211764485
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892160455868/0D0F1B80B4E6A20B4728F1F7582FF09C1D4A3B9F/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892160456024/210D2A5D2C17F628302BD05065BB5C2F0BCAF842/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"3": {
"GUID": "2512b6",
"Name": "Custom_Tile",
"Transform": {
"posX": -53.20619,
"posY": 1.635617,
"posZ": 9.573011,
"rotX": 359.9201,
"rotY": 269.9775,
"rotZ": 0.01688007,
"scaleX": 0.45083037,
"scaleY": 1.0,
"scaleZ": 0.45083037
},
"Nickname": "Rogue",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.0666665062,
"g": 0.282352746,
"b": 0.211764455
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892159980250/FFA52250CDBE4067D16226E7B4C8D2E6BF263C5B/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892160084956/E2EB7A516BABA084BB8CE6F038BB22363DD647A9/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"13": {
"GUID": "441286",
"Name": "Custom_Tile",
"Transform": {
"posX": -53.2062035,
"posY": 1.635617,
"posZ": 9.573014,
"rotX": 359.9201,
"rotY": 269.977539,
"rotZ": 0.0168959163,
"scaleX": 0.45083037,
"scaleY": 1.0,
"scaleZ": 0.45083037
},
"Nickname": "Spell Action",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.3215684,
"g": 0.07058806,
"b": 0.380391926
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892160484534/A5506FADCE917AA99925516A147E0320322B5BDD/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892159981661/347ACFF6E4063121AA7D68045C7D501C22D058D4/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"5": {
"GUID": "d8fa67",
"Name": "Custom_Tile",
"Transform": {
"posX": -53.2062035,
"posY": 1.6356169,
"posZ": 9.573014,
"rotX": 359.9201,
"rotY": 269.977478,
"rotZ": 0.01691224,
"scaleX": 0.45083037,
"scaleY": 1.0,
"scaleZ": 0.45083037
},
"Nickname": "Survivor",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.745098054,
"g": 0.117646866,
"b": 0.1764704
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892159981185/8A83B84C4EC594D48259904616769E84C5191F83/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892160087156/4A5464A1B1A0905B79A8155B2CA71BAA74D5966B/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"4": {
"GUID": "fb5b15",
"Name": "Custom_Tile",
"Transform": {
"posX": -53.2062035,
"posY": 1.63561714,
"posZ": 9.573014,
"rotX": 359.920074,
"rotY": 269.977356,
"rotZ": 0.0168797281,
"scaleX": 0.45083037,
"scaleY": 1.0,
"scaleZ": 0.45083037
},
"Nickname": "Mystic",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.32156834,
"g": 0.070588015,
"b": 0.380391866
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892159980712/D6B1AAFF9763CD6F410D56A716D731714DE34EF8/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892160086074/8D2001374B0E757E52ABF406D8683C531F377350/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"20": {
"GUID": "2d0664",
"Name": "Custom_Model",
"Transform": {
"posX": -53.20612,
"posY": 1.69561684,
"posZ": 9.572996,
"rotX": 359.9201,
"rotY": 269.9773,
"rotZ": 0.0169064868,
"scaleX": 0.45,
"scaleY": 0.6,
"scaleZ": 0.45
},
"Nickname": "Neutral",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"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": ""
},
"19": {
"GUID": "0c9182",
"Name": "Custom_Model",
"Transform": {
"posX": -53.20612,
"posY": 1.69561708,
"posZ": 9.572996,
"rotX": 359.920074,
"rotY": 269.977234,
"rotZ": 0.0169148687,
"scaleX": 0.45,
"scaleY": 0.6,
"scaleZ": 0.45
},
"Nickname": "Survivor",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"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": ""
},
"18": {
"GUID": "6bd479",
"Name": "Custom_Model",
"Transform": {
"posX": -53.20612,
"posY": 1.69561708,
"posZ": 9.572996,
"rotX": 359.920074,
"rotY": 269.9772,
"rotZ": 0.01691519,
"scaleX": 0.45,
"scaleY": 0.6,
"scaleZ": 0.45
},
"Nickname": "Mystic",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"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": ""
},
"17": {
"GUID": "7f001b",
"Name": "Custom_Model",
"Transform": {
"posX": -53.20612,
"posY": 1.695617,
"posZ": 9.572996,
"rotX": 359.920074,
"rotY": 269.9771,
"rotZ": 0.0169141833,
"scaleX": 0.45,
"scaleY": 0.6,
"scaleZ": 0.45
},
"Nickname": "Rogue",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"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": ""
},
"14": {
"GUID": "1fc950",
"Name": "Custom_Tile",
"Transform": {
"posX": -53.20614,
"posY": 1.635617,
"posZ": 9.573,
"rotX": 359.9201,
"rotY": 269.976959,
"rotZ": 0.0169055313,
"scaleX": 0.45083037,
"scaleY": 1.0,
"scaleZ": 0.45083037
},
"Nickname": "Play Item Action",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.745098054,
"g": 0.117646866,
"b": 0.1764704
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892160364237/A92D5AF13B283117BD62EE84B657A3A71FBBD274/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892160364411/A2521332E179AA19AF2002427E8114316614D884/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"15": {
"GUID": "11508f",
"Name": "Custom_Model",
"Transform": {
"posX": -53.2060547,
"posY": 1.69561672,
"posZ": 9.572982,
"rotX": 359.920074,
"rotY": 269.976959,
"rotZ": 0.01690872,
"scaleX": 0.45,
"scaleY": 0.6,
"scaleZ": 0.45
},
"Nickname": "Guardian",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"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": ""
},
"16": {
"GUID": "8888ff",
"Name": "Custom_Model",
"Transform": {
"posX": -53.2060547,
"posY": 1.69561684,
"posZ": 9.572982,
"rotX": 359.920074,
"rotY": 269.976959,
"rotZ": 0.0169153865,
"scaleX": 0.45,
"scaleY": 0.6,
"scaleZ": 0.45
},
"Nickname": "Seeker",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"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": ""
}
}
},
{
"GUID": "9312d8",
"Name": "Custom_Tile",
"Transform": {
"posX": -53.265377,
"posY": 1.63252854,
"posZ": -24.8249645,
"rotX": 0.03201437,
"rotY": 269.984924,
"rotZ": 0.055402495,
"scaleX": 0.45083037,
"scaleY": 1.0,
"scaleZ": 0.45083037
},
"Nickname": "Lola/Neutral",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.247055411,
"g": 0.247055411,
"b": 0.247055411
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892160490185/08045D95997033A4D64764850FC2B68C4FB12A3C/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892160088122/7121223CA3F7CE68D5CDF9448A45A1B9471C5F02/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"7": {
"GUID": "18262f",
"Name": "Custom_Tile",
"Transform": {
"posX": -27.5766983,
"posY": 1.622816,
"posZ": 9.891064,
"rotX": 359.920135,
"rotY": 269.979858,
"rotZ": 0.0168843661,
"scaleX": 0.45083037,
"scaleY": 1.0,
"scaleZ": 0.45083037
},
"Nickname": "Guardian Engage/Fight Action",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.07450969,
"g": 0.3294116,
"b": 0.647058845
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892160205832/196A6AB09BE31462712BA7DF6F6698762B3FC98D/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892160206084/7DBCABEB4BF4F198808581A82535AFCF490F3AA4/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"8": {
"GUID": "2b07ee",
"Name": "Custom_Tile",
"Transform": {
"posX": -27.321558,
"posY": 1.62194133,
"posZ": 8.125641,
"rotX": 359.920074,
"rotY": 269.9797,
"rotZ": 0.0168532133,
"scaleX": 0.45083037,
"scaleY": 1.0,
"scaleZ": 0.45083037
},
"Nickname": "Investigate Action",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.894117653,
"g": 0.5803921,
"b": 0.2901958
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892160193705/9E0936305F807390EBA6AB130E498BFEDBA7596C/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892160193843/0E51341BE053D813766AE16EBDF0EE2B18D21DA6/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"9": {
"GUID": "7a63fd",
"Name": "Custom_Tile",
"Transform": {
"posX": -27.3002834,
"posY": 1.62138486,
"posZ": 6.333009,
"rotX": 359.9201,
"rotY": 269.9799,
"rotZ": 0.0168767553,
"scaleX": 0.45083037,
"scaleY": 1.0,
"scaleZ": 0.45083037
},
"Nickname": "Tome Action",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.894117653,
"g": 0.5803921,
"b": 0.290195882
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892160177206/F21B46B06BBF327601B4F8A5F9F00974149A6752/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892160178435/D0AC0567CCEBCE1C39AE42D4C41F7D430370CD63/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"10": {
"GUID": "0fa0b0",
"Name": "Custom_Tile",
"Transform": {
"posX": -27.369997,
"posY": 1.62108564,
"posZ": 4.984156,
"rotX": 359.9201,
"rotY": 269.979858,
"rotZ": 0.016851306,
"scaleX": 0.45083037,
"scaleY": 1.0,
"scaleZ": 0.45083037
},
"Nickname": "Rogue Engage/Fight Action",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.06666657,
"g": 0.282352835,
"b": 0.211764544
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892160208347/F53989F0806C796D180647A16C6BB4E9957F6DBF/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892160206084/7DBCABEB4BF4F198808581A82535AFCF490F3AA4/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"2": {
"GUID": "f81db8",
"Name": "Custom_Tile",
"Transform": {
"posX": -26.3750229,
"posY": 1.62159908,
"posZ": 11.452013,
"rotX": 359.9201,
"rotY": 269.980042,
"rotZ": 0.0168430787,
"scaleX": 0.45083037,
"scaleY": 1.0,
"scaleZ": 0.45083037
},
"Nickname": "Seeker",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.894117653,
"g": 0.5803921,
"b": 0.290195882
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892160172411/727C40B7A122B3EC91AD1EF76741A9888E1FF0FF/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892160081099/67A378F96CDA5FD152D491C8558170B6626F3B62/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"11": {
"GUID": "9f7077",
"Name": "Custom_Tile",
"Transform": {
"posX": -26.3748932,
"posY": 1.621599,
"posZ": 11.4519892,
"rotX": 359.9201,
"rotY": 269.9798,
"rotZ": 0.0168773085,
"scaleX": 0.45083037,
"scaleY": 1.0,
"scaleZ": 0.45083037
},
"Nickname": "Evade Action",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.06666653,
"g": 0.282352775,
"b": 0.211764485
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892160185563/042FBF813801CFDF4FEDA9ED3205D331842975FA/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892160185728/4D315AB296E7F8F10B1C98777814870192E41612/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"1": {
"GUID": "116e52",
"Name": "Custom_Tile",
"Transform": {
"posX": -26.3748932,
"posY": 1.62159884,
"posZ": 11.45199,
"rotX": 359.920135,
"rotY": 269.9798,
"rotZ": 0.0168823861,
"scaleX": 0.45083037,
"scaleY": 1.0,
"scaleZ": 0.45083037
},
"Nickname": "Guardian",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.07450964,
"g": 0.329411536,
"b": 0.647058845
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892159978320/6CBF573A12494524613C6280F558D4BED97CF007/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892160072062/DCA14B4419B0F8B8137E71F7A2CFDD40B72D7262/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"12": {
"GUID": "74ae43",
"Name": "Custom_Tile",
"Transform": {
"posX": -53.2062035,
"posY": 1.635617,
"posZ": 9.573014,
"rotX": 359.9201,
"rotY": 269.977661,
"rotZ": 0.0168937724,
"scaleX": 0.45083037,
"scaleY": 1.0,
"scaleZ": 0.45083037
},
"Nickname": "Parley Action",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.06666653,
"g": 0.282352775,
"b": 0.211764485
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892160455868/0D0F1B80B4E6A20B4728F1F7582FF09C1D4A3B9F/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892160456024/210D2A5D2C17F628302BD05065BB5C2F0BCAF842/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"3": {
"GUID": "2512b6",
"Name": "Custom_Tile",
"Transform": {
"posX": -53.20619,
"posY": 1.635617,
"posZ": 9.573011,
"rotX": 359.9201,
"rotY": 269.9775,
"rotZ": 0.01688007,
"scaleX": 0.45083037,
"scaleY": 1.0,
"scaleZ": 0.45083037
},
"Nickname": "Rogue",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.0666665062,
"g": 0.282352746,
"b": 0.211764455
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892159980250/FFA52250CDBE4067D16226E7B4C8D2E6BF263C5B/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892160084956/E2EB7A516BABA084BB8CE6F038BB22363DD647A9/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"13": {
"GUID": "441286",
"Name": "Custom_Tile",
"Transform": {
"posX": -53.2062035,
"posY": 1.635617,
"posZ": 9.573014,
"rotX": 359.9201,
"rotY": 269.977539,
"rotZ": 0.0168959163,
"scaleX": 0.45083037,
"scaleY": 1.0,
"scaleZ": 0.45083037
},
"Nickname": "Spell Action",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.3215684,
"g": 0.07058806,
"b": 0.380391926
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892160484534/A5506FADCE917AA99925516A147E0320322B5BDD/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892159981661/347ACFF6E4063121AA7D68045C7D501C22D058D4/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"5": {
"GUID": "d8fa67",
"Name": "Custom_Tile",
"Transform": {
"posX": -53.2062035,
"posY": 1.6356169,
"posZ": 9.573014,
"rotX": 359.9201,
"rotY": 269.977478,
"rotZ": 0.01691224,
"scaleX": 0.45083037,
"scaleY": 1.0,
"scaleZ": 0.45083037
},
"Nickname": "Survivor",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.745098054,
"g": 0.117646866,
"b": 0.1764704
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892159981185/8A83B84C4EC594D48259904616769E84C5191F83/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892160087156/4A5464A1B1A0905B79A8155B2CA71BAA74D5966B/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"4": {
"GUID": "fb5b15",
"Name": "Custom_Tile",
"Transform": {
"posX": -53.2062035,
"posY": 1.63561714,
"posZ": 9.573014,
"rotX": 359.920074,
"rotY": 269.977356,
"rotZ": 0.0168797281,
"scaleX": 0.45083037,
"scaleY": 1.0,
"scaleZ": 0.45083037
},
"Nickname": "Mystic",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.32156834,
"g": 0.070588015,
"b": 0.380391866
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892159980712/D6B1AAFF9763CD6F410D56A716D731714DE34EF8/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892160086074/8D2001374B0E757E52ABF406D8683C531F377350/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"20": {
"GUID": "2d0664",
"Name": "Custom_Model",
"Transform": {
"posX": -53.20612,
"posY": 1.69561684,
"posZ": 9.572996,
"rotX": 359.9201,
"rotY": 269.9773,
"rotZ": 0.0169064868,
"scaleX": 0.45,
"scaleY": 0.6,
"scaleZ": 0.45
},
"Nickname": "Neutral",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"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": ""
},
"19": {
"GUID": "0c9182",
"Name": "Custom_Model",
"Transform": {
"posX": -53.20612,
"posY": 1.69561708,
"posZ": 9.572996,
"rotX": 359.920074,
"rotY": 269.977234,
"rotZ": 0.0169148687,
"scaleX": 0.45,
"scaleY": 0.6,
"scaleZ": 0.45
},
"Nickname": "Survivor",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"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": ""
},
"18": {
"GUID": "6bd479",
"Name": "Custom_Model",
"Transform": {
"posX": -53.20612,
"posY": 1.69561708,
"posZ": 9.572996,
"rotX": 359.920074,
"rotY": 269.9772,
"rotZ": 0.01691519,
"scaleX": 0.45,
"scaleY": 0.6,
"scaleZ": 0.45
},
"Nickname": "Mystic",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"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": ""
},
"17": {
"GUID": "7f001b",
"Name": "Custom_Model",
"Transform": {
"posX": -53.20612,
"posY": 1.695617,
"posZ": 9.572996,
"rotX": 359.920074,
"rotY": 269.9771,
"rotZ": 0.0169141833,
"scaleX": 0.45,
"scaleY": 0.6,
"scaleZ": 0.45
},
"Nickname": "Rogue",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"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": ""
},
"14": {
"GUID": "1fc950",
"Name": "Custom_Tile",
"Transform": {
"posX": -53.20614,
"posY": 1.635617,
"posZ": 9.573,
"rotX": 359.9201,
"rotY": 269.976959,
"rotZ": 0.0169055313,
"scaleX": 0.45083037,
"scaleY": 1.0,
"scaleZ": 0.45083037
},
"Nickname": "Play Item Action",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.745098054,
"g": 0.117646866,
"b": 0.1764704
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892160364237/A92D5AF13B283117BD62EE84B657A3A71FBBD274/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892160364411/A2521332E179AA19AF2002427E8114316614D884/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"15": {
"GUID": "11508f",
"Name": "Custom_Model",
"Transform": {
"posX": -53.2060547,
"posY": 1.69561672,
"posZ": 9.572982,
"rotX": 359.920074,
"rotY": 269.976959,
"rotZ": 0.01690872,
"scaleX": 0.45,
"scaleY": 0.6,
"scaleZ": 0.45
},
"Nickname": "Guardian",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"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": ""
},
"16": {
"GUID": "8888ff",
"Name": "Custom_Model",
"Transform": {
"posX": -53.2060547,
"posY": 1.69561684,
"posZ": 9.572982,
"rotX": 359.920074,
"rotY": 269.976959,
"rotZ": 0.0169153865,
"scaleX": 0.45,
"scaleY": 0.6,
"scaleZ": 0.45
},
"Nickname": "Seeker",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"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": ""
}
}
},
{
"GUID": "bfcaf4",
"Name": "Custom_Tile",
"Transform": {
"posX": -16.77671,
"posY": 1.6400001,
"posZ": -24.7830811,
"rotX": 9.629659E-08,
"rotY": 179.998291,
"rotZ": 1.1328828E-07,
"scaleX": 0.45083037,
"scaleY": 1.0,
"scaleZ": 0.45083037
},
"Nickname": "Lola/Neutral",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.247055411,
"g": 0.247055411,
"b": 0.247055411
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892160490185/08045D95997033A4D64764850FC2B68C4FB12A3C/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892160088122/7121223CA3F7CE68D5CDF9448A45A1B9471C5F02/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"7": {
"GUID": "18262f",
"Name": "Custom_Tile",
"Transform": {
"posX": -27.5766983,
"posY": 1.622816,
"posZ": 9.891064,
"rotX": 359.920135,
"rotY": 269.979858,
"rotZ": 0.0168843661,
"scaleX": 0.45083037,
"scaleY": 1.0,
"scaleZ": 0.45083037
},
"Nickname": "Guardian Engage/Fight Action",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.07450969,
"g": 0.3294116,
"b": 0.647058845
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892160205832/196A6AB09BE31462712BA7DF6F6698762B3FC98D/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892160206084/7DBCABEB4BF4F198808581A82535AFCF490F3AA4/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"8": {
"GUID": "2b07ee",
"Name": "Custom_Tile",
"Transform": {
"posX": -27.321558,
"posY": 1.62194133,
"posZ": 8.125641,
"rotX": 359.920074,
"rotY": 269.9797,
"rotZ": 0.0168532133,
"scaleX": 0.45083037,
"scaleY": 1.0,
"scaleZ": 0.45083037
},
"Nickname": "Investigate Action",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.894117653,
"g": 0.5803921,
"b": 0.2901958
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892160193705/9E0936305F807390EBA6AB130E498BFEDBA7596C/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892160193843/0E51341BE053D813766AE16EBDF0EE2B18D21DA6/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"9": {
"GUID": "7a63fd",
"Name": "Custom_Tile",
"Transform": {
"posX": -27.3002834,
"posY": 1.62138486,
"posZ": 6.333009,
"rotX": 359.9201,
"rotY": 269.9799,
"rotZ": 0.0168767553,
"scaleX": 0.45083037,
"scaleY": 1.0,
"scaleZ": 0.45083037
},
"Nickname": "Tome Action",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.894117653,
"g": 0.5803921,
"b": 0.290195882
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892160177206/F21B46B06BBF327601B4F8A5F9F00974149A6752/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892160178435/D0AC0567CCEBCE1C39AE42D4C41F7D430370CD63/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"10": {
"GUID": "0fa0b0",
"Name": "Custom_Tile",
"Transform": {
"posX": -27.369997,
"posY": 1.62108564,
"posZ": 4.984156,
"rotX": 359.9201,
"rotY": 269.979858,
"rotZ": 0.016851306,
"scaleX": 0.45083037,
"scaleY": 1.0,
"scaleZ": 0.45083037
},
"Nickname": "Rogue Engage/Fight Action",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.06666657,
"g": 0.282352835,
"b": 0.211764544
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892160208347/F53989F0806C796D180647A16C6BB4E9957F6DBF/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892160206084/7DBCABEB4BF4F198808581A82535AFCF490F3AA4/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"2": {
"GUID": "f81db8",
"Name": "Custom_Tile",
"Transform": {
"posX": -26.3750229,
"posY": 1.62159908,
"posZ": 11.452013,
"rotX": 359.9201,
"rotY": 269.980042,
"rotZ": 0.0168430787,
"scaleX": 0.45083037,
"scaleY": 1.0,
"scaleZ": 0.45083037
},
"Nickname": "Seeker",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.894117653,
"g": 0.5803921,
"b": 0.290195882
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892160172411/727C40B7A122B3EC91AD1EF76741A9888E1FF0FF/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892160081099/67A378F96CDA5FD152D491C8558170B6626F3B62/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"11": {
"GUID": "9f7077",
"Name": "Custom_Tile",
"Transform": {
"posX": -26.3748932,
"posY": 1.621599,
"posZ": 11.4519892,
"rotX": 359.9201,
"rotY": 269.9798,
"rotZ": 0.0168773085,
"scaleX": 0.45083037,
"scaleY": 1.0,
"scaleZ": 0.45083037
},
"Nickname": "Evade Action",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.06666653,
"g": 0.282352775,
"b": 0.211764485
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892160185563/042FBF813801CFDF4FEDA9ED3205D331842975FA/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892160185728/4D315AB296E7F8F10B1C98777814870192E41612/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"1": {
"GUID": "116e52",
"Name": "Custom_Tile",
"Transform": {
"posX": -26.3748932,
"posY": 1.62159884,
"posZ": 11.45199,
"rotX": 359.920135,
"rotY": 269.9798,
"rotZ": 0.0168823861,
"scaleX": 0.45083037,
"scaleY": 1.0,
"scaleZ": 0.45083037
},
"Nickname": "Guardian",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.07450964,
"g": 0.329411536,
"b": 0.647058845
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892159978320/6CBF573A12494524613C6280F558D4BED97CF007/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892160072062/DCA14B4419B0F8B8137E71F7A2CFDD40B72D7262/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"12": {
"GUID": "74ae43",
"Name": "Custom_Tile",
"Transform": {
"posX": -53.2062035,
"posY": 1.635617,
"posZ": 9.573014,
"rotX": 359.9201,
"rotY": 269.977661,
"rotZ": 0.0168937724,
"scaleX": 0.45083037,
"scaleY": 1.0,
"scaleZ": 0.45083037
},
"Nickname": "Parley Action",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.06666653,
"g": 0.282352775,
"b": 0.211764485
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892160455868/0D0F1B80B4E6A20B4728F1F7582FF09C1D4A3B9F/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892160456024/210D2A5D2C17F628302BD05065BB5C2F0BCAF842/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"3": {
"GUID": "2512b6",
"Name": "Custom_Tile",
"Transform": {
"posX": -53.20619,
"posY": 1.635617,
"posZ": 9.573011,
"rotX": 359.9201,
"rotY": 269.9775,
"rotZ": 0.01688007,
"scaleX": 0.45083037,
"scaleY": 1.0,
"scaleZ": 0.45083037
},
"Nickname": "Rogue",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.0666665062,
"g": 0.282352746,
"b": 0.211764455
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892159980250/FFA52250CDBE4067D16226E7B4C8D2E6BF263C5B/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892160084956/E2EB7A516BABA084BB8CE6F038BB22363DD647A9/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"13": {
"GUID": "441286",
"Name": "Custom_Tile",
"Transform": {
"posX": -53.2062035,
"posY": 1.635617,
"posZ": 9.573014,
"rotX": 359.9201,
"rotY": 269.977539,
"rotZ": 0.0168959163,
"scaleX": 0.45083037,
"scaleY": 1.0,
"scaleZ": 0.45083037
},
"Nickname": "Spell Action",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.3215684,
"g": 0.07058806,
"b": 0.380391926
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892160484534/A5506FADCE917AA99925516A147E0320322B5BDD/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892159981661/347ACFF6E4063121AA7D68045C7D501C22D058D4/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"5": {
"GUID": "d8fa67",
"Name": "Custom_Tile",
"Transform": {
"posX": -53.2062035,
"posY": 1.6356169,
"posZ": 9.573014,
"rotX": 359.9201,
"rotY": 269.977478,
"rotZ": 0.01691224,
"scaleX": 0.45083037,
"scaleY": 1.0,
"scaleZ": 0.45083037
},
"Nickname": "Survivor",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.745098054,
"g": 0.117646866,
"b": 0.1764704
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892159981185/8A83B84C4EC594D48259904616769E84C5191F83/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892160087156/4A5464A1B1A0905B79A8155B2CA71BAA74D5966B/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"4": {
"GUID": "fb5b15",
"Name": "Custom_Tile",
"Transform": {
"posX": -53.2062035,
"posY": 1.63561714,
"posZ": 9.573014,
"rotX": 359.920074,
"rotY": 269.977356,
"rotZ": 0.0168797281,
"scaleX": 0.45083037,
"scaleY": 1.0,
"scaleZ": 0.45083037
},
"Nickname": "Mystic",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.32156834,
"g": 0.070588015,
"b": 0.380391866
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892159980712/D6B1AAFF9763CD6F410D56A716D731714DE34EF8/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892160086074/8D2001374B0E757E52ABF406D8683C531F377350/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"20": {
"GUID": "2d0664",
"Name": "Custom_Model",
"Transform": {
"posX": -53.20612,
"posY": 1.69561684,
"posZ": 9.572996,
"rotX": 359.9201,
"rotY": 269.9773,
"rotZ": 0.0169064868,
"scaleX": 0.45,
"scaleY": 0.6,
"scaleZ": 0.45
},
"Nickname": "Neutral",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"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": ""
},
"19": {
"GUID": "0c9182",
"Name": "Custom_Model",
"Transform": {
"posX": -53.20612,
"posY": 1.69561708,
"posZ": 9.572996,
"rotX": 359.920074,
"rotY": 269.977234,
"rotZ": 0.0169148687,
"scaleX": 0.45,
"scaleY": 0.6,
"scaleZ": 0.45
},
"Nickname": "Survivor",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"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": ""
},
"18": {
"GUID": "6bd479",
"Name": "Custom_Model",
"Transform": {
"posX": -53.20612,
"posY": 1.69561708,
"posZ": 9.572996,
"rotX": 359.920074,
"rotY": 269.9772,
"rotZ": 0.01691519,
"scaleX": 0.45,
"scaleY": 0.6,
"scaleZ": 0.45
},
"Nickname": "Mystic",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"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": ""
},
"17": {
"GUID": "7f001b",
"Name": "Custom_Model",
"Transform": {
"posX": -53.20612,
"posY": 1.695617,
"posZ": 9.572996,
"rotX": 359.920074,
"rotY": 269.9771,
"rotZ": 0.0169141833,
"scaleX": 0.45,
"scaleY": 0.6,
"scaleZ": 0.45
},
"Nickname": "Rogue",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"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": ""
},
"14": {
"GUID": "1fc950",
"Name": "Custom_Tile",
"Transform": {
"posX": -53.20614,
"posY": 1.635617,
"posZ": 9.573,
"rotX": 359.9201,
"rotY": 269.976959,
"rotZ": 0.0169055313,
"scaleX": 0.45083037,
"scaleY": 1.0,
"scaleZ": 0.45083037
},
"Nickname": "Play Item Action",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.745098054,
"g": 0.117646866,
"b": 0.1764704
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892160364237/A92D5AF13B283117BD62EE84B657A3A71FBBD274/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892160364411/A2521332E179AA19AF2002427E8114316614D884/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"15": {
"GUID": "11508f",
"Name": "Custom_Model",
"Transform": {
"posX": -53.2060547,
"posY": 1.69561672,
"posZ": 9.572982,
"rotX": 359.920074,
"rotY": 269.976959,
"rotZ": 0.01690872,
"scaleX": 0.45,
"scaleY": 0.6,
"scaleZ": 0.45
},
"Nickname": "Guardian",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"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": ""
},
"16": {
"GUID": "8888ff",
"Name": "Custom_Model",
"Transform": {
"posX": -53.2060547,
"posY": 1.69561684,
"posZ": 9.572982,
"rotX": 359.920074,
"rotY": 269.976959,
"rotZ": 0.0169153865,
"scaleX": 0.45,
"scaleY": 0.6,
"scaleZ": 0.45
},
"Nickname": "Seeker",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"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": ""
}
}
},
{
"GUID": "a1e2a3",
"Name": "Custom_Tile",
"Transform": {
"posX": -17.9182034,
"posY": 1.64,
"posZ": -24.7831249,
"rotX": -7.792065E-09,
"rotY": 179.999969,
"rotZ": -6.397744E-08,
"scaleX": 0.45083037,
"scaleY": 1.0,
"scaleZ": 0.45083037
},
"Nickname": "Lola/Neutral",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.247055411,
"g": 0.247055411,
"b": 0.247055411
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892160490185/08045D95997033A4D64764850FC2B68C4FB12A3C/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892160088122/7121223CA3F7CE68D5CDF9448A45A1B9471C5F02/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"7": {
"GUID": "18262f",
"Name": "Custom_Tile",
"Transform": {
"posX": -27.5766983,
"posY": 1.622816,
"posZ": 9.891064,
"rotX": 359.920135,
"rotY": 269.979858,
"rotZ": 0.0168843661,
"scaleX": 0.45083037,
"scaleY": 1.0,
"scaleZ": 0.45083037
},
"Nickname": "Guardian Engage/Fight Action",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.07450969,
"g": 0.3294116,
"b": 0.647058845
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892160205832/196A6AB09BE31462712BA7DF6F6698762B3FC98D/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892160206084/7DBCABEB4BF4F198808581A82535AFCF490F3AA4/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"8": {
"GUID": "2b07ee",
"Name": "Custom_Tile",
"Transform": {
"posX": -27.321558,
"posY": 1.62194133,
"posZ": 8.125641,
"rotX": 359.920074,
"rotY": 269.9797,
"rotZ": 0.0168532133,
"scaleX": 0.45083037,
"scaleY": 1.0,
"scaleZ": 0.45083037
},
"Nickname": "Investigate Action",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.894117653,
"g": 0.5803921,
"b": 0.2901958
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892160193705/9E0936305F807390EBA6AB130E498BFEDBA7596C/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892160193843/0E51341BE053D813766AE16EBDF0EE2B18D21DA6/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"9": {
"GUID": "7a63fd",
"Name": "Custom_Tile",
"Transform": {
"posX": -27.3002834,
"posY": 1.62138486,
"posZ": 6.333009,
"rotX": 359.9201,
"rotY": 269.9799,
"rotZ": 0.0168767553,
"scaleX": 0.45083037,
"scaleY": 1.0,
"scaleZ": 0.45083037
},
"Nickname": "Tome Action",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.894117653,
"g": 0.5803921,
"b": 0.290195882
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892160177206/F21B46B06BBF327601B4F8A5F9F00974149A6752/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892160178435/D0AC0567CCEBCE1C39AE42D4C41F7D430370CD63/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"10": {
"GUID": "0fa0b0",
"Name": "Custom_Tile",
"Transform": {
"posX": -27.369997,
"posY": 1.62108564,
"posZ": 4.984156,
"rotX": 359.9201,
"rotY": 269.979858,
"rotZ": 0.016851306,
"scaleX": 0.45083037,
"scaleY": 1.0,
"scaleZ": 0.45083037
},
"Nickname": "Rogue Engage/Fight Action",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.06666657,
"g": 0.282352835,
"b": 0.211764544
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892160208347/F53989F0806C796D180647A16C6BB4E9957F6DBF/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892160206084/7DBCABEB4BF4F198808581A82535AFCF490F3AA4/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"2": {
"GUID": "f81db8",
"Name": "Custom_Tile",
"Transform": {
"posX": -26.3750229,
"posY": 1.62159908,
"posZ": 11.452013,
"rotX": 359.9201,
"rotY": 269.980042,
"rotZ": 0.0168430787,
"scaleX": 0.45083037,
"scaleY": 1.0,
"scaleZ": 0.45083037
},
"Nickname": "Seeker",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.894117653,
"g": 0.5803921,
"b": 0.290195882
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892160172411/727C40B7A122B3EC91AD1EF76741A9888E1FF0FF/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892160081099/67A378F96CDA5FD152D491C8558170B6626F3B62/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"11": {
"GUID": "9f7077",
"Name": "Custom_Tile",
"Transform": {
"posX": -26.3748932,
"posY": 1.621599,
"posZ": 11.4519892,
"rotX": 359.9201,
"rotY": 269.9798,
"rotZ": 0.0168773085,
"scaleX": 0.45083037,
"scaleY": 1.0,
"scaleZ": 0.45083037
},
"Nickname": "Evade Action",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.06666653,
"g": 0.282352775,
"b": 0.211764485
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892160185563/042FBF813801CFDF4FEDA9ED3205D331842975FA/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892160185728/4D315AB296E7F8F10B1C98777814870192E41612/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"1": {
"GUID": "116e52",
"Name": "Custom_Tile",
"Transform": {
"posX": -26.3748932,
"posY": 1.62159884,
"posZ": 11.45199,
"rotX": 359.920135,
"rotY": 269.9798,
"rotZ": 0.0168823861,
"scaleX": 0.45083037,
"scaleY": 1.0,
"scaleZ": 0.45083037
},
"Nickname": "Guardian",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.07450964,
"g": 0.329411536,
"b": 0.647058845
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892159978320/6CBF573A12494524613C6280F558D4BED97CF007/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892160072062/DCA14B4419B0F8B8137E71F7A2CFDD40B72D7262/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"12": {
"GUID": "74ae43",
"Name": "Custom_Tile",
"Transform": {
"posX": -53.2062035,
"posY": 1.635617,
"posZ": 9.573014,
"rotX": 359.9201,
"rotY": 269.977661,
"rotZ": 0.0168937724,
"scaleX": 0.45083037,
"scaleY": 1.0,
"scaleZ": 0.45083037
},
"Nickname": "Parley Action",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.06666653,
"g": 0.282352775,
"b": 0.211764485
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892160455868/0D0F1B80B4E6A20B4728F1F7582FF09C1D4A3B9F/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892160456024/210D2A5D2C17F628302BD05065BB5C2F0BCAF842/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"3": {
"GUID": "2512b6",
"Name": "Custom_Tile",
"Transform": {
"posX": -53.20619,
"posY": 1.635617,
"posZ": 9.573011,
"rotX": 359.9201,
"rotY": 269.9775,
"rotZ": 0.01688007,
"scaleX": 0.45083037,
"scaleY": 1.0,
"scaleZ": 0.45083037
},
"Nickname": "Rogue",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.0666665062,
"g": 0.282352746,
"b": 0.211764455
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892159980250/FFA52250CDBE4067D16226E7B4C8D2E6BF263C5B/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892160084956/E2EB7A516BABA084BB8CE6F038BB22363DD647A9/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"13": {
"GUID": "441286",
"Name": "Custom_Tile",
"Transform": {
"posX": -53.2062035,
"posY": 1.635617,
"posZ": 9.573014,
"rotX": 359.9201,
"rotY": 269.977539,
"rotZ": 0.0168959163,
"scaleX": 0.45083037,
"scaleY": 1.0,
"scaleZ": 0.45083037
},
"Nickname": "Spell Action",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.3215684,
"g": 0.07058806,
"b": 0.380391926
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892160484534/A5506FADCE917AA99925516A147E0320322B5BDD/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892159981661/347ACFF6E4063121AA7D68045C7D501C22D058D4/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"5": {
"GUID": "d8fa67",
"Name": "Custom_Tile",
"Transform": {
"posX": -53.2062035,
"posY": 1.6356169,
"posZ": 9.573014,
"rotX": 359.9201,
"rotY": 269.977478,
"rotZ": 0.01691224,
"scaleX": 0.45083037,
"scaleY": 1.0,
"scaleZ": 0.45083037
},
"Nickname": "Survivor",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.745098054,
"g": 0.117646866,
"b": 0.1764704
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892159981185/8A83B84C4EC594D48259904616769E84C5191F83/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892160087156/4A5464A1B1A0905B79A8155B2CA71BAA74D5966B/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"4": {
"GUID": "fb5b15",
"Name": "Custom_Tile",
"Transform": {
"posX": -53.2062035,
"posY": 1.63561714,
"posZ": 9.573014,
"rotX": 359.920074,
"rotY": 269.977356,
"rotZ": 0.0168797281,
"scaleX": 0.45083037,
"scaleY": 1.0,
"scaleZ": 0.45083037
},
"Nickname": "Mystic",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.32156834,
"g": 0.070588015,
"b": 0.380391866
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892159980712/D6B1AAFF9763CD6F410D56A716D731714DE34EF8/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892160086074/8D2001374B0E757E52ABF406D8683C531F377350/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"20": {
"GUID": "2d0664",
"Name": "Custom_Model",
"Transform": {
"posX": -53.20612,
"posY": 1.69561684,
"posZ": 9.572996,
"rotX": 359.9201,
"rotY": 269.9773,
"rotZ": 0.0169064868,
"scaleX": 0.45,
"scaleY": 0.6,
"scaleZ": 0.45
},
"Nickname": "Neutral",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"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": ""
},
"19": {
"GUID": "0c9182",
"Name": "Custom_Model",
"Transform": {
"posX": -53.20612,
"posY": 1.69561708,
"posZ": 9.572996,
"rotX": 359.920074,
"rotY": 269.977234,
"rotZ": 0.0169148687,
"scaleX": 0.45,
"scaleY": 0.6,
"scaleZ": 0.45
},
"Nickname": "Survivor",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"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": ""
},
"18": {
"GUID": "6bd479",
"Name": "Custom_Model",
"Transform": {
"posX": -53.20612,
"posY": 1.69561708,
"posZ": 9.572996,
"rotX": 359.920074,
"rotY": 269.9772,
"rotZ": 0.01691519,
"scaleX": 0.45,
"scaleY": 0.6,
"scaleZ": 0.45
},
"Nickname": "Mystic",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"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": ""
},
"17": {
"GUID": "7f001b",
"Name": "Custom_Model",
"Transform": {
"posX": -53.20612,
"posY": 1.695617,
"posZ": 9.572996,
"rotX": 359.920074,
"rotY": 269.9771,
"rotZ": 0.0169141833,
"scaleX": 0.45,
"scaleY": 0.6,
"scaleZ": 0.45
},
"Nickname": "Rogue",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"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": ""
},
"14": {
"GUID": "1fc950",
"Name": "Custom_Tile",
"Transform": {
"posX": -53.20614,
"posY": 1.635617,
"posZ": 9.573,
"rotX": 359.9201,
"rotY": 269.976959,
"rotZ": 0.0169055313,
"scaleX": 0.45083037,
"scaleY": 1.0,
"scaleZ": 0.45083037
},
"Nickname": "Play Item Action",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.745098054,
"g": 0.117646866,
"b": 0.1764704
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892160364237/A92D5AF13B283117BD62EE84B657A3A71FBBD274/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892160364411/A2521332E179AA19AF2002427E8114316614D884/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"15": {
"GUID": "11508f",
"Name": "Custom_Model",
"Transform": {
"posX": -53.2060547,
"posY": 1.69561672,
"posZ": 9.572982,
"rotX": 359.920074,
"rotY": 269.976959,
"rotZ": 0.01690872,
"scaleX": 0.45,
"scaleY": 0.6,
"scaleZ": 0.45
},
"Nickname": "Guardian",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"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": ""
},
"16": {
"GUID": "8888ff",
"Name": "Custom_Model",
"Transform": {
"posX": -53.2060547,
"posY": 1.69561684,
"posZ": 9.572982,
"rotX": 359.920074,
"rotY": 269.976959,
"rotZ": 0.0169153865,
"scaleX": 0.45,
"scaleY": 0.6,
"scaleZ": 0.45
},
"Nickname": "Seeker",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"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": ""
}
}
},
{
"GUID": "460250",
"Name": "Custom_Tile",
"Transform": {
"posX": -19.0597286,
"posY": 1.6400001,
"posZ": -24.78,
"rotX": 7.871909E-08,
"rotY": 179.999924,
"rotZ": -2.12581241E-08,
"scaleX": 0.45083037,
"scaleY": 1.0,
"scaleZ": 0.45083037
},
"Nickname": "Lola/Neutral",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.247055411,
"g": 0.247055411,
"b": 0.247055411
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892160490185/08045D95997033A4D64764850FC2B68C4FB12A3C/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892160088122/7121223CA3F7CE68D5CDF9448A45A1B9471C5F02/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"7": {
"GUID": "18262f",
"Name": "Custom_Tile",
"Transform": {
"posX": -27.5766983,
"posY": 1.622816,
"posZ": 9.891064,
"rotX": 359.920135,
"rotY": 269.979858,
"rotZ": 0.0168843661,
"scaleX": 0.45083037,
"scaleY": 1.0,
"scaleZ": 0.45083037
},
"Nickname": "Guardian Engage/Fight Action",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.07450969,
"g": 0.3294116,
"b": 0.647058845
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892160205832/196A6AB09BE31462712BA7DF6F6698762B3FC98D/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892160206084/7DBCABEB4BF4F198808581A82535AFCF490F3AA4/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"8": {
"GUID": "2b07ee",
"Name": "Custom_Tile",
"Transform": {
"posX": -27.321558,
"posY": 1.62194133,
"posZ": 8.125641,
"rotX": 359.920074,
"rotY": 269.9797,
"rotZ": 0.0168532133,
"scaleX": 0.45083037,
"scaleY": 1.0,
"scaleZ": 0.45083037
},
"Nickname": "Investigate Action",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.894117653,
"g": 0.5803921,
"b": 0.2901958
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892160193705/9E0936305F807390EBA6AB130E498BFEDBA7596C/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892160193843/0E51341BE053D813766AE16EBDF0EE2B18D21DA6/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"9": {
"GUID": "7a63fd",
"Name": "Custom_Tile",
"Transform": {
"posX": -27.3002834,
"posY": 1.62138486,
"posZ": 6.333009,
"rotX": 359.9201,
"rotY": 269.9799,
"rotZ": 0.0168767553,
"scaleX": 0.45083037,
"scaleY": 1.0,
"scaleZ": 0.45083037
},
"Nickname": "Tome Action",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.894117653,
"g": 0.5803921,
"b": 0.290195882
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892160177206/F21B46B06BBF327601B4F8A5F9F00974149A6752/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892160178435/D0AC0567CCEBCE1C39AE42D4C41F7D430370CD63/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"10": {
"GUID": "0fa0b0",
"Name": "Custom_Tile",
"Transform": {
"posX": -27.369997,
"posY": 1.62108564,
"posZ": 4.984156,
"rotX": 359.9201,
"rotY": 269.979858,
"rotZ": 0.016851306,
"scaleX": 0.45083037,
"scaleY": 1.0,
"scaleZ": 0.45083037
},
"Nickname": "Rogue Engage/Fight Action",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.06666657,
"g": 0.282352835,
"b": 0.211764544
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892160208347/F53989F0806C796D180647A16C6BB4E9957F6DBF/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892160206084/7DBCABEB4BF4F198808581A82535AFCF490F3AA4/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"2": {
"GUID": "f81db8",
"Name": "Custom_Tile",
"Transform": {
"posX": -26.3750229,
"posY": 1.62159908,
"posZ": 11.452013,
"rotX": 359.9201,
"rotY": 269.980042,
"rotZ": 0.0168430787,
"scaleX": 0.45083037,
"scaleY": 1.0,
"scaleZ": 0.45083037
},
"Nickname": "Seeker",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.894117653,
"g": 0.5803921,
"b": 0.290195882
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892160172411/727C40B7A122B3EC91AD1EF76741A9888E1FF0FF/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892160081099/67A378F96CDA5FD152D491C8558170B6626F3B62/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"11": {
"GUID": "9f7077",
"Name": "Custom_Tile",
"Transform": {
"posX": -26.3748932,
"posY": 1.621599,
"posZ": 11.4519892,
"rotX": 359.9201,
"rotY": 269.9798,
"rotZ": 0.0168773085,
"scaleX": 0.45083037,
"scaleY": 1.0,
"scaleZ": 0.45083037
},
"Nickname": "Evade Action",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.06666653,
"g": 0.282352775,
"b": 0.211764485
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892160185563/042FBF813801CFDF4FEDA9ED3205D331842975FA/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892160185728/4D315AB296E7F8F10B1C98777814870192E41612/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"1": {
"GUID": "116e52",
"Name": "Custom_Tile",
"Transform": {
"posX": -26.3748932,
"posY": 1.62159884,
"posZ": 11.45199,
"rotX": 359.920135,
"rotY": 269.9798,
"rotZ": 0.0168823861,
"scaleX": 0.45083037,
"scaleY": 1.0,
"scaleZ": 0.45083037
},
"Nickname": "Guardian",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.07450964,
"g": 0.329411536,
"b": 0.647058845
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892159978320/6CBF573A12494524613C6280F558D4BED97CF007/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892160072062/DCA14B4419B0F8B8137E71F7A2CFDD40B72D7262/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"12": {
"GUID": "74ae43",
"Name": "Custom_Tile",
"Transform": {
"posX": -53.2062035,
"posY": 1.635617,
"posZ": 9.573014,
"rotX": 359.9201,
"rotY": 269.977661,
"rotZ": 0.0168937724,
"scaleX": 0.45083037,
"scaleY": 1.0,
"scaleZ": 0.45083037
},
"Nickname": "Parley Action",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.06666653,
"g": 0.282352775,
"b": 0.211764485
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892160455868/0D0F1B80B4E6A20B4728F1F7582FF09C1D4A3B9F/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892160456024/210D2A5D2C17F628302BD05065BB5C2F0BCAF842/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"3": {
"GUID": "2512b6",
"Name": "Custom_Tile",
"Transform": {
"posX": -53.20619,
"posY": 1.635617,
"posZ": 9.573011,
"rotX": 359.9201,
"rotY": 269.9775,
"rotZ": 0.01688007,
"scaleX": 0.45083037,
"scaleY": 1.0,
"scaleZ": 0.45083037
},
"Nickname": "Rogue",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.0666665062,
"g": 0.282352746,
"b": 0.211764455
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892159980250/FFA52250CDBE4067D16226E7B4C8D2E6BF263C5B/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892160084956/E2EB7A516BABA084BB8CE6F038BB22363DD647A9/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"13": {
"GUID": "441286",
"Name": "Custom_Tile",
"Transform": {
"posX": -53.2062035,
"posY": 1.635617,
"posZ": 9.573014,
"rotX": 359.9201,
"rotY": 269.977539,
"rotZ": 0.0168959163,
"scaleX": 0.45083037,
"scaleY": 1.0,
"scaleZ": 0.45083037
},
"Nickname": "Spell Action",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.3215684,
"g": 0.07058806,
"b": 0.380391926
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892160484534/A5506FADCE917AA99925516A147E0320322B5BDD/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892159981661/347ACFF6E4063121AA7D68045C7D501C22D058D4/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"5": {
"GUID": "d8fa67",
"Name": "Custom_Tile",
"Transform": {
"posX": -53.2062035,
"posY": 1.6356169,
"posZ": 9.573014,
"rotX": 359.9201,
"rotY": 269.977478,
"rotZ": 0.01691224,
"scaleX": 0.45083037,
"scaleY": 1.0,
"scaleZ": 0.45083037
},
"Nickname": "Survivor",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.745098054,
"g": 0.117646866,
"b": 0.1764704
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892159981185/8A83B84C4EC594D48259904616769E84C5191F83/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892160087156/4A5464A1B1A0905B79A8155B2CA71BAA74D5966B/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"4": {
"GUID": "fb5b15",
"Name": "Custom_Tile",
"Transform": {
"posX": -53.2062035,
"posY": 1.63561714,
"posZ": 9.573014,
"rotX": 359.920074,
"rotY": 269.977356,
"rotZ": 0.0168797281,
"scaleX": 0.45083037,
"scaleY": 1.0,
"scaleZ": 0.45083037
},
"Nickname": "Mystic",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.32156834,
"g": 0.070588015,
"b": 0.380391866
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892159980712/D6B1AAFF9763CD6F410D56A716D731714DE34EF8/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892160086074/8D2001374B0E757E52ABF406D8683C531F377350/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"20": {
"GUID": "2d0664",
"Name": "Custom_Model",
"Transform": {
"posX": -53.20612,
"posY": 1.69561684,
"posZ": 9.572996,
"rotX": 359.9201,
"rotY": 269.9773,
"rotZ": 0.0169064868,
"scaleX": 0.45,
"scaleY": 0.6,
"scaleZ": 0.45
},
"Nickname": "Neutral",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"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": ""
},
"19": {
"GUID": "0c9182",
"Name": "Custom_Model",
"Transform": {
"posX": -53.20612,
"posY": 1.69561708,
"posZ": 9.572996,
"rotX": 359.920074,
"rotY": 269.977234,
"rotZ": 0.0169148687,
"scaleX": 0.45,
"scaleY": 0.6,
"scaleZ": 0.45
},
"Nickname": "Survivor",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"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": ""
},
"18": {
"GUID": "6bd479",
"Name": "Custom_Model",
"Transform": {
"posX": -53.20612,
"posY": 1.69561708,
"posZ": 9.572996,
"rotX": 359.920074,
"rotY": 269.9772,
"rotZ": 0.01691519,
"scaleX": 0.45,
"scaleY": 0.6,
"scaleZ": 0.45
},
"Nickname": "Mystic",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"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": ""
},
"17": {
"GUID": "7f001b",
"Name": "Custom_Model",
"Transform": {
"posX": -53.20612,
"posY": 1.695617,
"posZ": 9.572996,
"rotX": 359.920074,
"rotY": 269.9771,
"rotZ": 0.0169141833,
"scaleX": 0.45,
"scaleY": 0.6,
"scaleZ": 0.45
},
"Nickname": "Rogue",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"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": ""
},
"14": {
"GUID": "1fc950",
"Name": "Custom_Tile",
"Transform": {
"posX": -53.20614,
"posY": 1.635617,
"posZ": 9.573,
"rotX": 359.9201,
"rotY": 269.976959,
"rotZ": 0.0169055313,
"scaleX": 0.45083037,
"scaleY": 1.0,
"scaleZ": 0.45083037
},
"Nickname": "Play Item Action",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.745098054,
"g": 0.117646866,
"b": 0.1764704
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892160364237/A92D5AF13B283117BD62EE84B657A3A71FBBD274/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892160364411/A2521332E179AA19AF2002427E8114316614D884/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"15": {
"GUID": "11508f",
"Name": "Custom_Model",
"Transform": {
"posX": -53.2060547,
"posY": 1.69561672,
"posZ": 9.572982,
"rotX": 359.920074,
"rotY": 269.976959,
"rotZ": 0.01690872,
"scaleX": 0.45,
"scaleY": 0.6,
"scaleZ": 0.45
},
"Nickname": "Guardian",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"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": ""
},
"16": {
"GUID": "8888ff",
"Name": "Custom_Model",
"Transform": {
"posX": -53.2060547,
"posY": 1.69561684,
"posZ": 9.572982,
"rotX": 359.920074,
"rotY": 269.976959,
"rotZ": 0.0169153865,
"scaleX": 0.45,
"scaleY": 0.6,
"scaleZ": 0.45
},
"Nickname": "Seeker",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"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": ""
}
}
},
{
"GUID": "7ffb43",
"Name": "Custom_Tile",
"Transform": {
"posX": -34.2641,
"posY": 1.54151571,
"posZ": 24.8,
"rotX": 359.98,
"rotY": -0.004866223,
"rotZ": 359.920074,
"scaleX": 0.45083037,
"scaleY": 1.0,
"scaleZ": 0.45083037
},
"Nickname": "Lola/Neutral",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.247055411,
"g": 0.247055411,
"b": 0.247055411
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892160490185/08045D95997033A4D64764850FC2B68C4FB12A3C/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892160088122/7121223CA3F7CE68D5CDF9448A45A1B9471C5F02/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"7": {
"GUID": "18262f",
"Name": "Custom_Tile",
"Transform": {
"posX": -27.5766983,
"posY": 1.622816,
"posZ": 9.891064,
"rotX": 359.920135,
"rotY": 269.979858,
"rotZ": 0.0168843661,
"scaleX": 0.45083037,
"scaleY": 1.0,
"scaleZ": 0.45083037
},
"Nickname": "Guardian Engage/Fight Action",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.07450969,
"g": 0.3294116,
"b": 0.647058845
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892160205832/196A6AB09BE31462712BA7DF6F6698762B3FC98D/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892160206084/7DBCABEB4BF4F198808581A82535AFCF490F3AA4/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"8": {
"GUID": "2b07ee",
"Name": "Custom_Tile",
"Transform": {
"posX": -27.321558,
"posY": 1.62194133,
"posZ": 8.125641,
"rotX": 359.920074,
"rotY": 269.9797,
"rotZ": 0.0168532133,
"scaleX": 0.45083037,
"scaleY": 1.0,
"scaleZ": 0.45083037
},
"Nickname": "Investigate Action",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.894117653,
"g": 0.5803921,
"b": 0.2901958
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892160193705/9E0936305F807390EBA6AB130E498BFEDBA7596C/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892160193843/0E51341BE053D813766AE16EBDF0EE2B18D21DA6/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"9": {
"GUID": "7a63fd",
"Name": "Custom_Tile",
"Transform": {
"posX": -27.3002834,
"posY": 1.62138486,
"posZ": 6.333009,
"rotX": 359.9201,
"rotY": 269.9799,
"rotZ": 0.0168767553,
"scaleX": 0.45083037,
"scaleY": 1.0,
"scaleZ": 0.45083037
},
"Nickname": "Tome Action",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.894117653,
"g": 0.5803921,
"b": 0.290195882
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892160177206/F21B46B06BBF327601B4F8A5F9F00974149A6752/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892160178435/D0AC0567CCEBCE1C39AE42D4C41F7D430370CD63/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"10": {
"GUID": "0fa0b0",
"Name": "Custom_Tile",
"Transform": {
"posX": -27.369997,
"posY": 1.62108564,
"posZ": 4.984156,
"rotX": 359.9201,
"rotY": 269.979858,
"rotZ": 0.016851306,
"scaleX": 0.45083037,
"scaleY": 1.0,
"scaleZ": 0.45083037
},
"Nickname": "Rogue Engage/Fight Action",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.06666657,
"g": 0.282352835,
"b": 0.211764544
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892160208347/F53989F0806C796D180647A16C6BB4E9957F6DBF/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892160206084/7DBCABEB4BF4F198808581A82535AFCF490F3AA4/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"2": {
"GUID": "f81db8",
"Name": "Custom_Tile",
"Transform": {
"posX": -26.3750229,
"posY": 1.62159908,
"posZ": 11.452013,
"rotX": 359.9201,
"rotY": 269.980042,
"rotZ": 0.0168430787,
"scaleX": 0.45083037,
"scaleY": 1.0,
"scaleZ": 0.45083037
},
"Nickname": "Seeker",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.894117653,
"g": 0.5803921,
"b": 0.290195882
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892160172411/727C40B7A122B3EC91AD1EF76741A9888E1FF0FF/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892160081099/67A378F96CDA5FD152D491C8558170B6626F3B62/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"11": {
"GUID": "9f7077",
"Name": "Custom_Tile",
"Transform": {
"posX": -26.3748932,
"posY": 1.621599,
"posZ": 11.4519892,
"rotX": 359.9201,
"rotY": 269.9798,
"rotZ": 0.0168773085,
"scaleX": 0.45083037,
"scaleY": 1.0,
"scaleZ": 0.45083037
},
"Nickname": "Evade Action",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.06666653,
"g": 0.282352775,
"b": 0.211764485
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892160185563/042FBF813801CFDF4FEDA9ED3205D331842975FA/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892160185728/4D315AB296E7F8F10B1C98777814870192E41612/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"1": {
"GUID": "116e52",
"Name": "Custom_Tile",
"Transform": {
"posX": -26.3748932,
"posY": 1.62159884,
"posZ": 11.45199,
"rotX": 359.920135,
"rotY": 269.9798,
"rotZ": 0.0168823861,
"scaleX": 0.45083037,
"scaleY": 1.0,
"scaleZ": 0.45083037
},
"Nickname": "Guardian",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.07450964,
"g": 0.329411536,
"b": 0.647058845
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892159978320/6CBF573A12494524613C6280F558D4BED97CF007/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892160072062/DCA14B4419B0F8B8137E71F7A2CFDD40B72D7262/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"12": {
"GUID": "74ae43",
"Name": "Custom_Tile",
"Transform": {
"posX": -53.2062035,
"posY": 1.635617,
"posZ": 9.573014,
"rotX": 359.9201,
"rotY": 269.977661,
"rotZ": 0.0168937724,
"scaleX": 0.45083037,
"scaleY": 1.0,
"scaleZ": 0.45083037
},
"Nickname": "Parley Action",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.06666653,
"g": 0.282352775,
"b": 0.211764485
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892160455868/0D0F1B80B4E6A20B4728F1F7582FF09C1D4A3B9F/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892160456024/210D2A5D2C17F628302BD05065BB5C2F0BCAF842/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"3": {
"GUID": "2512b6",
"Name": "Custom_Tile",
"Transform": {
"posX": -53.20619,
"posY": 1.635617,
"posZ": 9.573011,
"rotX": 359.9201,
"rotY": 269.9775,
"rotZ": 0.01688007,
"scaleX": 0.45083037,
"scaleY": 1.0,
"scaleZ": 0.45083037
},
"Nickname": "Rogue",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.0666665062,
"g": 0.282352746,
"b": 0.211764455
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892159980250/FFA52250CDBE4067D16226E7B4C8D2E6BF263C5B/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892160084956/E2EB7A516BABA084BB8CE6F038BB22363DD647A9/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"13": {
"GUID": "441286",
"Name": "Custom_Tile",
"Transform": {
"posX": -53.2062035,
"posY": 1.635617,
"posZ": 9.573014,
"rotX": 359.9201,
"rotY": 269.977539,
"rotZ": 0.0168959163,
"scaleX": 0.45083037,
"scaleY": 1.0,
"scaleZ": 0.45083037
},
"Nickname": "Spell Action",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.3215684,
"g": 0.07058806,
"b": 0.380391926
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892160484534/A5506FADCE917AA99925516A147E0320322B5BDD/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892159981661/347ACFF6E4063121AA7D68045C7D501C22D058D4/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"5": {
"GUID": "d8fa67",
"Name": "Custom_Tile",
"Transform": {
"posX": -53.2062035,
"posY": 1.6356169,
"posZ": 9.573014,
"rotX": 359.9201,
"rotY": 269.977478,
"rotZ": 0.01691224,
"scaleX": 0.45083037,
"scaleY": 1.0,
"scaleZ": 0.45083037
},
"Nickname": "Survivor",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.745098054,
"g": 0.117646866,
"b": 0.1764704
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892159981185/8A83B84C4EC594D48259904616769E84C5191F83/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892160087156/4A5464A1B1A0905B79A8155B2CA71BAA74D5966B/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"4": {
"GUID": "fb5b15",
"Name": "Custom_Tile",
"Transform": {
"posX": -53.2062035,
"posY": 1.63561714,
"posZ": 9.573014,
"rotX": 359.920074,
"rotY": 269.977356,
"rotZ": 0.0168797281,
"scaleX": 0.45083037,
"scaleY": 1.0,
"scaleZ": 0.45083037
},
"Nickname": "Mystic",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.32156834,
"g": 0.070588015,
"b": 0.380391866
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892159980712/D6B1AAFF9763CD6F410D56A716D731714DE34EF8/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892160086074/8D2001374B0E757E52ABF406D8683C531F377350/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"20": {
"GUID": "2d0664",
"Name": "Custom_Model",
"Transform": {
"posX": -53.20612,
"posY": 1.69561684,
"posZ": 9.572996,
"rotX": 359.9201,
"rotY": 269.9773,
"rotZ": 0.0169064868,
"scaleX": 0.45,
"scaleY": 0.6,
"scaleZ": 0.45
},
"Nickname": "Neutral",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"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": ""
},
"19": {
"GUID": "0c9182",
"Name": "Custom_Model",
"Transform": {
"posX": -53.20612,
"posY": 1.69561708,
"posZ": 9.572996,
"rotX": 359.920074,
"rotY": 269.977234,
"rotZ": 0.0169148687,
"scaleX": 0.45,
"scaleY": 0.6,
"scaleZ": 0.45
},
"Nickname": "Survivor",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"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": ""
},
"18": {
"GUID": "6bd479",
"Name": "Custom_Model",
"Transform": {
"posX": -53.20612,
"posY": 1.69561708,
"posZ": 9.572996,
"rotX": 359.920074,
"rotY": 269.9772,
"rotZ": 0.01691519,
"scaleX": 0.45,
"scaleY": 0.6,
"scaleZ": 0.45
},
"Nickname": "Mystic",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"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": ""
},
"17": {
"GUID": "7f001b",
"Name": "Custom_Model",
"Transform": {
"posX": -53.20612,
"posY": 1.695617,
"posZ": 9.572996,
"rotX": 359.920074,
"rotY": 269.9771,
"rotZ": 0.0169141833,
"scaleX": 0.45,
"scaleY": 0.6,
"scaleZ": 0.45
},
"Nickname": "Rogue",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"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": ""
},
"14": {
"GUID": "1fc950",
"Name": "Custom_Tile",
"Transform": {
"posX": -53.20614,
"posY": 1.635617,
"posZ": 9.573,
"rotX": 359.9201,
"rotY": 269.976959,
"rotZ": 0.0169055313,
"scaleX": 0.45083037,
"scaleY": 1.0,
"scaleZ": 0.45083037
},
"Nickname": "Play Item Action",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.745098054,
"g": 0.117646866,
"b": 0.1764704
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892160364237/A92D5AF13B283117BD62EE84B657A3A71FBBD274/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892160364411/A2521332E179AA19AF2002427E8114316614D884/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"15": {
"GUID": "11508f",
"Name": "Custom_Model",
"Transform": {
"posX": -53.2060547,
"posY": 1.69561672,
"posZ": 9.572982,
"rotX": 359.920074,
"rotY": 269.976959,
"rotZ": 0.01690872,
"scaleX": 0.45,
"scaleY": 0.6,
"scaleZ": 0.45
},
"Nickname": "Guardian",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"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": ""
},
"16": {
"GUID": "8888ff",
"Name": "Custom_Model",
"Transform": {
"posX": -53.2060547,
"posY": 1.69561684,
"posZ": 9.572982,
"rotX": 359.920074,
"rotY": 269.976959,
"rotZ": 0.0169153865,
"scaleX": 0.45,
"scaleY": 0.6,
"scaleZ": 0.45
},
"Nickname": "Seeker",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"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": ""
}
}
},
{
"GUID": "d7910b",
"Name": "Custom_Tile",
"Transform": {
"posX": -33.1226,
"posY": 1.53992391,
"posZ": 24.8,
"rotX": 359.98,
"rotY": -0.00224001729,
"rotZ": 359.920074,
"scaleX": 0.45083037,
"scaleY": 1.0,
"scaleZ": 0.45083037
},
"Nickname": "Lola/Neutral",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.247055411,
"g": 0.247055411,
"b": 0.247055411
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892160490185/08045D95997033A4D64764850FC2B68C4FB12A3C/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892160088122/7121223CA3F7CE68D5CDF9448A45A1B9471C5F02/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"7": {
"GUID": "18262f",
"Name": "Custom_Tile",
"Transform": {
"posX": -27.5766983,
"posY": 1.622816,
"posZ": 9.891064,
"rotX": 359.920135,
"rotY": 269.979858,
"rotZ": 0.0168843661,
"scaleX": 0.45083037,
"scaleY": 1.0,
"scaleZ": 0.45083037
},
"Nickname": "Guardian Engage/Fight Action",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.07450969,
"g": 0.3294116,
"b": 0.647058845
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892160205832/196A6AB09BE31462712BA7DF6F6698762B3FC98D/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892160206084/7DBCABEB4BF4F198808581A82535AFCF490F3AA4/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"8": {
"GUID": "2b07ee",
"Name": "Custom_Tile",
"Transform": {
"posX": -27.321558,
"posY": 1.62194133,
"posZ": 8.125641,
"rotX": 359.920074,
"rotY": 269.9797,
"rotZ": 0.0168532133,
"scaleX": 0.45083037,
"scaleY": 1.0,
"scaleZ": 0.45083037
},
"Nickname": "Investigate Action",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.894117653,
"g": 0.5803921,
"b": 0.2901958
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892160193705/9E0936305F807390EBA6AB130E498BFEDBA7596C/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892160193843/0E51341BE053D813766AE16EBDF0EE2B18D21DA6/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"9": {
"GUID": "7a63fd",
"Name": "Custom_Tile",
"Transform": {
"posX": -27.3002834,
"posY": 1.62138486,
"posZ": 6.333009,
"rotX": 359.9201,
"rotY": 269.9799,
"rotZ": 0.0168767553,
"scaleX": 0.45083037,
"scaleY": 1.0,
"scaleZ": 0.45083037
},
"Nickname": "Tome Action",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.894117653,
"g": 0.5803921,
"b": 0.290195882
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892160177206/F21B46B06BBF327601B4F8A5F9F00974149A6752/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892160178435/D0AC0567CCEBCE1C39AE42D4C41F7D430370CD63/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"10": {
"GUID": "0fa0b0",
"Name": "Custom_Tile",
"Transform": {
"posX": -27.369997,
"posY": 1.62108564,
"posZ": 4.984156,
"rotX": 359.9201,
"rotY": 269.979858,
"rotZ": 0.016851306,
"scaleX": 0.45083037,
"scaleY": 1.0,
"scaleZ": 0.45083037
},
"Nickname": "Rogue Engage/Fight Action",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.06666657,
"g": 0.282352835,
"b": 0.211764544
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892160208347/F53989F0806C796D180647A16C6BB4E9957F6DBF/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892160206084/7DBCABEB4BF4F198808581A82535AFCF490F3AA4/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"2": {
"GUID": "f81db8",
"Name": "Custom_Tile",
"Transform": {
"posX": -26.3750229,
"posY": 1.62159908,
"posZ": 11.452013,
"rotX": 359.9201,
"rotY": 269.980042,
"rotZ": 0.0168430787,
"scaleX": 0.45083037,
"scaleY": 1.0,
"scaleZ": 0.45083037
},
"Nickname": "Seeker",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.894117653,
"g": 0.5803921,
"b": 0.290195882
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892160172411/727C40B7A122B3EC91AD1EF76741A9888E1FF0FF/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892160081099/67A378F96CDA5FD152D491C8558170B6626F3B62/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"11": {
"GUID": "9f7077",
"Name": "Custom_Tile",
"Transform": {
"posX": -26.3748932,
"posY": 1.621599,
"posZ": 11.4519892,
"rotX": 359.9201,
"rotY": 269.9798,
"rotZ": 0.0168773085,
"scaleX": 0.45083037,
"scaleY": 1.0,
"scaleZ": 0.45083037
},
"Nickname": "Evade Action",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.06666653,
"g": 0.282352775,
"b": 0.211764485
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892160185563/042FBF813801CFDF4FEDA9ED3205D331842975FA/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892160185728/4D315AB296E7F8F10B1C98777814870192E41612/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"1": {
"GUID": "116e52",
"Name": "Custom_Tile",
"Transform": {
"posX": -26.3748932,
"posY": 1.62159884,
"posZ": 11.45199,
"rotX": 359.920135,
"rotY": 269.9798,
"rotZ": 0.0168823861,
"scaleX": 0.45083037,
"scaleY": 1.0,
"scaleZ": 0.45083037
},
"Nickname": "Guardian",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.07450964,
"g": 0.329411536,
"b": 0.647058845
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892159978320/6CBF573A12494524613C6280F558D4BED97CF007/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892160072062/DCA14B4419B0F8B8137E71F7A2CFDD40B72D7262/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"12": {
"GUID": "74ae43",
"Name": "Custom_Tile",
"Transform": {
"posX": -53.2062035,
"posY": 1.635617,
"posZ": 9.573014,
"rotX": 359.9201,
"rotY": 269.977661,
"rotZ": 0.0168937724,
"scaleX": 0.45083037,
"scaleY": 1.0,
"scaleZ": 0.45083037
},
"Nickname": "Parley Action",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.06666653,
"g": 0.282352775,
"b": 0.211764485
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892160455868/0D0F1B80B4E6A20B4728F1F7582FF09C1D4A3B9F/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892160456024/210D2A5D2C17F628302BD05065BB5C2F0BCAF842/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"3": {
"GUID": "2512b6",
"Name": "Custom_Tile",
"Transform": {
"posX": -53.20619,
"posY": 1.635617,
"posZ": 9.573011,
"rotX": 359.9201,
"rotY": 269.9775,
"rotZ": 0.01688007,
"scaleX": 0.45083037,
"scaleY": 1.0,
"scaleZ": 0.45083037
},
"Nickname": "Rogue",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.0666665062,
"g": 0.282352746,
"b": 0.211764455
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892159980250/FFA52250CDBE4067D16226E7B4C8D2E6BF263C5B/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892160084956/E2EB7A516BABA084BB8CE6F038BB22363DD647A9/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"13": {
"GUID": "441286",
"Name": "Custom_Tile",
"Transform": {
"posX": -53.2062035,
"posY": 1.635617,
"posZ": 9.573014,
"rotX": 359.9201,
"rotY": 269.977539,
"rotZ": 0.0168959163,
"scaleX": 0.45083037,
"scaleY": 1.0,
"scaleZ": 0.45083037
},
"Nickname": "Spell Action",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.3215684,
"g": 0.07058806,
"b": 0.380391926
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892160484534/A5506FADCE917AA99925516A147E0320322B5BDD/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892159981661/347ACFF6E4063121AA7D68045C7D501C22D058D4/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"5": {
"GUID": "d8fa67",
"Name": "Custom_Tile",
"Transform": {
"posX": -53.2062035,
"posY": 1.6356169,
"posZ": 9.573014,
"rotX": 359.9201,
"rotY": 269.977478,
"rotZ": 0.01691224,
"scaleX": 0.45083037,
"scaleY": 1.0,
"scaleZ": 0.45083037
},
"Nickname": "Survivor",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.745098054,
"g": 0.117646866,
"b": 0.1764704
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892159981185/8A83B84C4EC594D48259904616769E84C5191F83/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892160087156/4A5464A1B1A0905B79A8155B2CA71BAA74D5966B/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"4": {
"GUID": "fb5b15",
"Name": "Custom_Tile",
"Transform": {
"posX": -53.2062035,
"posY": 1.63561714,
"posZ": 9.573014,
"rotX": 359.920074,
"rotY": 269.977356,
"rotZ": 0.0168797281,
"scaleX": 0.45083037,
"scaleY": 1.0,
"scaleZ": 0.45083037
},
"Nickname": "Mystic",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.32156834,
"g": 0.070588015,
"b": 0.380391866
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892159980712/D6B1AAFF9763CD6F410D56A716D731714DE34EF8/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892160086074/8D2001374B0E757E52ABF406D8683C531F377350/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"20": {
"GUID": "2d0664",
"Name": "Custom_Model",
"Transform": {
"posX": -53.20612,
"posY": 1.69561684,
"posZ": 9.572996,
"rotX": 359.9201,
"rotY": 269.9773,
"rotZ": 0.0169064868,
"scaleX": 0.45,
"scaleY": 0.6,
"scaleZ": 0.45
},
"Nickname": "Neutral",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"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": ""
},
"19": {
"GUID": "0c9182",
"Name": "Custom_Model",
"Transform": {
"posX": -53.20612,
"posY": 1.69561708,
"posZ": 9.572996,
"rotX": 359.920074,
"rotY": 269.977234,
"rotZ": 0.0169148687,
"scaleX": 0.45,
"scaleY": 0.6,
"scaleZ": 0.45
},
"Nickname": "Survivor",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"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": ""
},
"18": {
"GUID": "6bd479",
"Name": "Custom_Model",
"Transform": {
"posX": -53.20612,
"posY": 1.69561708,
"posZ": 9.572996,
"rotX": 359.920074,
"rotY": 269.9772,
"rotZ": 0.01691519,
"scaleX": 0.45,
"scaleY": 0.6,
"scaleZ": 0.45
},
"Nickname": "Mystic",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"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": ""
},
"17": {
"GUID": "7f001b",
"Name": "Custom_Model",
"Transform": {
"posX": -53.20612,
"posY": 1.695617,
"posZ": 9.572996,
"rotX": 359.920074,
"rotY": 269.9771,
"rotZ": 0.0169141833,
"scaleX": 0.45,
"scaleY": 0.6,
"scaleZ": 0.45
},
"Nickname": "Rogue",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"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": ""
},
"14": {
"GUID": "1fc950",
"Name": "Custom_Tile",
"Transform": {
"posX": -53.20614,
"posY": 1.635617,
"posZ": 9.573,
"rotX": 359.9201,
"rotY": 269.976959,
"rotZ": 0.0169055313,
"scaleX": 0.45083037,
"scaleY": 1.0,
"scaleZ": 0.45083037
},
"Nickname": "Play Item Action",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.745098054,
"g": 0.117646866,
"b": 0.1764704
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892160364237/A92D5AF13B283117BD62EE84B657A3A71FBBD274/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892160364411/A2521332E179AA19AF2002427E8114316614D884/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"15": {
"GUID": "11508f",
"Name": "Custom_Model",
"Transform": {
"posX": -53.2060547,
"posY": 1.69561672,
"posZ": 9.572982,
"rotX": 359.920074,
"rotY": 269.976959,
"rotZ": 0.01690872,
"scaleX": 0.45,
"scaleY": 0.6,
"scaleZ": 0.45
},
"Nickname": "Guardian",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"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": ""
},
"16": {
"GUID": "8888ff",
"Name": "Custom_Model",
"Transform": {
"posX": -53.2060547,
"posY": 1.69561684,
"posZ": 9.572982,
"rotX": 359.920074,
"rotY": 269.976959,
"rotZ": 0.0169153865,
"scaleX": 0.45,
"scaleY": 0.6,
"scaleZ": 0.45
},
"Nickname": "Seeker",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"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": ""
}
}
},
{
"GUID": "b8409d",
"Name": "Custom_Tile",
"Transform": {
"posX": -31.98098,
"posY": 1.5383321,
"posZ": 24.8000011,
"rotX": 359.98,
"rotY": 0.00432378752,
"rotZ": 359.920074,
"scaleX": 0.45083037,
"scaleY": 1.0,
"scaleZ": 0.45083037
},
"Nickname": "Lola/Neutral",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.247055411,
"g": 0.247055411,
"b": 0.247055411
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892160490185/08045D95997033A4D64764850FC2B68C4FB12A3C/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892160088122/7121223CA3F7CE68D5CDF9448A45A1B9471C5F02/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"7": {
"GUID": "18262f",
"Name": "Custom_Tile",
"Transform": {
"posX": -27.5766983,
"posY": 1.622816,
"posZ": 9.891064,
"rotX": 359.920135,
"rotY": 269.979858,
"rotZ": 0.0168843661,
"scaleX": 0.45083037,
"scaleY": 1.0,
"scaleZ": 0.45083037
},
"Nickname": "Guardian Engage/Fight Action",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.07450969,
"g": 0.3294116,
"b": 0.647058845
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892160205832/196A6AB09BE31462712BA7DF6F6698762B3FC98D/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892160206084/7DBCABEB4BF4F198808581A82535AFCF490F3AA4/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"8": {
"GUID": "2b07ee",
"Name": "Custom_Tile",
"Transform": {
"posX": -27.321558,
"posY": 1.62194133,
"posZ": 8.125641,
"rotX": 359.920074,
"rotY": 269.9797,
"rotZ": 0.0168532133,
"scaleX": 0.45083037,
"scaleY": 1.0,
"scaleZ": 0.45083037
},
"Nickname": "Investigate Action",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.894117653,
"g": 0.5803921,
"b": 0.2901958
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892160193705/9E0936305F807390EBA6AB130E498BFEDBA7596C/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892160193843/0E51341BE053D813766AE16EBDF0EE2B18D21DA6/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"9": {
"GUID": "7a63fd",
"Name": "Custom_Tile",
"Transform": {
"posX": -27.3002834,
"posY": 1.62138486,
"posZ": 6.333009,
"rotX": 359.9201,
"rotY": 269.9799,
"rotZ": 0.0168767553,
"scaleX": 0.45083037,
"scaleY": 1.0,
"scaleZ": 0.45083037
},
"Nickname": "Tome Action",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.894117653,
"g": 0.5803921,
"b": 0.290195882
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892160177206/F21B46B06BBF327601B4F8A5F9F00974149A6752/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892160178435/D0AC0567CCEBCE1C39AE42D4C41F7D430370CD63/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"10": {
"GUID": "0fa0b0",
"Name": "Custom_Tile",
"Transform": {
"posX": -27.369997,
"posY": 1.62108564,
"posZ": 4.984156,
"rotX": 359.9201,
"rotY": 269.979858,
"rotZ": 0.016851306,
"scaleX": 0.45083037,
"scaleY": 1.0,
"scaleZ": 0.45083037
},
"Nickname": "Rogue Engage/Fight Action",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.06666657,
"g": 0.282352835,
"b": 0.211764544
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892160208347/F53989F0806C796D180647A16C6BB4E9957F6DBF/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892160206084/7DBCABEB4BF4F198808581A82535AFCF490F3AA4/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"2": {
"GUID": "f81db8",
"Name": "Custom_Tile",
"Transform": {
"posX": -26.3750229,
"posY": 1.62159908,
"posZ": 11.452013,
"rotX": 359.9201,
"rotY": 269.980042,
"rotZ": 0.0168430787,
"scaleX": 0.45083037,
"scaleY": 1.0,
"scaleZ": 0.45083037
},
"Nickname": "Seeker",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.894117653,
"g": 0.5803921,
"b": 0.290195882
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892160172411/727C40B7A122B3EC91AD1EF76741A9888E1FF0FF/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892160081099/67A378F96CDA5FD152D491C8558170B6626F3B62/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"11": {
"GUID": "9f7077",
"Name": "Custom_Tile",
"Transform": {
"posX": -26.3748932,
"posY": 1.621599,
"posZ": 11.4519892,
"rotX": 359.9201,
"rotY": 269.9798,
"rotZ": 0.0168773085,
"scaleX": 0.45083037,
"scaleY": 1.0,
"scaleZ": 0.45083037
},
"Nickname": "Evade Action",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.06666653,
"g": 0.282352775,
"b": 0.211764485
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892160185563/042FBF813801CFDF4FEDA9ED3205D331842975FA/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892160185728/4D315AB296E7F8F10B1C98777814870192E41612/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"1": {
"GUID": "116e52",
"Name": "Custom_Tile",
"Transform": {
"posX": -26.3748932,
"posY": 1.62159884,
"posZ": 11.45199,
"rotX": 359.920135,
"rotY": 269.9798,
"rotZ": 0.0168823861,
"scaleX": 0.45083037,
"scaleY": 1.0,
"scaleZ": 0.45083037
},
"Nickname": "Guardian",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.07450964,
"g": 0.329411536,
"b": 0.647058845
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892159978320/6CBF573A12494524613C6280F558D4BED97CF007/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892160072062/DCA14B4419B0F8B8137E71F7A2CFDD40B72D7262/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"12": {
"GUID": "74ae43",
"Name": "Custom_Tile",
"Transform": {
"posX": -53.2062035,
"posY": 1.635617,
"posZ": 9.573014,
"rotX": 359.9201,
"rotY": 269.977661,
"rotZ": 0.0168937724,
"scaleX": 0.45083037,
"scaleY": 1.0,
"scaleZ": 0.45083037
},
"Nickname": "Parley Action",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.06666653,
"g": 0.282352775,
"b": 0.211764485
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892160455868/0D0F1B80B4E6A20B4728F1F7582FF09C1D4A3B9F/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892160456024/210D2A5D2C17F628302BD05065BB5C2F0BCAF842/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"3": {
"GUID": "2512b6",
"Name": "Custom_Tile",
"Transform": {
"posX": -53.20619,
"posY": 1.635617,
"posZ": 9.573011,
"rotX": 359.9201,
"rotY": 269.9775,
"rotZ": 0.01688007,
"scaleX": 0.45083037,
"scaleY": 1.0,
"scaleZ": 0.45083037
},
"Nickname": "Rogue",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.0666665062,
"g": 0.282352746,
"b": 0.211764455
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892159980250/FFA52250CDBE4067D16226E7B4C8D2E6BF263C5B/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892160084956/E2EB7A516BABA084BB8CE6F038BB22363DD647A9/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"13": {
"GUID": "441286",
"Name": "Custom_Tile",
"Transform": {
"posX": -53.2062035,
"posY": 1.635617,
"posZ": 9.573014,
"rotX": 359.9201,
"rotY": 269.977539,
"rotZ": 0.0168959163,
"scaleX": 0.45083037,
"scaleY": 1.0,
"scaleZ": 0.45083037
},
"Nickname": "Spell Action",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.3215684,
"g": 0.07058806,
"b": 0.380391926
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892160484534/A5506FADCE917AA99925516A147E0320322B5BDD/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892159981661/347ACFF6E4063121AA7D68045C7D501C22D058D4/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"5": {
"GUID": "d8fa67",
"Name": "Custom_Tile",
"Transform": {
"posX": -53.2062035,
"posY": 1.6356169,
"posZ": 9.573014,
"rotX": 359.9201,
"rotY": 269.977478,
"rotZ": 0.01691224,
"scaleX": 0.45083037,
"scaleY": 1.0,
"scaleZ": 0.45083037
},
"Nickname": "Survivor",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.745098054,
"g": 0.117646866,
"b": 0.1764704
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892159981185/8A83B84C4EC594D48259904616769E84C5191F83/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892160087156/4A5464A1B1A0905B79A8155B2CA71BAA74D5966B/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"4": {
"GUID": "fb5b15",
"Name": "Custom_Tile",
"Transform": {
"posX": -53.2062035,
"posY": 1.63561714,
"posZ": 9.573014,
"rotX": 359.920074,
"rotY": 269.977356,
"rotZ": 0.0168797281,
"scaleX": 0.45083037,
"scaleY": 1.0,
"scaleZ": 0.45083037
},
"Nickname": "Mystic",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.32156834,
"g": 0.070588015,
"b": 0.380391866
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892159980712/D6B1AAFF9763CD6F410D56A716D731714DE34EF8/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892160086074/8D2001374B0E757E52ABF406D8683C531F377350/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"20": {
"GUID": "2d0664",
"Name": "Custom_Model",
"Transform": {
"posX": -53.20612,
"posY": 1.69561684,
"posZ": 9.572996,
"rotX": 359.9201,
"rotY": 269.9773,
"rotZ": 0.0169064868,
"scaleX": 0.45,
"scaleY": 0.6,
"scaleZ": 0.45
},
"Nickname": "Neutral",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"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": ""
},
"19": {
"GUID": "0c9182",
"Name": "Custom_Model",
"Transform": {
"posX": -53.20612,
"posY": 1.69561708,
"posZ": 9.572996,
"rotX": 359.920074,
"rotY": 269.977234,
"rotZ": 0.0169148687,
"scaleX": 0.45,
"scaleY": 0.6,
"scaleZ": 0.45
},
"Nickname": "Survivor",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"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": ""
},
"18": {
"GUID": "6bd479",
"Name": "Custom_Model",
"Transform": {
"posX": -53.20612,
"posY": 1.69561708,
"posZ": 9.572996,
"rotX": 359.920074,
"rotY": 269.9772,
"rotZ": 0.01691519,
"scaleX": 0.45,
"scaleY": 0.6,
"scaleZ": 0.45
},
"Nickname": "Mystic",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"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": ""
},
"17": {
"GUID": "7f001b",
"Name": "Custom_Model",
"Transform": {
"posX": -53.20612,
"posY": 1.695617,
"posZ": 9.572996,
"rotX": 359.920074,
"rotY": 269.9771,
"rotZ": 0.0169141833,
"scaleX": 0.45,
"scaleY": 0.6,
"scaleZ": 0.45
},
"Nickname": "Rogue",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"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": ""
},
"14": {
"GUID": "1fc950",
"Name": "Custom_Tile",
"Transform": {
"posX": -53.20614,
"posY": 1.635617,
"posZ": 9.573,
"rotX": 359.9201,
"rotY": 269.976959,
"rotZ": 0.0169055313,
"scaleX": 0.45083037,
"scaleY": 1.0,
"scaleZ": 0.45083037
},
"Nickname": "Play Item Action",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.745098054,
"g": 0.117646866,
"b": 0.1764704
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892160364237/A92D5AF13B283117BD62EE84B657A3A71FBBD274/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892160364411/A2521332E179AA19AF2002427E8114316614D884/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"15": {
"GUID": "11508f",
"Name": "Custom_Model",
"Transform": {
"posX": -53.2060547,
"posY": 1.69561672,
"posZ": 9.572982,
"rotX": 359.920074,
"rotY": 269.976959,
"rotZ": 0.01690872,
"scaleX": 0.45,
"scaleY": 0.6,
"scaleZ": 0.45
},
"Nickname": "Guardian",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"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": ""
},
"16": {
"GUID": "8888ff",
"Name": "Custom_Model",
"Transform": {
"posX": -53.2060547,
"posY": 1.69561684,
"posZ": 9.572982,
"rotX": 359.920074,
"rotY": 269.976959,
"rotZ": 0.0169153865,
"scaleX": 0.45,
"scaleY": 0.6,
"scaleZ": 0.45
},
"Nickname": "Seeker",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"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": ""
}
}
},
{
"GUID": "719ff4",
"Name": "Custom_Tile",
"Transform": {
"posX": -53.20601,
"posY": 1.63561666,
"posZ": 9.572973,
"rotX": 359.920074,
"rotY": 269.9771,
"rotZ": 0.0168733038,
"scaleX": 0.45083037,
"scaleY": 1.0,
"scaleZ": 0.45083037
},
"Nickname": "Lola/Neutral",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.247055411,
"g": 0.247055411,
"b": 0.247055411
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892160490185/08045D95997033A4D64764850FC2B68C4FB12A3C/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892160088122/7121223CA3F7CE68D5CDF9448A45A1B9471C5F02/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"7": {
"GUID": "18262f",
"Name": "Custom_Tile",
"Transform": {
"posX": -27.5766983,
"posY": 1.622816,
"posZ": 9.891064,
"rotX": 359.920135,
"rotY": 269.979858,
"rotZ": 0.0168843661,
"scaleX": 0.45083037,
"scaleY": 1.0,
"scaleZ": 0.45083037
},
"Nickname": "Guardian Engage/Fight Action",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.07450969,
"g": 0.3294116,
"b": 0.647058845
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892160205832/196A6AB09BE31462712BA7DF6F6698762B3FC98D/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892160206084/7DBCABEB4BF4F198808581A82535AFCF490F3AA4/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"8": {
"GUID": "2b07ee",
"Name": "Custom_Tile",
"Transform": {
"posX": -27.321558,
"posY": 1.62194133,
"posZ": 8.125641,
"rotX": 359.920074,
"rotY": 269.9797,
"rotZ": 0.0168532133,
"scaleX": 0.45083037,
"scaleY": 1.0,
"scaleZ": 0.45083037
},
"Nickname": "Investigate Action",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.894117653,
"g": 0.5803921,
"b": 0.2901958
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892160193705/9E0936305F807390EBA6AB130E498BFEDBA7596C/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892160193843/0E51341BE053D813766AE16EBDF0EE2B18D21DA6/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"9": {
"GUID": "7a63fd",
"Name": "Custom_Tile",
"Transform": {
"posX": -27.3002834,
"posY": 1.62138486,
"posZ": 6.333009,
"rotX": 359.9201,
"rotY": 269.9799,
"rotZ": 0.0168767553,
"scaleX": 0.45083037,
"scaleY": 1.0,
"scaleZ": 0.45083037
},
"Nickname": "Tome Action",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.894117653,
"g": 0.5803921,
"b": 0.290195882
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892160177206/F21B46B06BBF327601B4F8A5F9F00974149A6752/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892160178435/D0AC0567CCEBCE1C39AE42D4C41F7D430370CD63/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"10": {
"GUID": "0fa0b0",
"Name": "Custom_Tile",
"Transform": {
"posX": -27.369997,
"posY": 1.62108564,
"posZ": 4.984156,
"rotX": 359.9201,
"rotY": 269.979858,
"rotZ": 0.016851306,
"scaleX": 0.45083037,
"scaleY": 1.0,
"scaleZ": 0.45083037
},
"Nickname": "Rogue Engage/Fight Action",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.06666657,
"g": 0.282352835,
"b": 0.211764544
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892160208347/F53989F0806C796D180647A16C6BB4E9957F6DBF/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892160206084/7DBCABEB4BF4F198808581A82535AFCF490F3AA4/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"2": {
"GUID": "f81db8",
"Name": "Custom_Tile",
"Transform": {
"posX": -26.3750229,
"posY": 1.62159908,
"posZ": 11.452013,
"rotX": 359.9201,
"rotY": 269.980042,
"rotZ": 0.0168430787,
"scaleX": 0.45083037,
"scaleY": 1.0,
"scaleZ": 0.45083037
},
"Nickname": "Seeker",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.894117653,
"g": 0.5803921,
"b": 0.290195882
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892160172411/727C40B7A122B3EC91AD1EF76741A9888E1FF0FF/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892160081099/67A378F96CDA5FD152D491C8558170B6626F3B62/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"11": {
"GUID": "9f7077",
"Name": "Custom_Tile",
"Transform": {
"posX": -26.3748932,
"posY": 1.621599,
"posZ": 11.4519892,
"rotX": 359.9201,
"rotY": 269.9798,
"rotZ": 0.0168773085,
"scaleX": 0.45083037,
"scaleY": 1.0,
"scaleZ": 0.45083037
},
"Nickname": "Evade Action",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.06666653,
"g": 0.282352775,
"b": 0.211764485
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892160185563/042FBF813801CFDF4FEDA9ED3205D331842975FA/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892160185728/4D315AB296E7F8F10B1C98777814870192E41612/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"1": {
"GUID": "116e52",
"Name": "Custom_Tile",
"Transform": {
"posX": -26.3748932,
"posY": 1.62159884,
"posZ": 11.45199,
"rotX": 359.920135,
"rotY": 269.9798,
"rotZ": 0.0168823861,
"scaleX": 0.45083037,
"scaleY": 1.0,
"scaleZ": 0.45083037
},
"Nickname": "Guardian",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.07450964,
"g": 0.329411536,
"b": 0.647058845
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892159978320/6CBF573A12494524613C6280F558D4BED97CF007/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892160072062/DCA14B4419B0F8B8137E71F7A2CFDD40B72D7262/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"12": {
"GUID": "74ae43",
"Name": "Custom_Tile",
"Transform": {
"posX": -53.2062035,
"posY": 1.635617,
"posZ": 9.573014,
"rotX": 359.9201,
"rotY": 269.977661,
"rotZ": 0.0168937724,
"scaleX": 0.45083037,
"scaleY": 1.0,
"scaleZ": 0.45083037
},
"Nickname": "Parley Action",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.06666653,
"g": 0.282352775,
"b": 0.211764485
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892160455868/0D0F1B80B4E6A20B4728F1F7582FF09C1D4A3B9F/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892160456024/210D2A5D2C17F628302BD05065BB5C2F0BCAF842/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"3": {
"GUID": "2512b6",
"Name": "Custom_Tile",
"Transform": {
"posX": -53.20619,
"posY": 1.635617,
"posZ": 9.573011,
"rotX": 359.9201,
"rotY": 269.9775,
"rotZ": 0.01688007,
"scaleX": 0.45083037,
"scaleY": 1.0,
"scaleZ": 0.45083037
},
"Nickname": "Rogue",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.0666665062,
"g": 0.282352746,
"b": 0.211764455
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892159980250/FFA52250CDBE4067D16226E7B4C8D2E6BF263C5B/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892160084956/E2EB7A516BABA084BB8CE6F038BB22363DD647A9/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"13": {
"GUID": "441286",
"Name": "Custom_Tile",
"Transform": {
"posX": -53.2062035,
"posY": 1.635617,
"posZ": 9.573014,
"rotX": 359.9201,
"rotY": 269.977539,
"rotZ": 0.0168959163,
"scaleX": 0.45083037,
"scaleY": 1.0,
"scaleZ": 0.45083037
},
"Nickname": "Spell Action",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.3215684,
"g": 0.07058806,
"b": 0.380391926
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892160484534/A5506FADCE917AA99925516A147E0320322B5BDD/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892159981661/347ACFF6E4063121AA7D68045C7D501C22D058D4/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"5": {
"GUID": "d8fa67",
"Name": "Custom_Tile",
"Transform": {
"posX": -53.2062035,
"posY": 1.6356169,
"posZ": 9.573014,
"rotX": 359.9201,
"rotY": 269.977478,
"rotZ": 0.01691224,
"scaleX": 0.45083037,
"scaleY": 1.0,
"scaleZ": 0.45083037
},
"Nickname": "Survivor",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.745098054,
"g": 0.117646866,
"b": 0.1764704
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892159981185/8A83B84C4EC594D48259904616769E84C5191F83/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892160087156/4A5464A1B1A0905B79A8155B2CA71BAA74D5966B/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"4": {
"GUID": "fb5b15",
"Name": "Custom_Tile",
"Transform": {
"posX": -53.2062035,
"posY": 1.63561714,
"posZ": 9.573014,
"rotX": 359.920074,
"rotY": 269.977356,
"rotZ": 0.0168797281,
"scaleX": 0.45083037,
"scaleY": 1.0,
"scaleZ": 0.45083037
},
"Nickname": "Mystic",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.32156834,
"g": 0.070588015,
"b": 0.380391866
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892159980712/D6B1AAFF9763CD6F410D56A716D731714DE34EF8/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892160086074/8D2001374B0E757E52ABF406D8683C531F377350/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"20": {
"GUID": "2d0664",
"Name": "Custom_Model",
"Transform": {
"posX": -53.20612,
"posY": 1.69561684,
"posZ": 9.572996,
"rotX": 359.9201,
"rotY": 269.9773,
"rotZ": 0.0169064868,
"scaleX": 0.45,
"scaleY": 0.6,
"scaleZ": 0.45
},
"Nickname": "Neutral",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"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": ""
},
"18": {
"GUID": "6bd479",
"Name": "Custom_Model",
"Transform": {
"posX": -53.20612,
"posY": 1.69561708,
"posZ": 9.572996,
"rotX": 359.920074,
"rotY": 269.9772,
"rotZ": 0.01691519,
"scaleX": 0.45,
"scaleY": 0.6,
"scaleZ": 0.45
},
"Nickname": "Mystic",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"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": ""
},
"17": {
"GUID": "7f001b",
"Name": "Custom_Model",
"Transform": {
"posX": -53.20612,
"posY": 1.695617,
"posZ": 9.572996,
"rotX": 359.920074,
"rotY": 269.9771,
"rotZ": 0.0169141833,
"scaleX": 0.45,
"scaleY": 0.6,
"scaleZ": 0.45
},
"Nickname": "Rogue",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"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": ""
},
"14": {
"GUID": "1fc950",
"Name": "Custom_Tile",
"Transform": {
"posX": -53.20614,
"posY": 1.635617,
"posZ": 9.573,
"rotX": 359.9201,
"rotY": 269.976959,
"rotZ": 0.0169055313,
"scaleX": 0.45083037,
"scaleY": 1.0,
"scaleZ": 0.45083037
},
"Nickname": "Play Item Action",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.745098054,
"g": 0.117646866,
"b": 0.1764704
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892160364237/A92D5AF13B283117BD62EE84B657A3A71FBBD274/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892160364411/A2521332E179AA19AF2002427E8114316614D884/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"15": {
"GUID": "11508f",
"Name": "Custom_Model",
"Transform": {
"posX": -53.2060547,
"posY": 1.69561672,
"posZ": 9.572982,
"rotX": 359.920074,
"rotY": 269.976959,
"rotZ": 0.01690872,
"scaleX": 0.45,
"scaleY": 0.6,
"scaleZ": 0.45
},
"Nickname": "Guardian",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"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": ""
},
"16": {
"GUID": "8888ff",
"Name": "Custom_Model",
"Transform": {
"posX": -53.2060547,
"posY": 1.69561684,
"posZ": 9.572982,
"rotX": 359.920074,
"rotY": 269.976959,
"rotZ": 0.0169153865,
"scaleX": 0.45,
"scaleY": 0.6,
"scaleZ": 0.45
},
"Nickname": "Seeker",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"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": ""
},
"19": {
"GUID": "172d0e",
"Name": "Custom_Model",
"Transform": {
"posX": -53.20599,
"posY": 1.69561672,
"posZ": 9.572968,
"rotX": 359.920074,
"rotY": 269.976868,
"rotZ": 0.0169091988,
"scaleX": 0.45,
"scaleY": 0.6,
"scaleZ": 0.45
},
"Nickname": "Survivor",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"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": "49bf4b",
"Name": "Custom_Tile",
"Transform": {
"posX": -53.2324066,
"posY": 1.63595021,
"posZ": 10.5810032,
"rotX": 359.920074,
"rotY": 269.979279,
"rotZ": 0.0168563556,
"scaleX": 0.35,
"scaleY": 1.0,
"scaleZ": 0.35
},
"Nickname": "Lola/Neutral",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.247055411,
"g": 0.247055411,
"b": 0.247055411
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892160490185/08045D95997033A4D64764850FC2B68C4FB12A3C/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892160088122/7121223CA3F7CE68D5CDF9448A45A1B9471C5F02/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"7": {
"GUID": "18262f",
"Name": "Custom_Tile",
"Transform": {
"posX": -27.5766983,
"posY": 1.622816,
"posZ": 9.891064,
"rotX": 359.920135,
"rotY": 269.979858,
"rotZ": 0.0168843661,
"scaleX": 0.35,
"scaleY": 1.0,
"scaleZ": 0.35
},
"Nickname": "Guardian Engage/Fight Action",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.07450969,
"g": 0.3294116,
"b": 0.647058845
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892160205832/196A6AB09BE31462712BA7DF6F6698762B3FC98D/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892160206084/7DBCABEB4BF4F198808581A82535AFCF490F3AA4/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"8": {
"GUID": "2b07ee",
"Name": "Custom_Tile",
"Transform": {
"posX": -27.321558,
"posY": 1.62194133,
"posZ": 8.125641,
"rotX": 359.920074,
"rotY": 269.9797,
"rotZ": 0.0168532133,
"scaleX": 0.35,
"scaleY": 1.0,
"scaleZ": 0.35
},
"Nickname": "Investigate Action",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.894117653,
"g": 0.5803921,
"b": 0.2901958
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892160193705/9E0936305F807390EBA6AB130E498BFEDBA7596C/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892160193843/0E51341BE053D813766AE16EBDF0EE2B18D21DA6/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"9": {
"GUID": "7a63fd",
"Name": "Custom_Tile",
"Transform": {
"posX": -27.3002834,
"posY": 1.62138486,
"posZ": 6.333009,
"rotX": 359.9201,
"rotY": 269.9799,
"rotZ": 0.0168767553,
"scaleX": 0.35,
"scaleY": 1.0,
"scaleZ": 0.35
},
"Nickname": "Tome Action",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.894117653,
"g": 0.5803921,
"b": 0.290195882
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892160177206/F21B46B06BBF327601B4F8A5F9F00974149A6752/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892160178435/D0AC0567CCEBCE1C39AE42D4C41F7D430370CD63/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"10": {
"GUID": "0fa0b0",
"Name": "Custom_Tile",
"Transform": {
"posX": -27.369997,
"posY": 1.62108564,
"posZ": 4.984156,
"rotX": 359.9201,
"rotY": 269.979858,
"rotZ": 0.016851306,
"scaleX": 0.35,
"scaleY": 1.0,
"scaleZ": 0.35
},
"Nickname": "Rogue Engage/Fight Action",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.06666657,
"g": 0.282352835,
"b": 0.211764544
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892160208347/F53989F0806C796D180647A16C6BB4E9957F6DBF/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892160206084/7DBCABEB4BF4F198808581A82535AFCF490F3AA4/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"12": {
"GUID": "74ae43",
"Name": "Custom_Tile",
"Transform": {
"posX": -29.022543,
"posY": 1.62480545,
"posZ": 9.800525,
"rotX": 359.9201,
"rotY": 269.979675,
"rotZ": 0.0168410242,
"scaleX": 0.35,
"scaleY": 1.0,
"scaleZ": 0.35
},
"Nickname": "Parley Action",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.06666655,
"g": 0.2823528,
"b": 0.211764514
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892160455868/0D0F1B80B4E6A20B4728F1F7582FF09C1D4A3B9F/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892160456024/210D2A5D2C17F628302BD05065BB5C2F0BCAF842/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"13": {
"GUID": "441286",
"Name": "Custom_Tile",
"Transform": {
"posX": -28.9575748,
"posY": 1.62423408,
"posZ": 8.164425,
"rotX": 359.9201,
"rotY": 269.979431,
"rotZ": 0.01685771,
"scaleX": 0.35,
"scaleY": 1.0,
"scaleZ": 0.35
},
"Nickname": "Spell Action",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.321568429,
"g": 0.07058809,
"b": 0.380391955
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892160484534/A5506FADCE917AA99925516A147E0320322B5BDD/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892159981661/347ACFF6E4063121AA7D68045C7D501C22D058D4/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"2": {
"GUID": "f81db8",
"Name": "Custom_Tile",
"Transform": {
"posX": -26.3750229,
"posY": 1.62159908,
"posZ": 11.452013,
"rotX": 359.9201,
"rotY": 269.980042,
"rotZ": 0.0168430787,
"scaleX": 0.35,
"scaleY": 1.0,
"scaleZ": 0.35
},
"Nickname": "Seeker",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.894117653,
"g": 0.5803921,
"b": 0.290195882
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892160172411/727C40B7A122B3EC91AD1EF76741A9888E1FF0FF/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892160081099/67A378F96CDA5FD152D491C8558170B6626F3B62/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"3": {
"GUID": "2512b6",
"Name": "Custom_Tile",
"Transform": {
"posX": -26.3750229,
"posY": 1.621599,
"posZ": 11.452014,
"rotX": 359.920074,
"rotY": 269.980042,
"rotZ": 0.01684286,
"scaleX": 0.35,
"scaleY": 1.0,
"scaleZ": 0.35
},
"Nickname": "Rogue",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.06666653,
"g": 0.282352775,
"b": 0.211764485
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892159980250/FFA52250CDBE4067D16226E7B4C8D2E6BF263C5B/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892160084956/E2EB7A516BABA084BB8CE6F038BB22363DD647A9/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"4": {
"GUID": "fb5b15",
"Name": "Custom_Tile",
"Transform": {
"posX": -26.3750229,
"posY": 1.621599,
"posZ": 11.452014,
"rotX": 359.9201,
"rotY": 269.97998,
"rotZ": 0.0168499276,
"scaleX": 0.35,
"scaleY": 1.0,
"scaleZ": 0.35
},
"Nickname": "Mystic",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.32156837,
"g": 0.07058803,
"b": 0.3803919
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892159980712/D6B1AAFF9763CD6F410D56A716D731714DE34EF8/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892160086074/8D2001374B0E757E52ABF406D8683C531F377350/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"5": {
"GUID": "d8fa67",
"Name": "Custom_Tile",
"Transform": {
"posX": -26.3750229,
"posY": 1.621599,
"posZ": 11.452014,
"rotX": 359.920074,
"rotY": 269.97998,
"rotZ": 0.0168429855,
"scaleX": 0.35,
"scaleY": 1.0,
"scaleZ": 0.35
},
"Nickname": "Survivor",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.745098054,
"g": 0.117646895,
"b": 0.176470429
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892159981185/8A83B84C4EC594D48259904616769E84C5191F83/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892160087156/4A5464A1B1A0905B79A8155B2CA71BAA74D5966B/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"11": {
"GUID": "9f7077",
"Name": "Custom_Tile",
"Transform": {
"posX": -26.3748932,
"posY": 1.621599,
"posZ": 11.4519892,
"rotX": 359.9201,
"rotY": 269.9798,
"rotZ": 0.0168773085,
"scaleX": 0.35,
"scaleY": 1.0,
"scaleZ": 0.35
},
"Nickname": "Evade Action",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.06666653,
"g": 0.282352775,
"b": 0.211764485
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892160185563/042FBF813801CFDF4FEDA9ED3205D331842975FA/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892160185728/4D315AB296E7F8F10B1C98777814870192E41612/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"20": {
"GUID": "2d0664",
"Name": "Custom_Model",
"Transform": {
"posX": -53.2324066,
"posY": 1.69595027,
"posZ": 10.5810146,
"rotX": 359.920074,
"rotY": 269.9776,
"rotZ": 0.0169244576,
"scaleX": 0.34935534,
"scaleY": 0.6,
"scaleZ": 0.34935534
},
"Nickname": "Neutral",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"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": ""
},
"19": {
"GUID": "0c9182",
"Name": "Custom_Model",
"Transform": {
"posX": -53.2324066,
"posY": 1.69595027,
"posZ": 10.5810146,
"rotX": 359.920074,
"rotY": 269.977539,
"rotZ": 0.0169247631,
"scaleX": 0.34935534,
"scaleY": 0.6,
"scaleZ": 0.34935534
},
"Nickname": "Survivor",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"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": ""
},
"18": {
"GUID": "6bd479",
"Name": "Custom_Model",
"Transform": {
"posX": -53.2323875,
"posY": 1.69595,
"posZ": 10.581008,
"rotX": 359.920074,
"rotY": 269.9774,
"rotZ": 0.0169180967,
"scaleX": 0.34935534,
"scaleY": 0.6,
"scaleZ": 0.34935534
},
"Nickname": "Mystic",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"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": ""
},
"17": {
"GUID": "7f001b",
"Name": "Custom_Model",
"Transform": {
"posX": -53.2323875,
"posY": 1.69595027,
"posZ": 10.581007,
"rotX": 359.920074,
"rotY": 269.977173,
"rotZ": 0.016925171,
"scaleX": 0.34935534,
"scaleY": 0.6,
"scaleZ": 0.34935534
},
"Nickname": "Rogue",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"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": ""
},
"16": {
"GUID": "8888ff",
"Name": "Custom_Model",
"Transform": {
"posX": -53.2323875,
"posY": 1.69595027,
"posZ": 10.5810061,
"rotX": 359.920074,
"rotY": 269.9771,
"rotZ": 0.0169257279,
"scaleX": 0.34935534,
"scaleY": 0.6,
"scaleZ": 0.34935534
},
"Nickname": "Seeker",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"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": ""
},
"15": {
"GUID": "11508f",
"Name": "Custom_Model",
"Transform": {
"posX": -53.2323875,
"posY": 1.69595027,
"posZ": 10.5810061,
"rotX": 359.920074,
"rotY": 269.977051,
"rotZ": 0.0169254243,
"scaleX": 0.34935534,
"scaleY": 0.6,
"scaleZ": 0.34935534
},
"Nickname": "Guardian",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"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": ""
},
"14": {
"GUID": "1fc950",
"Name": "Custom_Tile",
"Transform": {
"posX": -53.2324066,
"posY": 1.63595033,
"posZ": 10.5810089,
"rotX": 359.9201,
"rotY": 269.977173,
"rotZ": 0.0169123765,
"scaleX": 0.35,
"scaleY": 1.0,
"scaleZ": 0.35
},
"Nickname": "Play Item Action",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.745098054,
"g": 0.117646866,
"b": 0.1764704
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892160364237/A92D5AF13B283117BD62EE84B657A3A71FBBD274/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892160364411/A2521332E179AA19AF2002427E8114316614D884/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"1": {
"GUID": "116e52",
"Name": "Custom_Tile",
"Transform": {
"posX": -53.2324066,
"posY": 1.63595033,
"posZ": 10.5810089,
"rotX": 359.920074,
"rotY": 269.977051,
"rotZ": 0.0168698765,
"scaleX": 0.35,
"scaleY": 1.0,
"scaleZ": 0.35
},
"Nickname": "Guardian",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.07450963,
"g": 0.3294115,
"b": 0.647058845
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892159978320/6CBF573A12494524613C6280F558D4BED97CF007/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892160072062/DCA14B4419B0F8B8137E71F7A2CFDD40B72D7262/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "26a0a0",
"Name": "Custom_Tile",
"Transform": {
"posX": -53.27,
"posY": 1.63569331,
"posZ": -21.5500259,
"rotX": 0.03196823,
"rotY": 270.027222,
"rotZ": 0.0554326661,
"scaleX": 0.35,
"scaleY": 1.0,
"scaleZ": 0.35
},
"Nickname": "Lola/Neutral",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.247055411,
"g": 0.247055411,
"b": 0.247055411
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892160490185/08045D95997033A4D64764850FC2B68C4FB12A3C/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892160088122/7121223CA3F7CE68D5CDF9448A45A1B9471C5F02/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"7": {
"GUID": "18262f",
"Name": "Custom_Tile",
"Transform": {
"posX": -27.5766983,
"posY": 1.622816,
"posZ": 9.891064,
"rotX": 359.920135,
"rotY": 269.979858,
"rotZ": 0.0168843661,
"scaleX": 0.35,
"scaleY": 1.0,
"scaleZ": 0.35
},
"Nickname": "Guardian Engage/Fight Action",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.07450969,
"g": 0.3294116,
"b": 0.647058845
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892160205832/196A6AB09BE31462712BA7DF6F6698762B3FC98D/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892160206084/7DBCABEB4BF4F198808581A82535AFCF490F3AA4/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"8": {
"GUID": "2b07ee",
"Name": "Custom_Tile",
"Transform": {
"posX": -27.321558,
"posY": 1.62194133,
"posZ": 8.125641,
"rotX": 359.920074,
"rotY": 269.9797,
"rotZ": 0.0168532133,
"scaleX": 0.35,
"scaleY": 1.0,
"scaleZ": 0.35
},
"Nickname": "Investigate Action",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.894117653,
"g": 0.5803921,
"b": 0.2901958
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892160193705/9E0936305F807390EBA6AB130E498BFEDBA7596C/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892160193843/0E51341BE053D813766AE16EBDF0EE2B18D21DA6/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"9": {
"GUID": "7a63fd",
"Name": "Custom_Tile",
"Transform": {
"posX": -27.3002834,
"posY": 1.62138486,
"posZ": 6.333009,
"rotX": 359.9201,
"rotY": 269.9799,
"rotZ": 0.0168767553,
"scaleX": 0.35,
"scaleY": 1.0,
"scaleZ": 0.35
},
"Nickname": "Tome Action",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.894117653,
"g": 0.5803921,
"b": 0.290195882
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892160177206/F21B46B06BBF327601B4F8A5F9F00974149A6752/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892160178435/D0AC0567CCEBCE1C39AE42D4C41F7D430370CD63/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"10": {
"GUID": "0fa0b0",
"Name": "Custom_Tile",
"Transform": {
"posX": -27.369997,
"posY": 1.62108564,
"posZ": 4.984156,
"rotX": 359.9201,
"rotY": 269.979858,
"rotZ": 0.016851306,
"scaleX": 0.35,
"scaleY": 1.0,
"scaleZ": 0.35
},
"Nickname": "Rogue Engage/Fight Action",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.06666657,
"g": 0.282352835,
"b": 0.211764544
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892160208347/F53989F0806C796D180647A16C6BB4E9957F6DBF/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892160206084/7DBCABEB4BF4F198808581A82535AFCF490F3AA4/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"12": {
"GUID": "74ae43",
"Name": "Custom_Tile",
"Transform": {
"posX": -29.022543,
"posY": 1.62480545,
"posZ": 9.800525,
"rotX": 359.9201,
"rotY": 269.979675,
"rotZ": 0.0168410242,
"scaleX": 0.35,
"scaleY": 1.0,
"scaleZ": 0.35
},
"Nickname": "Parley Action",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.06666655,
"g": 0.2823528,
"b": 0.211764514
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892160455868/0D0F1B80B4E6A20B4728F1F7582FF09C1D4A3B9F/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892160456024/210D2A5D2C17F628302BD05065BB5C2F0BCAF842/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"13": {
"GUID": "441286",
"Name": "Custom_Tile",
"Transform": {
"posX": -28.9575748,
"posY": 1.62423408,
"posZ": 8.164425,
"rotX": 359.9201,
"rotY": 269.979431,
"rotZ": 0.01685771,
"scaleX": 0.35,
"scaleY": 1.0,
"scaleZ": 0.35
},
"Nickname": "Spell Action",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.321568429,
"g": 0.07058809,
"b": 0.380391955
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892160484534/A5506FADCE917AA99925516A147E0320322B5BDD/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892159981661/347ACFF6E4063121AA7D68045C7D501C22D058D4/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"2": {
"GUID": "f81db8",
"Name": "Custom_Tile",
"Transform": {
"posX": -26.3750229,
"posY": 1.62159908,
"posZ": 11.452013,
"rotX": 359.9201,
"rotY": 269.980042,
"rotZ": 0.0168430787,
"scaleX": 0.35,
"scaleY": 1.0,
"scaleZ": 0.35
},
"Nickname": "Seeker",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.894117653,
"g": 0.5803921,
"b": 0.290195882
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892160172411/727C40B7A122B3EC91AD1EF76741A9888E1FF0FF/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892160081099/67A378F96CDA5FD152D491C8558170B6626F3B62/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"3": {
"GUID": "2512b6",
"Name": "Custom_Tile",
"Transform": {
"posX": -26.3750229,
"posY": 1.621599,
"posZ": 11.452014,
"rotX": 359.920074,
"rotY": 269.980042,
"rotZ": 0.01684286,
"scaleX": 0.35,
"scaleY": 1.0,
"scaleZ": 0.35
},
"Nickname": "Rogue",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.06666653,
"g": 0.282352775,
"b": 0.211764485
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892159980250/FFA52250CDBE4067D16226E7B4C8D2E6BF263C5B/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892160084956/E2EB7A516BABA084BB8CE6F038BB22363DD647A9/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"4": {
"GUID": "fb5b15",
"Name": "Custom_Tile",
"Transform": {
"posX": -26.3750229,
"posY": 1.621599,
"posZ": 11.452014,
"rotX": 359.9201,
"rotY": 269.97998,
"rotZ": 0.0168499276,
"scaleX": 0.35,
"scaleY": 1.0,
"scaleZ": 0.35
},
"Nickname": "Mystic",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.32156837,
"g": 0.07058803,
"b": 0.3803919
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892159980712/D6B1AAFF9763CD6F410D56A716D731714DE34EF8/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892160086074/8D2001374B0E757E52ABF406D8683C531F377350/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"5": {
"GUID": "d8fa67",
"Name": "Custom_Tile",
"Transform": {
"posX": -26.3750229,
"posY": 1.621599,
"posZ": 11.452014,
"rotX": 359.920074,
"rotY": 269.97998,
"rotZ": 0.0168429855,
"scaleX": 0.35,
"scaleY": 1.0,
"scaleZ": 0.35
},
"Nickname": "Survivor",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.745098054,
"g": 0.117646895,
"b": 0.176470429
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892159981185/8A83B84C4EC594D48259904616769E84C5191F83/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892160087156/4A5464A1B1A0905B79A8155B2CA71BAA74D5966B/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"11": {
"GUID": "9f7077",
"Name": "Custom_Tile",
"Transform": {
"posX": -26.3748932,
"posY": 1.621599,
"posZ": 11.4519892,
"rotX": 359.9201,
"rotY": 269.9798,
"rotZ": 0.0168773085,
"scaleX": 0.35,
"scaleY": 1.0,
"scaleZ": 0.35
},
"Nickname": "Evade Action",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.06666653,
"g": 0.282352775,
"b": 0.211764485
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892160185563/042FBF813801CFDF4FEDA9ED3205D331842975FA/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892160185728/4D315AB296E7F8F10B1C98777814870192E41612/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"20": {
"GUID": "2d0664",
"Name": "Custom_Model",
"Transform": {
"posX": -53.2324066,
"posY": 1.69595027,
"posZ": 10.5810146,
"rotX": 359.920074,
"rotY": 269.9776,
"rotZ": 0.0169244576,
"scaleX": 0.34935534,
"scaleY": 0.6,
"scaleZ": 0.34935534
},
"Nickname": "Neutral",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"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": ""
},
"19": {
"GUID": "0c9182",
"Name": "Custom_Model",
"Transform": {
"posX": -53.2324066,
"posY": 1.69595027,
"posZ": 10.5810146,
"rotX": 359.920074,
"rotY": 269.977539,
"rotZ": 0.0169247631,
"scaleX": 0.34935534,
"scaleY": 0.6,
"scaleZ": 0.34935534
},
"Nickname": "Survivor",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"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": ""
},
"18": {
"GUID": "6bd479",
"Name": "Custom_Model",
"Transform": {
"posX": -53.2323875,
"posY": 1.69595,
"posZ": 10.581008,
"rotX": 359.920074,
"rotY": 269.9774,
"rotZ": 0.0169180967,
"scaleX": 0.34935534,
"scaleY": 0.6,
"scaleZ": 0.34935534
},
"Nickname": "Mystic",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"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": ""
},
"17": {
"GUID": "7f001b",
"Name": "Custom_Model",
"Transform": {
"posX": -53.2323875,
"posY": 1.69595027,
"posZ": 10.581007,
"rotX": 359.920074,
"rotY": 269.977173,
"rotZ": 0.016925171,
"scaleX": 0.34935534,
"scaleY": 0.6,
"scaleZ": 0.34935534
},
"Nickname": "Rogue",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"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": ""
},
"16": {
"GUID": "8888ff",
"Name": "Custom_Model",
"Transform": {
"posX": -53.2323875,
"posY": 1.69595027,
"posZ": 10.5810061,
"rotX": 359.920074,
"rotY": 269.9771,
"rotZ": 0.0169257279,
"scaleX": 0.34935534,
"scaleY": 0.6,
"scaleZ": 0.34935534
},
"Nickname": "Seeker",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"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": ""
},
"15": {
"GUID": "11508f",
"Name": "Custom_Model",
"Transform": {
"posX": -53.2323875,
"posY": 1.69595027,
"posZ": 10.5810061,
"rotX": 359.920074,
"rotY": 269.977051,
"rotZ": 0.0169254243,
"scaleX": 0.34935534,
"scaleY": 0.6,
"scaleZ": 0.34935534
},
"Nickname": "Guardian",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"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": ""
},
"14": {
"GUID": "1fc950",
"Name": "Custom_Tile",
"Transform": {
"posX": -53.2324066,
"posY": 1.63595033,
"posZ": 10.5810089,
"rotX": 359.9201,
"rotY": 269.977173,
"rotZ": 0.0169123765,
"scaleX": 0.35,
"scaleY": 1.0,
"scaleZ": 0.35
},
"Nickname": "Play Item Action",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.745098054,
"g": 0.117646866,
"b": 0.1764704
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892160364237/A92D5AF13B283117BD62EE84B657A3A71FBBD274/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892160364411/A2521332E179AA19AF2002427E8114316614D884/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"1": {
"GUID": "116e52",
"Name": "Custom_Tile",
"Transform": {
"posX": -53.2324066,
"posY": 1.63595033,
"posZ": 10.5810089,
"rotX": 359.920074,
"rotY": 269.977051,
"rotZ": 0.0168698765,
"scaleX": 0.35,
"scaleY": 1.0,
"scaleZ": 0.35
},
"Nickname": "Guardian",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.07450963,
"g": 0.3294115,
"b": 0.647058845
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892159978320/6CBF573A12494524613C6280F558D4BED97CF007/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892160072062/DCA14B4419B0F8B8137E71F7A2CFDD40B72D7262/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "a7c0f0",
"Name": "Custom_Tile",
"Transform": {
"posX": -20.0486526,
"posY": 1.6400001,
"posZ": -24.78,
"rotX": -3.52798928E-08,
"rotY": 180.000031,
"rotZ": -3.79513132E-08,
"scaleX": 0.35,
"scaleY": 1.0,
"scaleZ": 0.35
},
"Nickname": "Lola/Neutral",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.247055411,
"g": 0.247055411,
"b": 0.247055411
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892160490185/08045D95997033A4D64764850FC2B68C4FB12A3C/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892160088122/7121223CA3F7CE68D5CDF9448A45A1B9471C5F02/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"7": {
"GUID": "18262f",
"Name": "Custom_Tile",
"Transform": {
"posX": -27.5766983,
"posY": 1.622816,
"posZ": 9.891064,
"rotX": 359.920135,
"rotY": 269.979858,
"rotZ": 0.0168843661,
"scaleX": 0.35,
"scaleY": 1.0,
"scaleZ": 0.35
},
"Nickname": "Guardian Engage/Fight Action",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.07450969,
"g": 0.3294116,
"b": 0.647058845
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892160205832/196A6AB09BE31462712BA7DF6F6698762B3FC98D/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892160206084/7DBCABEB4BF4F198808581A82535AFCF490F3AA4/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"8": {
"GUID": "2b07ee",
"Name": "Custom_Tile",
"Transform": {
"posX": -27.321558,
"posY": 1.62194133,
"posZ": 8.125641,
"rotX": 359.920074,
"rotY": 269.9797,
"rotZ": 0.0168532133,
"scaleX": 0.35,
"scaleY": 1.0,
"scaleZ": 0.35
},
"Nickname": "Investigate Action",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.894117653,
"g": 0.5803921,
"b": 0.2901958
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892160193705/9E0936305F807390EBA6AB130E498BFEDBA7596C/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892160193843/0E51341BE053D813766AE16EBDF0EE2B18D21DA6/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"9": {
"GUID": "7a63fd",
"Name": "Custom_Tile",
"Transform": {
"posX": -27.3002834,
"posY": 1.62138486,
"posZ": 6.333009,
"rotX": 359.9201,
"rotY": 269.9799,
"rotZ": 0.0168767553,
"scaleX": 0.35,
"scaleY": 1.0,
"scaleZ": 0.35
},
"Nickname": "Tome Action",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.894117653,
"g": 0.5803921,
"b": 0.290195882
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892160177206/F21B46B06BBF327601B4F8A5F9F00974149A6752/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892160178435/D0AC0567CCEBCE1C39AE42D4C41F7D430370CD63/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"10": {
"GUID": "0fa0b0",
"Name": "Custom_Tile",
"Transform": {
"posX": -27.369997,
"posY": 1.62108564,
"posZ": 4.984156,
"rotX": 359.9201,
"rotY": 269.979858,
"rotZ": 0.016851306,
"scaleX": 0.35,
"scaleY": 1.0,
"scaleZ": 0.35
},
"Nickname": "Rogue Engage/Fight Action",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.06666657,
"g": 0.282352835,
"b": 0.211764544
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892160208347/F53989F0806C796D180647A16C6BB4E9957F6DBF/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892160206084/7DBCABEB4BF4F198808581A82535AFCF490F3AA4/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"12": {
"GUID": "74ae43",
"Name": "Custom_Tile",
"Transform": {
"posX": -29.022543,
"posY": 1.62480545,
"posZ": 9.800525,
"rotX": 359.9201,
"rotY": 269.979675,
"rotZ": 0.0168410242,
"scaleX": 0.35,
"scaleY": 1.0,
"scaleZ": 0.35
},
"Nickname": "Parley Action",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.06666655,
"g": 0.2823528,
"b": 0.211764514
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892160455868/0D0F1B80B4E6A20B4728F1F7582FF09C1D4A3B9F/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892160456024/210D2A5D2C17F628302BD05065BB5C2F0BCAF842/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"13": {
"GUID": "441286",
"Name": "Custom_Tile",
"Transform": {
"posX": -28.9575748,
"posY": 1.62423408,
"posZ": 8.164425,
"rotX": 359.9201,
"rotY": 269.979431,
"rotZ": 0.01685771,
"scaleX": 0.35,
"scaleY": 1.0,
"scaleZ": 0.35
},
"Nickname": "Spell Action",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.321568429,
"g": 0.07058809,
"b": 0.380391955
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892160484534/A5506FADCE917AA99925516A147E0320322B5BDD/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892159981661/347ACFF6E4063121AA7D68045C7D501C22D058D4/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"2": {
"GUID": "f81db8",
"Name": "Custom_Tile",
"Transform": {
"posX": -26.3750229,
"posY": 1.62159908,
"posZ": 11.452013,
"rotX": 359.9201,
"rotY": 269.980042,
"rotZ": 0.0168430787,
"scaleX": 0.35,
"scaleY": 1.0,
"scaleZ": 0.35
},
"Nickname": "Seeker",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.894117653,
"g": 0.5803921,
"b": 0.290195882
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892160172411/727C40B7A122B3EC91AD1EF76741A9888E1FF0FF/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892160081099/67A378F96CDA5FD152D491C8558170B6626F3B62/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"3": {
"GUID": "2512b6",
"Name": "Custom_Tile",
"Transform": {
"posX": -26.3750229,
"posY": 1.621599,
"posZ": 11.452014,
"rotX": 359.920074,
"rotY": 269.980042,
"rotZ": 0.01684286,
"scaleX": 0.35,
"scaleY": 1.0,
"scaleZ": 0.35
},
"Nickname": "Rogue",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.06666653,
"g": 0.282352775,
"b": 0.211764485
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892159980250/FFA52250CDBE4067D16226E7B4C8D2E6BF263C5B/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892160084956/E2EB7A516BABA084BB8CE6F038BB22363DD647A9/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"4": {
"GUID": "fb5b15",
"Name": "Custom_Tile",
"Transform": {
"posX": -26.3750229,
"posY": 1.621599,
"posZ": 11.452014,
"rotX": 359.9201,
"rotY": 269.97998,
"rotZ": 0.0168499276,
"scaleX": 0.35,
"scaleY": 1.0,
"scaleZ": 0.35
},
"Nickname": "Mystic",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.32156837,
"g": 0.07058803,
"b": 0.3803919
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892159980712/D6B1AAFF9763CD6F410D56A716D731714DE34EF8/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892160086074/8D2001374B0E757E52ABF406D8683C531F377350/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"5": {
"GUID": "d8fa67",
"Name": "Custom_Tile",
"Transform": {
"posX": -26.3750229,
"posY": 1.621599,
"posZ": 11.452014,
"rotX": 359.920074,
"rotY": 269.97998,
"rotZ": 0.0168429855,
"scaleX": 0.35,
"scaleY": 1.0,
"scaleZ": 0.35
},
"Nickname": "Survivor",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.745098054,
"g": 0.117646895,
"b": 0.176470429
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892159981185/8A83B84C4EC594D48259904616769E84C5191F83/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892160087156/4A5464A1B1A0905B79A8155B2CA71BAA74D5966B/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"11": {
"GUID": "9f7077",
"Name": "Custom_Tile",
"Transform": {
"posX": -26.3748932,
"posY": 1.621599,
"posZ": 11.4519892,
"rotX": 359.9201,
"rotY": 269.9798,
"rotZ": 0.0168773085,
"scaleX": 0.35,
"scaleY": 1.0,
"scaleZ": 0.35
},
"Nickname": "Evade Action",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.06666653,
"g": 0.282352775,
"b": 0.211764485
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892160185563/042FBF813801CFDF4FEDA9ED3205D331842975FA/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892160185728/4D315AB296E7F8F10B1C98777814870192E41612/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"20": {
"GUID": "2d0664",
"Name": "Custom_Model",
"Transform": {
"posX": -53.2324066,
"posY": 1.69595027,
"posZ": 10.5810146,
"rotX": 359.920074,
"rotY": 269.9776,
"rotZ": 0.0169244576,
"scaleX": 0.34935534,
"scaleY": 0.6,
"scaleZ": 0.34935534
},
"Nickname": "Neutral",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"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": ""
},
"19": {
"GUID": "0c9182",
"Name": "Custom_Model",
"Transform": {
"posX": -53.2324066,
"posY": 1.69595027,
"posZ": 10.5810146,
"rotX": 359.920074,
"rotY": 269.977539,
"rotZ": 0.0169247631,
"scaleX": 0.34935534,
"scaleY": 0.6,
"scaleZ": 0.34935534
},
"Nickname": "Survivor",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"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": ""
},
"18": {
"GUID": "6bd479",
"Name": "Custom_Model",
"Transform": {
"posX": -53.2323875,
"posY": 1.69595,
"posZ": 10.581008,
"rotX": 359.920074,
"rotY": 269.9774,
"rotZ": 0.0169180967,
"scaleX": 0.34935534,
"scaleY": 0.6,
"scaleZ": 0.34935534
},
"Nickname": "Mystic",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"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": ""
},
"17": {
"GUID": "7f001b",
"Name": "Custom_Model",
"Transform": {
"posX": -53.2323875,
"posY": 1.69595027,
"posZ": 10.581007,
"rotX": 359.920074,
"rotY": 269.977173,
"rotZ": 0.016925171,
"scaleX": 0.34935534,
"scaleY": 0.6,
"scaleZ": 0.34935534
},
"Nickname": "Rogue",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"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": ""
},
"16": {
"GUID": "8888ff",
"Name": "Custom_Model",
"Transform": {
"posX": -53.2323875,
"posY": 1.69595027,
"posZ": 10.5810061,
"rotX": 359.920074,
"rotY": 269.9771,
"rotZ": 0.0169257279,
"scaleX": 0.34935534,
"scaleY": 0.6,
"scaleZ": 0.34935534
},
"Nickname": "Seeker",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"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": ""
},
"15": {
"GUID": "11508f",
"Name": "Custom_Model",
"Transform": {
"posX": -53.2323875,
"posY": 1.69595027,
"posZ": 10.5810061,
"rotX": 359.920074,
"rotY": 269.977051,
"rotZ": 0.0169254243,
"scaleX": 0.34935534,
"scaleY": 0.6,
"scaleZ": 0.34935534
},
"Nickname": "Guardian",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"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": ""
},
"14": {
"GUID": "1fc950",
"Name": "Custom_Tile",
"Transform": {
"posX": -53.2324066,
"posY": 1.63595033,
"posZ": 10.5810089,
"rotX": 359.9201,
"rotY": 269.977173,
"rotZ": 0.0169123765,
"scaleX": 0.35,
"scaleY": 1.0,
"scaleZ": 0.35
},
"Nickname": "Play Item Action",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.745098054,
"g": 0.117646866,
"b": 0.1764704
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892160364237/A92D5AF13B283117BD62EE84B657A3A71FBBD274/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892160364411/A2521332E179AA19AF2002427E8114316614D884/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"1": {
"GUID": "116e52",
"Name": "Custom_Tile",
"Transform": {
"posX": -53.2324066,
"posY": 1.63595033,
"posZ": 10.5810089,
"rotX": 359.920074,
"rotY": 269.977051,
"rotZ": 0.0168698765,
"scaleX": 0.35,
"scaleY": 1.0,
"scaleZ": 0.35
},
"Nickname": "Guardian",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.07450963,
"g": 0.3294115,
"b": 0.647058845
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892159978320/6CBF573A12494524613C6280F558D4BED97CF007/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892160072062/DCA14B4419B0F8B8137E71F7A2CFDD40B72D7262/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "bf7cc9",
"Name": "Custom_Tile",
"Transform": {
"posX": -30.9969444,
"posY": 1.53696334,
"posZ": 24.8100128,
"rotX": 359.97998,
"rotY": 0.000802843948,
"rotZ": 359.9201,
"scaleX": 0.35,
"scaleY": 1.0,
"scaleZ": 0.35
},
"Nickname": "Lola/Neutral",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.247055411,
"g": 0.247055411,
"b": 0.247055411
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892160490185/08045D95997033A4D64764850FC2B68C4FB12A3C/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892160088122/7121223CA3F7CE68D5CDF9448A45A1B9471C5F02/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"7": {
"GUID": "18262f",
"Name": "Custom_Tile",
"Transform": {
"posX": -27.5766983,
"posY": 1.622816,
"posZ": 9.891064,
"rotX": 359.920135,
"rotY": 269.979858,
"rotZ": 0.0168843661,
"scaleX": 0.35,
"scaleY": 1.0,
"scaleZ": 0.35
},
"Nickname": "Guardian Engage/Fight Action",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.07450969,
"g": 0.3294116,
"b": 0.647058845
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892160205832/196A6AB09BE31462712BA7DF6F6698762B3FC98D/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892160206084/7DBCABEB4BF4F198808581A82535AFCF490F3AA4/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"8": {
"GUID": "2b07ee",
"Name": "Custom_Tile",
"Transform": {
"posX": -27.321558,
"posY": 1.62194133,
"posZ": 8.125641,
"rotX": 359.920074,
"rotY": 269.9797,
"rotZ": 0.0168532133,
"scaleX": 0.35,
"scaleY": 1.0,
"scaleZ": 0.35
},
"Nickname": "Investigate Action",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.894117653,
"g": 0.5803921,
"b": 0.2901958
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892160193705/9E0936305F807390EBA6AB130E498BFEDBA7596C/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892160193843/0E51341BE053D813766AE16EBDF0EE2B18D21DA6/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"9": {
"GUID": "7a63fd",
"Name": "Custom_Tile",
"Transform": {
"posX": -27.3002834,
"posY": 1.62138486,
"posZ": 6.333009,
"rotX": 359.9201,
"rotY": 269.9799,
"rotZ": 0.0168767553,
"scaleX": 0.35,
"scaleY": 1.0,
"scaleZ": 0.35
},
"Nickname": "Tome Action",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.894117653,
"g": 0.5803921,
"b": 0.290195882
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892160177206/F21B46B06BBF327601B4F8A5F9F00974149A6752/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892160178435/D0AC0567CCEBCE1C39AE42D4C41F7D430370CD63/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"10": {
"GUID": "0fa0b0",
"Name": "Custom_Tile",
"Transform": {
"posX": -27.369997,
"posY": 1.62108564,
"posZ": 4.984156,
"rotX": 359.9201,
"rotY": 269.979858,
"rotZ": 0.016851306,
"scaleX": 0.35,
"scaleY": 1.0,
"scaleZ": 0.35
},
"Nickname": "Rogue Engage/Fight Action",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.06666657,
"g": 0.282352835,
"b": 0.211764544
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892160208347/F53989F0806C796D180647A16C6BB4E9957F6DBF/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892160206084/7DBCABEB4BF4F198808581A82535AFCF490F3AA4/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"12": {
"GUID": "74ae43",
"Name": "Custom_Tile",
"Transform": {
"posX": -29.022543,
"posY": 1.62480545,
"posZ": 9.800525,
"rotX": 359.9201,
"rotY": 269.979675,
"rotZ": 0.0168410242,
"scaleX": 0.35,
"scaleY": 1.0,
"scaleZ": 0.35
},
"Nickname": "Parley Action",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.06666655,
"g": 0.2823528,
"b": 0.211764514
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892160455868/0D0F1B80B4E6A20B4728F1F7582FF09C1D4A3B9F/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892160456024/210D2A5D2C17F628302BD05065BB5C2F0BCAF842/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"2": {
"GUID": "f81db8",
"Name": "Custom_Tile",
"Transform": {
"posX": -26.3750229,
"posY": 1.62159908,
"posZ": 11.452013,
"rotX": 359.9201,
"rotY": 269.980042,
"rotZ": 0.0168430787,
"scaleX": 0.35,
"scaleY": 1.0,
"scaleZ": 0.35
},
"Nickname": "Seeker",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.894117653,
"g": 0.5803921,
"b": 0.290195882
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892160172411/727C40B7A122B3EC91AD1EF76741A9888E1FF0FF/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892160081099/67A378F96CDA5FD152D491C8558170B6626F3B62/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"3": {
"GUID": "2512b6",
"Name": "Custom_Tile",
"Transform": {
"posX": -26.3750229,
"posY": 1.621599,
"posZ": 11.452014,
"rotX": 359.920074,
"rotY": 269.980042,
"rotZ": 0.01684286,
"scaleX": 0.35,
"scaleY": 1.0,
"scaleZ": 0.35
},
"Nickname": "Rogue",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.06666653,
"g": 0.282352775,
"b": 0.211764485
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892159980250/FFA52250CDBE4067D16226E7B4C8D2E6BF263C5B/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892160084956/E2EB7A516BABA084BB8CE6F038BB22363DD647A9/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"4": {
"GUID": "fb5b15",
"Name": "Custom_Tile",
"Transform": {
"posX": -26.3750229,
"posY": 1.621599,
"posZ": 11.452014,
"rotX": 359.9201,
"rotY": 269.97998,
"rotZ": 0.0168499276,
"scaleX": 0.35,
"scaleY": 1.0,
"scaleZ": 0.35
},
"Nickname": "Mystic",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.32156837,
"g": 0.07058803,
"b": 0.3803919
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892159980712/D6B1AAFF9763CD6F410D56A716D731714DE34EF8/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892160086074/8D2001374B0E757E52ABF406D8683C531F377350/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"5": {
"GUID": "d8fa67",
"Name": "Custom_Tile",
"Transform": {
"posX": -26.3750229,
"posY": 1.621599,
"posZ": 11.452014,
"rotX": 359.920074,
"rotY": 269.97998,
"rotZ": 0.0168429855,
"scaleX": 0.35,
"scaleY": 1.0,
"scaleZ": 0.35
},
"Nickname": "Survivor",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.745098054,
"g": 0.117646895,
"b": 0.176470429
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892159981185/8A83B84C4EC594D48259904616769E84C5191F83/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892160087156/4A5464A1B1A0905B79A8155B2CA71BAA74D5966B/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"11": {
"GUID": "9f7077",
"Name": "Custom_Tile",
"Transform": {
"posX": -26.3748932,
"posY": 1.621599,
"posZ": 11.4519892,
"rotX": 359.9201,
"rotY": 269.9798,
"rotZ": 0.0168773085,
"scaleX": 0.35,
"scaleY": 1.0,
"scaleZ": 0.35
},
"Nickname": "Evade Action",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.06666653,
"g": 0.282352775,
"b": 0.211764485
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892160185563/042FBF813801CFDF4FEDA9ED3205D331842975FA/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892160185728/4D315AB296E7F8F10B1C98777814870192E41612/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"20": {
"GUID": "2d0664",
"Name": "Custom_Model",
"Transform": {
"posX": -53.2324066,
"posY": 1.69595027,
"posZ": 10.5810146,
"rotX": 359.920074,
"rotY": 269.9776,
"rotZ": 0.0169244576,
"scaleX": 0.34935534,
"scaleY": 0.6,
"scaleZ": 0.34935534
},
"Nickname": "Neutral",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"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": ""
},
"19": {
"GUID": "0c9182",
"Name": "Custom_Model",
"Transform": {
"posX": -53.2324066,
"posY": 1.69595027,
"posZ": 10.5810146,
"rotX": 359.920074,
"rotY": 269.977539,
"rotZ": 0.0169247631,
"scaleX": 0.34935534,
"scaleY": 0.6,
"scaleZ": 0.34935534
},
"Nickname": "Survivor",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"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": ""
},
"18": {
"GUID": "6bd479",
"Name": "Custom_Model",
"Transform": {
"posX": -53.2323875,
"posY": 1.69595,
"posZ": 10.581008,
"rotX": 359.920074,
"rotY": 269.9774,
"rotZ": 0.0169180967,
"scaleX": 0.34935534,
"scaleY": 0.6,
"scaleZ": 0.34935534
},
"Nickname": "Mystic",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"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": ""
},
"17": {
"GUID": "7f001b",
"Name": "Custom_Model",
"Transform": {
"posX": -53.2323875,
"posY": 1.69595027,
"posZ": 10.581007,
"rotX": 359.920074,
"rotY": 269.977173,
"rotZ": 0.016925171,
"scaleX": 0.34935534,
"scaleY": 0.6,
"scaleZ": 0.34935534
},
"Nickname": "Rogue",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"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": ""
},
"16": {
"GUID": "8888ff",
"Name": "Custom_Model",
"Transform": {
"posX": -53.2323875,
"posY": 1.69595027,
"posZ": 10.5810061,
"rotX": 359.920074,
"rotY": 269.9771,
"rotZ": 0.0169257279,
"scaleX": 0.34935534,
"scaleY": 0.6,
"scaleZ": 0.34935534
},
"Nickname": "Seeker",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"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": ""
},
"15": {
"GUID": "11508f",
"Name": "Custom_Model",
"Transform": {
"posX": -53.2323875,
"posY": 1.69595027,
"posZ": 10.5810061,
"rotX": 359.920074,
"rotY": 269.977051,
"rotZ": 0.0169254243,
"scaleX": 0.34935534,
"scaleY": 0.6,
"scaleZ": 0.34935534
},
"Nickname": "Guardian",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"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": ""
},
"14": {
"GUID": "1fc950",
"Name": "Custom_Tile",
"Transform": {
"posX": -53.2324066,
"posY": 1.63595033,
"posZ": 10.5810089,
"rotX": 359.9201,
"rotY": 269.977173,
"rotZ": 0.0169123765,
"scaleX": 0.35,
"scaleY": 1.0,
"scaleZ": 0.35
},
"Nickname": "Play Item Action",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.745098054,
"g": 0.117646866,
"b": 0.1764704
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892160364237/A92D5AF13B283117BD62EE84B657A3A71FBBD274/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892160364411/A2521332E179AA19AF2002427E8114316614D884/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"1": {
"GUID": "116e52",
"Name": "Custom_Tile",
"Transform": {
"posX": -53.2324066,
"posY": 1.63595033,
"posZ": 10.5810089,
"rotX": 359.920074,
"rotY": 269.977051,
"rotZ": 0.0168698765,
"scaleX": 0.35,
"scaleY": 1.0,
"scaleZ": 0.35
},
"Nickname": "Guardian",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.07450963,
"g": 0.3294115,
"b": 0.647058845
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892159978320/6CBF573A12494524613C6280F558D4BED97CF007/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892160072062/DCA14B4419B0F8B8137E71F7A2CFDD40B72D7262/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"13": {
"GUID": "441286",
"Name": "Custom_Tile",
"Transform": {
"posX": -29.6062851,
"posY": 1.55190063,
"posZ": 25.3143158,
"rotX": 359.920074,
"rotY": 269.977722,
"rotZ": 0.02001142,
"scaleX": 0.35,
"scaleY": 1.0,
"scaleZ": 0.35
},
"Nickname": "Spell Action",
"Description": "Action Token",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.3215684,
"g": 0.07058806,
"b": 0.380391926
},
"Tags": [
"action_token"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1865052892160484534/A5506FADCE917AA99925516A147E0320322B5BDD/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1865052892159981661/347ACFF6E4063121AA7D68045C7D501C22D058D4/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "a4fd1b",
"Name": "Custom_Model",
"Transform": {
"posX": -33.33,
"posY": 1.29423785,
"posZ": -66.54,
"rotX": 0.0208363645,
"rotY": 269.910858,
"rotZ": 0.0167380888,
"scaleX": 0.5,
"scaleY": 0.139652729,
"scaleZ": 0.5
},
"Nickname": "The Scarlet Keys",
"Description": "",
"GMNotes": "investigators/scarlet_keys.json",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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/1814412497119380675/B022CB37C5D1B2836B70228E35BCC2C3BA2477E5/",
"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\":{\"08cb35\":{\"lock\":false,\"pos\":{\"x\":-16.6389007568359,\"y\":1.36251163482666,\"z\":-58.9818000793457},\"rot\":{\"x\":0.0208109598606825,\"y\":270.018188476563,\"z\":0.0167748164385557}},\"0b9ee6\":{\"lock\":false,\"pos\":{\"x\":-16.6392002105713,\"y\":1.35863471031189,\"z\":-72.2263031005859},\"rot\":{\"x\":0.0208162907510996,\"y\":270.000213623047,\"z\":0.0167682059109211}},\"27e41e\":{\"lock\":false,\"pos\":{\"x\":-16.638500213623,\"y\":1.35827088356018,\"z\":-73.4700012207031},\"rot\":{\"x\":0.0208160672336817,\"y\":270.000396728516,\"z\":0.0167681183665991}},\"2ce03d\":{\"lock\":false,\"pos\":{\"x\":-16.6389999389648,\"y\":1.36552917957306,\"z\":-48.6729011535645},\"rot\":{\"x\":0.0208164770156145,\"y\":270.000213623047,\"z\":0.0167685467749834}},\"3b3b7a\":{\"lock\":false,\"pos\":{\"x\":-19.1200504302979,\"y\":1.30867099761963,\"z\":-81.3399963378906},\"rot\":{\"x\":0.0208089556545019,\"y\":269.999694824219,\"z\":0.0167704559862614}},\"3d3e9c\":{\"lock\":false,\"pos\":{\"x\":-26.2985000610352,\"y\":1.26749563217163,\"z\":-81.3387985229492},\"rot\":{\"x\":359.979187011719,\"y\":90.0180053710938,\"z\":359.983215332031}},\"3da38f\":{\"lock\":false,\"pos\":{\"x\":-26.2989978790283,\"y\":1.27439677715302,\"z\":-57.7619018554688},\"rot\":{\"x\":359.979156494141,\"y\":89.9998168945313,\"z\":359.983215332031}},\"435797\":{\"lock\":false,\"pos\":{\"x\":-16.6389999389648,\"y\":1.3651670217514,\"z\":-49.9099998474121},\"rot\":{\"x\":0.0208156779408455,\"y\":270.000213623047,\"z\":0.0167680028825998}},\"43ad8a\":{\"lock\":false,\"pos\":{\"x\":-19.1232585906982,\"y\":1.31558668613434,\"z\":-57.7099990844727},\"rot\":{\"x\":0.0208084061741829,\"y\":270.0009765625,\"z\":0.0167711656540632}},\"454573\":{\"lock\":false,\"pos\":{\"x\":-26.2990970611572,\"y\":1.26980042457581,\"z\":-73.4665069580078},\"rot\":{\"x\":359.979156494141,\"y\":90.0002975463867,\"z\":359.983215332031}},\"458edc\":{\"lock\":false,\"pos\":{\"x\":-19.1214046478271,\"y\":1.31097996234894,\"z\":-73.4499969482422},\"rot\":{\"x\":0.0208087358623743,\"y\":269.999847412109,\"z\":0.0167709402740002}},\"4c2a3d\":{\"lock\":false,\"pos\":{\"x\":-22.4701232910156,\"y\":1.30977916717529,\"z\":-73.3976898193359},\"rot\":{\"x\":0.0167718157172203,\"y\":180.000869750977,\"z\":359.979187011719}},\"4deeff\":{\"lock\":false,\"pos\":{\"x\":-19.1195487976074,\"y\":1.3063850402832,\"z\":-89.1500015258789},\"rot\":{\"x\":0.0208087656646967,\"y\":269.999786376953,\"z\":0.0167711619287729}},\"4fe415\":{\"lock\":false,\"pos\":{\"x\":-16.6392002105713,\"y\":1.36058008670807,\"z\":-65.5800018310547},\"rot\":{\"x\":0.0208166763186455,\"y\":270.000213623047,\"z\":0.016768041998148}},\"5b1faf\":{\"lock\":false,\"pos\":{\"x\":-26.2988967895508,\"y\":1.2766809463501,\"z\":-49.9578018188477},\"rot\":{\"x\":359.979187011719,\"y\":89.9999008178711,\"z\":359.983215332031}},\"5d3d67\":{\"lock\":false,\"pos\":{\"x\":-22.4599876403809,\"y\":1.30745804309845,\"z\":-81.3399887084961},\"rot\":{\"x\":0.0167708955705166,\"y\":179.998825073242,\"z\":359.979187011719}},\"681694\":{\"lock\":false,\"pos\":{\"x\":-16.6382999420166,\"y\":1.35332012176514,\"z\":-90.3835983276367},\"rot\":{\"x\":0.0208136234432459,\"y\":270.009002685547,\"z\":0.0167713146656752}},\"69a43c\":{\"lock\":false,\"pos\":{\"x\":-16.6406002044678,\"y\":1.35404407978058,\"z\":-87.9074020385742},\"rot\":{\"x\":0.0208736248314381,\"y\":269.803314208984,\"z\":0.0166962016373873}},\"7b85f6\":{\"lock\":false,\"pos\":{\"x\":-16.6383991241455,\"y\":1.3536810874939,\"z\":-89.1500015258789},\"rot\":{\"x\":0.0208160094916821,\"y\":270.000091552734,\"z\":0.0167679414153099}},\"9248cf\":{\"lock\":false,\"pos\":{\"x\":-16.6389999389648,\"y\":1.35791170597076,\"z\":-74.6965026855469},\"rot\":{\"x\":0.0208168271929026,\"y\":269.999206542969,\"z\":0.0167678073048592}},\"95fb5e\":{\"lock\":false,\"pos\":{\"x\":-22.4577083587646,\"y\":1.30517172813416,\"z\":-89.153190612793},\"rot\":{\"x\":0.0167782045900822,\"y\":180.018630981445,\"z\":359.979187011719}},\"98d426\":{\"lock\":false,\"pos\":{\"x\":-16.6389999389648,\"y\":1.36480665206909,\"z\":-51.1416015625},\"rot\":{\"x\":0.0208169147372246,\"y\":269.998809814453,\"z\":0.0167675502598286}},\"9a9830\":{\"lock\":false,\"pos\":{\"x\":-22.4699993133545,\"y\":1.31207954883575,\"z\":-65.5388870239258},\"rot\":{\"x\":0.0167716350406408,\"y\":180.00065612793,\"z\":359.979187011719}},\"b967c9\":{\"lock\":false,\"pos\":{\"x\":-16.6390991210938,\"y\":1.35596704483032,\"z\":-81.3399963378906},\"rot\":{\"x\":0.0208169277757406,\"y\":269.998901367188,\"z\":0.0167679153382778}},\"baeea0\":{\"lock\":false,\"pos\":{\"x\":-26.2990989685059,\"y\":1.27210736274719,\"z\":-65.5814056396484},\"rot\":{\"x\":359.979156494141,\"y\":89.9999008178711,\"z\":359.983215332031}},\"c0f76c\":{\"lock\":false,\"pos\":{\"x\":-19.1200275421143,\"y\":1.31787097454071,\"z\":-49.9099998474121},\"rot\":{\"x\":0.0208088420331478,\"y\":269.999755859375,\"z\":0.0167709868401289}},\"c431f3\":{\"lock\":false,\"pos\":{\"x\":-22.4700450897217,\"y\":1.31437122821808,\"z\":-57.710033416748},\"rot\":{\"x\":0.0167711023241282,\"y\":179.999877929688,\"z\":359.979187011719}},\"c55d46\":{\"lock\":false,\"pos\":{\"x\":-26.2983989715576,\"y\":1.26520240306854,\"z\":-89.1737060546875},\"rot\":{\"x\":359.979156494141,\"y\":89.9836120605469,\"z\":359.983245849609}},\"cd74de\":{\"lock\":false,\"pos\":{\"x\":-16.6389999389648,\"y\":1.36094284057617,\"z\":-64.3414001464844},\"rot\":{\"x\":0.020817007869482,\"y\":270.000305175781,\"z\":0.016768354922533}},\"d3d7fb\":{\"lock\":false,\"pos\":{\"x\":-19.1169967651367,\"y\":1.31328523159027,\"z\":-65.5800018310547},\"rot\":{\"x\":0.02080880664289,\"y\":269.999755859375,\"z\":0.0167707484215498}},\"dc96d1\":{\"lock\":false,\"pos\":{\"x\":-22.461296081543,\"y\":1.31665933132172,\"z\":-49.9036483764648},\"rot\":{\"x\":0.0167711302638054,\"y\":179.99983215332,\"z\":359.979187011719}},\"dd6f2b\":{\"lock\":false,\"pos\":{\"x\":-16.6380996704102,\"y\":1.35561633110046,\"z\":-82.5393981933594},\"rot\":{\"x\":0.0208115261048079,\"y\":270.016387939453,\"z\":0.0167740527540445}},\"df03fb\":{\"lock\":false,\"pos\":{\"x\":-16.6389999389648,\"y\":1.36287224292755,\"z\":-57.75},\"rot\":{\"x\":0.0208168923854828,\"y\":269.998809814453,\"z\":0.0167674962431192}},\"e2df57\":{\"lock\":false,\"pos\":{\"x\":-16.6389999389648,\"y\":1.36021971702576,\"z\":-66.8114013671875},\"rot\":{\"x\":0.0208166912198067,\"y\":269.998596191406,\"z\":0.0167677123099566}},\"eb9c85\":{\"lock\":false,\"pos\":{\"x\":-16.638599395752,\"y\":1.3563392162323,\"z\":-80.0690002441406},\"rot\":{\"x\":0.0208201389759779,\"y\":269.986694335938,\"z\":0.0167633146047592}},\"eed875\":{\"lock\":false,\"pos\":{\"x\":-16.6415004730225,\"y\":1.36323225498199,\"z\":-56.5169982910156},\"rot\":{\"x\":0.0208423845469952,\"y\":269.910705566406,\"z\":0.0167359132319689}}}}",
"XmlUI": ""
},
{
"GUID": "89e0dd",
"Name": "3DText",
"Transform": {
"posX": -26.7894363,
"posY": 1.49997544,
"posZ": 63.71989,
"rotX": 90.0,
"rotY": 90.29744,
"rotZ": 0.0,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "TSK",
"colorstate": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"fontSize": 64
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "acaa93",
"Name": "Custom_Token",
"Transform": {
"posX": -62.5666466,
"posY": 1.66873336,
"posZ": 8.328352E-07,
"rotX": 359.920074,
"rotY": 270.000183,
"rotZ": 180.016891,
"scaleX": 0.6066118,
"scaleY": 1.0,
"scaleZ": 0.6066118
},
"Nickname": "Lead Investigator",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"CleanUpHelper_ignore"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/1831270385988747395/976427BD8F86E2C57C2D1370FE838991DEA6DD0F/",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.2,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "c3c1a7",
"Name": "Custom_Model_Bag",
"Transform": {
"posX": -42.69967,
"posY": 1.37632048,
"posZ": 91.5940247,
"rotX": 0.0207992233,
"rotY": 270.039917,
"rotZ": 0.0167846978,
"scaleX": 1.2,
"scaleY": 1.2,
"scaleZ": 1.2
},
"Nickname": "Upgrade Sheets",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "https://pastebin.com/raw/ALrYhQGb",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/1850441528397417973/D32DAA4E3C4B2F5AE65D4AAD2972178060B730BE/",
"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=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by 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\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=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={-1,0.1,-2.1}, rotation={0,0,0}, height=350, width=900,\r\n font_size=250, 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,0.1,-3.7}, rotation={0,0,0}, height=350, width=900,\r\n font_size=250, 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,0.1,-2.1}, rotation={0,0,0}, height=350, width=900,\r\n font_size=250, 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,0.1,-3.7}, rotation={0,0,0}, height=350, width=900,\r\n font_size=250, 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,0.1,-2.9}, rotation={0,0,0}, height=350, width=900,\r\n font_size=250, 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,0.1,-2.9}, rotation={0,0,0}, height=350, width=900,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj, 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,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\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=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=\"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\":{\"07c7ef\":{\"lock\":false,\"pos\":{\"x\":-45.114,\"y\":1.2478,\"z\":65.4193},\"rot\":{\"x\":0.0208,\"y\":269.9635,\"z\":0.0168}},\"0ce670\":{\"lock\":false,\"pos\":{\"x\":-42.7118,\"y\":1.2648,\"z\":74.109},\"rot\":{\"x\":0.0208,\"y\":269.9873,\"z\":0.0168}},\"0ffb4e\":{\"lock\":false,\"pos\":{\"x\":-42.7118,\"y\":1.2668,\"z\":81.009},\"rot\":{\"x\":0.0208,\"y\":270.0004,\"z\":0.0168}},\"179c60\":{\"lock\":false,\"pos\":{\"x\":-42.7118,\"y\":1.2608,\"z\":60.3088},\"rot\":{\"x\":0.0208,\"y\":270.0005,\"z\":0.0168}},\"1895ea\":{\"lock\":false,\"pos\":{\"x\":-42.7098,\"y\":1.2581,\"z\":51.1086},\"rot\":{\"x\":0.0208,\"y\":270.0007,\"z\":0.0168}},\"1c17e1\":{\"lock\":false,\"pos\":{\"x\":-42.7118,\"y\":1.2635,\"z\":69.509},\"rot\":{\"x\":0.0208,\"y\":269.9969,\"z\":0.0168}},\"2de3ee\":{\"lock\":false,\"pos\":{\"x\":-42.7118,\"y\":1.2621,\"z\":64.909},\"rot\":{\"x\":0.0208,\"y\":269.9978,\"z\":0.0168}},\"390bb4\":{\"lock\":false,\"pos\":{\"x\":-42.7116,\"y\":1.2655,\"z\":76.409},\"rot\":{\"x\":0.0208,\"y\":270.0021,\"z\":0.0168}},\"486fe7\":{\"lock\":false,\"pos\":{\"x\":-42.7118,\"y\":1.2601,\"z\":58.0087},\"rot\":{\"x\":0.0208,\"y\":270.0019,\"z\":0.0168}},\"57b624\":{\"lock\":false,\"pos\":{\"x\":-42.7118,\"y\":1.2641,\"z\":71.809},\"rot\":{\"x\":0.0208,\"y\":270.0001,\"z\":0.0168}},\"5b59ca\":{\"lock\":false,\"pos\":{\"x\":-42.7118,\"y\":1.2614,\"z\":62.6088},\"rot\":{\"x\":0.0208,\"y\":269.9757,\"z\":0.0168}},\"6a28d3\":{\"lock\":false,\"pos\":{\"x\":-42.7118,\"y\":1.2587,\"z\":53.4088},\"rot\":{\"x\":0.0208,\"y\":269.9709,\"z\":0.0168}},\"6beb24\":{\"lock\":false,\"pos\":{\"x\":-42.7118,\"y\":1.2628,\"z\":67.209},\"rot\":{\"x\":0.0208,\"y\":270.0002,\"z\":0.0168}},\"73baa7\":{\"lock\":false,\"pos\":{\"x\":-45.114,\"y\":1.2475,\"z\":64.4923},\"rot\":{\"x\":0.0208,\"y\":269.9683,\"z\":0.0168}},\"9d4ae0\":{\"lock\":false,\"pos\":{\"x\":-42.7118,\"y\":1.2682,\"z\":85.609},\"rot\":{\"x\":0.0208,\"y\":270.0002,\"z\":0.0168}},\"a20bba\":{\"lock\":false,\"pos\":{\"x\":-46.0409,\"y\":1.2472,\"z\":64.4923},\"rot\":{\"x\":0.0208,\"y\":269.9636,\"z\":0.0168}},\"b0bd49\":{\"lock\":false,\"pos\":{\"x\":-42.7118,\"y\":1.2594,\"z\":55.7088},\"rot\":{\"x\":0.0208,\"y\":270.0008,\"z\":0.0168}},\"b84fe1\":{\"lock\":false,\"pos\":{\"x\":-46.0409,\"y\":1.2474,\"z\":65.4193},\"rot\":{\"x\":0.0208,\"y\":269.9642,\"z\":0.0168}},\"c8aa3e\":{\"lock\":false,\"pos\":{\"x\":-42.7118,\"y\":1.2675,\"z\":83.309},\"rot\":{\"x\":0.0208,\"y\":270.0005,\"z\":0.0168}},\"d187dd\":{\"lock\":false,\"pos\":{\"x\":-45.839,\"y\":1.2576,\"z\":53.41},\"rot\":{\"x\":0.0208,\"y\":270.0004,\"z\":0.0168}},\"d4a11a\":{\"lock\":false,\"pos\":{\"x\":-42.7118,\"y\":1.2661,\"z\":78.709},\"rot\":{\"x\":0.0208,\"y\":270.0004,\"z\":0.0168}}}}",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "07c7ef",
"Name": "Custom_Tile",
"Transform": {
"posX": -45.114,
"posY": 1.24778187,
"posZ": 65.4193,
"rotX": 0.02082452,
"rotY": 269.963745,
"rotZ": 0.0167582855,
"scaleX": 0.417316616,
"scaleY": 1.0,
"scaleZ": 0.417316616
},
"Nickname": "Willpower",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": false,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1841432290043057838/7F9186B5BC8BD68D4258B37EC2D1311891AA00EC/",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "0ce670",
"Name": "CardCustom",
"Transform": {
"posX": -42.7118,
"posY": 1.26480269,
"posZ": 74.109,
"rotX": 0.0208122246,
"rotY": 269.9873,
"rotZ": 0.01676642,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Grizzled Upgrade Sheet",
"Description": "",
"GMNotes": "{\n \"id\": \"09101-c\",\n \"traits\": \"\",\n \"permanent\": false,\n \"weakness\": false\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 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,
"CardID": 847800,
"SidewaysCard": false,
"CustomDeck": {
"8478": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1829048801001639376/3AB82488B75B16FBFC07722963E64E1532572CBD/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1814412497119682452/BD224FCE1980DBA38E5A687FABFD146AA1A30D0E/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "-- Customizable Cards: Grizzled\r\n-- by Chr1Z\r\ninformation = {\r\n version = \"1.7\",\r\n last_updated = \"12.10.2022\"\r\n}\r\n\r\n-- Color information for buttons and input boxes\r\nboxSize = 40\r\ninputFontsize = 50\r\n\r\n-- static values\r\nx_1 = -0.933\r\nx_offset = 0.075\r\ny_visible = 0.25\r\ny_invisible = -0.5\r\n\r\n-- z-values (lines on the sheet)\r\nposZ = {\r\n -0.71,\r\n -0.458,\r\n -0.205,\r\n 0.362,\r\n 0.82\r\n}\r\n\r\n-- box setup (amount of boxes per line and amount of marked boxes in that line)\r\nexistingBoxes = { 1, 2, 3, 4, 5 }\r\n\r\ninputBoxes = { 1, 1, 1 }\r\ninputWidth = { 600, 875, 875 }\r\ninputPos = { { 0.3, 0.25, -0.91 }, { 0.005, 0.25, -0.58 }, { 0.005, 0.25, -0.32 } }\r\n\r\n-- override 'marked boxes' for debugging ('all' or 'none')\r\nmarkDEBUG = \"\"\r\n\r\n-- save state when going into bags / decks\r\nfunction onDestroy() self.script_state = onSave() end\r\n\r\nfunction onSave() return JSON.encode({ markedBoxes, inputValues }) end\r\n\r\n-- Startup procedure\r\nfunction onLoad(saved_data)\r\n if saved_data ~= \"\" and markDEBUG == \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n markedBoxes = loaded_data[1]\r\n inputValues = loaded_data[2]\r\n else\r\n markedBoxes = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }\r\n inputValues = { \"\", \"\", \"\", \"\", \"\" }\r\n end\r\n\r\n makeData()\r\n createButtonsAndBoxes()\r\n\r\n self.addContextMenuItem(\"Reset Inputs\", function() updateState() end)\r\n self.addContextMenuItem(\"Scale: normal\", function() self.setScale({ 1, 1, 1 }) end)\r\n self.addContextMenuItem(\"Scale: double\", function() self.setScale({ 2, 1, 2 }) end)\r\n self.addContextMenuItem(\"Scale: triple\", function() self.setScale({ 3, 1, 3 }) end)\r\nend\r\n\r\nfunction updateState(markedBoxesNew)\r\n if markedBoxesNew then markedBoxes = markedBoxesNew end\r\n makeData()\r\n createButtonsAndBoxes()\r\nend\r\n\r\n-- create Data\r\nfunction makeData()\r\n Data = {}\r\n Data.checkbox = {}\r\n Data.textbox = {}\r\n\r\n -- repeat this for each entry (= line) in existingBoxes\r\n local totalCount = 0\r\n for i = 1, #existingBoxes do\r\n -- repeat this for each checkbox per line\r\n for j = 1, existingBoxes[i] do\r\n totalCount = totalCount + 1\r\n Data.checkbox[totalCount] = {}\r\n Data.checkbox[totalCount].pos = {}\r\n Data.checkbox[totalCount].pos.x = x_1 + j * x_offset\r\n Data.checkbox[totalCount].pos.z = posZ[i]\r\n Data.checkbox[totalCount].row = i\r\n\r\n if (markDEBUG == \"all\") or (markedBoxes[i] >= j and markDEBUG ~= \"none\") then\r\n Data.checkbox[totalCount].pos.y = y_visible\r\n Data.checkbox[totalCount].state = true\r\n else\r\n Data.checkbox[totalCount].pos.y = y_invisible\r\n Data.checkbox[totalCount].state = false\r\n end\r\n end\r\n end\r\n\r\n -- repeat this for each entry (= line) in inputBoxes\r\n local totalCount = 0\r\n for i = 1, #inputBoxes do\r\n -- repeat this for each textbox per line\r\n for j = 1, inputBoxes[i] do\r\n totalCount = totalCount + 1\r\n Data.textbox[totalCount] = {}\r\n Data.textbox[totalCount].pos = inputPos[totalCount]\r\n Data.textbox[totalCount].width = inputWidth[totalCount]\r\n Data.textbox[totalCount].value = inputValues[totalCount]\r\n end\r\n end\r\nend\r\n\r\n-- checks or unchecks the given box\r\nfunction click_checkbox(tableIndex)\r\n local row = Data.checkbox[tableIndex].row\r\n\r\n if Data.checkbox[tableIndex].state == true then\r\n Data.checkbox[tableIndex].pos.y = y_invisible\r\n Data.checkbox[tableIndex].state = false\r\n\r\n markedBoxes[row] = markedBoxes[row] - 1\r\n else\r\n Data.checkbox[tableIndex].pos.y = y_visible\r\n Data.checkbox[tableIndex].state = true\r\n\r\n markedBoxes[row] = markedBoxes[row] + 1\r\n end\r\n\r\n self.editButton({\r\n index = tableIndex - 1,\r\n position = Data.checkbox[tableIndex].pos\r\n })\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 inputValues[i] = value\r\n end\r\nend\r\n\r\nfunction createButtonsAndBoxes()\r\n self.clearButtons()\r\n self.clearInputs()\r\n\r\n for i, box_data in ipairs(Data.checkbox) do\r\n local funcName = \"checkbox\" .. i\r\n local func = function() click_checkbox(i) end\r\n self.setVar(funcName, func)\r\n\r\n self.createButton({\r\n click_function = funcName,\r\n function_owner = self,\r\n position = box_data.pos,\r\n height = boxSize,\r\n width = boxSize,\r\n font_size = box_data.size,\r\n scale = { 1, 1, 1 },\r\n color = { 0, 0, 0 },\r\n font_color = { 0, 0, 0 }\r\n })\r\n end\r\n\r\n for i, box_data in ipairs(Data.textbox) do\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 = \"Click to type\",\r\n alignment = 2,\r\n position = box_data.pos,\r\n scale = buttonScale,\r\n width = box_data.width,\r\n height = (inputFontsize * 1) + 24,\r\n font_size = inputFontsize,\r\n color = \"White\",\r\n font_color = buttonFontColor,\r\n value = box_data.value\r\n })\r\n end\r\nend\r\n",
"LuaScriptState": "[[0,0,0,0,0,0,0,0,0,0],[\"\",\"\",\"\",\"\",\"\"]]",
"XmlUI": ""
},
{
"GUID": "0ffb4e",
"Name": "CardCustom",
"Transform": {
"posX": -42.7118,
"posY": 1.26682246,
"posZ": 81.009,
"rotX": 0.0208085347,
"rotY": 270.0004,
"rotZ": 0.0167713817,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Damning Testimony Upgrade Sheet",
"Description": "",
"GMNotes": "{\n \"id\": \"09059-c\",\n \"traits\": \"\",\n \"permanent\": false,\n \"weakness\": false\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 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,
"CardID": 847000,
"SidewaysCard": false,
"CustomDeck": {
"8470": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1829048801001633028/26CBF360B209B69F66C0875118727E742B7D16CD/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1814412497119682452/BD224FCE1980DBA38E5A687FABFD146AA1A30D0E/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "-- Customizable Cards: Damning Testimony\r\n-- by Chr1Z\r\ninformation = {\r\n version = \"1.7\",\r\n last_updated = \"12.10.2022\"\r\n}\r\n\r\n-- Color information for buttons\r\nboxSize = 40\r\n\r\n-- static values\r\nx_1 = -0.935\r\nx_offset = 0.075\r\ny_visible = 0.25\r\ny_invisible = -0.5\r\n\r\n-- z-values (lines on the sheet)\r\nposZ = {\r\n -0.925,\r\n -0.475,\r\n -0.25,\r\n -0.01,\r\n 0.428,\r\n 0.772\r\n}\r\n\r\n-- box setup (amount of boxes per line and amount of marked boxes in that line)\r\nexistingBoxes = { 1, 2, 2, 3, 3, 4 }\r\n\r\ninputBoxes = {}\r\n\r\n-- override 'marked boxes' for debugging ('all' or 'none')\r\nmarkDEBUG = \"\"\r\n\r\n-- save state when going into bags / decks\r\nfunction onDestroy() self.script_state = onSave() end\r\n\r\nfunction onSave() return JSON.encode({ markedBoxes, inputValues }) end\r\n\r\n-- Startup procedure\r\nfunction onLoad(saved_data)\r\n if saved_data ~= \"\" and markDEBUG == \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n markedBoxes = loaded_data[1]\r\n inputValues = loaded_data[2]\r\n else\r\n markedBoxes = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }\r\n inputValues = { \"\", \"\", \"\", \"\", \"\" }\r\n end\r\n\r\n makeData()\r\n createButtonsAndBoxes()\r\n\r\n self.addContextMenuItem(\"Reset Inputs\", function() updateState() end)\r\n self.addContextMenuItem(\"Scale: normal\", function() self.setScale({ 1, 1, 1 }) end)\r\n self.addContextMenuItem(\"Scale: double\", function() self.setScale({ 2, 1, 2 }) end)\r\n self.addContextMenuItem(\"Scale: triple\", function() self.setScale({ 3, 1, 3 }) end)\r\nend\r\n\r\nfunction updateState(markedBoxesNew)\r\n if markedBoxesNew then markedBoxes = markedBoxesNew end\r\n makeData()\r\n createButtonsAndBoxes()\r\nend\r\n\r\n-- create Data\r\nfunction makeData()\r\n Data = {}\r\n Data.checkbox = {}\r\n Data.textbox = {}\r\n\r\n -- repeat this for each entry (= line) in existingBoxes\r\n local totalCount = 0\r\n for i = 1, #existingBoxes do\r\n -- repeat this for each checkbox per line\r\n for j = 1, existingBoxes[i] do\r\n totalCount = totalCount + 1\r\n Data.checkbox[totalCount] = {}\r\n Data.checkbox[totalCount].pos = {}\r\n Data.checkbox[totalCount].pos.x = x_1 + j * x_offset\r\n Data.checkbox[totalCount].pos.z = posZ[i]\r\n Data.checkbox[totalCount].row = i\r\n\r\n if (markDEBUG == \"all\") or (markedBoxes[i] >= j and markDEBUG ~= \"none\") then\r\n Data.checkbox[totalCount].pos.y = y_visible\r\n Data.checkbox[totalCount].state = true\r\n else\r\n Data.checkbox[totalCount].pos.y = y_invisible\r\n Data.checkbox[totalCount].state = false\r\n end\r\n end\r\n end\r\n\r\n -- repeat this for each entry (= line) in inputBoxes\r\n local totalCount = 0\r\n for i = 1, #inputBoxes do\r\n -- repeat this for each textbox per line\r\n for j = 1, inputBoxes[i] do\r\n totalCount = totalCount + 1\r\n Data.textbox[totalCount] = {}\r\n Data.textbox[totalCount].pos = inputPos[totalCount]\r\n Data.textbox[totalCount].width = inputWidth[totalCount]\r\n Data.textbox[totalCount].value = inputValues[totalCount]\r\n end\r\n end\r\nend\r\n\r\n-- checks or unchecks the given box\r\nfunction click_checkbox(tableIndex)\r\n local row = Data.checkbox[tableIndex].row\r\n\r\n if Data.checkbox[tableIndex].state == true then\r\n Data.checkbox[tableIndex].pos.y = y_invisible\r\n Data.checkbox[tableIndex].state = false\r\n\r\n markedBoxes[row] = markedBoxes[row] - 1\r\n else\r\n Data.checkbox[tableIndex].pos.y = y_visible\r\n Data.checkbox[tableIndex].state = true\r\n\r\n markedBoxes[row] = markedBoxes[row] + 1\r\n end\r\n\r\n self.editButton({\r\n index = tableIndex - 1,\r\n position = Data.checkbox[tableIndex].pos\r\n })\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 inputValues[i] = value\r\n end\r\nend\r\n\r\nfunction createButtonsAndBoxes()\r\n self.clearButtons()\r\n self.clearInputs()\r\n\r\n for i, box_data in ipairs(Data.checkbox) do\r\n local funcName = \"checkbox\" .. i\r\n local func = function() click_checkbox(i) end\r\n self.setVar(funcName, func)\r\n\r\n self.createButton({\r\n click_function = funcName,\r\n function_owner = self,\r\n position = box_data.pos,\r\n height = boxSize,\r\n width = boxSize,\r\n font_size = box_data.size,\r\n scale = { 1, 1, 1 },\r\n color = { 0, 0, 0 },\r\n font_color = { 0, 0, 0 }\r\n })\r\n end\r\n\r\n for i, box_data in ipairs(Data.textbox) do\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 = \"Click to type\",\r\n alignment = 2,\r\n position = box_data.pos,\r\n scale = buttonScale,\r\n width = box_data.width,\r\n height = (inputFontsize * 1) + 24,\r\n font_size = inputFontsize,\r\n color = \"White\",\r\n font_color = buttonFontColor,\r\n value = box_data.value\r\n })\r\n end\r\nend\r\n",
"LuaScriptState": "[[0,0,0,0,0,0,0,0,0,0],[\"\",\"\",\"\",\"\",\"\"]]",
"XmlUI": ""
},
{
"GUID": "179c60",
"Name": "CardCustom",
"Transform": {
"posX": -42.7118,
"posY": 1.26076329,
"posZ": 60.3088,
"rotX": 0.0208084658,
"rotY": 270.0005,
"rotZ": 0.0167713016,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Pocket Multi Tool Upgrade Sheet",
"Description": "",
"GMNotes": "{\n \"id\": \"09099-c\",\n \"traits\": \"\",\n \"permanent\": false,\n \"weakness\": false\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 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,
"CardID": 847600,
"SidewaysCard": false,
"CustomDeck": {
"8476": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1829048801001655658/A12951A03B25D88571DC040186DFE4D87E029E54/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1814412497119682452/BD224FCE1980DBA38E5A687FABFD146AA1A30D0E/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "-- Customizable Cards: Pocket Multi Tool\r\n-- by Chr1Z\r\ninformation = {\r\n version = \"1.7\",\r\n last_updated = \"12.10.2022\"\r\n}\r\n\r\n-- Color information for buttons\r\nboxSize = 40\r\n\r\n-- static values\r\nx_1 = -0.933\r\nx_offset = 0.075\r\ny_visible = 0.25\r\ny_invisible = -0.5\r\n\r\n-- z-values (lines on the sheet)\r\nposZ = {\r\n -0.892,\r\n -0.560,\r\n -0.326,\r\n -0.092,\r\n 0.142,\r\n 0.376,\r\n 0.610\r\n}\r\n\r\n-- box setup (amount of boxes per line and amount of marked boxes in that line)\r\nexistingBoxes = { 1, 1, 2, 2, 2, 3, 4 }\r\n\r\ninputBoxes = {}\r\n\r\n-- override 'marked boxes' for debugging ('all' or 'none')\r\nmarkDEBUG = \"\"\r\n\r\n-- save state when going into bags / decks\r\nfunction onDestroy() self.script_state = onSave() end\r\n\r\nfunction onSave() return JSON.encode({ markedBoxes, inputValues }) end\r\n\r\n-- Startup procedure\r\nfunction onLoad(saved_data)\r\n if saved_data ~= \"\" and markDEBUG == \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n markedBoxes = loaded_data[1]\r\n inputValues = loaded_data[2]\r\n else\r\n markedBoxes = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }\r\n inputValues = { \"\", \"\", \"\", \"\", \"\" }\r\n end\r\n\r\n makeData()\r\n createButtonsAndBoxes()\r\n\r\n self.addContextMenuItem(\"Reset Inputs\", function() updateState() end)\r\n self.addContextMenuItem(\"Scale: normal\", function() self.setScale({ 1, 1, 1 }) end)\r\n self.addContextMenuItem(\"Scale: double\", function() self.setScale({ 2, 1, 2 }) end)\r\n self.addContextMenuItem(\"Scale: triple\", function() self.setScale({ 3, 1, 3 }) end)\r\nend\r\n\r\nfunction updateState(markedBoxesNew)\r\n if markedBoxesNew then markedBoxes = markedBoxesNew end\r\n makeData()\r\n createButtonsAndBoxes()\r\nend\r\n\r\n-- create Data\r\nfunction makeData()\r\n Data = {}\r\n Data.checkbox = {}\r\n Data.textbox = {}\r\n\r\n -- repeat this for each entry (= line) in existingBoxes\r\n local totalCount = 0\r\n for i = 1, #existingBoxes do\r\n -- repeat this for each checkbox per line\r\n for j = 1, existingBoxes[i] do\r\n totalCount = totalCount + 1\r\n Data.checkbox[totalCount] = {}\r\n Data.checkbox[totalCount].pos = {}\r\n Data.checkbox[totalCount].pos.x = x_1 + j * x_offset\r\n Data.checkbox[totalCount].pos.z = posZ[i]\r\n Data.checkbox[totalCount].row = i\r\n\r\n if (markDEBUG == \"all\") or (markedBoxes[i] >= j and markDEBUG ~= \"none\") then\r\n Data.checkbox[totalCount].pos.y = y_visible\r\n Data.checkbox[totalCount].state = true\r\n else\r\n Data.checkbox[totalCount].pos.y = y_invisible\r\n Data.checkbox[totalCount].state = false\r\n end\r\n end\r\n end\r\n\r\n -- repeat this for each entry (= line) in inputBoxes\r\n local totalCount = 0\r\n for i = 1, #inputBoxes do\r\n -- repeat this for each textbox per line\r\n for j = 1, inputBoxes[i] do\r\n totalCount = totalCount + 1\r\n Data.textbox[totalCount] = {}\r\n Data.textbox[totalCount].pos = inputPos[totalCount]\r\n Data.textbox[totalCount].width = inputWidth[totalCount]\r\n Data.textbox[totalCount].value = inputValues[totalCount]\r\n end\r\n end\r\nend\r\n\r\n-- checks or unchecks the given box\r\nfunction click_checkbox(tableIndex)\r\n local row = Data.checkbox[tableIndex].row\r\n\r\n if Data.checkbox[tableIndex].state == true then\r\n Data.checkbox[tableIndex].pos.y = y_invisible\r\n Data.checkbox[tableIndex].state = false\r\n\r\n markedBoxes[row] = markedBoxes[row] - 1\r\n else\r\n Data.checkbox[tableIndex].pos.y = y_visible\r\n Data.checkbox[tableIndex].state = true\r\n\r\n markedBoxes[row] = markedBoxes[row] + 1\r\n end\r\n\r\n self.editButton({\r\n index = tableIndex - 1,\r\n position = Data.checkbox[tableIndex].pos\r\n })\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 inputValues[i] = value\r\n end\r\nend\r\n\r\nfunction createButtonsAndBoxes()\r\n self.clearButtons()\r\n self.clearInputs()\r\n\r\n for i, box_data in ipairs(Data.checkbox) do\r\n local funcName = \"checkbox\" .. i\r\n local func = function() click_checkbox(i) end\r\n self.setVar(funcName, func)\r\n\r\n self.createButton({\r\n click_function = funcName,\r\n function_owner = self,\r\n position = box_data.pos,\r\n height = boxSize,\r\n width = boxSize,\r\n font_size = box_data.size,\r\n scale = { 1, 1, 1 },\r\n color = { 0, 0, 0 },\r\n font_color = { 0, 0, 0 }\r\n })\r\n end\r\n\r\n for i, box_data in ipairs(Data.textbox) do\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 = \"Click to type\",\r\n alignment = 2,\r\n position = box_data.pos,\r\n scale = buttonScale,\r\n width = box_data.width,\r\n height = (inputFontsize * 1) + 24,\r\n font_size = inputFontsize,\r\n color = \"White\",\r\n font_color = buttonFontColor,\r\n value = box_data.value\r\n })\r\n end\r\nend\r\n",
"LuaScriptState": "[[0,0,0,0,0,0,0,0,0,0],[\"\",\"\",\"\",\"\",\"\"]]",
"XmlUI": ""
},
{
"GUID": "1895ea",
"Name": "CardCustom",
"Transform": {
"posX": -42.7098,
"posY": 1.258071,
"posZ": 51.1086,
"rotX": 0.02080857,
"rotY": 270.000732,
"rotZ": 0.0167712979,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "The Raven Quill Upgrade Sheet",
"Description": "",
"GMNotes": "{\n \"id\": \"09042-c\",\n \"traits\": \"\",\n \"permanent\": false,\n \"weakness\": false\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 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,
"CardID": 848000,
"SidewaysCard": false,
"CustomDeck": {
"8480": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1829048801001665853/B6505FEB706A5E9F2C181C30EA48A606D2B950A5/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1814412497119682452/BD224FCE1980DBA38E5A687FABFD146AA1A30D0E/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "-- Customizable Cards: The Raven Quill\r\n-- by Chr1Z\r\ninformation = {\r\n version = \"1.7\",\r\n last_updated = \"12.10.2022\"\r\n}\r\n\r\n-- Color information for buttons and input boxes\r\nboxSize = 37\r\ninputFontsize = 38\r\n\r\n-- static values\r\nx_1 = -0.935\r\nx_offset = 0.0705\r\ny_visible = 0.25\r\ny_invisible = -0.5\r\n\r\n-- z-values (lines on the sheet)\r\nposZ = {\r\n -0.72,\r\n -0.52,\r\n -0.305,\r\n -0.105,\r\n 0.1,\r\n 0.4,\r\n 0.695\r\n}\r\n\r\n-- box setup (amount of boxes per line and amount of marked boxes in that line)\r\nexistingBoxes = { 1, 1, 2, 2, 2, 3, 4 }\r\n\r\ninputBoxes = { 1, 1 }\r\ninputWidth = { 425, 775 }\r\ninputPos = { { 0.5, 0.25, -0.905 }, { 0.125, 0.25, 0 } }\r\n\r\n-- override 'marked boxes' for debugging ('all' or 'none')\r\nmarkDEBUG = \"\"\r\n\r\n-- save state when going into bags / decks\r\nfunction onDestroy() self.script_state = onSave() end\r\n\r\nfunction onSave() return JSON.encode({ markedBoxes, inputValues }) end\r\n\r\n-- Startup procedure\r\nfunction onLoad(saved_data)\r\n if saved_data ~= \"\" and markDEBUG == \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n markedBoxes = loaded_data[1]\r\n inputValues = loaded_data[2]\r\n else\r\n markedBoxes = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }\r\n inputValues = { \"\", \"\", \"\", \"\", \"\" }\r\n end\r\n\r\n makeData()\r\n createButtonsAndBoxes()\r\n\r\n self.addContextMenuItem(\"Reset Inputs\", function() updateState() end)\r\n self.addContextMenuItem(\"Scale: normal\", function() self.setScale({ 1, 1, 1 }) end)\r\n self.addContextMenuItem(\"Scale: double\", function() self.setScale({ 2, 1, 2 }) end)\r\n self.addContextMenuItem(\"Scale: triple\", function() self.setScale({ 3, 1, 3 }) end)\r\nend\r\n\r\nfunction updateState(markedBoxesNew)\r\n if markedBoxesNew then markedBoxes = markedBoxesNew end\r\n makeData()\r\n createButtonsAndBoxes()\r\nend\r\n\r\n-- create Data\r\nfunction makeData()\r\n Data = {}\r\n Data.checkbox = {}\r\n Data.textbox = {}\r\n\r\n -- repeat this for each entry (= line) in existingBoxes\r\n local totalCount = 0\r\n for i = 1, #existingBoxes do\r\n -- repeat this for each checkbox per line\r\n for j = 1, existingBoxes[i] do\r\n totalCount = totalCount + 1\r\n Data.checkbox[totalCount] = {}\r\n Data.checkbox[totalCount].pos = {}\r\n Data.checkbox[totalCount].pos.x = x_1 + j * x_offset\r\n Data.checkbox[totalCount].pos.z = posZ[i]\r\n Data.checkbox[totalCount].row = i\r\n\r\n if (markDEBUG == \"all\") or (markedBoxes[i] >= j and markDEBUG ~= \"none\") then\r\n Data.checkbox[totalCount].pos.y = y_visible\r\n Data.checkbox[totalCount].state = true\r\n else\r\n Data.checkbox[totalCount].pos.y = y_invisible\r\n Data.checkbox[totalCount].state = false\r\n end\r\n end\r\n end\r\n\r\n -- repeat this for each entry (= line) in inputBoxes\r\n local totalCount = 0\r\n for i = 1, #inputBoxes do\r\n -- repeat this for each textbox per line\r\n for j = 1, inputBoxes[i] do\r\n totalCount = totalCount + 1\r\n Data.textbox[totalCount] = {}\r\n Data.textbox[totalCount].pos = inputPos[totalCount]\r\n Data.textbox[totalCount].width = inputWidth[totalCount]\r\n Data.textbox[totalCount].value = inputValues[totalCount]\r\n end\r\n end\r\nend\r\n\r\n-- checks or unchecks the given box\r\nfunction click_checkbox(tableIndex)\r\n local row = Data.checkbox[tableIndex].row\r\n\r\n if Data.checkbox[tableIndex].state == true then\r\n Data.checkbox[tableIndex].pos.y = y_invisible\r\n Data.checkbox[tableIndex].state = false\r\n\r\n markedBoxes[row] = markedBoxes[row] - 1\r\n else\r\n Data.checkbox[tableIndex].pos.y = y_visible\r\n Data.checkbox[tableIndex].state = true\r\n\r\n markedBoxes[row] = markedBoxes[row] + 1\r\n end\r\n\r\n self.editButton({\r\n index = tableIndex - 1,\r\n position = Data.checkbox[tableIndex].pos\r\n })\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 inputValues[i] = value\r\n end\r\nend\r\n\r\nfunction createButtonsAndBoxes()\r\n self.clearButtons()\r\n self.clearInputs()\r\n\r\n for i, box_data in ipairs(Data.checkbox) do\r\n local funcName = \"checkbox\" .. i\r\n local func = function() click_checkbox(i) end\r\n self.setVar(funcName, func)\r\n\r\n self.createButton({\r\n click_function = funcName,\r\n function_owner = self,\r\n position = box_data.pos,\r\n height = boxSize,\r\n width = boxSize,\r\n font_size = box_data.size,\r\n scale = { 1, 1, 1 },\r\n color = { 0, 0, 0 },\r\n font_color = { 0, 0, 0 }\r\n })\r\n end\r\n\r\n for i, box_data in ipairs(Data.textbox) do\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 = \"Click to type\",\r\n alignment = 2,\r\n position = box_data.pos,\r\n scale = buttonScale,\r\n width = box_data.width,\r\n height = (inputFontsize * 1) + 24,\r\n font_size = inputFontsize,\r\n color = \"White\",\r\n font_color = buttonFontColor,\r\n value = box_data.value\r\n })\r\n end\r\nend\r\n",
"LuaScriptState": "[[0,0,0,0,0,0,0,0,0,0],[\"\",\"\",\"\",\"\",\"\"]]",
"XmlUI": ""
},
{
"GUID": "1c17e1",
"Name": "CardCustom",
"Transform": {
"posX": -42.7118,
"posY": 1.26345634,
"posZ": 69.509,
"rotX": 0.0208094921,
"rotY": 269.9969,
"rotZ": 0.0167701636,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Hunter's Armor Upgrade Sheet",
"Description": "",
"GMNotes": "{\n \"id\": \"09021-c\",\n \"traits\": \"\",\n \"permanent\": false,\n \"weakness\": false\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 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,
"CardID": 846400,
"SidewaysCard": false,
"CustomDeck": {
"8464": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1829048801001644550/5928FAE339AFD5204EE2F03C2AD68F8F29599810/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1814412497119682452/BD224FCE1980DBA38E5A687FABFD146AA1A30D0E/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "-- Customizable Cards: Hunter's Armor\r\n-- by Chr1Z\r\ninformation = {\r\n version = \"1.7\",\r\n last_updated = \"12.10.2022\"\r\n}\r\n\r\n-- Color information for buttons\r\nboxSize = 40\r\n\r\n-- static values\r\nx_1 = -0.933\r\nx_offset = 0.075\r\ny_visible = 0.25\r\ny_invisible = -0.5\r\n\r\n-- z-values (lines on the sheet)\r\nposZ = {\r\n -0.892,\r\n -0.560,\r\n -0.220,\r\n -0.092,\r\n 0.047,\r\n 0.376,\r\n 0.820\r\n}\r\n\r\n-- box setup (amount of boxes per line and amount of marked boxes in that line)\r\nexistingBoxes = { 1, 2, 2, 2, 2, 3, 3 }\r\n\r\ninputBoxes = {}\r\n\r\n-- override 'marked boxes' for debugging ('all' or 'none')\r\nmarkDEBUG = \"\"\r\n\r\n-- save state when going into bags / decks\r\nfunction onDestroy() self.script_state = onSave() end\r\n\r\nfunction onSave() return JSON.encode({ markedBoxes, inputValues }) end\r\n\r\n-- Startup procedure\r\nfunction onLoad(saved_data)\r\n if saved_data ~= \"\" and markDEBUG == \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n markedBoxes = loaded_data[1]\r\n inputValues = loaded_data[2]\r\n else\r\n markedBoxes = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }\r\n inputValues = { \"\", \"\", \"\", \"\", \"\" }\r\n end\r\n\r\n makeData()\r\n createButtonsAndBoxes()\r\n\r\n self.addContextMenuItem(\"Reset Inputs\", function() updateState() end)\r\n self.addContextMenuItem(\"Scale: normal\", function() self.setScale({ 1, 1, 1 }) end)\r\n self.addContextMenuItem(\"Scale: double\", function() self.setScale({ 2, 1, 2 }) end)\r\n self.addContextMenuItem(\"Scale: triple\", function() self.setScale({ 3, 1, 3 }) end)\r\nend\r\n\r\nfunction updateState(markedBoxesNew)\r\n if markedBoxesNew then markedBoxes = markedBoxesNew end\r\n makeData()\r\n createButtonsAndBoxes()\r\nend\r\n\r\n-- create Data\r\nfunction makeData()\r\n Data = {}\r\n Data.checkbox = {}\r\n Data.textbox = {}\r\n\r\n -- repeat this for each entry (= line) in existingBoxes\r\n local totalCount = 0\r\n for i = 1, #existingBoxes do\r\n -- repeat this for each checkbox per line\r\n for j = 1, existingBoxes[i] do\r\n totalCount = totalCount + 1\r\n Data.checkbox[totalCount] = {}\r\n Data.checkbox[totalCount].pos = {}\r\n Data.checkbox[totalCount].pos.x = x_1 + j * x_offset\r\n Data.checkbox[totalCount].pos.z = posZ[i]\r\n Data.checkbox[totalCount].row = i\r\n\r\n if (markDEBUG == \"all\") or (markedBoxes[i] >= j and markDEBUG ~= \"none\") then\r\n Data.checkbox[totalCount].pos.y = y_visible\r\n Data.checkbox[totalCount].state = true\r\n else\r\n Data.checkbox[totalCount].pos.y = y_invisible\r\n Data.checkbox[totalCount].state = false\r\n end\r\n end\r\n end\r\n\r\n -- repeat this for each entry (= line) in inputBoxes\r\n local totalCount = 0\r\n for i = 1, #inputBoxes do\r\n -- repeat this for each textbox per line\r\n for j = 1, inputBoxes[i] do\r\n totalCount = totalCount + 1\r\n Data.textbox[totalCount] = {}\r\n Data.textbox[totalCount].pos = inputPos[totalCount]\r\n Data.textbox[totalCount].width = inputWidth[totalCount]\r\n Data.textbox[totalCount].value = inputValues[totalCount]\r\n end\r\n end\r\nend\r\n\r\n-- checks or unchecks the given box\r\nfunction click_checkbox(tableIndex)\r\n local row = Data.checkbox[tableIndex].row\r\n\r\n if Data.checkbox[tableIndex].state == true then\r\n Data.checkbox[tableIndex].pos.y = y_invisible\r\n Data.checkbox[tableIndex].state = false\r\n\r\n markedBoxes[row] = markedBoxes[row] - 1\r\n else\r\n Data.checkbox[tableIndex].pos.y = y_visible\r\n Data.checkbox[tableIndex].state = true\r\n\r\n markedBoxes[row] = markedBoxes[row] + 1\r\n end\r\n\r\n self.editButton({\r\n index = tableIndex - 1,\r\n position = Data.checkbox[tableIndex].pos\r\n })\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 inputValues[i] = value\r\n end\r\nend\r\n\r\nfunction createButtonsAndBoxes()\r\n self.clearButtons()\r\n self.clearInputs()\r\n\r\n for i, box_data in ipairs(Data.checkbox) do\r\n local funcName = \"checkbox\" .. i\r\n local func = function() click_checkbox(i) end\r\n self.setVar(funcName, func)\r\n\r\n self.createButton({\r\n click_function = funcName,\r\n function_owner = self,\r\n position = box_data.pos,\r\n height = boxSize,\r\n width = boxSize,\r\n font_size = box_data.size,\r\n scale = { 1, 1, 1 },\r\n color = { 0, 0, 0 },\r\n font_color = { 0, 0, 0 }\r\n })\r\n end\r\n\r\n for i, box_data in ipairs(Data.textbox) do\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 = \"Click to type\",\r\n alignment = 2,\r\n position = box_data.pos,\r\n scale = buttonScale,\r\n width = box_data.width,\r\n height = (inputFontsize * 1) + 24,\r\n font_size = inputFontsize,\r\n color = \"White\",\r\n font_color = buttonFontColor,\r\n value = box_data.value\r\n })\r\n end\r\nend\r\n",
"LuaScriptState": "[[0,0,0,0,0,0,0,0,0,0],[\"\",\"\",\"\",\"\",\"\"]]",
"XmlUI": ""
},
{
"GUID": "2de3ee",
"Name": "CardCustom",
"Transform": {
"posX": -42.7118,
"posY": 1.26210976,
"posZ": 64.909,
"rotX": 0.0208092574,
"rotY": 269.9978,
"rotZ": 0.016770348,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Living Link Upgrade Sheet",
"Description": "",
"GMNotes": "{\n \"id\": \"09079-c\",\n \"traits\": \"\",\n \"permanent\": false,\n \"weakness\": false\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 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,
"CardID": 847300,
"SidewaysCard": false,
"CustomDeck": {
"8473": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1829048801001650323/4356445C44C1DEECFE3F70986569B6149E87FBB7/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1814412497119682452/BD224FCE1980DBA38E5A687FABFD146AA1A30D0E/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "-- Customizable Cards: Living Ink\r\n-- by Chr1Z\r\ninformation = {\r\n version = \"1.7\",\r\n last_updated = \"12.10.2022\"\r\n}\r\n\r\n-- Color information for buttons\r\nboxSize = 40\r\n\r\n-- static values\r\nx_1 = -0.935\r\nx_offset = 0.075\r\ny_visible = 0.25\r\ny_invisible = -0.5\r\n\r\n-- z-values (lines on the sheet)\r\nposZ = {\r\n -0.69,\r\n -0.355,\r\n 0.0855,\r\n 0.425,\r\n 0.555,\r\n 0.685,\r\n 1.02\r\n}\r\n\r\n-- box setup (amount of boxes per line and amount of marked boxes in that line)\r\nexistingBoxes = { 1, 1, 2, 2, 3, 3, 3 }\r\n\r\ninputBoxes = {}\r\n\r\n-- override 'marked boxes' for debugging ('all' or 'none')\r\nmarkDEBUG = \"\"\r\n\r\n-- save state when going into bags / decks\r\nfunction onDestroy() self.script_state = onSave() end\r\n\r\nfunction onSave() return JSON.encode({ markedBoxes, inputValues }) end\r\n\r\n-- Startup procedure\r\nfunction onLoad(saved_data)\r\n if saved_data ~= \"\" and markDEBUG == \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n markedBoxes = loaded_data[1]\r\n inputValues = loaded_data[2]\r\n else\r\n markedBoxes = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }\r\n inputValues = { \"\", \"\", \"\", \"\", \"\" }\r\n end\r\n\r\n makeData()\r\n createButtonsAndBoxes()\r\n\r\n self.addContextMenuItem(\"Reset Inputs\", function() updateState() end)\r\n self.addContextMenuItem(\"Scale: normal\", function() self.setScale({ 1, 1, 1 }) end)\r\n self.addContextMenuItem(\"Scale: double\", function() self.setScale({ 2, 1, 2 }) end)\r\n self.addContextMenuItem(\"Scale: triple\", function() self.setScale({ 3, 1, 3 }) end)\r\nend\r\n\r\nfunction updateState(markedBoxesNew)\r\n if markedBoxesNew then markedBoxes = markedBoxesNew end\r\n makeData()\r\n createButtonsAndBoxes()\r\nend\r\n\r\n-- create Data\r\nfunction makeData()\r\n Data = {}\r\n Data.checkbox = {}\r\n Data.textbox = {}\r\n\r\n -- repeat this for each entry (= line) in existingBoxes\r\n local totalCount = 0\r\n for i = 1, #existingBoxes do\r\n -- repeat this for each checkbox per line\r\n for j = 1, existingBoxes[i] do\r\n totalCount = totalCount + 1\r\n Data.checkbox[totalCount] = {}\r\n Data.checkbox[totalCount].pos = {}\r\n Data.checkbox[totalCount].pos.x = x_1 + j * x_offset\r\n Data.checkbox[totalCount].pos.z = posZ[i]\r\n Data.checkbox[totalCount].row = i\r\n\r\n if (markDEBUG == \"all\") or (markedBoxes[i] >= j and markDEBUG ~= \"none\") then\r\n Data.checkbox[totalCount].pos.y = y_visible\r\n Data.checkbox[totalCount].state = true\r\n else\r\n Data.checkbox[totalCount].pos.y = y_invisible\r\n Data.checkbox[totalCount].state = false\r\n end\r\n end\r\n end\r\n\r\n -- repeat this for each entry (= line) in inputBoxes\r\n local totalCount = 0\r\n for i = 1, #inputBoxes do\r\n -- repeat this for each textbox per line\r\n for j = 1, inputBoxes[i] do\r\n totalCount = totalCount + 1\r\n Data.textbox[totalCount] = {}\r\n Data.textbox[totalCount].pos = inputPos[totalCount]\r\n Data.textbox[totalCount].width = inputWidth[totalCount]\r\n Data.textbox[totalCount].value = inputValues[totalCount]\r\n end\r\n end\r\nend\r\n\r\n-- checks or unchecks the given box\r\nfunction click_checkbox(tableIndex)\r\n local row = Data.checkbox[tableIndex].row\r\n\r\n if Data.checkbox[tableIndex].state == true then\r\n Data.checkbox[tableIndex].pos.y = y_invisible\r\n Data.checkbox[tableIndex].state = false\r\n\r\n markedBoxes[row] = markedBoxes[row] - 1\r\n else\r\n Data.checkbox[tableIndex].pos.y = y_visible\r\n Data.checkbox[tableIndex].state = true\r\n\r\n markedBoxes[row] = markedBoxes[row] + 1\r\n end\r\n\r\n self.editButton({\r\n index = tableIndex - 1,\r\n position = Data.checkbox[tableIndex].pos\r\n })\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 inputValues[i] = value\r\n end\r\nend\r\n\r\nfunction createButtonsAndBoxes()\r\n self.clearButtons()\r\n self.clearInputs()\r\n\r\n for i, box_data in ipairs(Data.checkbox) do\r\n local funcName = \"checkbox\" .. i\r\n local func = function() click_checkbox(i) end\r\n self.setVar(funcName, func)\r\n\r\n self.createButton({\r\n click_function = funcName,\r\n function_owner = self,\r\n position = box_data.pos,\r\n height = boxSize,\r\n width = boxSize,\r\n font_size = box_data.size,\r\n scale = { 1, 1, 1 },\r\n color = { 0, 0, 0 },\r\n font_color = { 0, 0, 0 }\r\n })\r\n end\r\n\r\n for i, box_data in ipairs(Data.textbox) do\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 = \"Click to type\",\r\n alignment = 2,\r\n position = box_data.pos,\r\n scale = buttonScale,\r\n width = box_data.width,\r\n height = (inputFontsize * 1) + 24,\r\n font_size = inputFontsize,\r\n color = \"White\",\r\n font_color = buttonFontColor,\r\n value = box_data.value\r\n })\r\n end\r\nend\r\n",
"LuaScriptState": "[[0,0,0,0,0,0,0,0,0,0],[\"\",\"\",\"\",\"\",\"\"]]",
"XmlUI": ""
},
{
"GUID": "390bb4",
"Name": "CardCustom",
"Transform": {
"posX": -42.7116,
"posY": 1.26547611,
"posZ": 76.409,
"rotX": 0.02080779,
"rotY": 270.0021,
"rotZ": 0.0167719573,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Friends in Low Places Upgrade Sheet",
"Description": "",
"GMNotes": "{\n \"id\": \"09060-c\",\n \"traits\": \"\",\n \"permanent\": false,\n \"weakness\": false\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 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,
"CardID": 847100,
"SidewaysCard": false,
"CustomDeck": {
"8471": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1829048801001637087/1946EC3599E69417BEBD1376023DE45C5E696FC9/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1814412497119682452/BD224FCE1980DBA38E5A687FABFD146AA1A30D0E/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "-- Customizable Cards: Friends in Low Places\r\n-- by Chr1Z\r\ninformation = {\r\n version = \"1.7\",\r\n last_updated = \"12.10.2022\"\r\n}\r\n\r\n-- Color information for buttons and input boxes\r\nboxSize = 36\r\ninputFontsize = 50\r\n\r\n-- static values\r\nx_1 = -0.935\r\nx_offset = 0.0685\r\ny_visible = 0.25\r\ny_invisible = -0.5\r\n\r\n-- z-values (lines on the sheet)\r\nposZ = {\r\n -0.725,\r\n -0.44,\r\n -0.05,\r\n 0.25,\r\n 0.545,\r\n 0.75,\r\n 0.95\r\n}\r\n\r\n-- box setup (amount of boxes per line and amount of marked boxes in that line)\r\nexistingBoxes = { 1, 2, 2, 2, 2, 3, 3 }\r\n\r\ninputBoxes = { 1, 1 }\r\ninputWidth = { 640, 290 }\r\ninputPos = { { 0.275, 0.25, -0.91 }, { 0.6295, 0.25, -0.44 } }\r\n\r\n-- override 'marked boxes' for debugging ('all' or 'none')\r\nmarkDEBUG = \"\"\r\n\r\n-- save state when going into bags / decks\r\nfunction onDestroy() self.script_state = onSave() end\r\n\r\nfunction onSave() return JSON.encode({ markedBoxes, inputValues }) end\r\n\r\n-- Startup procedure\r\nfunction onLoad(saved_data)\r\n if saved_data ~= \"\" and markDEBUG == \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n markedBoxes = loaded_data[1]\r\n inputValues = loaded_data[2]\r\n else\r\n markedBoxes = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }\r\n inputValues = { \"\", \"\", \"\", \"\", \"\" }\r\n end\r\n\r\n makeData()\r\n createButtonsAndBoxes()\r\n\r\n self.addContextMenuItem(\"Reset Inputs\", function() updateState() end)\r\n self.addContextMenuItem(\"Scale: normal\", function() self.setScale({ 1, 1, 1 }) end)\r\n self.addContextMenuItem(\"Scale: double\", function() self.setScale({ 2, 1, 2 }) end)\r\n self.addContextMenuItem(\"Scale: triple\", function() self.setScale({ 3, 1, 3 }) end)\r\nend\r\n\r\nfunction updateState(markedBoxesNew)\r\n if markedBoxesNew then markedBoxes = markedBoxesNew end\r\n makeData()\r\n createButtonsAndBoxes()\r\nend\r\n\r\n-- create Data\r\nfunction makeData()\r\n Data = {}\r\n Data.checkbox = {}\r\n Data.textbox = {}\r\n\r\n -- repeat this for each entry (= line) in existingBoxes\r\n local totalCount = 0\r\n for i = 1, #existingBoxes do\r\n -- repeat this for each checkbox per line\r\n for j = 1, existingBoxes[i] do\r\n totalCount = totalCount + 1\r\n Data.checkbox[totalCount] = {}\r\n Data.checkbox[totalCount].pos = {}\r\n Data.checkbox[totalCount].pos.x = x_1 + j * x_offset\r\n Data.checkbox[totalCount].pos.z = posZ[i]\r\n Data.checkbox[totalCount].row = i\r\n\r\n if (markDEBUG == \"all\") or (markedBoxes[i] >= j and markDEBUG ~= \"none\") then\r\n Data.checkbox[totalCount].pos.y = y_visible\r\n Data.checkbox[totalCount].state = true\r\n else\r\n Data.checkbox[totalCount].pos.y = y_invisible\r\n Data.checkbox[totalCount].state = false\r\n end\r\n end\r\n end\r\n\r\n -- repeat this for each entry (= line) in inputBoxes\r\n local totalCount = 0\r\n for i = 1, #inputBoxes do\r\n -- repeat this for each textbox per line\r\n for j = 1, inputBoxes[i] do\r\n totalCount = totalCount + 1\r\n Data.textbox[totalCount] = {}\r\n Data.textbox[totalCount].pos = inputPos[totalCount]\r\n Data.textbox[totalCount].width = inputWidth[totalCount]\r\n Data.textbox[totalCount].value = inputValues[totalCount]\r\n end\r\n end\r\nend\r\n\r\n-- checks or unchecks the given box\r\nfunction click_checkbox(tableIndex)\r\n local row = Data.checkbox[tableIndex].row\r\n\r\n if Data.checkbox[tableIndex].state == true then\r\n Data.checkbox[tableIndex].pos.y = y_invisible\r\n Data.checkbox[tableIndex].state = false\r\n\r\n markedBoxes[row] = markedBoxes[row] - 1\r\n else\r\n Data.checkbox[tableIndex].pos.y = y_visible\r\n Data.checkbox[tableIndex].state = true\r\n\r\n markedBoxes[row] = markedBoxes[row] + 1\r\n end\r\n\r\n self.editButton({\r\n index = tableIndex - 1,\r\n position = Data.checkbox[tableIndex].pos\r\n })\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 inputValues[i] = value\r\n end\r\nend\r\n\r\nfunction createButtonsAndBoxes()\r\n self.clearButtons()\r\n self.clearInputs()\r\n\r\n for i, box_data in ipairs(Data.checkbox) do\r\n local funcName = \"checkbox\" .. i\r\n local func = function() click_checkbox(i) end\r\n self.setVar(funcName, func)\r\n\r\n self.createButton({\r\n click_function = funcName,\r\n function_owner = self,\r\n position = box_data.pos,\r\n height = boxSize,\r\n width = boxSize,\r\n font_size = box_data.size,\r\n scale = { 1, 1, 1 },\r\n color = { 0, 0, 0 },\r\n font_color = { 0, 0, 0 }\r\n })\r\n end\r\n\r\n for i, box_data in ipairs(Data.textbox) do\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 = \"Click to type\",\r\n alignment = 2,\r\n position = box_data.pos,\r\n scale = buttonScale,\r\n width = box_data.width,\r\n height = (inputFontsize * 1) + 24,\r\n font_size = inputFontsize,\r\n color = \"White\",\r\n font_color = buttonFontColor,\r\n value = box_data.value\r\n })\r\n end\r\nend\r\n",
"LuaScriptState": "[[0,0,0,0,0,0,0,0,0,0],[\"\",\"\",\"\",\"\",\"\"]]",
"XmlUI": ""
},
{
"GUID": "486fe7",
"Name": "CardCustom",
"Transform": {
"posX": -42.7118,
"posY": 1.26009,
"posZ": 58.0087,
"rotX": 0.0208080839,
"rotY": 270.0019,
"rotZ": 0.01677195,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Power Word Upgrade Sheet",
"Description": "",
"GMNotes": "{\n \"id\": \"09081-c\",\n \"traits\": \"\",\n \"permanent\": false,\n \"weakness\": false\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 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,
"CardID": 847500,
"SidewaysCard": false,
"CustomDeck": {
"8475": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1829048801001657918/0FE90FDD749B634CA350D339CDF347C37D0F2938/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1814412497119682452/BD224FCE1980DBA38E5A687FABFD146AA1A30D0E/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "-- Customizable Cards: Power Word\r\n-- by Chr1Z\r\ninformation = {\r\n version = \"1.7\",\r\n last_updated = \"12.10.2022\"\r\n}\r\n\r\n-- Color information for buttons\r\nboxSize = 38\r\n\r\n-- static values\r\nx_1 = -0.933\r\nx_offset = 0.069\r\ny_visible = 0.25\r\ny_invisible = -0.5\r\n\r\n-- z-values (lines on the sheet)\r\nposZ = {\r\n -0.905,\r\n -0.6,\r\n -0.32,\r\n -0.02,\r\n 0.28,\r\n 0.48,\r\n 0.775,\r\n 0.975\r\n}\r\n\r\n-- box setup (amount of boxes per line and amount of marked boxes in that line)\r\nexistingBoxes = { 1, 1, 1, 1, 2, 3, 3, 3 }\r\n\r\ninputBoxes = {}\r\n\r\n-- override 'marked boxes' for debugging ('all' or 'none')\r\nmarkDEBUG = \"\"\r\n\r\n-- save state when going into bags / decks\r\nfunction onDestroy() self.script_state = onSave() end\r\n\r\nfunction onSave() return JSON.encode({ markedBoxes, inputValues }) end\r\n\r\n-- Startup procedure\r\nfunction onLoad(saved_data)\r\n if saved_data ~= \"\" and markDEBUG == \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n markedBoxes = loaded_data[1]\r\n inputValues = loaded_data[2]\r\n else\r\n markedBoxes = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }\r\n inputValues = { \"\", \"\", \"\", \"\", \"\" }\r\n end\r\n\r\n makeData()\r\n createButtonsAndBoxes()\r\n\r\n self.addContextMenuItem(\"Reset Inputs\", function() updateState() end)\r\n self.addContextMenuItem(\"Scale: normal\", function() self.setScale({ 1, 1, 1 }) end)\r\n self.addContextMenuItem(\"Scale: double\", function() self.setScale({ 2, 1, 2 }) end)\r\n self.addContextMenuItem(\"Scale: triple\", function() self.setScale({ 3, 1, 3 }) end)\r\nend\r\n\r\nfunction updateState(markedBoxesNew)\r\n if markedBoxesNew then markedBoxes = markedBoxesNew end\r\n makeData()\r\n createButtonsAndBoxes()\r\nend\r\n\r\n-- create Data\r\nfunction makeData()\r\n Data = {}\r\n Data.checkbox = {}\r\n Data.textbox = {}\r\n\r\n -- repeat this for each entry (= line) in existingBoxes\r\n local totalCount = 0\r\n for i = 1, #existingBoxes do\r\n -- repeat this for each checkbox per line\r\n for j = 1, existingBoxes[i] do\r\n totalCount = totalCount + 1\r\n Data.checkbox[totalCount] = {}\r\n Data.checkbox[totalCount].pos = {}\r\n Data.checkbox[totalCount].pos.x = x_1 + j * x_offset\r\n Data.checkbox[totalCount].pos.z = posZ[i]\r\n Data.checkbox[totalCount].row = i\r\n\r\n if (markDEBUG == \"all\") or (markedBoxes[i] >= j and markDEBUG ~= \"none\") then\r\n Data.checkbox[totalCount].pos.y = y_visible\r\n Data.checkbox[totalCount].state = true\r\n else\r\n Data.checkbox[totalCount].pos.y = y_invisible\r\n Data.checkbox[totalCount].state = false\r\n end\r\n end\r\n end\r\n\r\n -- repeat this for each entry (= line) in inputBoxes\r\n local totalCount = 0\r\n for i = 1, #inputBoxes do\r\n -- repeat this for each textbox per line\r\n for j = 1, inputBoxes[i] do\r\n totalCount = totalCount + 1\r\n Data.textbox[totalCount] = {}\r\n Data.textbox[totalCount].pos = inputPos[totalCount]\r\n Data.textbox[totalCount].width = inputWidth[totalCount]\r\n Data.textbox[totalCount].value = inputValues[totalCount]\r\n end\r\n end\r\nend\r\n\r\n-- checks or unchecks the given box\r\nfunction click_checkbox(tableIndex)\r\n local row = Data.checkbox[tableIndex].row\r\n\r\n if Data.checkbox[tableIndex].state == true then\r\n Data.checkbox[tableIndex].pos.y = y_invisible\r\n Data.checkbox[tableIndex].state = false\r\n\r\n markedBoxes[row] = markedBoxes[row] - 1\r\n else\r\n Data.checkbox[tableIndex].pos.y = y_visible\r\n Data.checkbox[tableIndex].state = true\r\n\r\n markedBoxes[row] = markedBoxes[row] + 1\r\n end\r\n\r\n self.editButton({\r\n index = tableIndex - 1,\r\n position = Data.checkbox[tableIndex].pos\r\n })\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 inputValues[i] = value\r\n end\r\nend\r\n\r\nfunction createButtonsAndBoxes()\r\n self.clearButtons()\r\n self.clearInputs()\r\n\r\n for i, box_data in ipairs(Data.checkbox) do\r\n local funcName = \"checkbox\" .. i\r\n local func = function() click_checkbox(i) end\r\n self.setVar(funcName, func)\r\n\r\n self.createButton({\r\n click_function = funcName,\r\n function_owner = self,\r\n position = box_data.pos,\r\n height = boxSize,\r\n width = boxSize,\r\n font_size = box_data.size,\r\n scale = { 1, 1, 1 },\r\n color = { 0, 0, 0 },\r\n font_color = { 0, 0, 0 }\r\n })\r\n end\r\n\r\n for i, box_data in ipairs(Data.textbox) do\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 = \"Click to type\",\r\n alignment = 2,\r\n position = box_data.pos,\r\n scale = buttonScale,\r\n width = box_data.width,\r\n height = (inputFontsize * 1) + 24,\r\n font_size = inputFontsize,\r\n color = \"White\",\r\n font_color = buttonFontColor,\r\n value = box_data.value\r\n })\r\n end\r\nend\r\n",
"LuaScriptState": "[[0,0,0,0,0,0,0,0,0,0],[\"\",\"\",\"\",\"\",\"\"]]",
"XmlUI": ""
},
{
"GUID": "57b624",
"Name": "CardCustom",
"Transform": {
"posX": -42.7118,
"posY": 1.26412952,
"posZ": 71.809,
"rotX": 0.0208086073,
"rotY": 270.0001,
"rotZ": 0.0167713854,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Honed Instinct Upgrade Sheet",
"Description": "",
"GMNotes": "{\n \"id\": \"09061-c\",\n \"traits\": \"\",\n \"permanent\": false,\n \"weakness\": false\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 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,
"CardID": 847200,
"SidewaysCard": false,
"CustomDeck": {
"8472": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1829048801001641646/883834FFB64057188FF52146B30DC6DA36FCDF71/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1814412497119682452/BD224FCE1980DBA38E5A687FABFD146AA1A30D0E/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "-- Customizable Cards: Honed Instinct\r\n-- by Chr1Z\r\ninformation = {\r\n version = \"1.7\",\r\n last_updated = \"12.10.2022\"\r\n}\r\n\r\n-- Color information for buttons\r\nboxSize = 38\r\n\r\n-- static values\r\nx_1 = -0.935\r\nx_offset = 0.069\r\ny_visible = 0.25\r\ny_invisible = -0.5\r\n\r\n-- z-values (lines on the sheet)\r\nposZ = {\r\n -0.905,\r\n -0.705,\r\n -0.5,\r\n -0.29,\r\n -0.09,\r\n 0.12,\r\n 0.325,\r\n 0.62\r\n}\r\n\r\n-- box setup (amount of boxes per line and amount of marked boxes in that line)\r\nexistingBoxes = { 1, 1, 1, 1, 1, 2, 3, 5 }\r\n\r\ninputBoxes = {}\r\n\r\n-- override 'marked boxes' for debugging ('all' or 'none')\r\nmarkDEBUG = \"\"\r\n\r\n-- save state when going into bags / decks\r\nfunction onDestroy() self.script_state = onSave() end\r\n\r\nfunction onSave() return JSON.encode({ markedBoxes, inputValues }) end\r\n\r\n-- Startup procedure\r\nfunction onLoad(saved_data)\r\n if saved_data ~= \"\" and markDEBUG == \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n markedBoxes = loaded_data[1]\r\n inputValues = loaded_data[2]\r\n else\r\n markedBoxes = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }\r\n inputValues = { \"\", \"\", \"\", \"\", \"\" }\r\n end\r\n\r\n makeData()\r\n createButtonsAndBoxes()\r\n\r\n self.addContextMenuItem(\"Reset Inputs\", function() updateState() end)\r\n self.addContextMenuItem(\"Scale: normal\", function() self.setScale({ 1, 1, 1 }) end)\r\n self.addContextMenuItem(\"Scale: double\", function() self.setScale({ 2, 1, 2 }) end)\r\n self.addContextMenuItem(\"Scale: triple\", function() self.setScale({ 3, 1, 3 }) end)\r\nend\r\n\r\nfunction updateState(markedBoxesNew)\r\n if markedBoxesNew then markedBoxes = markedBoxesNew end\r\n makeData()\r\n createButtonsAndBoxes()\r\nend\r\n\r\n-- create Data\r\nfunction makeData()\r\n Data = {}\r\n Data.checkbox = {}\r\n Data.textbox = {}\r\n\r\n -- repeat this for each entry (= line) in existingBoxes\r\n local totalCount = 0\r\n for i = 1, #existingBoxes do\r\n -- repeat this for each checkbox per line\r\n for j = 1, existingBoxes[i] do\r\n totalCount = totalCount + 1\r\n Data.checkbox[totalCount] = {}\r\n Data.checkbox[totalCount].pos = {}\r\n Data.checkbox[totalCount].pos.x = x_1 + j * x_offset\r\n Data.checkbox[totalCount].pos.z = posZ[i]\r\n Data.checkbox[totalCount].row = i\r\n\r\n if (markDEBUG == \"all\") or (markedBoxes[i] >= j and markDEBUG ~= \"none\") then\r\n Data.checkbox[totalCount].pos.y = y_visible\r\n Data.checkbox[totalCount].state = true\r\n else\r\n Data.checkbox[totalCount].pos.y = y_invisible\r\n Data.checkbox[totalCount].state = false\r\n end\r\n end\r\n end\r\n\r\n -- repeat this for each entry (= line) in inputBoxes\r\n local totalCount = 0\r\n for i = 1, #inputBoxes do\r\n -- repeat this for each textbox per line\r\n for j = 1, inputBoxes[i] do\r\n totalCount = totalCount + 1\r\n Data.textbox[totalCount] = {}\r\n Data.textbox[totalCount].pos = inputPos[totalCount]\r\n Data.textbox[totalCount].width = inputWidth[totalCount]\r\n Data.textbox[totalCount].value = inputValues[totalCount]\r\n end\r\n end\r\nend\r\n\r\n-- checks or unchecks the given box\r\nfunction click_checkbox(tableIndex)\r\n local row = Data.checkbox[tableIndex].row\r\n\r\n if Data.checkbox[tableIndex].state == true then\r\n Data.checkbox[tableIndex].pos.y = y_invisible\r\n Data.checkbox[tableIndex].state = false\r\n\r\n markedBoxes[row] = markedBoxes[row] - 1\r\n else\r\n Data.checkbox[tableIndex].pos.y = y_visible\r\n Data.checkbox[tableIndex].state = true\r\n\r\n markedBoxes[row] = markedBoxes[row] + 1\r\n end\r\n\r\n self.editButton({\r\n index = tableIndex - 1,\r\n position = Data.checkbox[tableIndex].pos\r\n })\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 inputValues[i] = value\r\n end\r\nend\r\n\r\nfunction createButtonsAndBoxes()\r\n self.clearButtons()\r\n self.clearInputs()\r\n\r\n for i, box_data in ipairs(Data.checkbox) do\r\n local funcName = \"checkbox\" .. i\r\n local func = function() click_checkbox(i) end\r\n self.setVar(funcName, func)\r\n\r\n self.createButton({\r\n click_function = funcName,\r\n function_owner = self,\r\n position = box_data.pos,\r\n height = boxSize,\r\n width = boxSize,\r\n font_size = box_data.size,\r\n scale = { 1, 1, 1 },\r\n color = { 0, 0, 0 },\r\n font_color = { 0, 0, 0 }\r\n })\r\n end\r\n\r\n for i, box_data in ipairs(Data.textbox) do\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 = \"Click to type\",\r\n alignment = 2,\r\n position = box_data.pos,\r\n scale = buttonScale,\r\n width = box_data.width,\r\n height = (inputFontsize * 1) + 24,\r\n font_size = inputFontsize,\r\n color = \"White\",\r\n font_color = buttonFontColor,\r\n value = box_data.value\r\n })\r\n end\r\nend\r\n",
"LuaScriptState": "[[0,0,0,0,0,0,0,0,0,0],[\"\",\"\",\"\",\"\",\"\"]]",
"XmlUI": ""
},
{
"GUID": "5b59ca",
"Name": "CardCustom",
"Transform": {
"posX": -42.7118,
"posY": 1.26143646,
"posZ": 62.6088,
"rotX": 0.0208156575,
"rotY": 269.9757,
"rotZ": 0.01676233,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Makeshift Trap Upgrade Sheet",
"Description": "",
"GMNotes": "{\n \"id\": \"09100-c\",\n \"traits\": \"\",\n \"permanent\": false,\n \"weakness\": false\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 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,
"CardID": 847700,
"SidewaysCard": false,
"CustomDeck": {
"8477": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1829048801001652536/C0175E8B1C56AE41CCC96263BC7FB7D3A13B4F8F/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1814412497119682452/BD224FCE1980DBA38E5A687FABFD146AA1A30D0E/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "-- Customizable Cards: Makeshift Trap\r\n-- by Chr1Z\r\ninformation = {\r\n version = \"1.7\",\r\n last_updated = \"12.10.2022\"\r\n}\r\n\r\n-- Color information for buttons\r\nboxSize = 39\r\n\r\n-- static values\r\nx_1 = -0.935\r\nx_offset = 0.0735\r\ny_visible = 0.25\r\ny_invisible = -0.5\r\n\r\n-- z-values (lines on the sheet)\r\nposZ = {\r\n -0.889,\r\n -0.655,\r\n -0.325,\r\n -0.085,\r\n 0.252,\r\n 0.585,\r\n 0.927\r\n}\r\n\r\n-- box setup (amount of boxes per line and amount of marked boxes in that line)\r\nexistingBoxes = { 1, 1, 2, 2, 2, 3, 4 }\r\n\r\ninputBoxes = {}\r\n\r\n-- override 'marked boxes' for debugging ('all' or 'none')\r\nmarkDEBUG = \"\"\r\n\r\n-- save state when going into bags / decks\r\nfunction onDestroy() self.script_state = onSave() end\r\n\r\nfunction onSave() return JSON.encode({ markedBoxes, inputValues }) end\r\n\r\n-- Startup procedure\r\nfunction onLoad(saved_data)\r\n if saved_data ~= \"\" and markDEBUG == \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n markedBoxes = loaded_data[1]\r\n inputValues = loaded_data[2]\r\n else\r\n markedBoxes = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }\r\n inputValues = { \"\", \"\", \"\", \"\", \"\" }\r\n end\r\n\r\n makeData()\r\n createButtonsAndBoxes()\r\n\r\n self.addContextMenuItem(\"Reset Inputs\", function() updateState() end)\r\n self.addContextMenuItem(\"Scale: normal\", function() self.setScale({ 1, 1, 1 }) end)\r\n self.addContextMenuItem(\"Scale: double\", function() self.setScale({ 2, 1, 2 }) end)\r\n self.addContextMenuItem(\"Scale: triple\", function() self.setScale({ 3, 1, 3 }) end)\r\nend\r\n\r\nfunction updateState(markedBoxesNew)\r\n if markedBoxesNew then markedBoxes = markedBoxesNew end\r\n makeData()\r\n createButtonsAndBoxes()\r\nend\r\n\r\n-- create Data\r\nfunction makeData()\r\n Data = {}\r\n Data.checkbox = {}\r\n Data.textbox = {}\r\n\r\n -- repeat this for each entry (= line) in existingBoxes\r\n local totalCount = 0\r\n for i = 1, #existingBoxes do\r\n -- repeat this for each checkbox per line\r\n for j = 1, existingBoxes[i] do\r\n totalCount = totalCount + 1\r\n Data.checkbox[totalCount] = {}\r\n Data.checkbox[totalCount].pos = {}\r\n Data.checkbox[totalCount].pos.x = x_1 + j * x_offset\r\n Data.checkbox[totalCount].pos.z = posZ[i]\r\n Data.checkbox[totalCount].row = i\r\n\r\n if (markDEBUG == \"all\") or (markedBoxes[i] >= j and markDEBUG ~= \"none\") then\r\n Data.checkbox[totalCount].pos.y = y_visible\r\n Data.checkbox[totalCount].state = true\r\n else\r\n Data.checkbox[totalCount].pos.y = y_invisible\r\n Data.checkbox[totalCount].state = false\r\n end\r\n end\r\n end\r\n\r\n -- repeat this for each entry (= line) in inputBoxes\r\n local totalCount = 0\r\n for i = 1, #inputBoxes do\r\n -- repeat this for each textbox per line\r\n for j = 1, inputBoxes[i] do\r\n totalCount = totalCount + 1\r\n Data.textbox[totalCount] = {}\r\n Data.textbox[totalCount].pos = inputPos[totalCount]\r\n Data.textbox[totalCount].width = inputWidth[totalCount]\r\n Data.textbox[totalCount].value = inputValues[totalCount]\r\n end\r\n end\r\nend\r\n\r\n-- checks or unchecks the given box\r\nfunction click_checkbox(tableIndex)\r\n local row = Data.checkbox[tableIndex].row\r\n\r\n if Data.checkbox[tableIndex].state == true then\r\n Data.checkbox[tableIndex].pos.y = y_invisible\r\n Data.checkbox[tableIndex].state = false\r\n\r\n markedBoxes[row] = markedBoxes[row] - 1\r\n else\r\n Data.checkbox[tableIndex].pos.y = y_visible\r\n Data.checkbox[tableIndex].state = true\r\n\r\n markedBoxes[row] = markedBoxes[row] + 1\r\n end\r\n\r\n self.editButton({\r\n index = tableIndex - 1,\r\n position = Data.checkbox[tableIndex].pos\r\n })\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 inputValues[i] = value\r\n end\r\nend\r\n\r\nfunction createButtonsAndBoxes()\r\n self.clearButtons()\r\n self.clearInputs()\r\n\r\n for i, box_data in ipairs(Data.checkbox) do\r\n local funcName = \"checkbox\" .. i\r\n local func = function() click_checkbox(i) end\r\n self.setVar(funcName, func)\r\n\r\n self.createButton({\r\n click_function = funcName,\r\n function_owner = self,\r\n position = box_data.pos,\r\n height = boxSize,\r\n width = boxSize,\r\n font_size = box_data.size,\r\n scale = { 1, 1, 1 },\r\n color = { 0, 0, 0 },\r\n font_color = { 0, 0, 0 }\r\n })\r\n end\r\n\r\n for i, box_data in ipairs(Data.textbox) do\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 = \"Click to type\",\r\n alignment = 2,\r\n position = box_data.pos,\r\n scale = buttonScale,\r\n width = box_data.width,\r\n height = (inputFontsize * 1) + 24,\r\n font_size = inputFontsize,\r\n color = \"White\",\r\n font_color = buttonFontColor,\r\n value = box_data.value\r\n })\r\n end\r\nend\r\n",
"LuaScriptState": "[[0,0,0,0,0,0,0,0,0,0],[\"\",\"\",\"\",\"\",\"\"]]",
"XmlUI": ""
},
{
"GUID": "6a28d3",
"Name": "CardCustom",
"Transform": {
"posX": -42.7118,
"posY": 1.25874352,
"posZ": 53.4088,
"rotX": 0.0208171736,
"rotY": 269.9709,
"rotZ": 0.0167606883,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Summoned Servitor Upgrade Sheet",
"Description": "",
"GMNotes": "{\n \"id\": \"09080-c\",\n \"traits\": \"\",\n \"permanent\": false,\n \"weakness\": false\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 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,
"CardID": 847400,
"SidewaysCard": false,
"CustomDeck": {
"8474": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1829048801001663439/1504B1E5063D0E6E29B25BD4BCBF58314F28C723/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1814412497119682452/BD224FCE1980DBA38E5A687FABFD146AA1A30D0E/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "-- Customizable Cards: Summoned Servitor\r\n-- by Chr1Z\r\ninformation = {\r\n version = \"1.7\",\r\n last_updated = \"12.10.2022\"\r\n}\r\n\r\n-- Color information for buttons\r\nboxSize = 35\r\n\r\n-- static values\r\nx_1 = -0.935\r\nx_offset = 0.068\r\ny_visible = 0.25\r\ny_invisible = -0.5\r\n\r\n-- z-values (lines on the sheet)\r\nposZ = {\r\n -0.92,\r\n -0.625,\r\n -0.33,\r\n 0.055,\r\n 0.26,\r\n 0.56,\r\n 0.765,\r\n 1.06\r\n}\r\n\r\n-- box setup (amount of boxes per line and amount of marked boxes in that line)\r\nexistingBoxes = { 1, 1, 1, 1, 1, 2, 3, 5 }\r\n\r\ninputBoxes = {}\r\n\r\n-- override 'marked boxes' for debugging ('all' or 'none')\r\nmarkDEBUG = \"\"\r\n\r\n-- save state when going into bags / decks\r\nfunction onDestroy() self.script_state = onSave() end\r\n\r\nfunction onSave() return JSON.encode({ markedBoxes, inputValues }) end\r\n\r\n-- Startup procedure\r\nfunction onLoad(saved_data)\r\n if saved_data ~= \"\" and markDEBUG == \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n markedBoxes = loaded_data[1]\r\n inputValues = loaded_data[2]\r\n else\r\n markedBoxes = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }\r\n inputValues = { \"\", \"\", \"\", \"\", \"\" }\r\n end\r\n\r\n makeData()\r\n createButtonsAndBoxes()\r\n\r\n self.addContextMenuItem(\"Reset Inputs\", function() updateState() end)\r\n self.addContextMenuItem(\"Scale: normal\", function() self.setScale({ 1, 1, 1 }) end)\r\n self.addContextMenuItem(\"Scale: double\", function() self.setScale({ 2, 1, 2 }) end)\r\n self.addContextMenuItem(\"Scale: triple\", function() self.setScale({ 3, 1, 3 }) end)\r\nend\r\n\r\nfunction updateState(markedBoxesNew)\r\n if markedBoxesNew then markedBoxes = markedBoxesNew end\r\n makeData()\r\n createButtonsAndBoxes()\r\nend\r\n\r\n-- create Data\r\nfunction makeData()\r\n Data = {}\r\n Data.checkbox = {}\r\n Data.textbox = {}\r\n\r\n -- repeat this for each entry (= line) in existingBoxes\r\n local totalCount = 0\r\n for i = 1, #existingBoxes do\r\n -- repeat this for each checkbox per line\r\n for j = 1, existingBoxes[i] do\r\n totalCount = totalCount + 1\r\n Data.checkbox[totalCount] = {}\r\n Data.checkbox[totalCount].pos = {}\r\n Data.checkbox[totalCount].pos.x = x_1 + j * x_offset\r\n Data.checkbox[totalCount].pos.z = posZ[i]\r\n Data.checkbox[totalCount].row = i\r\n\r\n if (markDEBUG == \"all\") or (markedBoxes[i] >= j and markDEBUG ~= \"none\") then\r\n Data.checkbox[totalCount].pos.y = y_visible\r\n Data.checkbox[totalCount].state = true\r\n else\r\n Data.checkbox[totalCount].pos.y = y_invisible\r\n Data.checkbox[totalCount].state = false\r\n end\r\n end\r\n end\r\n\r\n -- repeat this for each entry (= line) in inputBoxes\r\n local totalCount = 0\r\n for i = 1, #inputBoxes do\r\n -- repeat this for each textbox per line\r\n for j = 1, inputBoxes[i] do\r\n totalCount = totalCount + 1\r\n Data.textbox[totalCount] = {}\r\n Data.textbox[totalCount].pos = inputPos[totalCount]\r\n Data.textbox[totalCount].width = inputWidth[totalCount]\r\n Data.textbox[totalCount].value = inputValues[totalCount]\r\n end\r\n end\r\nend\r\n\r\n-- checks or unchecks the given box\r\nfunction click_checkbox(tableIndex)\r\n local row = Data.checkbox[tableIndex].row\r\n\r\n if Data.checkbox[tableIndex].state == true then\r\n Data.checkbox[tableIndex].pos.y = y_invisible\r\n Data.checkbox[tableIndex].state = false\r\n\r\n markedBoxes[row] = markedBoxes[row] - 1\r\n else\r\n Data.checkbox[tableIndex].pos.y = y_visible\r\n Data.checkbox[tableIndex].state = true\r\n\r\n markedBoxes[row] = markedBoxes[row] + 1\r\n end\r\n\r\n self.editButton({\r\n index = tableIndex - 1,\r\n position = Data.checkbox[tableIndex].pos\r\n })\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 inputValues[i] = value\r\n end\r\nend\r\n\r\nfunction createButtonsAndBoxes()\r\n self.clearButtons()\r\n self.clearInputs()\r\n\r\n for i, box_data in ipairs(Data.checkbox) do\r\n local funcName = \"checkbox\" .. i\r\n local func = function() click_checkbox(i) end\r\n self.setVar(funcName, func)\r\n\r\n self.createButton({\r\n click_function = funcName,\r\n function_owner = self,\r\n position = box_data.pos,\r\n height = boxSize,\r\n width = boxSize,\r\n font_size = box_data.size,\r\n scale = { 1, 1, 1 },\r\n color = { 0, 0, 0 },\r\n font_color = { 0, 0, 0 }\r\n })\r\n end\r\n\r\n for i, box_data in ipairs(Data.textbox) do\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 = \"Click to type\",\r\n alignment = 2,\r\n position = box_data.pos,\r\n scale = buttonScale,\r\n width = box_data.width,\r\n height = (inputFontsize * 1) + 24,\r\n font_size = inputFontsize,\r\n color = \"White\",\r\n font_color = buttonFontColor,\r\n value = box_data.value\r\n })\r\n end\r\nend\r\n",
"LuaScriptState": "[[0,0,0,0,0,0,0,0,0,0],[\"\",\"\",\"\",\"\",\"\"]]",
"XmlUI": ""
},
{
"GUID": "6beb24",
"Name": "CardCustom",
"Transform": {
"posX": -42.7118,
"posY": 1.262783,
"posZ": 67.209,
"rotX": 0.0208087023,
"rotY": 270.0002,
"rotZ": 0.0167712457,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Hyperphysical Shotcaster Upgrade Sheet",
"Description": "",
"GMNotes": "{\n \"id\": \"09119-c\",\n \"traits\": \"\",\n \"permanent\": false,\n \"weakness\": false\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 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,
"CardID": 847900,
"SidewaysCard": false,
"CustomDeck": {
"8479": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1829048801001647291/D1741C8E39E302A3326199AF12767BBFABBFA52F/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1814412497119682452/BD224FCE1980DBA38E5A687FABFD146AA1A30D0E/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "-- Customizable Cards: Hyperphysical Shotcaster\r\n-- by Chr1Z\r\ninformation = {\r\n version = \"1.7\",\r\n last_updated = \"12.10.2022\"\r\n}\r\n\r\n-- Color information for buttons\r\nboxSize = 38\r\n\r\n-- static values\r\nx_1 = -0.935\r\nx_offset = 0.069\r\ny_visible = 0.25\r\ny_invisible = -0.5\r\n\r\n-- z-values (lines on the sheet)\r\nposZ = {\r\n -0.9,\r\n -0.615,\r\n -0.237,\r\n 0.232,\r\n 0.61,\r\n 0.988,\r\n 1.185\r\n}\r\n\r\n-- box setup (amount of boxes per line and amount of marked boxes in that line)\r\nexistingBoxes = { 2, 2, 2, 2, 2, 4, 4 }\r\n\r\ninputBoxes = {}\r\n\r\n-- override 'marked boxes' for debugging ('all' or 'none')\r\nmarkDEBUG = \"\"\r\n\r\n-- save state when going into bags / decks\r\nfunction onDestroy() self.script_state = onSave() end\r\n\r\nfunction onSave() return JSON.encode({ markedBoxes, inputValues }) end\r\n\r\n-- Startup procedure\r\nfunction onLoad(saved_data)\r\n if saved_data ~= \"\" and markDEBUG == \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n markedBoxes = loaded_data[1]\r\n inputValues = loaded_data[2]\r\n else\r\n markedBoxes = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }\r\n inputValues = { \"\", \"\", \"\", \"\", \"\" }\r\n end\r\n\r\n makeData()\r\n createButtonsAndBoxes()\r\n\r\n self.addContextMenuItem(\"Reset Inputs\", function() updateState() end)\r\n self.addContextMenuItem(\"Scale: normal\", function() self.setScale({ 1, 1, 1 }) end)\r\n self.addContextMenuItem(\"Scale: double\", function() self.setScale({ 2, 1, 2 }) end)\r\n self.addContextMenuItem(\"Scale: triple\", function() self.setScale({ 3, 1, 3 }) end)\r\nend\r\n\r\nfunction updateState(markedBoxesNew)\r\n if markedBoxesNew then markedBoxes = markedBoxesNew end\r\n makeData()\r\n createButtonsAndBoxes()\r\nend\r\n\r\n-- create Data\r\nfunction makeData()\r\n Data = {}\r\n Data.checkbox = {}\r\n Data.textbox = {}\r\n\r\n -- repeat this for each entry (= line) in existingBoxes\r\n local totalCount = 0\r\n for i = 1, #existingBoxes do\r\n -- repeat this for each checkbox per line\r\n for j = 1, existingBoxes[i] do\r\n totalCount = totalCount + 1\r\n Data.checkbox[totalCount] = {}\r\n Data.checkbox[totalCount].pos = {}\r\n Data.checkbox[totalCount].pos.x = x_1 + j * x_offset\r\n Data.checkbox[totalCount].pos.z = posZ[i]\r\n Data.checkbox[totalCount].row = i\r\n\r\n if (markDEBUG == \"all\") or (markedBoxes[i] >= j and markDEBUG ~= \"none\") then\r\n Data.checkbox[totalCount].pos.y = y_visible\r\n Data.checkbox[totalCount].state = true\r\n else\r\n Data.checkbox[totalCount].pos.y = y_invisible\r\n Data.checkbox[totalCount].state = false\r\n end\r\n end\r\n end\r\n\r\n -- repeat this for each entry (= line) in inputBoxes\r\n local totalCount = 0\r\n for i = 1, #inputBoxes do\r\n -- repeat this for each textbox per line\r\n for j = 1, inputBoxes[i] do\r\n totalCount = totalCount + 1\r\n Data.textbox[totalCount] = {}\r\n Data.textbox[totalCount].pos = inputPos[totalCount]\r\n Data.textbox[totalCount].width = inputWidth[totalCount]\r\n Data.textbox[totalCount].value = inputValues[totalCount]\r\n end\r\n end\r\nend\r\n\r\n-- checks or unchecks the given box\r\nfunction click_checkbox(tableIndex)\r\n local row = Data.checkbox[tableIndex].row\r\n\r\n if Data.checkbox[tableIndex].state == true then\r\n Data.checkbox[tableIndex].pos.y = y_invisible\r\n Data.checkbox[tableIndex].state = false\r\n\r\n markedBoxes[row] = markedBoxes[row] - 1\r\n else\r\n Data.checkbox[tableIndex].pos.y = y_visible\r\n Data.checkbox[tableIndex].state = true\r\n\r\n markedBoxes[row] = markedBoxes[row] + 1\r\n end\r\n\r\n self.editButton({\r\n index = tableIndex - 1,\r\n position = Data.checkbox[tableIndex].pos\r\n })\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 inputValues[i] = value\r\n end\r\nend\r\n\r\nfunction createButtonsAndBoxes()\r\n self.clearButtons()\r\n self.clearInputs()\r\n\r\n for i, box_data in ipairs(Data.checkbox) do\r\n local funcName = \"checkbox\" .. i\r\n local func = function() click_checkbox(i) end\r\n self.setVar(funcName, func)\r\n\r\n self.createButton({\r\n click_function = funcName,\r\n function_owner = self,\r\n position = box_data.pos,\r\n height = boxSize,\r\n width = boxSize,\r\n font_size = box_data.size,\r\n scale = { 1, 1, 1 },\r\n color = { 0, 0, 0 },\r\n font_color = { 0, 0, 0 }\r\n })\r\n end\r\n\r\n for i, box_data in ipairs(Data.textbox) do\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 = \"Click to type\",\r\n alignment = 2,\r\n position = box_data.pos,\r\n scale = buttonScale,\r\n width = box_data.width,\r\n height = (inputFontsize * 1) + 24,\r\n font_size = inputFontsize,\r\n color = \"White\",\r\n font_color = buttonFontColor,\r\n value = box_data.value\r\n })\r\n end\r\nend\r\n",
"LuaScriptState": "[[0,0,0,0,0,0,0,0,0,0],[\"\",\"\",\"\",\"\",\"\"]]",
"XmlUI": ""
},
{
"GUID": "73baa7",
"Name": "Custom_Tile",
"Transform": {
"posX": -45.114,
"posY": 1.24751055,
"posZ": 64.4923,
"rotX": 0.02082238,
"rotY": 269.9685,
"rotZ": 0.01675902,
"scaleX": 0.417316616,
"scaleY": 1.0,
"scaleZ": 0.417316616
},
"Nickname": "Intellect",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": false,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1841432290043056980/B0E9F1EE0F734BFE533FF5B3D699990F146151F2/",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "9d4ae0",
"Name": "CardCustom",
"Transform": {
"posX": -42.7118,
"posY": 1.268169,
"posZ": 85.609,
"rotX": 0.02080862,
"rotY": 270.0002,
"rotZ": 0.016771337,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Alchemical Distillation Upgrade Sheet",
"Description": "",
"GMNotes": "{\n \"id\": \"09040-c\",\n \"traits\": \"\",\n \"permanent\": false,\n \"weakness\": false\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 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,
"CardID": 846700,
"SidewaysCard": false,
"CustomDeck": {
"8467": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1829048801001675240/93B59C1A3D29C3B34A9184C0C67F485777F913CB/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1814412497119682452/BD224FCE1980DBA38E5A687FABFD146AA1A30D0E/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "-- Customizable Cards: Alchemical Distillation\r\n-- by Chr1Z\r\ninformation = {\r\n version = \"1.7\",\r\n last_updated = \"12.10.2022\"\r\n}\r\n\r\n\r\n-- Color information for buttons\r\nboxSize = 40\r\n\r\n-- static values\r\nx_1 = -0.933\r\nx_offset = 0.075\r\ny_visible = 0.25\r\ny_invisible = -0.5\r\n\r\n-- z-values (lines on the sheet)\r\nposZ = {\r\n -0.892,\r\n -0.665,\r\n -0.430,\r\n -0.092,\r\n 0.142,\r\n 0.376,\r\n 0.815\r\n}\r\n\r\n-- box setup (amount of boxes per line and amount of marked boxes in that line)\r\nexistingBoxes = { 1, 1, 1, 1, 2, 4, 5 }\r\n\r\ninputBoxes = {}\r\n\r\n-- override 'marked boxes' for debugging ('all' or 'none')\r\nmarkDEBUG = \"\"\r\n\r\n-- save state when going into bags / decks\r\nfunction onDestroy() self.script_state = onSave() end\r\n\r\nfunction onSave() return JSON.encode({ markedBoxes, inputValues }) end\r\n\r\n-- Startup procedure\r\nfunction onLoad(saved_data)\r\n if saved_data ~= \"\" and markDEBUG == \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n markedBoxes = loaded_data[1]\r\n inputValues = loaded_data[2]\r\n else\r\n markedBoxes = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }\r\n inputValues = { \"\", \"\", \"\", \"\", \"\" }\r\n end\r\n\r\n makeData()\r\n createButtonsAndBoxes()\r\n\r\n self.addContextMenuItem(\"Reset Inputs\", function() updateState() end)\r\n self.addContextMenuItem(\"Scale: normal\", function() self.setScale({ 1, 1, 1 }) end)\r\n self.addContextMenuItem(\"Scale: double\", function() self.setScale({ 2, 1, 2 }) end)\r\n self.addContextMenuItem(\"Scale: triple\", function() self.setScale({ 3, 1, 3 }) end)\r\nend\r\n\r\nfunction updateState(markedBoxesNew)\r\n if markedBoxesNew then markedBoxes = markedBoxesNew end\r\n makeData()\r\n createButtonsAndBoxes()\r\nend\r\n\r\n-- create Data\r\nfunction makeData()\r\n Data = {}\r\n Data.checkbox = {}\r\n Data.textbox = {}\r\n\r\n -- repeat this for each entry (= line) in existingBoxes\r\n local totalCount = 0\r\n for i = 1, #existingBoxes do\r\n -- repeat this for each checkbox per line\r\n for j = 1, existingBoxes[i] do\r\n totalCount = totalCount + 1\r\n Data.checkbox[totalCount] = {}\r\n Data.checkbox[totalCount].pos = {}\r\n Data.checkbox[totalCount].pos.x = x_1 + j * x_offset\r\n Data.checkbox[totalCount].pos.z = posZ[i]\r\n Data.checkbox[totalCount].row = i\r\n\r\n if (markDEBUG == \"all\") or (markedBoxes[i] >= j and markDEBUG ~= \"none\") then\r\n Data.checkbox[totalCount].pos.y = y_visible\r\n Data.checkbox[totalCount].state = true\r\n else\r\n Data.checkbox[totalCount].pos.y = y_invisible\r\n Data.checkbox[totalCount].state = false\r\n end\r\n end\r\n end\r\n\r\n -- repeat this for each entry (= line) in inputBoxes\r\n local totalCount = 0\r\n for i = 1, #inputBoxes do\r\n -- repeat this for each textbox per line\r\n for j = 1, inputBoxes[i] do\r\n totalCount = totalCount + 1\r\n Data.textbox[totalCount] = {}\r\n Data.textbox[totalCount].pos = inputPos[totalCount]\r\n Data.textbox[totalCount].width = inputWidth[totalCount]\r\n Data.textbox[totalCount].value = inputValues[totalCount]\r\n end\r\n end\r\nend\r\n\r\n-- checks or unchecks the given box\r\nfunction click_checkbox(tableIndex)\r\n local row = Data.checkbox[tableIndex].row\r\n\r\n if Data.checkbox[tableIndex].state == true then\r\n Data.checkbox[tableIndex].pos.y = y_invisible\r\n Data.checkbox[tableIndex].state = false\r\n\r\n markedBoxes[row] = markedBoxes[row] - 1\r\n else\r\n Data.checkbox[tableIndex].pos.y = y_visible\r\n Data.checkbox[tableIndex].state = true\r\n\r\n markedBoxes[row] = markedBoxes[row] + 1\r\n end\r\n\r\n self.editButton({\r\n index = tableIndex - 1,\r\n position = Data.checkbox[tableIndex].pos\r\n })\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 inputValues[i] = value\r\n end\r\nend\r\n\r\nfunction createButtonsAndBoxes()\r\n self.clearButtons()\r\n self.clearInputs()\r\n\r\n for i, box_data in ipairs(Data.checkbox) do\r\n local funcName = \"checkbox\" .. i\r\n local func = function() click_checkbox(i) end\r\n self.setVar(funcName, func)\r\n\r\n self.createButton({\r\n click_function = funcName,\r\n function_owner = self,\r\n position = box_data.pos,\r\n height = boxSize,\r\n width = boxSize,\r\n font_size = box_data.size,\r\n scale = { 1, 1, 1 },\r\n color = { 0, 0, 0 },\r\n font_color = { 0, 0, 0 }\r\n })\r\n end\r\n\r\n for i, box_data in ipairs(Data.textbox) do\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 = \"Click to type\",\r\n alignment = 2,\r\n position = box_data.pos,\r\n scale = buttonScale,\r\n width = box_data.width,\r\n height = (inputFontsize * 1) + 24,\r\n font_size = inputFontsize,\r\n color = \"White\",\r\n font_color = buttonFontColor,\r\n value = box_data.value\r\n })\r\n end\r\nend\r\n",
"LuaScriptState": "[[0,0,0,0,0,0,0,0,0,0],[\"\",\"\",\"\",\"\",\"\"]]",
"XmlUI": ""
},
{
"GUID": "a20bba",
"Name": "Custom_Tile",
"Transform": {
"posX": -46.0409,
"posY": 1.24717391,
"posZ": 64.4923,
"rotX": 0.0208245,
"rotY": 269.9638,
"rotZ": 0.016758332,
"scaleX": 0.417316616,
"scaleY": 1.0,
"scaleZ": 0.417316616
},
"Nickname": "Agility",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": false,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1841432290043055914/446EFDBCCAFA6DF8C12DFF9BEFE1CA8D4C9D6AA6/",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "b0bd49",
"Name": "CardCustom",
"Transform": {
"posX": -42.7118,
"posY": 1.2594167,
"posZ": 55.7088,
"rotX": 0.0208082981,
"rotY": 270.0008,
"rotZ": 0.0167716425,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Runic Axe Upgrade Sheet",
"Description": "",
"GMNotes": "{\n \"id\": \"09022-c\",\n \"traits\": \"\",\n \"permanent\": false,\n \"weakness\": false\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 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,
"CardID": 846500,
"SidewaysCard": false,
"CustomDeck": {
"8465": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1829048801001661165/2E6E5A47269C0532815EC1A5B571135EAEAB9BE2/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1814412497119682452/BD224FCE1980DBA38E5A687FABFD146AA1A30D0E/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "-- Customizable Cards: Runic Axe\r\n-- by Chr1Z\r\ninformation = {\r\n version = \"1.7\",\r\n last_updated = \"12.10.2022\"\r\n}\r\n\r\n-- Color information for buttons\r\nboxSize = 38\r\n\r\n-- static values\r\nx_1 = -0.935\r\nx_offset = 0.0705\r\ny_visible = 0.25\r\ny_invisible = -0.5\r\n\r\n-- z-values (lines on the sheet)\r\nposZ = {\r\n -0.92,\r\n -0.715,\r\n -0.415,\r\n -0.018,\r\n 0.265,\r\n 0.66,\r\n 0.86,\r\n 1.065\r\n}\r\n\r\n-- box setup (amount of boxes per line and amount of marked boxes in that line)\r\nexistingBoxes = { 1, 1, 1, 1, 1, 3, 3, 4 }\r\n\r\ninputBoxes = {}\r\n\r\n-- override 'marked boxes' for debugging ('all' or 'none')\r\nmarkDEBUG = \"\"\r\n\r\n-- save state when going into bags / decks\r\nfunction onDestroy() self.script_state = onSave() end\r\n\r\nfunction onSave() return JSON.encode({ markedBoxes, inputValues }) end\r\n\r\n-- Startup procedure\r\nfunction onLoad(saved_data)\r\n if saved_data ~= \"\" and markDEBUG == \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n markedBoxes = loaded_data[1]\r\n inputValues = loaded_data[2]\r\n else\r\n markedBoxes = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }\r\n inputValues = { \"\", \"\", \"\", \"\", \"\" }\r\n end\r\n\r\n makeData()\r\n createButtonsAndBoxes()\r\n\r\n self.addContextMenuItem(\"Reset Inputs\", function() updateState() end)\r\n self.addContextMenuItem(\"Scale: normal\", function() self.setScale({ 1, 1, 1 }) end)\r\n self.addContextMenuItem(\"Scale: double\", function() self.setScale({ 2, 1, 2 }) end)\r\n self.addContextMenuItem(\"Scale: triple\", function() self.setScale({ 3, 1, 3 }) end)\r\nend\r\n\r\nfunction updateState(markedBoxesNew)\r\n if markedBoxesNew then markedBoxes = markedBoxesNew end\r\n makeData()\r\n createButtonsAndBoxes()\r\nend\r\n\r\n-- create Data\r\nfunction makeData()\r\n Data = {}\r\n Data.checkbox = {}\r\n Data.textbox = {}\r\n\r\n -- repeat this for each entry (= line) in existingBoxes\r\n local totalCount = 0\r\n for i = 1, #existingBoxes do\r\n -- repeat this for each checkbox per line\r\n for j = 1, existingBoxes[i] do\r\n totalCount = totalCount + 1\r\n Data.checkbox[totalCount] = {}\r\n Data.checkbox[totalCount].pos = {}\r\n Data.checkbox[totalCount].pos.x = x_1 + j * x_offset\r\n Data.checkbox[totalCount].pos.z = posZ[i]\r\n Data.checkbox[totalCount].row = i\r\n\r\n if (markDEBUG == \"all\") or (markedBoxes[i] >= j and markDEBUG ~= \"none\") then\r\n Data.checkbox[totalCount].pos.y = y_visible\r\n Data.checkbox[totalCount].state = true\r\n else\r\n Data.checkbox[totalCount].pos.y = y_invisible\r\n Data.checkbox[totalCount].state = false\r\n end\r\n end\r\n end\r\n\r\n -- repeat this for each entry (= line) in inputBoxes\r\n local totalCount = 0\r\n for i = 1, #inputBoxes do\r\n -- repeat this for each textbox per line\r\n for j = 1, inputBoxes[i] do\r\n totalCount = totalCount + 1\r\n Data.textbox[totalCount] = {}\r\n Data.textbox[totalCount].pos = inputPos[totalCount]\r\n Data.textbox[totalCount].width = inputWidth[totalCount]\r\n Data.textbox[totalCount].value = inputValues[totalCount]\r\n end\r\n end\r\nend\r\n\r\n-- checks or unchecks the given box\r\nfunction click_checkbox(tableIndex)\r\n local row = Data.checkbox[tableIndex].row\r\n\r\n if Data.checkbox[tableIndex].state == true then\r\n Data.checkbox[tableIndex].pos.y = y_invisible\r\n Data.checkbox[tableIndex].state = false\r\n\r\n markedBoxes[row] = markedBoxes[row] - 1\r\n else\r\n Data.checkbox[tableIndex].pos.y = y_visible\r\n Data.checkbox[tableIndex].state = true\r\n\r\n markedBoxes[row] = markedBoxes[row] + 1\r\n end\r\n\r\n self.editButton({\r\n index = tableIndex - 1,\r\n position = Data.checkbox[tableIndex].pos\r\n })\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 inputValues[i] = value\r\n end\r\nend\r\n\r\nfunction createButtonsAndBoxes()\r\n self.clearButtons()\r\n self.clearInputs()\r\n\r\n for i, box_data in ipairs(Data.checkbox) do\r\n local funcName = \"checkbox\" .. i\r\n local func = function() click_checkbox(i) end\r\n self.setVar(funcName, func)\r\n\r\n self.createButton({\r\n click_function = funcName,\r\n function_owner = self,\r\n position = box_data.pos,\r\n height = boxSize,\r\n width = boxSize,\r\n font_size = box_data.size,\r\n scale = { 1, 1, 1 },\r\n color = { 0, 0, 0 },\r\n font_color = { 0, 0, 0 }\r\n })\r\n end\r\n\r\n for i, box_data in ipairs(Data.textbox) do\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 = \"Click to type\",\r\n alignment = 2,\r\n position = box_data.pos,\r\n scale = buttonScale,\r\n width = box_data.width,\r\n height = (inputFontsize * 1) + 24,\r\n font_size = inputFontsize,\r\n color = \"White\",\r\n font_color = buttonFontColor,\r\n value = box_data.value\r\n })\r\n end\r\nend\r\n",
"LuaScriptState": "[[0,0,0,0,0,0,0,0,0,0],[\"\",\"\",\"\",\"\",\"\"]]",
"XmlUI": ""
},
{
"GUID": "b84fe1",
"Name": "Custom_Tile",
"Transform": {
"posX": -46.0409,
"posY": 1.24744523,
"posZ": 65.4193,
"rotX": 0.0208245441,
"rotY": 269.964447,
"rotZ": 0.01675809,
"scaleX": 0.417316616,
"scaleY": 1.0,
"scaleZ": 0.417316616
},
"Nickname": "Combat",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": false,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1841432290043056422/C83635F42DF142FF94EFD23DDFD27AA113DFF064/",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "c8aa3e",
"Name": "CardCustom",
"Transform": {
"posX": -42.7118,
"posY": 1.26749575,
"posZ": 83.309,
"rotX": 0.0208083615,
"rotY": 270.0005,
"rotZ": 0.016771324,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Custom Modifications Upgrade Sheet",
"Description": "",
"GMNotes": "{\n \"id\": \"09023-c\",\n \"traits\": \"\",\n \"permanent\": false,\n \"weakness\": false\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 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,
"CardID": 846600,
"SidewaysCard": false,
"CustomDeck": {
"8466": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1829048801001629811/23FCEFC53D1F2E5A44F6E4B9467C6362459914AA/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1814412497119682452/BD224FCE1980DBA38E5A687FABFD146AA1A30D0E/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "-- Customizable Cards: Custom Modifications\r\n-- by Chr1Z\r\ninformation = {\r\n version = \"1.7\",\r\n last_updated = \"12.10.2022\"\r\n}\r\n\r\n-- Color information for buttons\r\nboxSize = 38\r\n\r\n-- static values\r\nx_1 = -0.935\r\nx_offset = 0.0735\r\ny_visible = 0.25\r\ny_invisible = -0.5\r\n\r\n-- z-values (lines on the sheet)\r\nposZ = {\r\n -0.895,\r\n -0.455,\r\n -0.215,\r\n 0.115,\r\n 0.453,\r\n 0.794\r\n}\r\n\r\n-- box setup (amount of boxes per line and amount of marked boxes in that line)\r\nexistingBoxes = { 1, 2, 2, 3, 3, 4 }\r\n\r\ninputBoxes = {}\r\n\r\n-- override 'marked boxes' for debugging ('all' or 'none')\r\nmarkDEBUG = \"\"\r\n\r\n-- save state when going into bags / decks\r\nfunction onDestroy() self.script_state = onSave() end\r\n\r\nfunction onSave() return JSON.encode({ markedBoxes, inputValues }) end\r\n\r\n-- Startup procedure\r\nfunction onLoad(saved_data)\r\n if saved_data ~= \"\" and markDEBUG == \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n markedBoxes = loaded_data[1]\r\n inputValues = loaded_data[2]\r\n else\r\n markedBoxes = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }\r\n inputValues = { \"\", \"\", \"\", \"\", \"\" }\r\n end\r\n\r\n makeData()\r\n createButtonsAndBoxes()\r\n\r\n self.addContextMenuItem(\"Reset Inputs\", function() updateState() end)\r\n self.addContextMenuItem(\"Scale: normal\", function() self.setScale({ 1, 1, 1 }) end)\r\n self.addContextMenuItem(\"Scale: double\", function() self.setScale({ 2, 1, 2 }) end)\r\n self.addContextMenuItem(\"Scale: triple\", function() self.setScale({ 3, 1, 3 }) end)\r\nend\r\n\r\nfunction updateState(markedBoxesNew)\r\n if markedBoxesNew then markedBoxes = markedBoxesNew end\r\n makeData()\r\n createButtonsAndBoxes()\r\nend\r\n\r\n-- create Data\r\nfunction makeData()\r\n Data = {}\r\n Data.checkbox = {}\r\n Data.textbox = {}\r\n\r\n -- repeat this for each entry (= line) in existingBoxes\r\n local totalCount = 0\r\n for i = 1, #existingBoxes do\r\n -- repeat this for each checkbox per line\r\n for j = 1, existingBoxes[i] do\r\n totalCount = totalCount + 1\r\n Data.checkbox[totalCount] = {}\r\n Data.checkbox[totalCount].pos = {}\r\n Data.checkbox[totalCount].pos.x = x_1 + j * x_offset\r\n Data.checkbox[totalCount].pos.z = posZ[i]\r\n Data.checkbox[totalCount].row = i\r\n\r\n if (markDEBUG == \"all\") or (markedBoxes[i] >= j and markDEBUG ~= \"none\") then\r\n Data.checkbox[totalCount].pos.y = y_visible\r\n Data.checkbox[totalCount].state = true\r\n else\r\n Data.checkbox[totalCount].pos.y = y_invisible\r\n Data.checkbox[totalCount].state = false\r\n end\r\n end\r\n end\r\n\r\n -- repeat this for each entry (= line) in inputBoxes\r\n local totalCount = 0\r\n for i = 1, #inputBoxes do\r\n -- repeat this for each textbox per line\r\n for j = 1, inputBoxes[i] do\r\n totalCount = totalCount + 1\r\n Data.textbox[totalCount] = {}\r\n Data.textbox[totalCount].pos = inputPos[totalCount]\r\n Data.textbox[totalCount].width = inputWidth[totalCount]\r\n Data.textbox[totalCount].value = inputValues[totalCount]\r\n end\r\n end\r\nend\r\n\r\n-- checks or unchecks the given box\r\nfunction click_checkbox(tableIndex)\r\n local row = Data.checkbox[tableIndex].row\r\n\r\n if Data.checkbox[tableIndex].state == true then\r\n Data.checkbox[tableIndex].pos.y = y_invisible\r\n Data.checkbox[tableIndex].state = false\r\n\r\n markedBoxes[row] = markedBoxes[row] - 1\r\n else\r\n Data.checkbox[tableIndex].pos.y = y_visible\r\n Data.checkbox[tableIndex].state = true\r\n\r\n markedBoxes[row] = markedBoxes[row] + 1\r\n end\r\n\r\n self.editButton({\r\n index = tableIndex - 1,\r\n position = Data.checkbox[tableIndex].pos\r\n })\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 inputValues[i] = value\r\n end\r\nend\r\n\r\nfunction createButtonsAndBoxes()\r\n self.clearButtons()\r\n self.clearInputs()\r\n\r\n for i, box_data in ipairs(Data.checkbox) do\r\n local funcName = \"checkbox\" .. i\r\n local func = function() click_checkbox(i) end\r\n self.setVar(funcName, func)\r\n\r\n self.createButton({\r\n click_function = funcName,\r\n function_owner = self,\r\n position = box_data.pos,\r\n height = boxSize,\r\n width = boxSize,\r\n font_size = box_data.size,\r\n scale = { 1, 1, 1 },\r\n color = { 0, 0, 0 },\r\n font_color = { 0, 0, 0 }\r\n })\r\n end\r\n\r\n for i, box_data in ipairs(Data.textbox) do\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 = \"Click to type\",\r\n alignment = 2,\r\n position = box_data.pos,\r\n scale = buttonScale,\r\n width = box_data.width,\r\n height = (inputFontsize * 1) + 24,\r\n font_size = inputFontsize,\r\n color = \"White\",\r\n font_color = buttonFontColor,\r\n value = box_data.value\r\n })\r\n end\r\nend\r\n",
"LuaScriptState": "[[0,0,0,0,0,0,0,0,0,0],[\"\",\"\",\"\",\"\",\"\"]]",
"XmlUI": ""
},
{
"GUID": "d187dd",
"Name": "CardCustom",
"Transform": {
"posX": -45.839,
"posY": 1.25760818,
"posZ": 53.41,
"rotX": 0.0208084844,
"rotY": 270.0004,
"rotZ": 0.0167709738,
"scaleX": 0.6,
"scaleY": 1.0,
"scaleZ": 0.6
},
"Nickname": "Summoned Servitor",
"Description": "",
"GMNotes": "{\n \"id\": \"09080-m\",\n \"type\": \"Minicard\",\n \"traits\": \"\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"player_card",
"PlayerCard",
"SC_memory_object"
],
"LayoutGroupSortIndex": 0,
"Value": 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,
"CardID": 803600,
"SidewaysCard": false,
"CustomDeck": {
"8036": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1933751217706145663/52AB04A39EC93A7F5EB6EB83F55071BFFCC85FAE/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1924744375825905078/AE93F97210BEF54AFA8F50166565A19225AF8ADB/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "d4a11a",
"Name": "CardCustom",
"Transform": {
"posX": -42.7118,
"posY": 1.26614916,
"posZ": 78.709,
"rotX": 0.02080853,
"rotY": 270.0004,
"rotZ": 0.016771378,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Empirical Hypothesis Upgrade Sheet",
"Description": "",
"GMNotes": "{\n \"id\": \"09041-c\",\n \"traits\": \"\",\n \"permanent\": false,\n \"weakness\": false\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 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,
"CardID": 846800,
"SidewaysCard": false,
"CustomDeck": {
"8468": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1829048801001678003/AE285518E8833C6E5B3239A8B2ABF49D021F01FC/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1814412497119682452/BD224FCE1980DBA38E5A687FABFD146AA1A30D0E/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "-- Customizable Cards: Empirical Hypothesis\r\n-- by Chr1Z\r\ninformation = {\r\n version = \"1.7\",\r\n last_updated = \"12.10.2022\"\r\n}\r\n\r\n-- Color information for buttons\r\nboxSize = 37\r\n\r\n-- static values\r\nx_1 = -0.935\r\nx_offset = 0.069\r\ny_visible = 0.25\r\ny_invisible = -0.5\r\n\r\n-- z-values (lines on the sheet)\r\nposZ = {\r\n -0.905,\r\n -0.7,\r\n -0.505,\r\n -0.3,\r\n -0.09,\r\n 0.3,\r\n 0.592,\r\n 0.888\r\n}\r\n\r\n-- box setup (amount of boxes per line and amount of marked boxes in that line)\r\nexistingBoxes = { 1, 1, 1, 1, 2, 2, 3, 4 }\r\n\r\ninputBoxes = {}\r\n\r\n-- override 'marked boxes' for debugging ('all' or 'none')\r\nmarkDEBUG = \"\"\r\n\r\n-- save state when going into bags / decks\r\nfunction onDestroy() self.script_state = onSave() end\r\n\r\nfunction onSave() return JSON.encode({ markedBoxes, inputValues }) end\r\n\r\n-- Startup procedure\r\nfunction onLoad(saved_data)\r\n if saved_data ~= \"\" and markDEBUG == \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n markedBoxes = loaded_data[1]\r\n inputValues = loaded_data[2]\r\n else\r\n markedBoxes = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }\r\n inputValues = { \"\", \"\", \"\", \"\", \"\" }\r\n end\r\n\r\n makeData()\r\n createButtonsAndBoxes()\r\n\r\n self.addContextMenuItem(\"Reset Inputs\", function() updateState() end)\r\n self.addContextMenuItem(\"Scale: normal\", function() self.setScale({ 1, 1, 1 }) end)\r\n self.addContextMenuItem(\"Scale: double\", function() self.setScale({ 2, 1, 2 }) end)\r\n self.addContextMenuItem(\"Scale: triple\", function() self.setScale({ 3, 1, 3 }) end)\r\nend\r\n\r\nfunction updateState(markedBoxesNew)\r\n if markedBoxesNew then markedBoxes = markedBoxesNew end\r\n makeData()\r\n createButtonsAndBoxes()\r\nend\r\n\r\n-- create Data\r\nfunction makeData()\r\n Data = {}\r\n Data.checkbox = {}\r\n Data.textbox = {}\r\n\r\n -- repeat this for each entry (= line) in existingBoxes\r\n local totalCount = 0\r\n for i = 1, #existingBoxes do\r\n -- repeat this for each checkbox per line\r\n for j = 1, existingBoxes[i] do\r\n totalCount = totalCount + 1\r\n Data.checkbox[totalCount] = {}\r\n Data.checkbox[totalCount].pos = {}\r\n Data.checkbox[totalCount].pos.x = x_1 + j * x_offset\r\n Data.checkbox[totalCount].pos.z = posZ[i]\r\n Data.checkbox[totalCount].row = i\r\n\r\n if (markDEBUG == \"all\") or (markedBoxes[i] >= j and markDEBUG ~= \"none\") then\r\n Data.checkbox[totalCount].pos.y = y_visible\r\n Data.checkbox[totalCount].state = true\r\n else\r\n Data.checkbox[totalCount].pos.y = y_invisible\r\n Data.checkbox[totalCount].state = false\r\n end\r\n end\r\n end\r\n\r\n -- repeat this for each entry (= line) in inputBoxes\r\n local totalCount = 0\r\n for i = 1, #inputBoxes do\r\n -- repeat this for each textbox per line\r\n for j = 1, inputBoxes[i] do\r\n totalCount = totalCount + 1\r\n Data.textbox[totalCount] = {}\r\n Data.textbox[totalCount].pos = inputPos[totalCount]\r\n Data.textbox[totalCount].width = inputWidth[totalCount]\r\n Data.textbox[totalCount].value = inputValues[totalCount]\r\n end\r\n end\r\nend\r\n\r\n-- checks or unchecks the given box\r\nfunction click_checkbox(tableIndex)\r\n local row = Data.checkbox[tableIndex].row\r\n\r\n if Data.checkbox[tableIndex].state == true then\r\n Data.checkbox[tableIndex].pos.y = y_invisible\r\n Data.checkbox[tableIndex].state = false\r\n\r\n markedBoxes[row] = markedBoxes[row] - 1\r\n else\r\n Data.checkbox[tableIndex].pos.y = y_visible\r\n Data.checkbox[tableIndex].state = true\r\n\r\n markedBoxes[row] = markedBoxes[row] + 1\r\n end\r\n\r\n self.editButton({\r\n index = tableIndex - 1,\r\n position = Data.checkbox[tableIndex].pos\r\n })\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 inputValues[i] = value\r\n end\r\nend\r\n\r\nfunction createButtonsAndBoxes()\r\n self.clearButtons()\r\n self.clearInputs()\r\n\r\n for i, box_data in ipairs(Data.checkbox) do\r\n local funcName = \"checkbox\" .. i\r\n local func = function() click_checkbox(i) end\r\n self.setVar(funcName, func)\r\n\r\n self.createButton({\r\n click_function = funcName,\r\n function_owner = self,\r\n position = box_data.pos,\r\n height = boxSize,\r\n width = boxSize,\r\n font_size = box_data.size,\r\n scale = { 1, 1, 1 },\r\n color = { 0, 0, 0 },\r\n font_color = { 0, 0, 0 }\r\n })\r\n end\r\n\r\n for i, box_data in ipairs(Data.textbox) do\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 = \"Click to type\",\r\n alignment = 2,\r\n position = box_data.pos,\r\n scale = buttonScale,\r\n width = box_data.width,\r\n height = (inputFontsize * 1) + 24,\r\n font_size = inputFontsize,\r\n color = \"White\",\r\n font_color = buttonFontColor,\r\n value = box_data.value\r\n })\r\n end\r\nend\r\n",
"LuaScriptState": "[[0,0,0,0,0,0,0,0,0,0],[\"\",\"\",\"\",\"\",\"\"]]",
"XmlUI": ""
}
]
},
{
"GUID": "a28140",
"Name": "Custom_Tile",
"Transform": {
"posX": -60.54737,
"posY": 1.28511357,
"posZ": -63.94222,
"rotX": 0.0208166968,
"rotY": 269.972168,
"rotZ": 0.01676106,
"scaleX": 6.59,
"scaleY": 1.0,
"scaleZ": 6.586387
},
"Nickname": "ArkhamDB Deck Importer",
"Description": "v5.2",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "-- Generated by EmmyLua (https://github.com/EmmyLua)\r\n-- Created by Whimsical.\r\n-- DateTime: 2021-08-19 6:38 a.m.\r\n-- updated by Chr1Z (2022-10-11)\r\n\r\n---@type ArkhamImportConfiguration\r\n\r\nlocal INPUT_FIELD_HEIGHT = 340\r\nlocal INPUT_FIELD_WIDTH = 1500\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\n\r\nlocal UPGRADED_TOGGLE_LABELS = {}\r\nUPGRADED_TOGGLE_LABELS[true] = \"Upgraded\"\r\nUPGRADED_TOGGLE_LABELS[false] = \"Specific\"\r\n\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\n\r\nlocal privateDeck = true\r\nlocal loadNewestDeck = true\r\nlocal loadInvestigators = false\r\n\r\nlocal bondedList = { }\r\nlocal customizationRowsWithFields = { }\r\n-- inputMap maps from (our 1-indexes) customization row index to inputValue table index\r\n-- The Raven Quill\r\ncustomizationRowsWithFields[\"09042\"] = { }\r\ncustomizationRowsWithFields[\"09042\"].inputCount = 2\r\ncustomizationRowsWithFields[\"09042\"].inputMap = { }\r\ncustomizationRowsWithFields[\"09042\"].inputMap[1] = 1\r\ncustomizationRowsWithFields[\"09042\"].inputMap[5] = 2\r\n-- Friends in Low Places\r\ncustomizationRowsWithFields[\"09060\"] = { }\r\ncustomizationRowsWithFields[\"09060\"].inputCount = 2\r\ncustomizationRowsWithFields[\"09060\"].inputMap = { }\r\ncustomizationRowsWithFields[\"09060\"].inputMap[1] = 1\r\ncustomizationRowsWithFields[\"09060\"].inputMap[3] = 2\r\n-- Living Ink\r\ncustomizationRowsWithFields[\"09079\"] = { }\r\ncustomizationRowsWithFields[\"09079\"].inputCount = 3\r\ncustomizationRowsWithFields[\"09079\"].inputMap = { }\r\ncustomizationRowsWithFields[\"09079\"].inputMap[1] = 1\r\ncustomizationRowsWithFields[\"09079\"].inputMap[5] = 2\r\ncustomizationRowsWithFields[\"09079\"].inputMap[6] = 3\r\n-- Grizzled\r\ncustomizationRowsWithFields[\"09101\"] = { }\r\ncustomizationRowsWithFields[\"09101\"].inputCount = 3\r\ncustomizationRowsWithFields[\"09101\"].inputMap = { }\r\ncustomizationRowsWithFields[\"09101\"].inputMap[1] = 1\r\ncustomizationRowsWithFields[\"09101\"].inputMap[2] = 2\r\ncustomizationRowsWithFields[\"09101\"].inputMap[3] = 3\r\n\r\n-- Returns a table with the full state of the UI, including options and deck IDs.\r\n-- This can be used to persist via onSave(), or provide values for a load 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 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 end\r\n\r\n makeOptionToggles()\r\n makeDeckIdFields()\r\n makeBuildButton()\r\nend\r\n\r\nfunction makeOptionToggles()\r\n -- common parameters\r\n local checkbox_parameters = {}\r\n checkbox_parameters.function_owner = self\r\n checkbox_parameters.width = INPUT_FIELD_WIDTH\r\n checkbox_parameters.height = INPUT_FIELD_HEIGHT\r\n checkbox_parameters.scale = { 0.1, 0.1, 0.1 }\r\n checkbox_parameters.font_size = 240\r\n checkbox_parameters.hover_color = { 0.4, 0.6, 0.8 }\r\n checkbox_parameters.color = FIELD_COLOR\r\n\r\n -- public / private deck\r\n checkbox_parameters.click_function = \"publicPrivateChanged\"\r\n checkbox_parameters.position = { 0.25, 0.1, -0.102 }\r\n checkbox_parameters.tooltip = \"Published or private deck?\\n\\nPLEASE 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 self.createButton(checkbox_parameters)\r\n\r\n -- load upgraded?\r\n checkbox_parameters.click_function = \"loadUpgradedChanged\"\r\n checkbox_parameters.position = { 0.25, 0.1, -0.01 }\r\n checkbox_parameters.tooltip = \"Load newest upgrade or exact deck?\"\r\n checkbox_parameters.label = UPGRADED_TOGGLE_LABELS[loadNewestDeck]\r\n self.createButton(checkbox_parameters)\r\n\r\n -- load investigators?\r\n checkbox_parameters.click_function = \"loadInvestigatorsChanged\"\r\n checkbox_parameters.position = { 0.25, 0.1, 0.081 }\r\n checkbox_parameters.tooltip = \"Spawn investigator cards?\"\r\n checkbox_parameters.label = LOAD_INVESTIGATOR_TOGGLE_LABELS[loadInvestigators]\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 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 handlers for deck ID change\r\nfunction redDeckChanged(_, _, inputValue) redDeckId = inputValue end\r\n\r\nfunction orangeDeckChanged(_, _, inputValue) orangeDeckId = inputValue end\r\n\r\nfunction whiteDeckChanged(_, _, inputValue) whiteDeckId = inputValue end\r\n\r\nfunction greenDeckChanged(_, _, inputValue) greenDeckId = inputValue end\r\n\r\n-- Event handlers for toggle buttons\r\nfunction publicPrivateChanged()\r\n privateDeck = not privateDeck\r\n self.editButton { index = 0, label = PRIVATE_TOGGLE_LABELS[privateDeck] }\r\nend\r\n\r\nfunction loadUpgradedChanged()\r\n loadNewestDeck = not loadNewestDeck\r\n self.editButton { index = 1, label = UPGRADED_TOGGLE_LABELS[loadNewestDeck] }\r\nend\r\n\r\nfunction loadInvestigatorsChanged()\r\n loadInvestigators = not loadInvestigators\r\n self.editButton { index = 2, label = LOAD_INVESTIGATOR_TOGGLE_LABELS[loadInvestigators] }\r\nend\r\n\r\nfunction loadDecks()\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\r\n-- Sets up and returns coordinates for all possible spawn zones. Because Lua assigns tables by reference\r\n-- and there is no built-in function to copy a 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-- Investigator: Investigator card area.\r\n-- Minicard: Placement for the investigator's minicard, just above the player mat\r\n-- Deck, Discard: Standard locations for the deck and discard piles.\r\n-- BlankTop: used for assets that start in play (e.g. Duke)\r\n-- Tarot, Hand1, Hand2, Ally, BlankBottom, Accessory, Arcane1, Arcane2, Body: Asset slot positions\r\n-- Threat[1-4]: Threat area slots. Threat[1-3] correspond to the named threat area slots, and Threat4 is the blank threat area slot.\r\n-- SetAside[1-3]: Column closest to the player mat, with 1 at the top and 3 at the bottom.\r\n-- SetAside[4-6]: Column farther away from the mat, with 4 at the top and 6 at the bottom.\r\n-- SetAside1: Permanent cards\r\n-- SetAside2: Bonded cards\r\n-- SetAside3: Ancestral Knowledge / Underworld Market\r\n-- SetAside4: Upgrade sheets for customizable cards\r\n-- SetAside5: Hunch Deck for Joe Diamond\r\n-- SetAside6: currently unused\r\n\r\nlocal playerMatGuids = {}\r\nplayerMatGuids[\"Red\"] = \"0840d5\"\r\nplayerMatGuids[\"Orange\"] = \"bd0ff4\"\r\nplayerMatGuids[\"White\"] = \"8b081b\"\r\nplayerMatGuids[\"Green\"] = \"383d8b\"\r\n\r\ncommonZones = {}\r\ncommonZones[\"Investigator\"] = { -1.17702, 0, 0.00209 }\r\ncommonZones[\"Minicard\"] = { -0.4668214, 0, -1.222326 }\r\ncommonZones[\"Deck\"] = { -1.822724, 0, -0.02940192 }\r\ncommonZones[\"Discard\"] = { -1.822451, 0, 0.6092291 }\r\ncommonZones[\"Ally\"] = { -0.6157398, 0, 0.02435675 }\r\ncommonZones[\"Body\"] = { -0.6306521, 0, 0.553170 }\r\ncommonZones[\"Hand1\"] = { 0.2155387, 0, 0.04257287 }\r\ncommonZones[\"Hand2\"] = { -0.1803701, 0, 0.03745948 }\r\ncommonZones[\"Arcane1\"] = { 0.2124223, 0, 0.5596902 }\r\ncommonZones[\"Arcane2\"] = { -0.1711275, 0, 0.5567944 }\r\ncommonZones[\"Tarot\"] = { 0.6016169, 0, 0.03273106 }\r\ncommonZones[\"Accessory\"] = { 0.6049907, 0, 0.5546234 }\r\ncommonZones[\"BlankTop\"] = { 1.758446, 0, 0.03965336 }\r\ncommonZones[\"BlankBottom\"] = { 1.754469, 0, 0.5634764 }\r\ncommonZones[\"Threat1\"] = { -0.9116555, 0, -0.6446251 }\r\ncommonZones[\"Threat2\"] = { -0.4544126, 0, -0.6428719 }\r\ncommonZones[\"Threat3\"] = { 0.002246313, 0, -0.6430681 }\r\ncommonZones[\"Threat4\"] = { 0.4590618, 0, -0.6432732 }\r\n\r\nZones = {}\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.345893, 0, -0.520315 }\r\nZones[\"White\"][\"SetAside2\"] = { 2.345893, 0, 0.042552 }\r\nZones[\"White\"][\"SetAside3\"] = { 2.345893, 0, 0.605419 }\r\nZones[\"White\"][\"UnderSetAside3\"] = { 2.495893, 0, 0.805419 }\r\nZones[\"White\"][\"SetAside4\"] = { 2.775893, 0, -0.520315 }\r\nZones[\"White\"][\"SetAside5\"] = { 2.775893, 0, 0.042552 }\r\nZones[\"White\"][\"SetAside6\"] = { 2.775893, 0, 0.605419 }\r\nZones[\"White\"][\"UnderSetAside6\"] = { 2.925893, 0, 0.805419 }\r\n\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.350362, 0, -0.520315 }\r\nZones[\"Orange\"][\"SetAside2\"] = { -2.350362, 0, 0.042552 }\r\nZones[\"Orange\"][\"SetAside3\"] = { -2.350362, 0, 0.605419 }\r\nZones[\"Orange\"][\"UnderSetAside3\"] = { -2.500362, 0, 0.80419 }\r\nZones[\"Orange\"][\"SetAside4\"] = { -2.7803627, 0, -0.520315 }\r\nZones[\"Orange\"][\"SetAside5\"] = { -2.7803627, 0, 0.042552 }\r\nZones[\"Orange\"][\"SetAside6\"] = { -2.7803627, 0, 0.605419 }\r\nZones[\"Orange\"][\"UnderSetAside6\"] = { -2.9303627, 0, 0.80419 }\r\n\r\n-- Green positions are the same as White and Red the same as Orange\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 its metadata.\r\n---@param cardMetadata: Table of card metadata. Metadata fields type and permanent are required; all others are optional.\r\n---@return: Zone name such as \"Deck\", \"SetAside1\", etc. See Zones object 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 bondedList[cardMetadata.id] then\r\n return \"SetAside2\"\r\n -- SetAside3 is used for Ancestral Knowledge / Underworld Market\r\n -- SetAside4 is used for upgrade sheets\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 for (e.g. \"Red\")\r\n---@param zoneName: Name of the zone to get the position for. See Zones object documentation for a list of valid zones.\r\n---@return: Global position table, or nil if an invalid player color or zone 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 metadata.\r\n---@param playerColor: Color name of the player mat to get the rotation for (e.g. \"Red\")\r\n---@param cardMetadata: Table of card metadata. Metadata fields type and 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\nlocal tags = { configuration = \"import_configuration_provider\" }\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\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() return JSON.encode(getUiState()) end\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 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 -- get upgrades for customizable cards\r\n local meta = deck.meta\r\n local customizations = {}\r\n if meta then customizations = JSON.decode(deck.meta) end\r\n\r\n loadCards(slots, deck.investigator_code, playerColor, commandManager,\r\n configuration, results.configuration, customizations)\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 weakness provided by the all cards bag\r\n---@param slots: The slot list for cards in this deck. Table key is the cardId, 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. 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\nend\r\n\r\n-- If investigator cards should be loaded, add both the 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, 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\r\n local alternateNum = tonumber(deckMeta.alternate_front)\r\n if alternateNum >= 01501 and alternateNum <= 01506 then\r\n investigatorId = investigatorId .. \"-r\"\r\n else\r\n investigatorId = investigatorId .. \"-pf\"\r\n end\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 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, 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 -- We need to know which cards are bonded to determine their position, remember them\r\n bondedList[bond.id] = true\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 cards on its taboo list. If they're found, replace 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 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, 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 .. \" is not available. Using standard version\",\r\n 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 load. Spawn those cards at the appropriate zones\r\n-- and report an error to the user if any could not be loaded.\r\n-- This method uses an encapsulated coroutine with yields to make the card spawning cleaner.\r\n--\r\n---@param slots: Key-Value table of cardId:count. cardId is the ArkhamDB ID of 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 on (e.g. \"Red\")\r\n---@param configuration: Loader configuration object\r\n---@param customizations: ArkhamDB data for customizations on customizable cards\r\nfunction loadCards(slots, investigatorId, playerColor, commandManager, configuration, command_config, customizations)\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\r\n -- upgrade sheets for customizable cards\r\n local upgradesheet = allCardsBag.call(\"getCardById\", { id = cardId .. \"-c\" })\r\n if upgradesheet ~= nil then\r\n\r\n -- update metadata for spawned upgrade sheets\r\n local upgrades = customizations[\"cus_\" .. cardId]\r\n\r\n if upgrades ~= nil then\r\n -- initialize tables\r\n -- markedBoxes: contains the amount of markedBoxes (left to right) per row (starting at row 1)\r\n -- inputValues: contains the amount of inputValues per row (starting at row 0)\r\n local markedBoxes = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }\r\n local inputValues = {}\r\n local index_xp = {}\r\n\r\n -- get the index and xp values (looks like this: X|X,X|X, ..)\r\n for str in string.gmatch(customizations[\"cus_\" .. cardId], \"([^,]+)\") do\r\n table.insert(index_xp, str)\r\n end\r\n\r\n -- split each pair and assign it to the proper position in markedBoxes\r\n if (customizationRowsWithFields[cardId] ~= nil) then\r\n for i = 1, customizationRowsWithFields[cardId].inputCount do\r\n table.insert(inputValues, \"\")\r\n end\r\n end\r\n local inputCount = 0\r\n for _, entry in ipairs(index_xp) do\r\n local counter = 0\r\n local index = 0\r\n\r\n -- if found number is 0, then only get inputvalue\r\n for str in string.gmatch(entry, \"([^|]+)\") do\r\n counter = counter + 1\r\n if counter == 1 then\r\n index = tonumber(str) + 1\r\n elseif counter == 2 then\r\n markedBoxes[index] = tonumber(str)\r\n elseif counter == 3 and str ~= \"\" then\r\n if (cardId == \"09042\") then\r\n inputValues[customizationRowsWithFields[cardId].inputMap[index]] =\r\n convertRavenQuillSelections(str)\r\n else\r\n inputValues[customizationRowsWithFields[cardId].inputMap[index]] = str\r\n end\r\n end\r\n end\r\n end\r\n\r\n -- remove first entry in markedBoxes if row 0 has textbox\r\n if customizationRowsWithFields[cardId] ~= nil\r\n and customizationRowsWithFields[cardId].inputCount > 0 then\r\n table.remove(markedBoxes, 1)\r\n end\r\n\r\n -- write the loaded values to the save_data of the sheets\r\n upgradesheet.data[\"LuaScriptState\"] = JSON.encode({ markedBoxes, inputValues })\r\n table.insert(cardsToSpawn, { data = upgradesheet.data, metadata = upgradesheet.metadata, zone = \"SetAside4\" })\r\n end\r\n end\r\n\r\n -- spawn additional minicard for 'Summoned Servitor'\r\n if cardId == \"09080\" then\r\n local servitor = allCardsBag.call(\"getCardById\", { id = \"09080-m\" })\r\n table.insert(cardsToSpawn, { data = servitor.data, metadata = servitor.metadata, zone = \"SetAside6\" })\r\n end\r\n\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 handleUnderworldMarket(cardsToSpawn, playerColor)\r\n handleHunchDeck(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 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 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 })\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 local spreadCallback = nil;\r\n if (zone == \"SetAside4\") then\r\n -- SetAside4 is reserved for customization cards, and we want them spread on the table\r\n -- so their checkboxes are visible\r\n if (playerColor == \"White\") then\r\n deckPos.z = deckPos.z + (#deck.ContainedObjects - 1)\r\n elseif (playerColor == \"Green\") then\r\n deckPos.x = deckPos.x + (#deck.ContainedObjects - 1)\r\n end\r\n spreadCallback = function(deck) deck.spread(1.0) end\r\n end\r\n spawnObjectData({\r\n data = deck,\r\n position = deckPos,\r\n rotation = Zones.getDefaultCardRotation(playerColor, zone),\r\n callback_function = spreadCallback\r\n })\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 },\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\r\n startLuaCoroutine(self, \"coinside\")\r\nend\r\n\r\n-- Conver the Raven Quill's selections from card IDs to card names. This could be more elegant\r\n-- but the inputs are very static so we're using some brute force.\r\n-- @param An ArkhamDB string indicating the customization selections for The Raven's Quill. Should\r\n-- be either a single card ID or two separated by a ^ (e.g. XXXXX^YYYYY)\r\nfunction convertRavenQuillSelections(selectionString)\r\n if (string.len(selectionString) == 5) then\r\n return getCardName(selectionString)\r\n elseif (string.len(selectionString) == 11) then\r\n return getCardName(string.sub(selectionString, 1, 5))..\", \"..getCardName(string.sub(selectionString, 7))\r\n end\r\nend\r\n\r\n-- Returns the simple name of a card given its ID. This will find the card and strip any trailing\r\n-- SCED-specific suffixes such as (Taboo) or (Level)\r\nfunction getCardName(cardId)\r\n local configuration = getConfiguration()\r\n local allCardsBag = getObjectFromGUID(configuration.card_bag_guid)\r\n local card = allCardsBag.call(\"getCardById\", { id = cardId })\r\n if (card ~= nil) then\r\n local name = card.data.Nickname\r\n if (string.find(name, \" %(\")) then\r\n return string.sub(name, 1, string.find(name, \" %(\") - 1)\r\n else\r\n return name\r\n end\r\n end\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 for customDeckId, customDeckData in pairs(cardData.CustomDeck) do\r\n if (deck.CustomDeck[customDeckId] == nil) then\r\n -- CustomDeck not added to deck yet, add it\r\n deck.CustomDeck[customDeckId] = customDeckData\r\n elseif (deck.CustomDeck[customDeckId].FaceURL == customDeckData.FaceURL) then\r\n -- CustomDeck for this card matches the current one for the deck, do nothing\r\n else\r\n -- CustomDeck data conflict\r\n local newDeckId = nil\r\n for deckId, customDeck in pairs(deck.CustomDeck) do\r\n if (customDeckData.FaceURL == customDeck.FaceURL) then\r\n newDeckId = deckId\r\n end\r\n end\r\n if (newDeckId == nil) then\r\n -- No non-conflicting custom deck for this card, add a new one\r\n newDeckId = findNextAvailableId(deck.CustomDeck, \"1000\")\r\n deck.CustomDeck[newDeckId] = customDeckData\r\n end\r\n -- Update the card with the new CustomDeck info\r\n cardData.CardID = newDeckId..string.sub(cardData.CardID, 5)\r\n cardData.CustomDeck[customDeckId] = nil\r\n cardData.CustomDeck[newDeckId] = customDeckData\r\n break\r\n end\r\n end\r\n table.insert(deck.ContainedObjects, cardData)\r\n table.insert(deck.DeckIDs, cardData.CardID)\r\nend\r\n\r\nfunction findNextAvailableId(objectTable, startId)\r\n local id = startId\r\n while (objectTable[id] ~= nil) do\r\n id = tostring(tonumber(id) + 1)\r\n end\r\n\r\n return id\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 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\r\n return deck\r\nend\r\n\r\n-- Get the PBCN (Permanent/Bonded/Customizable/Normal) value from the given metadata.\r\n---@return: 1 for Permanent, 2 for Bonded or 4 for Normal. The actual values are\r\n-- irrelevant as they provide only grouping and the order between them doesn't matter.\r\nfunction getpbcn(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\r\n-- permanent/bonded/customizable 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 pbcn1 = getpbcn(card1.metadata)\r\n local pbcn2 = getpbcn(card2.metadata)\r\n if pbcn1 ~= pbcn2 then\r\n return pbcn1 > pbcn2\r\n end\r\n if pbcn1 == 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 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 if card.metadata.startsInPlay then card.zone = \"BlankTop\" 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 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 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 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-- Check for and handle Underworld Market by moving all Illicit cards to UnderSetAside3\r\n---@param cardList: Deck list being created\r\n---@param playerColor: Color this deck is being loaded for\r\nfunction handleUnderworldMarket(cardList, playerColor)\r\n local hasMarket = false\r\n local illicitList = {}\r\n -- Process the entire list to check for Underworld Market and get all possible skills, doing both in one pass\r\n for i, card in ipairs(cardList) do\r\n if card.metadata.id == \"09077\" then\r\n -- Underworld Market found\r\n hasMarket = true\r\n card.zone = \"SetAside3\"\r\n elseif (string.find(card.metadata.traits, \"Illicit\", 1, true)\r\n and card.metadata.bonded_to == nil\r\n and not card.metadata.weakness) then\r\n table.insert(illicitList, i)\r\n end\r\n end\r\n\r\n if hasMarket then\r\n if #illicitList < 10 then\r\n debugPrint(\"Only \" .. #illicitList .. \" Illicit cards in your deck, you can't trigger Underworld Market's ability.\"\r\n , Priority.WARNING, playerColor)\r\n else\r\n -- Process cards to move them to the market 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 = #illicitList, 1, -1 do\r\n local moving = cardList[illicitList[i]]\r\n moving.zone = \"UnderSetAside3\"\r\n table.remove(cardList, illicitList[i])\r\n table.insert(cardList, moving)\r\n end\r\n\r\n if #illicitList > 10 then\r\n debugPrint(\"Moved all \" .. #illicitList .. \" Illicit cards to the Market deck, reduce it to 10\", Priority.INFO,\r\n playerColor)\r\n else\r\n debugPrint(\"Built the Market deck\", Priority.INFO, playerColor)\r\n end\r\n end\r\n end\r\nend\r\n\r\n-- If the investigator is Joe Diamond, extract all Insight events to SetAside5 to build the Hunch Deck.\r\n---@param investigatorId: ID for the deck's investigator card. Passed separately 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.\",\r\n 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,\r\n 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 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 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 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,\r\n 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\r\n",
"LuaScriptState": "{\"greenDeck\":\"\",\"investigators\":true,\"loadNewest\":true,\"orangeDeck\":\"\",\"private\":true,\"redDeck\":\"\",\"whiteDeck\":\"\"}",
"XmlUI": ""
},
{
"GUID": "03804b",
"Name": "Checker_white",
"Transform": {
"posX": 77.46441,
"posY": 1.48507714,
"posZ": 4.351721,
"rotX": 359.98996,
"rotY": 270.000275,
"rotZ": 179.984528,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Configuration",
"Description": "for DeckImporter",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "280086",
"Name": "Custom_Token",
"Transform": {
"posX": 77.1586761,
"posY": 1.2837739,
"posZ": 7.589117,
"rotX": 359.99,
"rotY": 269.999969,
"rotZ": 359.984558,
"scaleX": 0.143845782,
"scaleY": 1.0,
"scaleZ": 0.143845782
},
"Nickname": "Drawing Tool",
"Description": "Enables drawing lines between objects with Numpad 0.\n\nLong press it to only draw the lines to the hovered object.\n\nSee context menu for additional information.",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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/1850441528392677845/F9F54E5144735C7DDFFF88E5D706D0750BA08FBA/",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "-- Drawing Tool\r\n-- created by: Chr1Z\r\n-- original by: Whimsical\r\n-- description: draws lines between selected objects\r\ninformation = {\r\n version = \"1.1\",\r\n last_updated = \"10.10.2022\"\r\n}\r\n\r\n-- save \"lines\" to be able to remove them after loading\r\nfunction onSave() return JSON.encode(lines) end\r\n\r\n-- load data and add context menu\r\nfunction onload(saved_data)\r\n lines = JSON.decode(saved_data) or {}\r\n\r\n self.addContextMenuItem(\"More Information\", function()\r\n printToAll(\"------------------------------\", \"White\")\r\n printToAll(\"Drawing Tool v\" .. information[\"version\"] .. \" by Chr1Z\", \"Orange\")\r\n printToAll(\"last updated: \" .. information[\"last_updated\"], \"White\")\r\n printToAll(\"original concept by Whimsical\", \"White\")\r\n end)\r\nend\r\n\r\n-- create timer when numpad 0 is pressed\r\nfunction onScriptingButtonDown(index, player_color)\r\n if index ~= 10 then return end\r\n TimerID = Wait.time(function() draw_from(Player[player_color]) end, 1)\r\nend\r\n\r\n-- called for long press of numpad 0, draws lines from hovered object to selected objects\r\nfunction draw_from(player)\r\n local source = player.getHoverObject()\r\n if not source then return end\r\n\r\n for _, item in ipairs(player.getSelectedObjects()) do\r\n if item.getGUID() ~= source.getGUID() then\r\n if item.getGUID() > source.getGUID() then\r\n draw_with_pair(item, source)\r\n else\r\n draw_with_pair(source, item)\r\n end\r\n end\r\n end\r\n\r\n process_lines()\r\nend\r\n\r\n-- general drawing of all lines between selected objects\r\nfunction onScriptingButtonUp(index, player_color)\r\n if index ~= 10 then return end\r\n -- returns true only if there is a timer to cancel. If this is false then we've waited longer than a second.\r\n if not Wait.stop(TimerID) then return end\r\n\r\n local items = Player[player_color].getSelectedObjects()\r\n if #items < 2 then\r\n broadcastToColor(\"You must have at least two items selected (currently: \" .. #items .. \").\", player_color, \"Red\")\r\n return\r\n end\r\n\r\n table.sort(items, function(a, b) return a.getGUID() > b.getGUID() end)\r\n\r\n for f = 1, #items - 1 do\r\n for s = f + 1, #items do\r\n draw_with_pair(items[f], items[s])\r\n end\r\n end\r\n\r\n process_lines()\r\nend\r\n\r\n-- adds two objects to table of vector lines\r\nfunction draw_with_pair(first, second)\r\n local guid_first = first.getGUID()\r\n local guid_second = second.getGUID()\r\n\r\n if Global.getVectorLines() == nil then lines = {} end\r\n if not lines[guid_first] then lines[guid_first] = {} end\r\n\r\n if lines[guid_first][guid_second] then\r\n lines[guid_first][guid_second] = nil\r\n else\r\n lines[guid_first][guid_second] = { points = { first.getPosition(), second.getPosition() }, color = \"White\" }\r\n end\r\nend\r\n\r\n-- updates the global vector lines based on \"lines\"\r\nfunction process_lines()\r\n local drawing = {}\r\n\r\n for _, first in pairs(lines) do\r\n for _, data in pairs(first) do\r\n table.insert(drawing, data)\r\n end\r\n end\r\n\r\n Global.setVectorLines(drawing)\r\nend",
"LuaScriptState": "{\"e8e04b\":[]}",
"XmlUI": ""
},
{
"GUID": "b7b45b",
"Name": "Custom_Token",
"Transform": {
"posX": -10.357626,
"posY": 1.6745646,
"posZ": 17.0628529,
"rotX": 359.9201,
"rotY": 270.033356,
"rotZ": 0.01679938,
"scaleX": 0.5,
"scaleY": 1.0,
"scaleZ": 0.5
},
"Nickname": "Playmat Image Swapper",
"Description": "Allows changing of the playmat image. Provide URL to the image or leave empty for default image.\n\nSee context menu for additional information.",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.374522835,
"g": 0.374522835,
"b": 0.374522835
},
"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": "https://i.imgur.com/gs1mtXJ.png",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "-- Playmat Image Swapper\r\n-- updated by: Chr1Z\r\n-- original by: -\r\n-- description: changes the big playmats image\r\ninformation = {\r\n version = \"1.1\",\r\n last_updated = \"10.10.2022\"\r\n}\r\n\r\ndefaultURL = \"http://cloud-3.steamusercontent.com/ugc/998015670465071049/FFAE162920D67CF38045EFBD3B85AD0F916147B2/\"\r\n\r\n-- parameters for open/close button for reusing\r\nBUTTON_PARAMETERS = {}\r\nBUTTON_PARAMETERS.function_owner = self\r\nBUTTON_PARAMETERS.click_function = \"click_toggleControl\"\r\nBUTTON_PARAMETERS.height = 1500\r\nBUTTON_PARAMETERS.width = 1500\r\nBUTTON_PARAMETERS.color = { 1, 1, 1, 0 }\r\n\r\nfunction onload()\r\n controlActive = false\r\n createOpenCloseButton()\r\n\r\n self.addContextMenuItem(\"More Information\", function()\r\n printToAll(\"------------------------------\", \"White\")\r\n printToAll(\"Playmat Image Swapper v\" .. information[\"version\"] .. \" by Chr1Z\", \"Orange\")\r\n printToAll(\"last updated: \" .. information[\"last_updated\"], \"White\")\r\n printToAll(\"Original made by unknown\", \"White\")\r\n end)\r\nend\r\n\r\n-- click function for main button\r\nfunction click_toggleControl()\r\n self.clearButtons()\r\n self.clearInputs()\r\n\r\n controlActive = not controlActive\r\n createOpenCloseButton()\r\n\r\n if not controlActive then return end\r\n\r\n -- creates the label, input box and apply button\r\n self.createButton({\r\n function_owner = self,\r\n label = \"Playmat Image Swapper\",\r\n tooltip = \"\",\r\n click_function = \"none\",\r\n position = { 0, 0.15, 2.2 },\r\n height = 0,\r\n width = 0,\r\n font_size = 300,\r\n font_color = { 1, 1, 1 }\r\n })\r\n\r\n self.createInput({\r\n function_owner = self,\r\n label = \"URL\",\r\n tooltip = \"Enter URL for playmat image\",\r\n input_function = \"none\",\r\n alignment = 3,\r\n position = { 0, 0.15, 3 },\r\n height = 323,\r\n width = 4000,\r\n font_size = 300\r\n })\r\n\r\n self.createButton({\r\n function_owner = self,\r\n label = \"Apply Image\\nTo Playmat\",\r\n tooltip = \"Left-Click: Apply URL\\nRight-Click: Reset to default image\",\r\n click_function = \"click_applySurface\",\r\n position = { 0, 0.15, 4.1 },\r\n height = 460,\r\n width = 1400,\r\n font_size = 200\r\n })\r\nend\r\n\r\n-- click function for apply button\r\nfunction click_applySurface(_, _, isRightClick)\r\n if isRightClick then\r\n updateSurface(defaultURL)\r\n else\r\n updateSurface(self.getInputs()[1].value)\r\n end\r\nend\r\n\r\n-- input function for the input box\r\nfunction none() end\r\n\r\n-- main function (can be called by other objects)\r\nfunction updateSurface(newURL)\r\n local obj_surface = getObjectFromGUID(\"721ba2\")\r\n local customInfo = obj_surface.getCustomObject()\r\n\r\n if newURL ~= \"\" and newURL ~= nil and newURL ~= defaultURL then\r\n customInfo.image = newURL\r\n broadcastToAll(\"New Playmat Image Applied\", { 0.2, 0.9, 0.2 })\r\n else\r\n customInfo.image = defaultURL\r\n broadcastToAll(\"Default Playmat Image Applied\", { 0.2, 0.9, 0.2 })\r\n end\r\n\r\n obj_surface.setCustomObject(customInfo)\r\n obj_surface = obj_surface.reload()\r\nend\r\n\r\n-- creates the main button\r\nfunction createOpenCloseButton()\r\n if controlActive then\r\n BUTTON_PARAMETERS.tooltip = \"Close Playmat Panel\"\r\n else\r\n BUTTON_PARAMETERS.tooltip = \"Open Playmat Panel\"\r\n end\r\n self.createButton(BUTTON_PARAMETERS)\r\nend\r\n",
"LuaScriptState": "{\"cd\":{\"move\":false,\"scale\":false},\"tid\":[]}",
"XmlUI": ""
},
{
"GUID": "dfbb48",
"Name": "Custom_PDF",
"Transform": {
"posX": 25.30562,
"posY": 1.4426384,
"posZ": -12.3729076,
"rotX": 359.9204,
"rotY": 270.019653,
"rotZ": 0.0172181334,
"scaleX": 2.64039636,
"scaleY": 1.0,
"scaleZ": 2.64039636
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomPDF": {
"PDFUrl": "http://cloud-3.steamusercontent.com/ugc/1895477850713113098/60A5058DD7BA660434769C6E386FAFAA814FBDDE/",
"PDFPassword": "",
"PDFPage": 0,
"PDFPageOffset": 0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "b46db2",
"Name": "Custom_Model_Bag",
"Transform": {
"posX": 36.70457,
"posY": 1.42583489,
"posZ": -15.2963724,
"rotX": 359.920135,
"rotY": 270.000427,
"rotZ": 0.0168726388,
"scaleX": 2.21,
"scaleY": 0.46,
"scaleZ": 2.42
},
"Nickname": "Jumanji",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"MaterialIndex": -1,
"MeshIndex": -1,
"CustomMesh": {
"MeshURL": "https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276522891/B0F1D72796E5A43963B6EFA6B7FD870A89B139AF/",
"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\":{\"1ece3e\":{\"lock\":false,\"pos\":{\"x\":-9.2714,\"y\":1.5999,\"z\":6.5718},\"rot\":{\"x\":359.9324,\"y\":315.0023,\"z\":359.9566}},\"37fb4d\":{\"lock\":false,\"pos\":{\"x\":11.3295,\"y\":1.2754,\"z\":-17.9023},\"rot\":{\"x\":359.9831,\"y\":0.0015,\"z\":359.92}},\"3b7b53\":{\"lock\":false,\"pos\":{\"x\":11.9517,\"y\":1.2851,\"z\":17.9868},\"rot\":{\"x\":359.9831,\"y\":0.0004,\"z\":359.92}},\"61b7e9\":{\"lock\":false,\"pos\":{\"x\":-9.3098,\"y\":1.5959,\"z\":-7.1846},\"rot\":{\"x\":359.9324,\"y\":314.9627,\"z\":359.9567}},\"73b5e1\":{\"lock\":false,\"pos\":{\"x\":12.2521,\"y\":1.4656,\"z\":3.9858},\"rot\":{\"x\":359.9201,\"y\":269.9994,\"z\":0.0169}},\"847279\":{\"lock\":false,\"pos\":{\"x\":19.0419,\"y\":1.27,\"z\":0.1407},\"rot\":{\"x\":359.9831,\"y\":0.0011,\"z\":359.92}},\"8a3606\":{\"lock\":false,\"pos\":{\"x\":12.2532,\"y\":1.4609,\"z\":-12.0152},\"rot\":{\"x\":359.9201,\"y\":269.9905,\"z\":0.0169}},\"8cd599\":{\"lock\":false,\"pos\":{\"x\":14.1599,\"y\":1.523,\"z\":-29.6479},\"rot\":{\"x\":0.0799,\"y\":89.988,\"z\":359.9831}},\"90b00d\":{\"lock\":false,\"pos\":{\"x\":8.8914,\"y\":1.5,\"z\":39.8367},\"rot\":{\"x\":0,\"y\":270.012,\"z\":0}},\"c2f5ae\":{\"lock\":false,\"pos\":{\"x\":12.2631,\"y\":1.4727,\"z\":28.0227},\"rot\":{\"x\":359.9201,\"y\":269.9617,\"z\":0.0169}},\"c3633f\":{\"lock\":false,\"pos\":{\"x\":12.2512,\"y\":1.4632,\"z\":-4.0144},\"rot\":{\"x\":359.9201,\"y\":269.9982,\"z\":0.0169}},\"c5afbe\":{\"lock\":false,\"pos\":{\"x\":-0.2602,\"y\":1.6269,\"z\":-16.4254},\"rot\":{\"x\":359.9197,\"y\":269.9958,\"z\":0.0168}},\"ca53e8\":{\"lock\":false,\"pos\":{\"x\":-9.3676,\"y\":1.5974,\"z\":-2.4075},\"rot\":{\"x\":359.9317,\"y\":314.9599,\"z\":359.9565}},\"cba0aa\":{\"lock\":false,\"pos\":{\"x\":-9.4101,\"y\":1.5988,\"z\":2.1645},\"rot\":{\"x\":359.9324,\"y\":315.025,\"z\":359.9566}},\"e11d84\":{\"lock\":false,\"pos\":{\"x\":12.2537,\"y\":1.468,\"z\":11.986},\"rot\":{\"x\":359.9201,\"y\":269.9912,\"z\":0.0169}},\"eda22b\":{\"lock\":false,\"pos\":{\"x\":1.1476,\"y\":1.5712,\"z\":-29.7397},\"rot\":{\"x\":359.9201,\"y\":270.022,\"z\":0.0168}}}}",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "1ece3e",
"Name": "Custom_Model_Bag",
"Transform": {
"posX": -9.284764,
"posY": 1.5999198,
"posZ": 6.608985,
"rotX": 359.931824,
"rotY": 315.0023,
"rotZ": 359.956451,
"scaleX": 3.0,
"scaleY": 3.0,
"scaleZ": 3.0
},
"Nickname": "Easy Tokens",
"Description": "Chaos Bag",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"chaos_bag"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"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/87098596225685535/6C95EB6308A0A9E89367DD67D5C65D09EB3C06A0/",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/959719855127933035/B199A5F515A8F3ED7E06780D3723285C02ADE085/",
"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": "function filterObjectEnter(obj)\n local props = obj.getCustomObject()\n if props ~= nil and props.image ~= nil then\n obj.setName(Global.call(\"getTokenName\", { url=props.image }))\n end\n return true\nend\n\nfunction onCollisionEnter(collision_info)\n self.shuffle()\n self.shuffle()\n self.shuffle()\nend",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "c2b8a0",
"Name": "Custom_Tile",
"Transform": {
"posX": -9.648054,
"posY": 3.51679683,
"posZ": 5.99068832,
"rotX": 19.04674,
"rotY": 316.6635,
"rotZ": 104.574852,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "Skull",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/stbBxtx.png",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "ed78de",
"Name": "Custom_Tile",
"Transform": {
"posX": -9.269192,
"posY": 3.20535,
"posZ": 6.609049,
"rotX": 12.4941664,
"rotY": 313.525818,
"rotZ": 278.052979,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "-1",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/w3XbrCC.png",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "fb1afd",
"Name": "Custom_Tile",
"Transform": {
"posX": -9.240953,
"posY": 3.35709667,
"posZ": 6.54676437,
"rotX": 357.35907,
"rotY": 311.484833,
"rotZ": 98.1159,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "-1",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/w3XbrCC.png",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "9ff40c",
"Name": "Custom_Tile",
"Transform": {
"posX": -8.844037,
"posY": 4.134682,
"posZ": 7.10327244,
"rotX": 356.5487,
"rotY": 313.238525,
"rotZ": 100.982414,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "+1",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/uIx8jbY.png",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "38d73c",
"Name": "Custom_Tile",
"Transform": {
"posX": -8.993948,
"posY": 3.92807674,
"posZ": 6.98644066,
"rotX": 351.199615,
"rotY": 312.259216,
"rotZ": 279.381348,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "0",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/btEtVfd.png",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "233aa2",
"Name": "Custom_Tile",
"Transform": {
"posX": -9.98872948,
"posY": 3.42609739,
"posZ": 5.81843042,
"rotX": 312.688568,
"rotY": 297.884644,
"rotZ": 113.495277,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "Auto-fail",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/lns4fhz.png",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "b68783",
"Name": "Custom_Tile",
"Transform": {
"posX": -8.688269,
"posY": 3.38694239,
"posZ": 7.17849445,
"rotX": 13.2192163,
"rotY": 318.6215,
"rotZ": 272.9489,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "+1",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/uIx8jbY.png",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "6cda68",
"Name": "Custom_Tile",
"Transform": {
"posX": -9.62925148,
"posY": 4.34284639,
"posZ": 6.25809956,
"rotX": 14.360652,
"rotY": 309.313934,
"rotZ": 274.68045,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "-2",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/bfTg2hb.png",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "917ea4",
"Name": "Custom_Tile",
"Transform": {
"posX": -9.852047,
"posY": 3.52561879,
"posZ": 6.177215,
"rotX": 346.102539,
"rotY": 307.774231,
"rotZ": 284.198273,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "Skull",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/stbBxtx.png",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "bf610b",
"Name": "Custom_Tile",
"Transform": {
"posX": -8.998076,
"posY": 3.54716325,
"posZ": 6.85827255,
"rotX": 5.376091,
"rotY": 312.267761,
"rotZ": 99.69972,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "0",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/btEtVfd.png",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "fa43e0",
"Name": "Custom_Tile",
"Transform": {
"posX": -10.00037,
"posY": 3.45588851,
"posZ": 5.82842255,
"rotX": 358.961121,
"rotY": 315.414581,
"rotZ": 285.214569,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "Elder Thing",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/ttnspKt.png",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "9ce4ab",
"Name": "Custom_Tile",
"Transform": {
"posX": -8.853577,
"posY": 3.74371839,
"posZ": 6.87800741,
"rotX": 347.662476,
"rotY": 311.9395,
"rotZ": 98.66789,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "0",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/btEtVfd.png",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "e04757",
"Name": "Custom_Tile",
"Transform": {
"posX": -10.0788,
"posY": 3.37340331,
"posZ": 5.614058,
"rotX": 37.0151749,
"rotY": 328.891083,
"rotZ": 289.981049,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "Elder Sign",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/nEmqjmj.png",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "ddd462",
"Name": "Custom_Tile",
"Transform": {
"posX": -9.900279,
"posY": 3.414849,
"posZ": 5.918606,
"rotX": 351.411255,
"rotY": 312.202942,
"rotZ": 284.69458,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "Skull",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/stbBxtx.png",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "611dee",
"Name": "Custom_Tile",
"Transform": {
"posX": -9.262694,
"posY": 4.05103254,
"posZ": 6.701065,
"rotX": 341.425873,
"rotY": 307.994781,
"rotZ": 279.5666,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "-1",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/w3XbrCC.png",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "b297ae",
"Name": "Custom_Tile",
"Transform": {
"posX": -9.404915,
"posY": 3.322149,
"posZ": 6.210196,
"rotX": 18.6425667,
"rotY": 312.7997,
"rotZ": 101.471191,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "-2",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/bfTg2hb.png",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "37fb4d",
"Name": "Bag",
"Transform": {
"posX": 11.3295088,
"posY": 1.27540886,
"posZ": -17.9023075,
"rotX": 359.983124,
"rotY": 0.001600072,
"rotZ": 359.920044,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Epilogue (Spoiler Alert!)",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.7019608,
"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": "0628eb",
"Name": "CardCustom",
"Transform": {
"posX": 11.4447145,
"posY": 3.55891228,
"posZ": -18.09432,
"rotX": 359.875549,
"rotY": 270.013367,
"rotZ": 0.4649503,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Traumatic Memories",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 270100,
"SidewaysCard": false,
"CustomDeck": {
"2701": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276393374/AA84C0DE58A7C46C9679957B81692A36DDCE5C2E/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933574036605747/66F5F6903F78214DDB7420F5022C9CDEC4D85464/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "e354ef",
"Name": "CardCustom",
"Transform": {
"posX": 11.6604719,
"posY": 3.55828023,
"posZ": -17.86721,
"rotX": 359.614563,
"rotY": 269.9929,
"rotZ": 359.901184,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Sarah Parrish",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 270000,
"SidewaysCard": false,
"CustomDeck": {
"2700": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276392109/3DE7BE60523E890B9275DEDBBE26E00DB878BA14/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933574036605747/66F5F6903F78214DDB7420F5022C9CDEC4D85464/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "1641f9",
"Name": "CardCustom",
"Transform": {
"posX": 11.3069916,
"posY": 3.5478344,
"posZ": -18.38749,
"rotX": 0.0536418036,
"rotY": 270.005371,
"rotZ": 1.541413,
"scaleX": 0.6,
"scaleY": 1.0,
"scaleZ": 0.6
},
"Nickname": "Alan Parrish",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 269900,
"SidewaysCard": false,
"CustomDeck": {
"2699": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276391351/727694253FC0171561FC2F152E104FF57B662CD9/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276391519/1BED9C26522A38C00B757540162FFA2038402939/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "786b5f",
"Name": "CardCustom",
"Transform": {
"posX": 11.6615229,
"posY": 3.55511713,
"posZ": -17.4303837,
"rotX": 359.465118,
"rotY": 270.012665,
"rotZ": 359.6743,
"scaleX": 0.8062451,
"scaleY": 1.0,
"scaleZ": 0.8062451
},
"Nickname": "Alan Parrish",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 269800,
"SidewaysCard": false,
"CustomDeck": {
"2698": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276390512/391874B5B0BAA4E83C1E36BBBD262B87D28A5C19/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276390713/26463446E2CDA1DA831BCDB4A6CFA8B855C2B4B1/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "3b7b53",
"Name": "Bag",
"Transform": {
"posX": 11.9517069,
"posY": 1.285109,
"posZ": 17.98681,
"rotX": 359.983124,
"rotY": 0.000351401221,
"rotZ": 359.920044,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Tokens added during campaign",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 0.6555897,
"b": 0.134145766
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"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": "6927e8",
"Name": "Custom_Tile",
"Transform": {
"posX": 20.2128353,
"posY": 2.29097652,
"posZ": -61.6996346,
"rotX": 359.920135,
"rotY": 269.9731,
"rotZ": 0.0169087127,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "Tablet",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/1plY463.png",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "a3ec6b",
"Name": "Custom_Tile",
"Transform": {
"posX": 21.2216911,
"posY": 2.45097971,
"posZ": -53.480732,
"rotX": 359.920135,
"rotY": 269.9895,
"rotZ": 0.01688731,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "Cultist",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/VzhJJaH.png",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "22fd4e",
"Name": "Custom_Tile",
"Transform": {
"posX": 32.1075859,
"posY": 2.295131,
"posZ": -61.6794434,
"rotX": 359.920135,
"rotY": 270.020752,
"rotZ": 0.0168458931,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "Elder Thing",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/ttnspKt.png",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "456b23",
"Name": "Custom_Tile",
"Transform": {
"posX": 26.22042,
"posY": 2.52981615,
"posZ": -48.56926,
"rotX": 359.920135,
"rotY": 269.972961,
"rotZ": 0.01727274,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "Tablet",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/1plY463.png",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "11c2d6",
"Name": "Custom_Tile",
"Transform": {
"posX": 25.7583923,
"posY": 2.45546412,
"posZ": -57.8948975,
"rotX": 359.9258,
"rotY": 269.9732,
"rotZ": 0.0158064477,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "Tablet",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/1plY463.png",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "ba3db8",
"Name": "Custom_Tile",
"Transform": {
"posX": 33.81853,
"posY": 2.294903,
"posZ": -61.55426,
"rotX": 359.9213,
"rotY": 269.987061,
"rotZ": 0.0170962643,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "Cultist",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/VzhJJaH.png",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "adb646",
"Name": "Custom_Tile",
"Transform": {
"posX": 41.6497879,
"posY": 2.29310536,
"posZ": -76.50356,
"rotX": 359.919861,
"rotY": 270.0207,
"rotZ": 0.016051732,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "Elder Thing",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/ttnspKt.png",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "c0cbac",
"Name": "Custom_Tile",
"Transform": {
"posX": 39.85293,
"posY": 2.30089164,
"posZ": -58.7005348,
"rotX": 0.2982797,
"rotY": 269.9898,
"rotZ": 359.961639,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "Cultist",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/VzhJJaH.png",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "61b7e9",
"Name": "Custom_Model_Bag",
"Transform": {
"posX": -9.323185,
"posY": 1.5959301,
"posZ": -7.147393,
"rotX": 359.9318,
"rotY": 314.9627,
"rotZ": 359.9565,
"scaleX": 3.0,
"scaleY": 3.0,
"scaleZ": 3.0
},
"Nickname": "Expert Tokens",
"Description": "Chaos Bag",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"chaos_bag"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"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/87098596225685535/6C95EB6308A0A9E89367DD67D5C65D09EB3C06A0/",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/959719855127933035/B199A5F515A8F3ED7E06780D3723285C02ADE085/",
"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": "function filterObjectEnter(obj)\n local props = obj.getCustomObject()\n if props ~= nil and props.image ~= nil then\n obj.setName(Global.call(\"getTokenName\", { url=props.image }))\n end\n return true\nend\n\nfunction onCollisionEnter(collision_info)\n self.shuffle()\n self.shuffle()\n self.shuffle()\nend",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "4b2926",
"Name": "Custom_Tile",
"Transform": {
"posX": -8.486052,
"posY": 4.08584,
"posZ": -7.81324959,
"rotX": 2.71726179,
"rotY": 300.456665,
"rotZ": 280.501373,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "-1",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/w3XbrCC.png",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "e931eb",
"Name": "Custom_Tile",
"Transform": {
"posX": -9.104854,
"posY": 4.07867241,
"posZ": -8.442946,
"rotX": 4.62142324,
"rotY": 299.843262,
"rotZ": 101.474205,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "Skull",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/stbBxtx.png",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "e1978d",
"Name": "Custom_Tile",
"Transform": {
"posX": -8.510582,
"posY": 3.17896914,
"posZ": -7.83546734,
"rotX": 6.83447838,
"rotY": 300.615234,
"rotZ": 279.4671,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "-1",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/w3XbrCC.png",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "75dd78",
"Name": "Custom_Tile",
"Transform": {
"posX": -8.986665,
"posY": 3.99852324,
"posZ": -8.93954,
"rotX": 37.15379,
"rotY": 307.07666,
"rotZ": 284.24884,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "Elder Sign",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/nEmqjmj.png",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "21d840",
"Name": "Custom_Tile",
"Transform": {
"posX": -8.813603,
"posY": 4.085769,
"posZ": -8.825929,
"rotX": 12.7738514,
"rotY": 301.012451,
"rotZ": 281.740173,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "Elder Thing",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/ttnspKt.png",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "c94c01",
"Name": "Custom_Tile",
"Transform": {
"posX": -8.29684,
"posY": 4.440892,
"posZ": -7.76774645,
"rotX": 358.698059,
"rotY": 299.857452,
"rotZ": 100.485451,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "0",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/btEtVfd.png",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "c84b2e",
"Name": "Custom_Tile",
"Transform": {
"posX": -8.511668,
"posY": 4.72641468,
"posZ": -8.164527,
"rotX": 13.1368885,
"rotY": 302.6526,
"rotZ": 282.075256,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "-2",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/bfTg2hb.png",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "c57e80",
"Name": "Custom_Tile",
"Transform": {
"posX": -8.586244,
"posY": 4.35078669,
"posZ": -8.2549,
"rotX": 347.161926,
"rotY": 297.043182,
"rotZ": 101.813171,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "-4",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/qrgGQRD.png",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "b5770a",
"Name": "Custom_Tile",
"Transform": {
"posX": -8.66943,
"posY": 4.38778257,
"posZ": -8.221109,
"rotX": 9.399725,
"rotY": 301.826447,
"rotZ": 281.210663,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "-3",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/yfs8gHq.png",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "919b74",
"Name": "Custom_Tile",
"Transform": {
"posX": -8.571574,
"posY": 4.445349,
"posZ": -8.068329,
"rotX": 349.826538,
"rotY": 297.9772,
"rotZ": 101.098991,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "-2",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/bfTg2hb.png",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "3ca7aa",
"Name": "Custom_Tile",
"Transform": {
"posX": -8.878692,
"posY": 4.12375069,
"posZ": -8.797715,
"rotX": 313.346069,
"rotY": 286.306732,
"rotZ": 106.465309,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "Auto-fail",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/lns4fhz.png",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "692bf6",
"Name": "Custom_Tile",
"Transform": {
"posX": -8.484007,
"posY": 4.6472435,
"posZ": -7.932942,
"rotX": 350.7513,
"rotY": 298.1217,
"rotZ": 101.132759,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "-1",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/w3XbrCC.png",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "16104c",
"Name": "Custom_Tile",
"Transform": {
"posX": -8.777633,
"posY": 3.96495533,
"posZ": -8.59711552,
"rotX": 7.16396952,
"rotY": 300.265472,
"rotZ": 281.571381,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "Skull",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/stbBxtx.png",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "c8d16b",
"Name": "Custom_Tile",
"Transform": {
"posX": -8.747512,
"posY": 4.478277,
"posZ": -8.629464,
"rotX": 2.62217116,
"rotY": 299.1992,
"rotZ": 280.9328,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "Skull",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/stbBxtx.png",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "eeb452",
"Name": "Custom_Tile",
"Transform": {
"posX": -8.740025,
"posY": 4.04112434,
"posZ": -8.317427,
"rotX": 18.147,
"rotY": 302.866943,
"rotZ": 282.13913,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "-5",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/3Ym1IeG.png",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "f19391",
"Name": "Custom_Tile",
"Transform": {
"posX": -8.748243,
"posY": 4.012283,
"posZ": -8.29515,
"rotX": 357.390228,
"rotY": 298.3364,
"rotZ": 100.768166,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "-7",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/4WRD42n.png",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "73b5e1",
"Name": "Custom_Model_Bag",
"Transform": {
"posX": 12.2528048,
"posY": 1.46560121,
"posZ": 3.98559666,
"rotX": 359.920135,
"rotY": 270.008331,
"rotZ": 0.0168623049,
"scaleX": 2.21,
"scaleY": 0.46,
"scaleZ": 2.42
},
"Nickname": "2: Urban Jungle",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"MaterialIndex": -1,
"MeshIndex": -1,
"CustomMesh": {
"MeshURL": "https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276524288/CC86275EE33673DF1299D5E076781D5BE558A3E7/",
"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\":{\"06bc0a\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6314,\"z\":11.46},\"rot\":{\"x\":359.9201,\"y\":270,\"z\":180.0168}},\"0bdda4\":{\"lock\":false,\"pos\":{\"x\":-27.082,\"y\":1.6214,\"z\":7.5521},\"rot\":{\"x\":359.9554,\"y\":225.0165,\"z\":0.0684}},\"0e8921\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6292,\"z\":3.86},\"rot\":{\"x\":359.9201,\"y\":269.9998,\"z\":180.0168}},\"119802\":{\"lock\":false,\"pos\":{\"x\":-33.5158,\"y\":1.6282,\"z\":-0.0852},\"rot\":{\"x\":359.9316,\"y\":314.9854,\"z\":359.9554}},\"1a359f\":{\"lock\":false,\"pos\":{\"x\":-19.7771,\"y\":1.626,\"z\":11.5774},\"rot\":{\"x\":359.9201,\"y\":270.0225,\"z\":0.0168}},\"1a365a\":{\"lock\":false,\"pos\":{\"x\":-6.0867,\"y\":1.6221,\"z\":-5.1053},\"rot\":{\"x\":0.0329,\"y\":180.0169,\"z\":359.975}},\"1d9c9f\":{\"lock\":false,\"pos\":{\"x\":-33.6587,\"y\":1.6295,\"z\":3.8573},\"rot\":{\"x\":359.9201,\"y\":270.0126,\"z\":0.0169}},\"1e10c5\":{\"lock\":false,\"pos\":{\"x\":-3.9561,\"y\":1.5975,\"z\":-10.4414},\"rot\":{\"x\":359.9197,\"y\":270.1223,\"z\":0.0167}},\"385968\":{\"lock\":false,\"pos\":{\"x\":-26.7544,\"y\":1.6187,\"z\":-0.0781},\"rot\":{\"x\":359.9554,\"y\":225.0127,\"z\":0.0684}},\"5d6b16\":{\"lock\":false,\"pos\":{\"x\":-33.3537,\"y\":1.6256,\"z\":-7.9611},\"rot\":{\"x\":359.9316,\"y\":314.9835,\"z\":359.9554}},\"66ea1b\":{\"lock\":false,\"pos\":{\"x\":-0.799,\"y\":1.5947,\"z\":-5.0747},\"rot\":{\"x\":0.0168,\"y\":180.0164,\"z\":0.0803}},\"6edc1c\":{\"lock\":false,\"pos\":{\"x\":-36.7732,\"y\":1.6452,\"z\":-3.83},\"rot\":{\"x\":359.9201,\"y\":270.0276,\"z\":180.0168}},\"7234af\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6167,\"z\":7.5701},\"rot\":{\"x\":0.0168,\"y\":179.9996,\"z\":0.0799}},\"74f811\":{\"lock\":false,\"pos\":{\"x\":-26.6771,\"y\":1.6197,\"z\":3.727},\"rot\":{\"x\":359.9201,\"y\":270.0127,\"z\":0.0168}},\"7bf9bc\":{\"lock\":false,\"pos\":{\"x\":-30.2243,\"y\":1.6213,\"z\":-7.7},\"rot\":{\"x\":359.9832,\"y\":0.0001,\"z\":359.9201}},\"7df58f\":{\"lock\":false,\"pos\":{\"x\":1.6977,\"y\":1.5583,\"z\":14.2786},\"rot\":{\"x\":359.9552,\"y\":224.9842,\"z\":0.0687}},\"7f487d\":{\"lock\":false,\"pos\":{\"x\":-30.2242,\"y\":1.6236,\"z\":-0.03},\"rot\":{\"x\":0.0168,\"y\":180,\"z\":0.0799}},\"825e63\":{\"lock\":false,\"pos\":{\"x\":-36.7732,\"y\":1.6327,\"z\":-0.03},\"rot\":{\"x\":0.0168,\"y\":180,\"z\":0.0799}},\"934a3c\":{\"lock\":false,\"pos\":{\"x\":-3.5459,\"y\":1.5986,\"z\":-5.0294},\"rot\":{\"x\":0.0168,\"y\":180.0134,\"z\":0.0803}},\"9f40ec\":{\"lock\":false,\"pos\":{\"x\":-30.2243,\"y\":1.6383,\"z\":3.8655},\"rot\":{\"x\":359.9201,\"y\":270.0307,\"z\":180.0168}},\"a04f4c\":{\"lock\":false,\"pos\":{\"x\":-33.5377,\"y\":1.6271,\"z\":-3.8738},\"rot\":{\"x\":359.9201,\"y\":270.0127,\"z\":0.0168}},\"a07d4c\":{\"lock\":false,\"pos\":{\"x\":-30.2242,\"y\":1.6361,\"z\":-3.83},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":180.0168}},\"a5d866\":{\"lock\":false,\"pos\":{\"x\":-30.2242,\"y\":1.6338,\"z\":-11.51},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":180.0168}},\"a9fcad\":{\"lock\":false,\"pos\":{\"x\":-2.7249,\"y\":1.6208,\"z\":0.3735},\"rot\":{\"x\":0.0168,\"y\":180.0232,\"z\":0.0803}},\"cf6d22\":{\"lock\":false,\"pos\":{\"x\":-26.9195,\"y\":1.6168,\"z\":-7.4783},\"rot\":{\"x\":359.9317,\"y\":315.1266,\"z\":359.9553}},\"deb149\":{\"lock\":false,\"pos\":{\"x\":-3.9278,\"y\":1.754,\"z\":5.7572},\"rot\":{\"x\":359.9197,\"y\":269.9682,\"z\":180.0169}},\"e18c3e\":{\"lock\":false,\"pos\":{\"x\":-26.5868,\"y\":1.6151,\"z\":-11.5857},\"rot\":{\"x\":359.9201,\"y\":270.0127,\"z\":0.0168}},\"e76b3b\":{\"lock\":false,\"pos\":{\"x\":-36.7731,\"y\":1.6475,\"z\":3.8601},\"rot\":{\"x\":359.9201,\"y\":270.0002,\"z\":180.0168}},\"ec83fb\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6247,\"z\":-11.51},\"rot\":{\"x\":359.9201,\"y\":270.0005,\"z\":180.0168}},\"ed2769\":{\"lock\":false,\"pos\":{\"x\":-17.1201,\"y\":1.6529,\"z\":-7.7},\"rot\":{\"x\":359.9201,\"y\":270.0001,\"z\":180.0168}}}}",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "7df58f",
"Name": "Custom_Model_Bag",
"Transform": {
"posX": 1.69770122,
"posY": 1.55831611,
"posZ": 14.2786036,
"rotX": 359.95517,
"rotY": 224.984222,
"rotZ": 0.06868418,
"scaleX": 2.0,
"scaleY": 2.0,
"scaleZ": 2.0
},
"Nickname": "Set-aside",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "149a2a",
"Name": "Card",
"Transform": {
"posX": 1.00835347,
"posY": 1.98561525,
"posZ": -111.459229,
"rotX": 0.0208085831,
"rotY": 270.0,
"rotZ": 0.0167710837,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Sarah Whittle",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 266707,
"SidewaysCard": false,
"CustomDeck": {
"2667": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1917989596840056010/5B0C8427028ED47CF8C890DDE4F80F59FB4C7594/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "f2e772",
"Name": "Card",
"Transform": {
"posX": 14.6100721,
"posY": 2.33186579,
"posZ": -80.6301041,
"rotX": 0.0208047144,
"rotY": 270.012238,
"rotZ": 180.016769,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Howell Asylum",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 269900,
"SidewaysCard": false,
"CustomDeck": {
"2699": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870697260293375361/42ABF05AAFC7B35323CFEFAE20B1531852B2AB9E/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1870697260293375812/6C028BF736A44F40E0457AF9691D02D27953AE43/",
"NumWidth": 4,
"NumHeight": 3,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "206709",
"Name": "Card",
"Transform": {
"posX": 13.9290972,
"posY": 2.33368134,
"posZ": -74.0580139,
"rotX": 0.0208072141,
"rotY": 270.003662,
"rotZ": 180.016769,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Boorstein Clinic",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 269901,
"SidewaysCard": false,
"CustomDeck": {
"2699": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870697260293375361/42ABF05AAFC7B35323CFEFAE20B1531852B2AB9E/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1870697260293375812/6C028BF736A44F40E0457AF9691D02D27953AE43/",
"NumWidth": 4,
"NumHeight": 3,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "ebf51d",
"Name": "Card",
"Transform": {
"posX": 24.7161846,
"posY": 2.29446816,
"posZ": -96.15659,
"rotX": 0.0208059885,
"rotY": 270.0081,
"rotZ": 180.016769,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Municipal Mental Ward",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 269902,
"SidewaysCard": false,
"CustomDeck": {
"2699": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870697260293375361/42ABF05AAFC7B35323CFEFAE20B1531852B2AB9E/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1870697260293375812/6C028BF736A44F40E0457AF9691D02D27953AE43/",
"NumWidth": 4,
"NumHeight": 3,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "ed6108",
"Name": "Card",
"Transform": {
"posX": 20.5698738,
"posY": 2.63468885,
"posZ": -41.4764328,
"rotX": 4.10262632,
"rotY": 179.967316,
"rotZ": 0.0797753,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Act 2 - Reacquaintance",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 267512,
"SidewaysCard": true,
"CustomDeck": {
"2675": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276359345/390A7DBD238CE756C927999900C9455DDC27DCD5/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276360184/248A727BCF1676B1018CC139D3214F0D6A95C86D/",
"NumWidth": 5,
"NumHeight": 5,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "b8f924",
"Name": "Card",
"Transform": {
"posX": 10.8316107,
"posY": 2.41093087,
"posZ": -54.2618942,
"rotX": 359.920135,
"rotY": 269.999542,
"rotZ": 0.0168737378,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Carl Bentley",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 266706,
"SidewaysCard": false,
"CustomDeck": {
"2667": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276344034/20BECB22DF5B3C297797C14C0B303EFAE0086A5A/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "25e8c1",
"Name": "Card",
"Transform": {
"posX": 26.2614117,
"posY": 2.30066776,
"posZ": -77.1298447,
"rotX": 0.0208082069,
"rotY": 270.001526,
"rotZ": 0.0167717524,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Carnivorous Tangle",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 270009,
"SidewaysCard": false,
"CustomDeck": {
"2700": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870697260293381553/EA78EFE3D8C720AC38233C366EBFBA340266AD41/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "deb149",
"Name": "Deck",
"Transform": {
"posX": -3.927828,
"posY": 1.75400686,
"posZ": 5.757232,
"rotX": 359.919739,
"rotY": 269.96817,
"rotZ": 180.016861,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Encounter Deck",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": false,
"SidewaysCard": false,
"DeckIDs": [
271410,
271411,
271412,
271413,
271414,
271415,
271416,
271417,
271418,
271419,
271420,
271421,
271422,
271423,
266724,
266726,
266725,
271427,
271428,
267802,
267801,
267800,
269500,
269501,
269502,
269503,
269400,
269401,
267103,
267102
],
"CustomDeck": {
"2714": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276344034/20BECB22DF5B3C297797C14C0B303EFAE0086A5A/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"2667": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1917989596840056010/5B0C8427028ED47CF8C890DDE4F80F59FB4C7594/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"2678": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276367852/B71E44C2909CE3A01189155976E253C37E4D16A7/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"2695": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276386109/213CDCD24DAE39AD0BE1E8CD7B198F6FD03BE4B2/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"2694": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276385260/D801780ABB6D90127CEE6FFB9A993BA15F4BCA09/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"2671": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1917989596840066447/3FE3D0DBF2B460F8B916179046C6BE9F2195D334/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "eee0ea",
"Name": "Card",
"Transform": {
"posX": -10.1767244,
"posY": 1.73486352,
"posZ": -20.09425,
"rotX": 359.947174,
"rotY": 270.000519,
"rotZ": 180.138412,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Vindictive Officer",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 271410,
"SidewaysCard": false,
"CustomDeck": {
"2667": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276344034/20BECB22DF5B3C297797C14C0B303EFAE0086A5A/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "106514",
"Name": "Card",
"Transform": {
"posX": -10.2124853,
"posY": 1.73767173,
"posZ": -19.8327885,
"rotX": 359.952026,
"rotY": 270.001221,
"rotZ": 180.783737,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Vindictive Officer",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 271411,
"SidewaysCard": false,
"CustomDeck": {
"2667": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276344034/20BECB22DF5B3C297797C14C0B303EFAE0086A5A/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "5b502b",
"Name": "Card",
"Transform": {
"posX": -9.904408,
"posY": 1.73271477,
"posZ": -20.3558712,
"rotX": 0.0189226661,
"rotY": 270.0015,
"rotZ": 180.933014,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Vindictive Officer",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 271412,
"SidewaysCard": false,
"CustomDeck": {
"2667": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276344034/20BECB22DF5B3C297797C14C0B303EFAE0086A5A/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "08b86f",
"Name": "Card",
"Transform": {
"posX": -9.803904,
"posY": 1.71402991,
"posZ": -20.2904625,
"rotX": 0.18142499,
"rotY": 270.0008,
"rotZ": 180.287628,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Police Crackdown",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 271413,
"SidewaysCard": false,
"CustomDeck": {
"2667": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276344034/20BECB22DF5B3C297797C14C0B303EFAE0086A5A/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "033db6",
"Name": "Card",
"Transform": {
"posX": -10.3155222,
"posY": 1.71939039,
"posZ": -20.3730125,
"rotX": 359.9516,
"rotY": 269.999268,
"rotZ": 181.168243,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Police Crackdown",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 271414,
"SidewaysCard": false,
"CustomDeck": {
"2667": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276344034/20BECB22DF5B3C297797C14C0B303EFAE0086A5A/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "f1d3b6",
"Name": "Card",
"Transform": {
"posX": -10.5162983,
"posY": 1.67977929,
"posZ": -20.0312977,
"rotX": 359.9521,
"rotY": 269.9972,
"rotZ": 180.240814,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Police Crackdown",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 271415,
"SidewaysCard": false,
"CustomDeck": {
"2667": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276344034/20BECB22DF5B3C297797C14C0B303EFAE0086A5A/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "cdcd8f",
"Name": "Card",
"Transform": {
"posX": -10.2726746,
"posY": 1.69996691,
"posZ": -19.6962433,
"rotX": 359.952057,
"rotY": 270.0008,
"rotZ": 181.068329,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Panicking Populace",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 271416,
"SidewaysCard": false,
"CustomDeck": {
"2667": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276344034/20BECB22DF5B3C297797C14C0B303EFAE0086A5A/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "d72b41",
"Name": "Card",
"Transform": {
"posX": -9.818893,
"posY": 1.69107306,
"posZ": -20.7746563,
"rotX": 0.821919262,
"rotY": 269.983215,
"rotZ": 180.205231,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Panicking Populace",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 271417,
"SidewaysCard": false,
"CustomDeck": {
"2667": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276344034/20BECB22DF5B3C297797C14C0B303EFAE0086A5A/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "d6c97a",
"Name": "Card",
"Transform": {
"posX": -10.02667,
"posY": 1.68971384,
"posZ": -20.4751148,
"rotX": 0.8869438,
"rotY": 270.1209,
"rotZ": 180.252655,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Panicking Populace",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 271418,
"SidewaysCard": false,
"CustomDeck": {
"2667": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276344034/20BECB22DF5B3C297797C14C0B303EFAE0086A5A/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "d6b68a",
"Name": "Card",
"Transform": {
"posX": -10.1709719,
"posY": 1.646802,
"posZ": -20.4044857,
"rotX": 359.936462,
"rotY": 270.0,
"rotZ": 180.018188,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Night Watchman",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 271419,
"SidewaysCard": false,
"CustomDeck": {
"2667": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276344034/20BECB22DF5B3C297797C14C0B303EFAE0086A5A/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "1213e3",
"Name": "Card",
"Transform": {
"posX": -10.501895,
"posY": 1.64198411,
"posZ": -20.3463135,
"rotX": 359.952026,
"rotY": 270.0001,
"rotZ": 180.320923,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Night Watchman",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 271420,
"SidewaysCard": false,
"CustomDeck": {
"2667": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276344034/20BECB22DF5B3C297797C14C0B303EFAE0086A5A/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "c52220",
"Name": "Card",
"Transform": {
"posX": -10.162509,
"posY": 1.64976406,
"posZ": -20.83796,
"rotX": 0.0227355119,
"rotY": 270.0007,
"rotZ": 181.487747,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Night Watchman",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 271421,
"SidewaysCard": false,
"CustomDeck": {
"2667": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276344034/20BECB22DF5B3C297797C14C0B303EFAE0086A5A/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "3fed12",
"Name": "Card",
"Transform": {
"posX": -10.1868563,
"posY": 1.63422179,
"posZ": -20.50656,
"rotX": 359.951752,
"rotY": 269.9995,
"rotZ": 181.0083,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Lack of Trust",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 271422,
"SidewaysCard": false,
"CustomDeck": {
"2667": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276344034/20BECB22DF5B3C297797C14C0B303EFAE0086A5A/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "c5c30d",
"Name": "Card",
"Transform": {
"posX": -10.4962864,
"posY": 1.60930383,
"posZ": -20.4941235,
"rotX": 359.952759,
"rotY": 270.0,
"rotZ": 180.068817,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Lack of Trust",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 271423,
"SidewaysCard": false,
"CustomDeck": {
"2667": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276344034/20BECB22DF5B3C297797C14C0B303EFAE0086A5A/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "ed0d9f",
"Name": "Card",
"Transform": {
"posX": -28.2298088,
"posY": 1.38340044,
"posZ": -49.74335,
"rotX": 357.452,
"rotY": 269.996552,
"rotZ": 0.0260001663,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Concerned Citizen",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 266724,
"SidewaysCard": false,
"CustomDeck": {
"2667": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1917989596840056010/5B0C8427028ED47CF8C890DDE4F80F59FB4C7594/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "b8514b",
"Name": "Card",
"Transform": {
"posX": -31.74469,
"posY": 1.38548148,
"posZ": -48.4999771,
"rotX": 2.7085278,
"rotY": 269.978973,
"rotZ": 0.0166047029,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Concerned Citizen",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 266726,
"SidewaysCard": false,
"CustomDeck": {
"2667": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1917989596840056010/5B0C8427028ED47CF8C890DDE4F80F59FB4C7594/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "32a49e",
"Name": "Card",
"Transform": {
"posX": -29.8079071,
"posY": 1.473111,
"posZ": -49.2703972,
"rotX": 5.97779942,
"rotY": 269.993744,
"rotZ": 0.0113494564,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Concerned Citizen",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 266725,
"SidewaysCard": false,
"CustomDeck": {
"2667": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1917989596840056010/5B0C8427028ED47CF8C890DDE4F80F59FB4C7594/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "f4b11c",
"Name": "Card",
"Transform": {
"posX": -10.1803236,
"posY": 1.64894462,
"posZ": -18.8451672,
"rotX": 359.954,
"rotY": 269.993652,
"rotZ": 182.790314,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Berserk Civilian",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 271427,
"SidewaysCard": false,
"CustomDeck": {
"2667": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276344034/20BECB22DF5B3C297797C14C0B303EFAE0086A5A/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "739a91",
"Name": "Card",
"Transform": {
"posX": -10.303668,
"posY": 1.59979045,
"posZ": -18.6323013,
"rotX": 359.921875,
"rotY": 269.99707,
"rotZ": 184.235153,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Berserk Civilian",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 271428,
"SidewaysCard": false,
"CustomDeck": {
"2667": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276344034/20BECB22DF5B3C297797C14C0B303EFAE0086A5A/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "250030",
"Name": "Card",
"Transform": {
"posX": 8.535946,
"posY": 1.32795668,
"posZ": -49.7288437,
"rotX": 0.0209323615,
"rotY": 269.99826,
"rotZ": 0.016006304,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Haunting Drums",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 267802,
"SidewaysCard": false,
"CustomDeck": {
"2678": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276367852/B71E44C2909CE3A01189155976E253C37E4D16A7/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "b69158",
"Name": "Card",
"Transform": {
"posX": 8.5150795,
"posY": 1.36976767,
"posZ": -49.4876976,
"rotX": 0.0250216983,
"rotY": 269.9961,
"rotZ": 0.0093507655,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Haunting Drums",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 267801,
"SidewaysCard": false,
"CustomDeck": {
"2678": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276367852/B71E44C2909CE3A01189155976E253C37E4D16A7/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "7fc09a",
"Name": "Card",
"Transform": {
"posX": 8.649743,
"posY": 1.40382469,
"posZ": -49.6263962,
"rotX": 0.0213067532,
"rotY": 270.000183,
"rotZ": 0.0164060649,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Haunting Drums",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 267800,
"SidewaysCard": false,
"CustomDeck": {
"2678": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276367852/B71E44C2909CE3A01189155976E253C37E4D16A7/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "105ecc",
"Name": "Card",
"Transform": {
"posX": 4.37371,
"posY": 1.32240164,
"posZ": -63.5525932,
"rotX": 0.0209068339,
"rotY": 270.0003,
"rotZ": 0.01619891,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Jungle Reclamation",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 269500,
"SidewaysCard": false,
"CustomDeck": {
"2695": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276386109/213CDCD24DAE39AD0BE1E8CD7B198F6FD03BE4B2/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "e98807",
"Name": "Card",
"Transform": {
"posX": 4.31495,
"posY": 1.36418426,
"posZ": -63.2001152,
"rotX": 0.0259661414,
"rotY": 270.003052,
"rotZ": 0.00637912424,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Jungle Reclamation",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 269501,
"SidewaysCard": false,
"CustomDeck": {
"2695": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276386109/213CDCD24DAE39AD0BE1E8CD7B198F6FD03BE4B2/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "819805",
"Name": "Card",
"Transform": {
"posX": 4.42892027,
"posY": 1.39830649,
"posZ": -63.2213745,
"rotX": 0.0211659372,
"rotY": 270.0024,
"rotZ": 0.0160875078,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Creeping Foliage",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 269502,
"SidewaysCard": false,
"CustomDeck": {
"2695": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276386109/213CDCD24DAE39AD0BE1E8CD7B198F6FD03BE4B2/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "3dd4be",
"Name": "Card",
"Transform": {
"posX": 4.713935,
"posY": 1.40805316,
"posZ": -63.1260033,
"rotX": 0.0209549461,
"rotY": 270.000244,
"rotZ": 0.0161888059,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Creeping Foliage",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 269503,
"SidewaysCard": false,
"CustomDeck": {
"2695": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276386109/213CDCD24DAE39AD0BE1E8CD7B198F6FD03BE4B2/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "84a3bc",
"Name": "Card",
"Transform": {
"posX": 8.694817,
"posY": 1.32222486,
"posZ": -69.53644,
"rotX": 0.0208631232,
"rotY": 269.999542,
"rotZ": 0.0165463816,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Savage Instinct",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 269400,
"SidewaysCard": false,
"CustomDeck": {
"2694": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276385260/D801780ABB6D90127CEE6FFB9A993BA15F4BCA09/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "ad1adf",
"Name": "Card",
"Transform": {
"posX": 8.66845,
"posY": 1.36395442,
"posZ": -69.06335,
"rotX": 0.02738932,
"rotY": 270.0006,
"rotZ": 0.0008254508,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Savage Instinct",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 269401,
"SidewaysCard": false,
"CustomDeck": {
"2694": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276385260/D801780ABB6D90127CEE6FFB9A993BA15F4BCA09/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "4ab809",
"Name": "Card",
"Transform": {
"posX": -19.2958851,
"posY": 1.31239474,
"posZ": -69.06072,
"rotX": 0.0195685122,
"rotY": 269.999237,
"rotZ": 0.0286807548,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Frenzied Animal",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 267103,
"SidewaysCard": false,
"CustomDeck": {
"2671": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1917989596840066447/3FE3D0DBF2B460F8B916179046C6BE9F2195D334/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "082612",
"Name": "Card",
"Transform": {
"posX": -19.29582,
"posY": 1.34226739,
"posZ": -69.06058,
"rotX": 359.9494,
"rotY": 269.999451,
"rotZ": 359.847565,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Frenzied Animal",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 267102,
"SidewaysCard": false,
"CustomDeck": {
"2671": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1917989596840066447/3FE3D0DBF2B460F8B916179046C6BE9F2195D334/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "a9fcad",
"Name": "Deck",
"Transform": {
"posX": -2.724863,
"posY": 1.62076068,
"posZ": 0.37351495,
"rotX": 0.0168030653,
"rotY": 180.0232,
"rotZ": 0.08026295,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Agenda Deck",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"SidewaysCard": true,
"DeckIDs": [
266416,
266417,
266418
],
"CustomDeck": {
"2664": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1917989596840047596/2BAB015DA6B0ECC4FAA19C975EE2840F1728EC52/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1870697260293361288/24580DDAC7B665861EEAFEE53832587352E50FAD/",
"NumWidth": 5,
"NumHeight": 5,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "3a0003",
"Name": "Card",
"Transform": {
"posX": -31.8383369,
"posY": 1.31455362,
"posZ": -45.3555222,
"rotX": 0.01707977,
"rotY": 179.999634,
"rotZ": 359.9771,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Agenda 3 - Last Response",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 266416,
"SidewaysCard": true,
"CustomDeck": {
"2664": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1917989596840047596/2BAB015DA6B0ECC4FAA19C975EE2840F1728EC52/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1870697260293361288/24580DDAC7B665861EEAFEE53832587352E50FAD/",
"NumWidth": 5,
"NumHeight": 5,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "33d171",
"Name": "Card",
"Transform": {
"posX": -31.7196922,
"posY": 1.35630572,
"posZ": -45.6434,
"rotX": 0.0223324187,
"rotY": 179.999588,
"rotZ": 359.978058,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Agenda 2 - Man vs. Nature",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 266417,
"SidewaysCard": true,
"CustomDeck": {
"2664": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1917989596840047596/2BAB015DA6B0ECC4FAA19C975EE2840F1728EC52/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1870697260293361288/24580DDAC7B665861EEAFEE53832587352E50FAD/",
"NumWidth": 5,
"NumHeight": 5,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "8e0c12",
"Name": "Card",
"Transform": {
"posX": -31.5177326,
"posY": 1.39047682,
"posZ": -45.4036446,
"rotX": 0.0166951,
"rotY": 179.999573,
"rotZ": 359.978851,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Agenda 1 - Unwelcoming Committee",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 266418,
"SidewaysCard": true,
"CustomDeck": {
"2664": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1917989596840047596/2BAB015DA6B0ECC4FAA19C975EE2840F1728EC52/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1870697260293361288/24580DDAC7B665861EEAFEE53832587352E50FAD/",
"NumWidth": 5,
"NumHeight": 5,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "66ea1b",
"Name": "Card",
"Transform": {
"posX": -0.7989997,
"posY": 1.59469438,
"posZ": -5.07470036,
"rotX": 0.0168130454,
"rotY": 180.016388,
"rotZ": 0.08025986,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Act 1a - Inquiry of the Municipal Mental Ward",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 267515,
"SidewaysCard": true,
"CustomDeck": {
"2675": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276359345/390A7DBD238CE756C927999900C9455DDC27DCD5/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276360184/248A727BCF1676B1018CC139D3214F0D6A95C86D/",
"NumWidth": 5,
"NumHeight": 5,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "1a365a",
"Name": "Card",
"Transform": {
"posX": -6.08672,
"posY": 1.6221416,
"posZ": -5.10530424,
"rotX": 0.03285905,
"rotY": 180.016891,
"rotZ": 359.974976,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Act 1e - Inquiry of Howell Asylum",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 267513,
"SidewaysCard": true,
"CustomDeck": {
"2675": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276359345/390A7DBD238CE756C927999900C9455DDC27DCD5/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276360184/248A727BCF1676B1018CC139D3214F0D6A95C86D/",
"NumWidth": 5,
"NumHeight": 5,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "934a3c",
"Name": "Card",
"Transform": {
"posX": -3.5459,
"posY": 1.59855521,
"posZ": -5.0294,
"rotX": 0.0168171991,
"rotY": 180.013382,
"rotZ": 0.080259,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Act 1c - Inquiry of the Boorstein Clinic",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 267514,
"SidewaysCard": true,
"CustomDeck": {
"2675": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276359345/390A7DBD238CE756C927999900C9455DDC27DCD5/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276360184/248A727BCF1676B1018CC139D3214F0D6A95C86D/",
"NumWidth": 5,
"NumHeight": 5,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "1e10c5",
"Name": "Card",
"Transform": {
"posX": -3.956118,
"posY": 1.59753954,
"posZ": -10.4413977,
"rotX": 359.9197,
"rotY": 270.122253,
"rotZ": 0.01666592,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Urban Jungle",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 266611,
"SidewaysCard": false,
"CustomDeck": {
"2666": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1917989596840053705/6A8DAA42C009B7C161AC39B9173E6C3DB155220B/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1917989596840054144/FF96BE05032B057905BF299E4F6CBAD25E14F7F2/",
"NumWidth": 4,
"NumHeight": 3,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "1a359f",
"Name": "Card",
"Transform": {
"posX": -19.7770977,
"posY": 1.62604034,
"posZ": 11.5774126,
"rotX": 359.9201,
"rotY": 270.0225,
"rotZ": 0.01680829,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Alan Parrish",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 271008,
"SidewaysCard": false,
"CustomDeck": {
"2710": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276344034/20BECB22DF5B3C297797C14C0B303EFAE0086A5A/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "06bc0a",
"Name": "Card",
"Transform": {
"posX": -23.6765,
"posY": 1.63144338,
"posZ": 11.460001,
"rotX": 359.9201,
"rotY": 270.0,
"rotZ": 180.01683,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Whittle Residence",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 270810,
"SidewaysCard": false,
"CustomDeck": {
"2708": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276345976/3EB2B1DB72EB7E3DB3623ADF1A44EF37897F099D/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276346409/852325DE2B25F4FC1F8BD00AD2D45CF9A250FA07/",
"NumWidth": 4,
"NumHeight": 3,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "7234af",
"Name": "Custom_Tile",
"Transform": {
"posX": -23.6765,
"posY": 1.61669517,
"posZ": 7.5701,
"rotX": 0.0168397352,
"rotY": 179.999619,
"rotZ": 0.07993582,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.6045295,
"g": 0.6045295,
"b": 0.6045295
},
"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,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "0e8921",
"Name": "Card",
"Transform": {
"posX": -23.6765,
"posY": 1.62920976,
"posZ": 3.86000037,
"rotX": 359.9201,
"rotY": 269.9998,
"rotZ": 180.01683,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Smitty's Diner",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 270909,
"SidewaysCard": false,
"CustomDeck": {
"2709": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276345976/3EB2B1DB72EB7E3DB3623ADF1A44EF37897F099D/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276346409/852325DE2B25F4FC1F8BD00AD2D45CF9A250FA07/",
"NumWidth": 4,
"NumHeight": 3,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "74f811",
"Name": "Custom_Tile",
"Transform": {
"posX": -26.6771,
"posY": 1.6197499,
"posZ": 3.72699976,
"rotX": 359.9201,
"rotY": 270.0127,
"rotZ": 0.0168487933,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "0bdda4",
"Name": "Custom_Tile",
"Transform": {
"posX": -27.082,
"posY": 1.62143862,
"posZ": 7.5521,
"rotX": 359.955383,
"rotY": 225.016525,
"rotZ": 0.0683677,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "385968",
"Name": "Custom_Tile",
"Transform": {
"posX": -26.7544,
"posY": 1.6187396,
"posZ": -0.07809983,
"rotX": 359.955383,
"rotY": 225.0127,
"rotZ": 0.06837063,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "9f40ec",
"Name": "Card",
"Transform": {
"posX": -30.2243023,
"posY": 1.6383419,
"posZ": 3.86554337,
"rotX": 359.9201,
"rotY": 270.0307,
"rotZ": 180.0168,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Brantford Police Station",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 266608,
"SidewaysCard": false,
"CustomDeck": {
"2666": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1917989596840053705/6A8DAA42C009B7C161AC39B9173E6C3DB155220B/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1917989596840054144/FF96BE05032B057905BF299E4F6CBAD25E14F7F2/",
"NumWidth": 4,
"NumHeight": 3,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "7f487d",
"Name": "Custom_Tile",
"Transform": {
"posX": -30.2242,
"posY": 1.623592,
"posZ": -0.0299998112,
"rotX": 0.01683931,
"rotY": 180.0,
"rotZ": 0.07993981,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.6045295,
"g": 0.6045295,
"b": 0.6045295
},
"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,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "1d9c9f",
"Name": "Custom_Tile",
"Transform": {
"posX": -33.6587,
"posY": 1.62952352,
"posZ": 3.8572998,
"rotX": 359.9201,
"rotY": 270.012573,
"rotZ": 0.01685081,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "e76b3b",
"Name": "Card",
"Transform": {
"posX": -36.7731,
"posY": 1.64747214,
"posZ": 3.86010027,
"rotX": 359.9201,
"rotY": 270.0002,
"rotZ": 180.01683,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Telephone Dispatch Office",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 271506,
"SidewaysCard": false,
"CustomDeck": {
"2715": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276345976/3EB2B1DB72EB7E3DB3623ADF1A44EF37897F099D/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276346409/852325DE2B25F4FC1F8BD00AD2D45CF9A250FA07/",
"NumWidth": 4,
"NumHeight": 3,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "119802",
"Name": "Custom_Tile",
"Transform": {
"posX": -33.5158,
"posY": 1.62816572,
"posZ": -0.0852002949,
"rotX": 359.93158,
"rotY": 314.9854,
"rotZ": 359.955444,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "825e63",
"Name": "Custom_Tile",
"Transform": {
"posX": -36.7732,
"posY": 1.63272393,
"posZ": -0.0300000533,
"rotX": 0.0168392062,
"rotY": 179.999969,
"rotZ": 0.07993941,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.6045295,
"g": 0.6045295,
"b": 0.6045295
},
"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,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "a07d4c",
"Name": "Card",
"Transform": {
"posX": -30.2242,
"posY": 1.63608015,
"posZ": -3.83,
"rotX": 359.9201,
"rotY": 269.9999,
"rotZ": 180.01683,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Brantford City Hall",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 271207,
"SidewaysCard": false,
"CustomDeck": {
"2712": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276345976/3EB2B1DB72EB7E3DB3623ADF1A44EF37897F099D/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276346409/852325DE2B25F4FC1F8BD00AD2D45CF9A250FA07/",
"NumWidth": 4,
"NumHeight": 3,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "a04f4c",
"Name": "Custom_Tile",
"Transform": {
"posX": -33.5377,
"posY": 1.627083,
"posZ": -3.87380052,
"rotX": 359.9201,
"rotY": 270.0127,
"rotZ": 0.0168497283,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "6edc1c",
"Name": "Card",
"Transform": {
"posX": -36.7732,
"posY": 1.64521217,
"posZ": -3.83,
"rotX": 359.9201,
"rotY": 270.0276,
"rotZ": 180.0168,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Municipal Hospital",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 269805,
"SidewaysCard": false,
"CustomDeck": {
"2698": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276773628/17DFA40CD7822C0AF090E3AAFEE2ED020C27DD66/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276774104/3BAC33075DC00D0CB612F65EAD77ABC4F3A4F108/",
"NumWidth": 4,
"NumHeight": 3,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "cf6d22",
"Name": "Custom_Tile",
"Transform": {
"posX": -26.9195,
"posY": 1.616795,
"posZ": -7.478302,
"rotX": 359.9317,
"rotY": 315.1266,
"rotZ": 359.955261,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "7bf9bc",
"Name": "Custom_Tile",
"Transform": {
"posX": -30.2243,
"posY": 1.62133813,
"posZ": -7.700001,
"rotX": 359.983154,
"rotY": 8.21908252E-05,
"rotZ": 359.920074,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.6045295,
"g": 0.6045295,
"b": 0.6045295
},
"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,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "5d6b16",
"Name": "Custom_Tile",
"Transform": {
"posX": -33.3537,
"posY": 1.62562513,
"posZ": -7.96110153,
"rotX": 359.93158,
"rotY": 314.983521,
"rotZ": 359.955444,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "ec83fb",
"Name": "Card",
"Transform": {
"posX": -23.6765,
"posY": 1.62469268,
"posZ": -11.51,
"rotX": 359.9201,
"rotY": 270.000519,
"rotZ": 180.01683,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "St. Simon's Church",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 271603,
"SidewaysCard": false,
"CustomDeck": {
"2716": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276345976/3EB2B1DB72EB7E3DB3623ADF1A44EF37897F099D/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276346409/852325DE2B25F4FC1F8BD00AD2D45CF9A250FA07/",
"NumWidth": 4,
"NumHeight": 3,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "e18c3e",
"Name": "Custom_Tile",
"Transform": {
"posX": -26.5868,
"posY": 1.61512375,
"posZ": -11.585701,
"rotX": 359.9201,
"rotY": 270.012665,
"rotZ": 0.0168476179,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "a5d866",
"Name": "Card",
"Transform": {
"posX": -30.2242,
"posY": 1.633823,
"posZ": -11.51,
"rotX": 359.9201,
"rotY": 269.9999,
"rotZ": 180.01683,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Chronicle Archives",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 271304,
"SidewaysCard": false,
"CustomDeck": {
"2713": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276345976/3EB2B1DB72EB7E3DB3623ADF1A44EF37897F099D/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276346409/852325DE2B25F4FC1F8BD00AD2D45CF9A250FA07/",
"NumWidth": 4,
"NumHeight": 3,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "ed2769",
"Name": "Deck",
"Transform": {
"posX": -17.1201077,
"posY": 1.65288,
"posZ": -7.69999647,
"rotX": 359.9201,
"rotY": 270.0001,
"rotZ": 180.01683,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Leads Deck",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": false,
"SidewaysCard": false,
"DeckIDs": [
271700,
271701,
271702,
271703,
271704,
271705
],
"CustomDeck": {
"2717": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276344034/20BECB22DF5B3C297797C14C0B303EFAE0086A5A/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "ce13e1",
"Name": "Card",
"Transform": {
"posX": -14.511385,
"posY": 1.63548136,
"posZ": -28.92817,
"rotX": 359.963135,
"rotY": 270.000854,
"rotZ": 181.046387,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Lead",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 271700,
"SidewaysCard": false,
"CustomDeck": {
"2667": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276344034/20BECB22DF5B3C297797C14C0B303EFAE0086A5A/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "8fc9cf",
"Name": "Card",
"Transform": {
"posX": -13.7923136,
"posY": 1.978567,
"posZ": -29.0459442,
"rotX": 359.9621,
"rotY": 270.013275,
"rotZ": 158.178055,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Lead",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 271701,
"SidewaysCard": false,
"CustomDeck": {
"2667": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276344034/20BECB22DF5B3C297797C14C0B303EFAE0086A5A/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "ab633a",
"Name": "Card",
"Transform": {
"posX": -14.2342243,
"posY": 1.61276078,
"posZ": -29.0217113,
"rotX": 359.952118,
"rotY": 270.000854,
"rotZ": 178.682068,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Lead",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 271702,
"SidewaysCard": false,
"CustomDeck": {
"2667": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276344034/20BECB22DF5B3C297797C14C0B303EFAE0086A5A/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "2ffbcf",
"Name": "Card",
"Transform": {
"posX": -14.295949,
"posY": 1.59442365,
"posZ": -29.6674442,
"rotX": 359.9521,
"rotY": 269.999451,
"rotZ": 181.005783,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Lead",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 271703,
"SidewaysCard": false,
"CustomDeck": {
"2667": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276344034/20BECB22DF5B3C297797C14C0B303EFAE0086A5A/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "929850",
"Name": "Card",
"Transform": {
"posX": -14.3220825,
"posY": 1.54900455,
"posZ": -29.5691967,
"rotX": 359.9569,
"rotY": 270.0,
"rotZ": 180.076721,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Lead",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 271704,
"SidewaysCard": false,
"CustomDeck": {
"2667": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276344034/20BECB22DF5B3C297797C14C0B303EFAE0086A5A/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "95d06b",
"Name": "Card",
"Transform": {
"posX": -14.13229,
"posY": 1.50621045,
"posZ": -29.1976452,
"rotX": 359.920227,
"rotY": 270.000153,
"rotZ": 180.0174,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Lead",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 271705,
"SidewaysCard": false,
"CustomDeck": {
"2667": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276344034/20BECB22DF5B3C297797C14C0B303EFAE0086A5A/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
}
],
"AttachedDecals": [
{
"Transform": {
"posX": -0.0021877822,
"posY": -0.08963572,
"posZ": -0.00288731651,
"rotX": 270.0,
"rotY": 359.869568,
"rotZ": 0.0,
"scaleX": 2.00000215,
"scaleY": 2.00000238,
"scaleZ": 2.00000262
},
"CustomDecal": {
"Name": "dunwich_back",
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/959719855119695911/931B9829687A20F4DEADB36DA57B7E6D76792231/",
"Size": 7.4
}
}
]
},
{
"GUID": "847279",
"Name": "Bag",
"Transform": {
"posX": 19.04191,
"posY": 1.26997018,
"posZ": 0.140701473,
"rotX": 359.983124,
"rotY": 0.00123965985,
"rotZ": 359.920044,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Cards for interlude",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.6117647,
"g": 0.8235294,
"b": 0.305882
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"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": "d6d5c9",
"Name": "Card",
"Transform": {
"posX": 44.6357574,
"posY": 1.98564076,
"posZ": -106.003593,
"rotX": 0.0208087061,
"rotY": 269.9995,
"rotZ": 0.0167708155,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Wilderness Training (Awareness)",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 267603,
"SidewaysCard": false,
"CustomDeck": {
"2676": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276363182/8F58D7452C6C712D9365A748F84C1617311DD69F/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933574036605747/66F5F6903F78214DDB7420F5022C9CDEC4D85464/",
"NumWidth": 4,
"NumHeight": 4,
"BackIsHidden": false,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "e3f5a8",
"Name": "Card",
"Transform": {
"posX": 48.78927,
"posY": 1.985616,
"posZ": -104.015877,
"rotX": 0.020808978,
"rotY": 269.9995,
"rotZ": 0.01677097,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Wilderness Training (Awareness)",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 267602,
"SidewaysCard": false,
"CustomDeck": {
"2676": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276363182/8F58D7452C6C712D9365A748F84C1617311DD69F/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933574036605747/66F5F6903F78214DDB7420F5022C9CDEC4D85464/",
"NumWidth": 4,
"NumHeight": 4,
"BackIsHidden": false,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "49d292",
"Name": "Card",
"Transform": {
"posX": 50.1122322,
"posY": 1.985616,
"posZ": -105.674889,
"rotX": 0.0208091233,
"rotY": 269.9995,
"rotZ": 0.0167709962,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Wilderness Training (Awareness)",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 267601,
"SidewaysCard": false,
"CustomDeck": {
"2676": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276363182/8F58D7452C6C712D9365A748F84C1617311DD69F/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933574036605747/66F5F6903F78214DDB7420F5022C9CDEC4D85464/",
"NumWidth": 4,
"NumHeight": 4,
"BackIsHidden": false,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "bc65bc",
"Name": "Card",
"Transform": {
"posX": 47.6950531,
"posY": 1.985618,
"posZ": -106.653221,
"rotX": 0.0208090171,
"rotY": 269.9995,
"rotZ": 0.01677108,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Wilderness Training (Awareness)",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 267600,
"SidewaysCard": false,
"CustomDeck": {
"2676": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276363182/8F58D7452C6C712D9365A748F84C1617311DD69F/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933574036605747/66F5F6903F78214DDB7420F5022C9CDEC4D85464/",
"NumWidth": 4,
"NumHeight": 4,
"BackIsHidden": false,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "923297",
"Name": "Card",
"Transform": {
"posX": 50.9704475,
"posY": 1.98561585,
"posZ": -104.834679,
"rotX": 0.0208075121,
"rotY": 269.9995,
"rotZ": 0.0167704243,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Wilderness Training (Endurance)",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 267605,
"SidewaysCard": false,
"CustomDeck": {
"2676": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276363182/8F58D7452C6C712D9365A748F84C1617311DD69F/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933574036605747/66F5F6903F78214DDB7420F5022C9CDEC4D85464/",
"NumWidth": 4,
"NumHeight": 4,
"BackIsHidden": false,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "2a4d12",
"Name": "Card",
"Transform": {
"posX": 50.3565254,
"posY": 1.98561585,
"posZ": -104.106842,
"rotX": 0.0208094567,
"rotY": 269.999451,
"rotZ": 0.016772192,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Wilderness Training (Endurance)",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 267607,
"SidewaysCard": false,
"CustomDeck": {
"2676": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276363182/8F58D7452C6C712D9365A748F84C1617311DD69F/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933574036605747/66F5F6903F78214DDB7420F5022C9CDEC4D85464/",
"NumWidth": 4,
"NumHeight": 4,
"BackIsHidden": false,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "a6d887",
"Name": "Card",
"Transform": {
"posX": 51.49731,
"posY": 1.9856267,
"posZ": -104.518,
"rotX": 0.0208093785,
"rotY": 269.9994,
"rotZ": 0.0167719442,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Wilderness Training (Endurance)",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 267606,
"SidewaysCard": false,
"CustomDeck": {
"2676": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276363182/8F58D7452C6C712D9365A748F84C1617311DD69F/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933574036605747/66F5F6903F78214DDB7420F5022C9CDEC4D85464/",
"NumWidth": 4,
"NumHeight": 4,
"BackIsHidden": false,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "f10f25",
"Name": "Card",
"Transform": {
"posX": 53.0814323,
"posY": 1.985616,
"posZ": -104.858917,
"rotX": 0.0208084825,
"rotY": 269.999329,
"rotZ": 0.016770998,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Wilderness Training (Endurance)",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 267604,
"SidewaysCard": false,
"CustomDeck": {
"2676": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276363182/8F58D7452C6C712D9365A748F84C1617311DD69F/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933574036605747/66F5F6903F78214DDB7420F5022C9CDEC4D85464/",
"NumWidth": 4,
"NumHeight": 4,
"BackIsHidden": false,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "6bab15",
"Name": "Card",
"Transform": {
"posX": 53.8322563,
"posY": 1.98561549,
"posZ": -105.87014,
"rotX": 0.0208078157,
"rotY": 269.9996,
"rotZ": 0.016770348,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Wilderness Training (Caution)",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 267608,
"SidewaysCard": false,
"CustomDeck": {
"2676": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276363182/8F58D7452C6C712D9365A748F84C1617311DD69F/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933574036605747/66F5F6903F78214DDB7420F5022C9CDEC4D85464/",
"NumWidth": 4,
"NumHeight": 4,
"BackIsHidden": false,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "5409e6",
"Name": "Card",
"Transform": {
"posX": 52.55746,
"posY": 1.98561609,
"posZ": -104.070587,
"rotX": 0.0208093245,
"rotY": 269.999573,
"rotZ": 0.0167721175,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Wilderness Training (Caution)",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 267609,
"SidewaysCard": false,
"CustomDeck": {
"2676": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276363182/8F58D7452C6C712D9365A748F84C1617311DD69F/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933574036605747/66F5F6903F78214DDB7420F5022C9CDEC4D85464/",
"NumWidth": 4,
"NumHeight": 4,
"BackIsHidden": false,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "18e7d5",
"Name": "Card",
"Transform": {
"posX": 51.85778,
"posY": 1.98561561,
"posZ": -106.267853,
"rotX": 0.02080931,
"rotY": 269.9995,
"rotZ": 0.01677196,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Wilderness Training (Caution)",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 267610,
"SidewaysCard": false,
"CustomDeck": {
"2676": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276363182/8F58D7452C6C712D9365A748F84C1617311DD69F/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933574036605747/66F5F6903F78214DDB7420F5022C9CDEC4D85464/",
"NumWidth": 4,
"NumHeight": 4,
"BackIsHidden": false,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "912974",
"Name": "Card",
"Transform": {
"posX": 51.72231,
"posY": 1.98561573,
"posZ": -106.585274,
"rotX": 0.0208090078,
"rotY": 269.999451,
"rotZ": 0.01677181,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Wilderness Training (Caution)",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 267611,
"SidewaysCard": false,
"CustomDeck": {
"2676": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276363182/8F58D7452C6C712D9365A748F84C1617311DD69F/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933574036605747/66F5F6903F78214DDB7420F5022C9CDEC4D85464/",
"NumWidth": 4,
"NumHeight": 4,
"BackIsHidden": false,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "4e1cbf",
"Name": "Card",
"Transform": {
"posX": 52.670166,
"posY": 1.98561561,
"posZ": -108.343704,
"rotX": 0.0208080988,
"rotY": 269.999573,
"rotZ": 0.01677021,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Wilderness Training (Focus)",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 267612,
"SidewaysCard": false,
"CustomDeck": {
"2676": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276363182/8F58D7452C6C712D9365A748F84C1617311DD69F/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933574036605747/66F5F6903F78214DDB7420F5022C9CDEC4D85464/",
"NumWidth": 4,
"NumHeight": 4,
"BackIsHidden": false,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "6323d2",
"Name": "Card",
"Transform": {
"posX": 50.69427,
"posY": 1.98561537,
"posZ": -102.382042,
"rotX": 0.0208092779,
"rotY": 269.999481,
"rotZ": 0.0167720579,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Wilderness Training (Focus)",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 267613,
"SidewaysCard": false,
"CustomDeck": {
"2676": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276363182/8F58D7452C6C712D9365A748F84C1617311DD69F/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933574036605747/66F5F6903F78214DDB7420F5022C9CDEC4D85464/",
"NumWidth": 4,
"NumHeight": 4,
"BackIsHidden": false,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "f56847",
"Name": "Card",
"Transform": {
"posX": 51.1490059,
"posY": 1.98561609,
"posZ": -105.527054,
"rotX": 0.0208093133,
"rotY": 269.9994,
"rotZ": 0.0167718977,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Wilderness Training (Focus)",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 267615,
"SidewaysCard": false,
"CustomDeck": {
"2676": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276363182/8F58D7452C6C712D9365A748F84C1617311DD69F/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933574036605747/66F5F6903F78214DDB7420F5022C9CDEC4D85464/",
"NumWidth": 4,
"NumHeight": 4,
"BackIsHidden": false,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "f49837",
"Name": "Card",
"Transform": {
"posX": 51.745224,
"posY": 1.985616,
"posZ": -106.397919,
"rotX": 0.0208087061,
"rotY": 269.999329,
"rotZ": 0.0167709477,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Wilderness Training (Focus)",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 267614,
"SidewaysCard": false,
"CustomDeck": {
"2676": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276363182/8F58D7452C6C712D9365A748F84C1617311DD69F/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933574036605747/66F5F6903F78214DDB7420F5022C9CDEC4D85464/",
"NumWidth": 4,
"NumHeight": 4,
"BackIsHidden": false,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "8a3606",
"Name": "Custom_Model_Bag",
"Transform": {
"posX": 12.25386,
"posY": 1.46088779,
"posZ": -12.0156708,
"rotX": 359.920135,
"rotY": 269.983765,
"rotZ": 0.0168966744,
"scaleX": 2.21,
"scaleY": 0.46,
"scaleZ": 2.42
},
"Nickname": "4: Force of Nature",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"MaterialIndex": -1,
"MeshIndex": -1,
"CustomMesh": {
"MeshURL": "https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276525299/2BB5C611E45B4CC8DFE9D7D6DCEC2ADEFC2B8094/",
"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\":{\"0758bc\":{\"lock\":false,\"pos\":{\"x\":-33.0771,\"y\":1.6259,\"z\":-5.7779},\"rot\":{\"x\":359.9455,\"y\":330.0205,\"z\":359.9392}},\"0ecd1e\":{\"lock\":false,\"pos\":{\"x\":-33.307,\"y\":1.6256,\"z\":-7.7731},\"rot\":{\"x\":359.9201,\"y\":269.9882,\"z\":0.0169}},\"10ee78\":{\"lock\":false,\"pos\":{\"x\":-43.8864,\"y\":1.7324,\"z\":2.3763},\"rot\":{\"x\":357.9421,\"y\":269.9443,\"z\":1.2026}},\"184f2d\":{\"lock\":false,\"pos\":{\"x\":-36.7619,\"y\":1.6316,\"z\":-3.8254},\"rot\":{\"x\":0.0166,\"y\":180.1518,\"z\":0.08}},\"3391c8\":{\"lock\":false,\"pos\":{\"x\":-40.3104,\"y\":1.6389,\"z\":4.1341},\"rot\":{\"x\":359.9556,\"y\":224.8729,\"z\":0.0685}},\"35aa25\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6189,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":180.0168}},\"3ab4cb\":{\"lock\":false,\"pos\":{\"x\":-26.8379,\"y\":1.6211,\"z\":7.4707},\"rot\":{\"x\":359.9201,\"y\":270.01,\"z\":0.0169}},\"3c7644\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.658,\"z\":11.46},\"rot\":{\"x\":359.9201,\"y\":269.999,\"z\":180.0168}},\"3d4d6b\":{\"lock\":false,\"pos\":{\"x\":-23.6764,\"y\":1.6156,\"z\":3.86},\"rot\":{\"x\":0.0168,\"y\":180.0054,\"z\":0.0799}},\"44a293\":{\"lock\":false,\"pos\":{\"x\":-3.956,\"y\":1.5975,\"z\":-10.4412},\"rot\":{\"x\":359.9197,\"y\":269.9997,\"z\":0.0168}},\"50f686\":{\"lock\":false,\"pos\":{\"x\":-20.1427,\"y\":1.6108,\"z\":4.1208},\"rot\":{\"x\":359.9316,\"y\":314.9884,\"z\":359.9554}},\"5deb40\":{\"lock\":false,\"pos\":{\"x\":-32.27,\"y\":1.625,\"z\":-4.8037},\"rot\":{\"x\":359.9631,\"y\":345.02,\"z\":359.9271}},\"629e09\":{\"lock\":false,\"pos\":{\"x\":-4.2625,\"y\":1.605,\"z\":13.6079},\"rot\":{\"x\":359.9197,\"y\":269.9836,\"z\":0.0169}},\"63deef\":{\"lock\":false,\"pos\":{\"x\":-36.7732,\"y\":1.6763,\"z\":11.46},\"rot\":{\"x\":359.9201,\"y\":270.0021,\"z\":180.0168}},\"7234af\":{\"lock\":false,\"pos\":{\"x\":-30.2241,\"y\":1.6225,\"z\":-3.83},\"rot\":{\"x\":0.0168,\"y\":180.0115,\"z\":0.0799}},\"7fbc95\":{\"lock\":false,\"pos\":{\"x\":-32.2273,\"y\":1.6277,\"z\":4.4861},\"rot\":{\"x\":359.9746,\"y\":209.9883,\"z\":0.0776}},\"8d59ce\":{\"lock\":false,\"pos\":{\"x\":-4.2587,\"y\":1.6058,\"z\":16.1578},\"rot\":{\"x\":359.9197,\"y\":269.9827,\"z\":0.0169}},\"914939\":{\"lock\":false,\"pos\":{\"x\":-20.0836,\"y\":1.6082,\"z\":-4.1272},\"rot\":{\"x\":359.9554,\"y\":225.0116,\"z\":0.0684}},\"972462\":{\"lock\":false,\"pos\":{\"x\":-30.2243,\"y\":1.6372,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":270,\"z\":0.0168}},\"979545\":{\"lock\":false,\"pos\":{\"x\":1.6993,\"y\":1.5583,\"z\":14.2783},\"rot\":{\"x\":359.9552,\"y\":224.989,\"z\":0.0687}},\"97c724\":{\"lock\":false,\"pos\":{\"x\":-8.04,\"y\":1.6377,\"z\":16.369},\"rot\":{\"x\":359.9212,\"y\":270.0001,\"z\":180.0163}},\"9f5efc\":{\"lock\":false,\"pos\":{\"x\":-8.0242,\"y\":1.6369,\"z\":13.6531},\"rot\":{\"x\":359.9215,\"y\":270.0004,\"z\":180.0169}},\"ac41e0\":{\"lock\":false,\"pos\":{\"x\":-27.7872,\"y\":1.6188,\"z\":-4.7595},\"rot\":{\"x\":-0.0044,\"y\":194.9926,\"z\":0.0816}},\"b4af5f\":{\"lock\":false,\"pos\":{\"x\":-2.6886,\"y\":1.6191,\"z\":-5.0486},\"rot\":{\"x\":0.0168,\"y\":179.9996,\"z\":0.0803}},\"c626f4\":{\"lock\":false,\"pos\":{\"x\":-27.0725,\"y\":1.6169,\"z\":-7.8233},\"rot\":{\"x\":359.9201,\"y\":270.01,\"z\":0.0169}},\"cb9136\":{\"lock\":false,\"pos\":{\"x\":-8.0596,\"y\":1.6362,\"z\":10.991},\"rot\":{\"x\":359.9212,\"y\":270,\"z\":180.0163}},\"cbb2d5\":{\"lock\":false,\"pos\":{\"x\":-23.6764,\"y\":1.6133,\"z\":-3.83},\"rot\":{\"x\":0.0168,\"y\":180.0065,\"z\":0.0799}},\"ce8b7f\":{\"lock\":false,\"pos\":{\"x\":-30.2243,\"y\":1.6623,\"z\":11.46},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":180.0168}},\"d144b0\":{\"lock\":false,\"pos\":{\"x\":-26.9998,\"y\":1.6174,\"z\":-5.6992},\"rot\":{\"x\":359.9745,\"y\":210.1255,\"z\":0.0776}},\"d204b4\":{\"lock\":false,\"pos\":{\"x\":-27.9199,\"y\":1.6217,\"z\":4.3118},\"rot\":{\"x\":359.963,\"y\":344.9856,\"z\":359.9272}},\"d398af\":{\"lock\":false,\"pos\":{\"x\":-36.7731,\"y\":1.6339,\"z\":3.86},\"rot\":{\"x\":0.0168,\"y\":179.9961,\"z\":0.0799}},\"d8401e\":{\"lock\":false,\"pos\":{\"x\":-11.5832,\"y\":1.408,\"z\":-15.6658},\"rot\":{\"x\":359.9831,\"y\":0.0008,\"z\":359.92}},\"d85359\":{\"lock\":false,\"pos\":{\"x\":-40.1031,\"y\":1.6362,\"z\":-3.9871},\"rot\":{\"x\":359.9316,\"y\":315.006,\"z\":359.9554}},\"d86c58\":{\"lock\":false,\"pos\":{\"x\":-40.179,\"y\":1.6374,\"z\":-0.1131},\"rot\":{\"x\":359.9201,\"y\":270.0125,\"z\":0.0169}},\"da02b5\":{\"lock\":false,\"pos\":{\"x\":-32.7757,\"y\":1.6288,\"z\":5.7296},\"rot\":{\"x\":359.9554,\"y\":224.984,\"z\":0.0684}},\"de2271\":{\"lock\":false,\"pos\":{\"x\":-30.2243,\"y\":1.6247,\"z\":3.86},\"rot\":{\"x\":0.0168,\"y\":180.0085,\"z\":0.0799}},\"e74252\":{\"lock\":false,\"pos\":{\"x\":-2.7248,\"y\":1.6208,\"z\":0.3733},\"rot\":{\"x\":0.0168,\"y\":179.9996,\"z\":0.0803}},\"ec9437\":{\"lock\":false,\"pos\":{\"x\":-3.9278,\"y\":1.6481,\"z\":5.7572},\"rot\":{\"x\":359.9197,\"y\":270.0005,\"z\":180.0168}},\"ecfb78\":{\"lock\":false,\"pos\":{\"x\":-33.5681,\"y\":1.6305,\"z\":7.6176},\"rot\":{\"x\":359.9201,\"y\":270.0127,\"z\":0.0168}},\"f5b51e\":{\"lock\":false,\"pos\":{\"x\":-43.3701,\"y\":1.6555,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9993,\"z\":180.0168}},\"f7a56b\":{\"lock\":false,\"pos\":{\"x\":-11.5106,\"y\":1.6726,\"z\":-12.4323},\"rot\":{\"x\":359.9201,\"y\":270.0001,\"z\":180.0168}},\"f9b202\":{\"lock\":false,\"pos\":{\"x\":-16.056,\"y\":1.6181,\"z\":2.2334},\"rot\":{\"x\":359.9201,\"y\":270.0159,\"z\":0.0168}},\"fac097\":{\"lock\":false,\"pos\":{\"x\":-20.0589,\"y\":1.6094,\"z\":-0.0761},\"rot\":{\"x\":359.9201,\"y\":270.0101,\"z\":0.0169}},\"fe551f\":{\"lock\":false,\"pos\":{\"x\":-27.252,\"y\":1.621,\"z\":5.2086},\"rot\":{\"x\":359.9455,\"y\":329.9981,\"z\":359.9392}}}}",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "979545",
"Name": "Custom_Model_Bag",
"Transform": {
"posX": 1.69927847,
"posY": 1.55831289,
"posZ": 14.2782936,
"rotX": 359.95517,
"rotY": 224.988968,
"rotZ": 0.0686809644,
"scaleX": 2.0,
"scaleY": 2.0,
"scaleZ": 2.0
},
"Nickname": "Set-aside",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "676d1d",
"Name": "Deck",
"Transform": {
"posX": 57.6328659,
"posY": 2.0073843,
"posZ": -154.792587,
"rotX": 0.02080034,
"rotY": 270.024933,
"rotZ": 0.0167788714,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Hunter Encounter Set",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": false,
"SidewaysCard": false,
"DeckIDs": [
269600,
269601,
269602
],
"CustomDeck": {
"2696": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276386819/78CBD2BC1330F8D587C8A1FBCDBFDA58BE94474F/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "23fdac",
"Name": "Card",
"Transform": {
"posX": 8.384593,
"posY": 1.31989717,
"posZ": -77.1129761,
"rotX": 0.0208171532,
"rotY": 270.0227,
"rotZ": 0.01675328,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Rifle Blast",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 269600,
"SidewaysCard": false,
"CustomDeck": {
"2696": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276386819/78CBD2BC1330F8D587C8A1FBCDBFDA58BE94474F/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "135873",
"Name": "Card",
"Transform": {
"posX": 8.487699,
"posY": 1.36182475,
"posZ": -76.92184,
"rotX": 0.0193480588,
"rotY": 270.0228,
"rotZ": 0.0121252919,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Rifle Blast",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 269601,
"SidewaysCard": false,
"CustomDeck": {
"2696": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276386819/78CBD2BC1330F8D587C8A1FBCDBFDA58BE94474F/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "6e7562",
"Name": "Card",
"Transform": {
"posX": 8.995375,
"posY": 1.39597023,
"posZ": -76.78578,
"rotX": 0.0209061541,
"rotY": 270.0227,
"rotZ": 0.01625923,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "\"Got you in my sights...\"",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 269602,
"SidewaysCard": false,
"CustomDeck": {
"2696": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276386819/78CBD2BC1330F8D587C8A1FBCDBFDA58BE94474F/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "df6da2",
"Name": "Card",
"Transform": {
"posX": -1.23872817,
"posY": 2.32422686,
"posZ": -87.98582,
"rotX": 0.0208064262,
"rotY": 270.0073,
"rotZ": 0.0167736672,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Van Pelt",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 270403,
"SidewaysCard": false,
"CustomDeck": {
"2704": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870697260293406593/746BF4E2667E5E04DD6650A8D0AFCD477D083819/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "49c86a",
"Name": "Card",
"Transform": {
"posX": 11.7853546,
"posY": 2.68748617,
"posZ": -45.6819649,
"rotX": 359.9204,
"rotY": 270.003479,
"rotZ": 4.01636,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Jumanji",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 267414,
"SidewaysCard": false,
"CustomDeck": {
"2674": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276356813/F1D5BF7ADBCAFE18D6B466D2E226AA259378AA2E/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276357274/9D2AD5BB3030895999F7F600516996C5E1D66924/",
"NumWidth": 4,
"NumHeight": 4,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "8d59ce",
"Name": "Card",
"Transform": {
"posX": -4.258701,
"posY": 1.60577953,
"posZ": 16.1578026,
"rotX": 359.919739,
"rotY": 269.982727,
"rotZ": 0.0168613736,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Fourth Player",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 271012,
"SidewaysCard": false,
"CustomDeck": {
"2710": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276387774/E6A00C41CDCADC620EF4788F691E334F88B9EE70/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 4,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "629e09",
"Name": "Card",
"Transform": {
"posX": -4.262501,
"posY": 1.60503554,
"posZ": 13.6079054,
"rotX": 359.919739,
"rotY": 269.983643,
"rotZ": 0.0168600772,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Jumanji Dice",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 270315,
"SidewaysCard": false,
"CustomDeck": {
"2703": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870697260293398218/DDCD2C00456FDEB03DB20A7E02AC43620A34935D/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 4,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "97c724",
"Name": "Deck",
"Transform": {
"posX": -8.039955,
"posY": 1.637704,
"posZ": 16.3690128,
"rotX": 359.921173,
"rotY": 270.000061,
"rotZ": 180.016312,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Jungle Spirits Encounter Set",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": false,
"SidewaysCard": false,
"DeckIDs": [
269300,
269301,
269302,
269303
],
"CustomDeck": {
"2693": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276384323/CC03EEFE3EE9FB01D92D9D2A58F813CBB1A2CED1/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "8c460f",
"Name": "Card",
"Transform": {
"posX": 8.736771,
"posY": 1.32297111,
"posZ": -66.92138,
"rotX": 0.0212178454,
"rotY": 269.900024,
"rotZ": 0.0142478244,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Fallen Explorer",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 269300,
"SidewaysCard": false,
"CustomDeck": {
"2693": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276384323/CC03EEFE3EE9FB01D92D9D2A58F813CBB1A2CED1/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "aef8a5",
"Name": "Card",
"Transform": {
"posX": 8.776021,
"posY": 1.35927463,
"posZ": -66.98697,
"rotX": 0.0218854733,
"rotY": 270.03064,
"rotZ": -0.00210294477,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Fallen Explorer",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 269301,
"SidewaysCard": false,
"CustomDeck": {
"2693": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276384323/CC03EEFE3EE9FB01D92D9D2A58F813CBB1A2CED1/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "c169bd",
"Name": "Card",
"Transform": {
"posX": 9.081781,
"posY": 1.3993752,
"posZ": -65.27199,
"rotX": 0.0208618883,
"rotY": 270.0334,
"rotZ": 0.0157792941,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Chaotic Aspect",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 269302,
"SidewaysCard": false,
"CustomDeck": {
"2693": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276384323/CC03EEFE3EE9FB01D92D9D2A58F813CBB1A2CED1/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "8b18b0",
"Name": "Card",
"Transform": {
"posX": 9.12202,
"posY": 1.40890467,
"posZ": -65.72903,
"rotX": 0.0211583152,
"rotY": 270.0342,
"rotZ": 0.01651411,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Chaotic Aspect",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 269303,
"SidewaysCard": false,
"CustomDeck": {
"2693": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276384323/CC03EEFE3EE9FB01D92D9D2A58F813CBB1A2CED1/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "9f5efc",
"Name": "Deck",
"Transform": {
"posX": -8.024193,
"posY": 1.63688123,
"posZ": 13.6531267,
"rotX": 359.921539,
"rotY": 270.0004,
"rotZ": 180.016876,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Primal Influence Encounter Set",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": false,
"SidewaysCard": false,
"DeckIDs": [
269400,
269401,
267103,
267102
],
"CustomDeck": {
"2694": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276385260/D801780ABB6D90127CEE6FFB9A993BA15F4BCA09/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"2671": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1917989596840066447/3FE3D0DBF2B460F8B916179046C6BE9F2195D334/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "84a3bc",
"Name": "Card",
"Transform": {
"posX": 8.694817,
"posY": 1.32222486,
"posZ": -69.53644,
"rotX": 0.0208631232,
"rotY": 269.999542,
"rotZ": 0.0165463816,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Savage Instinct",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 269400,
"SidewaysCard": false,
"CustomDeck": {
"2694": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276385260/D801780ABB6D90127CEE6FFB9A993BA15F4BCA09/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "ad1adf",
"Name": "Card",
"Transform": {
"posX": 8.66845,
"posY": 1.36395442,
"posZ": -69.06335,
"rotX": 0.02738932,
"rotY": 270.0006,
"rotZ": 0.0008254508,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Savage Instinct",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 269401,
"SidewaysCard": false,
"CustomDeck": {
"2694": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276385260/D801780ABB6D90127CEE6FFB9A993BA15F4BCA09/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "4ab809",
"Name": "Card",
"Transform": {
"posX": -19.2958851,
"posY": 1.31239474,
"posZ": -69.06072,
"rotX": 0.0195685122,
"rotY": 269.999237,
"rotZ": 0.0286807548,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Frenzied Animal",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 267103,
"SidewaysCard": false,
"CustomDeck": {
"2671": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1917989596840066447/3FE3D0DBF2B460F8B916179046C6BE9F2195D334/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "082612",
"Name": "Card",
"Transform": {
"posX": -19.29582,
"posY": 1.34226739,
"posZ": -69.06058,
"rotX": 359.9494,
"rotY": 269.999451,
"rotZ": 359.847565,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Frenzied Animal",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 267102,
"SidewaysCard": false,
"CustomDeck": {
"2671": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1917989596840066447/3FE3D0DBF2B460F8B916179046C6BE9F2195D334/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "cb9136",
"Name": "Deck",
"Transform": {
"posX": -8.059555,
"posY": 1.6361506,
"posZ": 10.9910145,
"rotX": 359.921234,
"rotY": 270.0,
"rotZ": 180.016312,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Spreading Wilds Encounter Set",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": false,
"SidewaysCard": false,
"DeckIDs": [
269500,
269501,
269502,
269503
],
"CustomDeck": {
"2695": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276386109/213CDCD24DAE39AD0BE1E8CD7B198F6FD03BE4B2/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "105ecc",
"Name": "Card",
"Transform": {
"posX": 4.37371,
"posY": 1.32240164,
"posZ": -63.5525932,
"rotX": 0.0209068339,
"rotY": 270.0003,
"rotZ": 0.01619891,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Jungle Reclamation",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 269500,
"SidewaysCard": false,
"CustomDeck": {
"2695": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276386109/213CDCD24DAE39AD0BE1E8CD7B198F6FD03BE4B2/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "e98807",
"Name": "Card",
"Transform": {
"posX": 4.31495,
"posY": 1.36418426,
"posZ": -63.2001152,
"rotX": 0.0259661414,
"rotY": 270.003052,
"rotZ": 0.00637912424,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Jungle Reclamation",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 269501,
"SidewaysCard": false,
"CustomDeck": {
"2695": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276386109/213CDCD24DAE39AD0BE1E8CD7B198F6FD03BE4B2/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "819805",
"Name": "Card",
"Transform": {
"posX": 4.42892027,
"posY": 1.39830649,
"posZ": -63.2213745,
"rotX": 0.0211659372,
"rotY": 270.0024,
"rotZ": 0.0160875078,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Creeping Foliage",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 269502,
"SidewaysCard": false,
"CustomDeck": {
"2695": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276386109/213CDCD24DAE39AD0BE1E8CD7B198F6FD03BE4B2/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "3dd4be",
"Name": "Card",
"Transform": {
"posX": 4.713935,
"posY": 1.40805316,
"posZ": -63.1260033,
"rotX": 0.0209549461,
"rotY": 270.000244,
"rotZ": 0.0161888059,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Creeping Foliage",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 269503,
"SidewaysCard": false,
"CustomDeck": {
"2695": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276386109/213CDCD24DAE39AD0BE1E8CD7B198F6FD03BE4B2/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "ec9437",
"Name": "Deck",
"Transform": {
"posX": -3.92775464,
"posY": 1.64809787,
"posZ": 5.757212,
"rotX": 359.919739,
"rotY": 270.000519,
"rotZ": 180.016815,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": false,
"SidewaysCard": false,
"DeckIDs": [
267300,
267301,
267302,
267303,
267304,
267305,
267306,
267307
],
"CustomDeck": {
"2673": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276355214/5C16B276358C505A900750AB5743FE3E10A1BBFA/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 4,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "42b524",
"Name": "Card",
"Transform": {
"posX": -11.7791977,
"posY": 1.6329453,
"posZ": -23.362896,
"rotX": 359.952545,
"rotY": 269.999634,
"rotZ": 180.65979,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Living Jungle",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 267300,
"SidewaysCard": false,
"CustomDeck": {
"2673": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276355214/5C16B276358C505A900750AB5743FE3E10A1BBFA/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 4,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "2aea05",
"Name": "Card",
"Transform": {
"posX": -11.9507465,
"posY": 1.6414721,
"posZ": -22.679987,
"rotX": 359.9521,
"rotY": 269.999268,
"rotZ": 181.247147,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Living Jungle",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 267301,
"SidewaysCard": false,
"CustomDeck": {
"2673": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276355214/5C16B276358C505A900750AB5743FE3E10A1BBFA/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 4,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "f0c6ea",
"Name": "Card",
"Transform": {
"posX": -11.7716179,
"posY": 1.61033142,
"posZ": -22.3852215,
"rotX": 359.952759,
"rotY": 269.999939,
"rotZ": 180.029083,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Deafening Winds",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 267302,
"SidewaysCard": false,
"CustomDeck": {
"2673": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276355214/5C16B276358C505A900750AB5743FE3E10A1BBFA/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 4,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "3ff219",
"Name": "Card",
"Transform": {
"posX": -12.0053244,
"posY": 1.66445684,
"posZ": -22.6252937,
"rotX": 1.62788546,
"rotY": 270.05188,
"rotZ": 181.587387,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Deafening Winds",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 267303,
"SidewaysCard": false,
"CustomDeck": {
"2673": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276355214/5C16B276358C505A900750AB5743FE3E10A1BBFA/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 4,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "6cf8f7",
"Name": "Card",
"Transform": {
"posX": -12.060626,
"posY": 1.59696734,
"posZ": -22.7289047,
"rotX": 0.5295874,
"rotY": 270.010254,
"rotZ": 180.087891,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Deafening Winds",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 267304,
"SidewaysCard": false,
"CustomDeck": {
"2673": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276355214/5C16B276358C505A900750AB5743FE3E10A1BBFA/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 4,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "b9f72c",
"Name": "Card",
"Transform": {
"posX": -11.2607183,
"posY": 1.60399175,
"posZ": -22.7050533,
"rotX": 359.952057,
"rotY": 269.999146,
"rotZ": 181.281342,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Chaotic Whirling",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 267305,
"SidewaysCard": false,
"CustomDeck": {
"2673": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276355214/5C16B276358C505A900750AB5743FE3E10A1BBFA/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 4,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "99c82c",
"Name": "Card",
"Transform": {
"posX": -11.8080978,
"posY": 1.56100011,
"posZ": -22.7333145,
"rotX": 359.9521,
"rotY": 269.9996,
"rotZ": 180.907623,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Chaotic Whirling",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 267306,
"SidewaysCard": false,
"CustomDeck": {
"2673": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276355214/5C16B276358C505A900750AB5743FE3E10A1BBFA/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 4,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "ffb2c6",
"Name": "Card",
"Transform": {
"posX": -11.5988455,
"posY": 1.50465083,
"posZ": -22.5263329,
"rotX": 359.920135,
"rotY": 269.9992,
"rotZ": 180.016846,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Chaotic Whirling",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 267307,
"SidewaysCard": false,
"CustomDeck": {
"2673": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276355214/5C16B276358C505A900750AB5743FE3E10A1BBFA/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 4,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "e74252",
"Name": "Deck",
"Transform": {
"posX": -2.72475457,
"posY": 1.62076044,
"posZ": 0.373312682,
"rotX": 0.0168360155,
"rotY": 179.9996,
"rotZ": 0.08025616,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Agenda Deck",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"SidewaysCard": true,
"DeckIDs": [
267503,
267504,
266405
],
"CustomDeck": {
"2675": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276359345/390A7DBD238CE756C927999900C9455DDC27DCD5/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276360184/248A727BCF1676B1018CC139D3214F0D6A95C86D/",
"NumWidth": 5,
"NumHeight": 5,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
},
"2664": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1917989596840047596/2BAB015DA6B0ECC4FAA19C975EE2840F1728EC52/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1870697260293361288/24580DDAC7B665861EEAFEE53832587352E50FAD/",
"NumWidth": 5,
"NumHeight": 5,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "dc132e",
"Name": "Card",
"Transform": {
"posX": -2.72473621,
"posY": 1.59885025,
"posZ": 0.373342335,
"rotX": 0.0182626937,
"rotY": 179.999619,
"rotZ": 0.07087432,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Agenda 3 - Apex Predator",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 267503,
"SidewaysCard": true,
"CustomDeck": {
"2675": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276359345/390A7DBD238CE756C927999900C9455DDC27DCD5/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276360184/248A727BCF1676B1018CC139D3214F0D6A95C86D/",
"NumWidth": 5,
"NumHeight": 5,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "42fb94",
"Name": "Card",
"Transform": {
"posX": -2.72479153,
"posY": 1.63044024,
"posZ": 0.373267055,
"rotX": 0.041007027,
"rotY": 179.9987,
"rotZ": 0.103081547,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Agenda 2 - Whirling Fury",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 267504,
"SidewaysCard": true,
"CustomDeck": {
"2675": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276359345/390A7DBD238CE756C927999900C9455DDC27DCD5/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276360184/248A727BCF1676B1018CC139D3214F0D6A95C86D/",
"NumWidth": 5,
"NumHeight": 5,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "abbde8",
"Name": "Card",
"Transform": {
"posX": -7.430836,
"posY": 3.02014542,
"posZ": -86.83826,
"rotX": 0.0167708155,
"rotY": 179.99968,
"rotZ": 359.9792,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Agenda 1 - Leaking Chaos",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 266405,
"SidewaysCard": true,
"CustomDeck": {
"2664": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1917989596840047596/2BAB015DA6B0ECC4FAA19C975EE2840F1728EC52/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1870697260293361288/24580DDAC7B665861EEAFEE53832587352E50FAD/",
"NumWidth": 5,
"NumHeight": 5,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "b4af5f",
"Name": "Deck",
"Transform": {
"posX": -2.68855357,
"posY": 1.61911654,
"posZ": -5.048589,
"rotX": 0.01683603,
"rotY": 179.9996,
"rotZ": 0.08025665,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Act Deck",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"SidewaysCard": true,
"DeckIDs": [
267500,
267501,
267502
],
"CustomDeck": {
"2675": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276359345/390A7DBD238CE756C927999900C9455DDC27DCD5/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276360184/248A727BCF1676B1018CC139D3214F0D6A95C86D/",
"NumWidth": 5,
"NumHeight": 5,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "c1d364",
"Name": "Card",
"Transform": {
"posX": -2.688538,
"posY": 1.59734833,
"posZ": -5.04864645,
"rotX": 0.0168380253,
"rotY": 180.000031,
"rotZ": 0.08023534,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Act 3 - One More Turn",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 267500,
"SidewaysCard": true,
"CustomDeck": {
"2675": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276359345/390A7DBD238CE756C927999900C9455DDC27DCD5/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276360184/248A727BCF1676B1018CC139D3214F0D6A95C86D/",
"NumWidth": 5,
"NumHeight": 5,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "0f4388",
"Name": "Card",
"Transform": {
"posX": -2.68854523,
"posY": 1.64343894,
"posZ": -5.04852962,
"rotX": 0.0142734461,
"rotY": 180.0,
"rotZ": 0.06551962,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Act 2 - Well Begun is Half Done",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 267501,
"SidewaysCard": true,
"CustomDeck": {
"2675": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276359345/390A7DBD238CE756C927999900C9455DDC27DCD5/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276360184/248A727BCF1676B1018CC139D3214F0D6A95C86D/",
"NumWidth": 5,
"NumHeight": 5,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "063bf0",
"Name": "Card",
"Transform": {
"posX": -2.68853354,
"posY": 1.66220582,
"posZ": -5.04854,
"rotX": 0.0194129311,
"rotY": 179.9992,
"rotZ": 0.07926353,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Act 1 - Never Split the Party",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 267502,
"SidewaysCard": true,
"CustomDeck": {
"2675": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276359345/390A7DBD238CE756C927999900C9455DDC27DCD5/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276360184/248A727BCF1676B1018CC139D3214F0D6A95C86D/",
"NumWidth": 5,
"NumHeight": 5,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "44a293",
"Name": "Card",
"Transform": {
"posX": -3.95597863,
"posY": 1.59753942,
"posZ": -10.4411535,
"rotX": 359.919739,
"rotY": 269.9997,
"rotZ": 0.0168389231,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Force of Nature",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 266915,
"SidewaysCard": false,
"CustomDeck": {
"2669": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1917989596840061344/119BADBF67F5F3FFFCDCA3C81071863F997CF0B8/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1917989596840061776/D937B66671C643FC93210B87597025A65F84EDAE/",
"NumWidth": 4,
"NumHeight": 4,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "f7a56b",
"Name": "Deck",
"Transform": {
"posX": -11.5105963,
"posY": 1.67255139,
"posZ": -12.4322958,
"rotX": 359.9201,
"rotY": 270.000061,
"rotZ": 180.01683,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Jumanji Deck",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": false,
"SidewaysCard": false,
"DeckIDs": [
267200,
267203,
267201,
267202,
267204,
267205,
267206,
267207,
267208,
267209,
267210,
267211
],
"CustomDeck": {
"2672": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1917989596840067511/33925322102358AE6A431013A950C2ABBD027203/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 4,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "7d2605",
"Name": "Card",
"Transform": {
"posX": -26.5301838,
"posY": 2.17548156,
"posZ": -84.98825,
"rotX": 0.03854557,
"rotY": 268.2984,
"rotZ": 359.932648,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Tigers",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 267200,
"SidewaysCard": false,
"CustomDeck": {
"2672": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1917989596840067511/33925322102358AE6A431013A950C2ABBD027203/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 4,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "0b2281",
"Name": "Card",
"Transform": {
"posX": -26.5265713,
"posY": 2.255689,
"posZ": -84.978714,
"rotX": 0.00907078851,
"rotY": 270.0586,
"rotZ": 359.941437,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Snakes",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 267203,
"SidewaysCard": false,
"CustomDeck": {
"2672": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1917989596840067511/33925322102358AE6A431013A950C2ABBD027203/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 4,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "418e6a",
"Name": "Card",
"Transform": {
"posX": -26.41774,
"posY": 2.20242429,
"posZ": -84.99252,
"rotX": 0.0379043,
"rotY": 269.155243,
"rotZ": 359.925781,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Stampede",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 267201,
"SidewaysCard": false,
"CustomDeck": {
"2672": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1917989596840067511/33925322102358AE6A431013A950C2ABBD027203/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 4,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "cfd7da",
"Name": "Card",
"Transform": {
"posX": -26.620945,
"posY": 2.22919536,
"posZ": -84.8645248,
"rotX": 0.03333737,
"rotY": 273.432556,
"rotZ": 359.933258,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Spiders",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 267202,
"SidewaysCard": false,
"CustomDeck": {
"2672": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1917989596840067511/33925322102358AE6A431013A950C2ABBD027203/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 4,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "975699",
"Name": "Card",
"Transform": {
"posX": -26.5797863,
"posY": 2.28257585,
"posZ": -84.98774,
"rotX": 0.005031425,
"rotY": 270.6381,
"rotZ": 359.91745,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Quicksand",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 267204,
"SidewaysCard": false,
"CustomDeck": {
"2672": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1917989596840067511/33925322102358AE6A431013A950C2ABBD027203/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 4,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "61e435",
"Name": "Card",
"Transform": {
"posX": -26.4444885,
"posY": 2.30872035,
"posZ": -85.00199,
"rotX": 0.0222472977,
"rotY": 270.6724,
"rotZ": 359.908478,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Monsoon",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 267205,
"SidewaysCard": false,
"CustomDeck": {
"2672": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1917989596840067511/33925322102358AE6A431013A950C2ABBD027203/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 4,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "14b464",
"Name": "Card",
"Transform": {
"posX": -26.6065311,
"posY": 2.33558226,
"posZ": -85.00669,
"rotX": 0.0236693732,
"rotY": 267.821228,
"rotZ": 359.9302,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Insects",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 267206,
"SidewaysCard": false,
"CustomDeck": {
"2672": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1917989596840067511/33925322102358AE6A431013A950C2ABBD027203/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 4,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "544e5b",
"Name": "Card",
"Transform": {
"posX": -26.48533,
"posY": 2.36188626,
"posZ": -84.96193,
"rotX": 0.031261187,
"rotY": 269.575073,
"rotZ": 359.956482,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Hippos",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 267207,
"SidewaysCard": false,
"CustomDeck": {
"2672": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1917989596840067511/33925322102358AE6A431013A950C2ABBD027203/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 4,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "aa5164",
"Name": "Card",
"Transform": {
"posX": -26.5179214,
"posY": 2.38885379,
"posZ": -84.96035,
"rotX": 0.03513058,
"rotY": 270.2519,
"rotZ": 359.973267,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Gorillas",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 267208,
"SidewaysCard": false,
"CustomDeck": {
"2672": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1917989596840067511/33925322102358AE6A431013A950C2ABBD027203/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 4,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "8aeaaa",
"Name": "Card",
"Transform": {
"posX": -26.572094,
"posY": 2.41547418,
"posZ": -85.0004959,
"rotX": 0.0466686748,
"rotY": 269.9593,
"rotZ": 359.9824,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Earthquake",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 267209,
"SidewaysCard": false,
"CustomDeck": {
"2672": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1917989596840067511/33925322102358AE6A431013A950C2ABBD027203/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 4,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "c3a774",
"Name": "Card",
"Transform": {
"posX": -26.5476589,
"posY": 1.312633,
"posZ": -58.60623,
"rotX": 0.02078741,
"rotY": 269.967865,
"rotZ": 0.0170682464,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Crocodiles",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 267210,
"SidewaysCard": false,
"CustomDeck": {
"2672": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1917989596840067511/33925322102358AE6A431013A950C2ABBD027203/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 4,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "615e7b",
"Name": "Card",
"Transform": {
"posX": -26.5027027,
"posY": 1.35457385,
"posZ": -58.2287369,
"rotX": 0.0186209455,
"rotY": 269.967377,
"rotZ": 0.0101237716,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Climate",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 267211,
"SidewaysCard": false,
"CustomDeck": {
"2672": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1917989596840067511/33925322102358AE6A431013A950C2ABBD027203/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 4,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "d8401e",
"Name": "Bag",
"Transform": {
"posX": -11.5832,
"posY": 1.40796876,
"posZ": -15.665801,
"rotX": 359.983124,
"rotY": 0.00083763944,
"rotZ": 359.920044,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Jumanji Sets",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.850174069,
"g": 0.7016305,
"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": "64c874",
"Name": "Deck",
"Transform": {
"posX": -51.61716,
"posY": 2.00733781,
"posZ": -103.279572,
"rotX": 0.0208080579,
"rotY": 270.000061,
"rotZ": 180.016769,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Tigers Encounter Set",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": false,
"SidewaysCard": false,
"DeckIDs": [
269200,
269201,
269202
],
"CustomDeck": {
"2692": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276382501/EAECE45E550BE8723A21A2DE00B4D64D74B08710/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "71f06c",
"Name": "Card",
"Transform": {
"posX": 21.3474445,
"posY": 1.29072881,
"posZ": -68.1729,
"rotX": 0.0212800074,
"rotY": 270.001221,
"rotZ": 0.0137168737,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Silent Stalking",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 269200,
"SidewaysCard": false,
"CustomDeck": {
"2692": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276382501/EAECE45E550BE8723A21A2DE00B4D64D74B08710/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "cde970",
"Name": "Card",
"Transform": {
"posX": 21.2629566,
"posY": 1.33480608,
"posZ": -68.08163,
"rotX": 0.0127699422,
"rotY": 270.000977,
"rotZ": 359.896454,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Savage Tiger",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 269201,
"SidewaysCard": false,
"CustomDeck": {
"2692": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276382501/EAECE45E550BE8723A21A2DE00B4D64D74B08710/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "514fe7",
"Name": "Card",
"Transform": {
"posX": 21.5538635,
"posY": 1.366633,
"posZ": -68.15456,
"rotX": 0.0213430077,
"rotY": 270.0011,
"rotZ": 0.0164976269,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Savage Tiger",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 269202,
"SidewaysCard": false,
"CustomDeck": {
"2692": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276382501/EAECE45E550BE8723A21A2DE00B4D64D74B08710/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "9e4b47",
"Name": "Deck",
"Transform": {
"posX": -19.98467,
"posY": 2.34248161,
"posZ": -75.3448257,
"rotX": 0.0208080746,
"rotY": 270.0,
"rotZ": 180.016769,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Stampede Encounter Set",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": false,
"SidewaysCard": false,
"DeckIDs": [
270800,
270801,
270802
],
"CustomDeck": {
"2708": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870697260293411807/D9BBB7E82936ABE55C7299088556D17D4149AEA7/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "2830d9",
"Name": "Card",
"Transform": {
"posX": -27.1081676,
"posY": 1.31466043,
"posZ": -50.92882,
"rotX": 0.02092839,
"rotY": 270.000031,
"rotZ": 0.016006995,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Trampled Underfoot",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 270800,
"SidewaysCard": false,
"CustomDeck": {
"2708": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870697260293411807/D9BBB7E82936ABE55C7299088556D17D4149AEA7/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "a70b5d",
"Name": "Card",
"Transform": {
"posX": -27.1702671,
"posY": 1.35642779,
"posZ": -51.2482643,
"rotX": 0.0204208139,
"rotY": 270.000031,
"rotZ": 0.0131465085,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Charging Rhinoceros",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 270801,
"SidewaysCard": false,
"CustomDeck": {
"2708": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870697260293411807/D9BBB7E82936ABE55C7299088556D17D4149AEA7/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "a19b11",
"Name": "Card",
"Transform": {
"posX": -27.298418,
"posY": 1.39032984,
"posZ": -51.15118,
"rotX": 0.02184725,
"rotY": 270.000031,
"rotZ": 0.0166021865,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Berserk Elephant",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 270802,
"SidewaysCard": false,
"CustomDeck": {
"2708": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870697260293411807/D9BBB7E82936ABE55C7299088556D17D4149AEA7/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "a0d735",
"Name": "Deck",
"Transform": {
"posX": -19.6318913,
"posY": 2.34347963,
"posZ": -71.84027,
"rotX": 0.0208080523,
"rotY": 269.999939,
"rotZ": 180.016769,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Spiders Encounter Set",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": false,
"SidewaysCard": false,
"DeckIDs": [
270700,
270701,
270702
],
"CustomDeck": {
"2707": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870697260293410774/94CF9F916B2F913F13028E59B5BBB5DEDE76C4CF/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "4abade",
"Name": "Card",
"Transform": {
"posX": -23.3748951,
"posY": 1.31774688,
"posZ": -45.0065,
"rotX": 0.02096923,
"rotY": 269.952759,
"rotZ": 0.015805,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Tangling Webs",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 270700,
"SidewaysCard": false,
"CustomDeck": {
"2707": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870697260293410774/94CF9F916B2F913F13028E59B5BBB5DEDE76C4CF/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "9a1cdf",
"Name": "Card",
"Transform": {
"posX": -23.5017471,
"posY": 1.359529,
"posZ": -44.85992,
"rotX": 0.0250807051,
"rotY": 269.97702,
"rotZ": 0.0108684814,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Tangling Webs",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 270701,
"SidewaysCard": false,
"CustomDeck": {
"2707": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870697260293410774/94CF9F916B2F913F13028E59B5BBB5DEDE76C4CF/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "562878",
"Name": "Card",
"Transform": {
"posX": -23.4667759,
"posY": 1.39349842,
"posZ": -45.16588,
"rotX": 0.0207694136,
"rotY": 269.983429,
"rotZ": 0.0164016783,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Giant Tarantula",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 270702,
"SidewaysCard": false,
"CustomDeck": {
"2707": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870697260293410774/94CF9F916B2F913F13028E59B5BBB5DEDE76C4CF/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "b65d58",
"Name": "Deck",
"Transform": {
"posX": -19.4353752,
"posY": 2.41216183,
"posZ": -65.8359146,
"rotX": 2.51340532,
"rotY": 269.99884,
"rotZ": 180.016129,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Snakes Encounter Set",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": false,
"SidewaysCard": false,
"DeckIDs": [
270600,
270601,
270602
],
"CustomDeck": {
"2706": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870697260293409407/A5658C6413B4EF9E44E5EDAA256C292F1DFBB28C/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "91202a",
"Name": "Card",
"Transform": {
"posX": -19.4805527,
"posY": 1.317286,
"posZ": -51.42474,
"rotX": 0.0209194962,
"rotY": 270.0084,
"rotZ": 0.0160570238,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Rainforest Viper",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 270600,
"SidewaysCard": false,
"CustomDeck": {
"2706": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870697260293409407/A5658C6413B4EF9E44E5EDAA256C292F1DFBB28C/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "3f088e",
"Name": "Card",
"Transform": {
"posX": -19.31576,
"posY": 1.35921788,
"posZ": -51.25872,
"rotX": 0.022883581,
"rotY": 270.0084,
"rotZ": 0.0144423516,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Hidden Menace",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 270601,
"SidewaysCard": false,
"CustomDeck": {
"2706": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870697260293409407/A5658C6413B4EF9E44E5EDAA256C292F1DFBB28C/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "7c11b4",
"Name": "Card",
"Transform": {
"posX": -19.3545475,
"posY": 1.39320838,
"posZ": -51.154583,
"rotX": 0.0205599535,
"rotY": 270.0084,
"rotZ": 0.0161898285,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Hidden Menace",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 270602,
"SidewaysCard": false,
"CustomDeck": {
"2706": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870697260293409407/A5658C6413B4EF9E44E5EDAA256C292F1DFBB28C/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "44afc7",
"Name": "Deck",
"Transform": {
"posX": -23.07435,
"posY": 2.007384,
"posZ": -104.867126,
"rotX": 0.02080842,
"rotY": 270.0,
"rotZ": 180.016769,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Quicksand Encounter Set",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": false,
"SidewaysCard": false,
"DeckIDs": [
268802,
268801,
268800
],
"CustomDeck": {
"2688": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276378389/B4B7FB4FA99B3A2E2E3E4646D7914F4AD2BC13D6/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "0cdb4f",
"Name": "Card",
"Transform": {
"posX": 21.4666634,
"posY": 1.29608655,
"posZ": -50.1384621,
"rotX": 0.0209212,
"rotY": 270.021851,
"rotZ": 0.01604578,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Quicksand Pit",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 268802,
"SidewaysCard": false,
"CustomDeck": {
"2688": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276378389/B4B7FB4FA99B3A2E2E3E4646D7914F4AD2BC13D6/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "1bc3ce",
"Name": "Card",
"Transform": {
"posX": 21.3064232,
"posY": 1.337903,
"posZ": -49.95226,
"rotX": 0.019072827,
"rotY": 270.020355,
"rotZ": 0.0142658744,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Quicksand Pit",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 268801,
"SidewaysCard": false,
"CustomDeck": {
"2688": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276378389/B4B7FB4FA99B3A2E2E3E4646D7914F4AD2BC13D6/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "790fce",
"Name": "Card",
"Transform": {
"posX": 21.42977,
"posY": 1.37260354,
"posZ": -49.67911,
"rotX": 0.0205799118,
"rotY": 270.022583,
"rotZ": 0.01585853,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Quicksand Pit",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 268800,
"SidewaysCard": false,
"CustomDeck": {
"2688": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276378389/B4B7FB4FA99B3A2E2E3E4646D7914F4AD2BC13D6/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "57898e",
"Name": "Deck",
"Transform": {
"posX": -23.58652,
"posY": 2.33504462,
"posZ": -96.89724,
"rotX": 0.0208074637,
"rotY": 269.999969,
"rotZ": 180.016769,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Monsoon Encounter Set",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": false,
"SidewaysCard": false,
"DeckIDs": [
268600,
268601,
268602
],
"CustomDeck": {
"2686": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276376681/E84FBB15C0E41101EADCE96A1DEDA8FDE7E1BE9B/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "f0ae03",
"Name": "Card",
"Transform": {
"posX": 21.1372452,
"posY": 1.29510093,
"posZ": -52.9168663,
"rotX": 0.02145229,
"rotY": 269.9925,
"rotZ": 0.0125408927,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Torrential Downpour",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 268600,
"SidewaysCard": false,
"CustomDeck": {
"2686": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276376681/E84FBB15C0E41101EADCE96A1DEDA8FDE7E1BE9B/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "de0eaf",
"Name": "Card",
"Transform": {
"posX": 21.313509,
"posY": 1.33673024,
"posZ": -53.402832,
"rotX": 0.01615253,
"rotY": 269.9925,
"rotZ": 0.0207034964,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Torrential Downpour",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 268601,
"SidewaysCard": false,
"CustomDeck": {
"2686": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276376681/E84FBB15C0E41101EADCE96A1DEDA8FDE7E1BE9B/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "e2694f",
"Name": "Card",
"Transform": {
"posX": 20.7980766,
"posY": 1.37076461,
"posZ": -53.2578545,
"rotX": 0.0209043771,
"rotY": 269.992432,
"rotZ": 0.0162801817,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Torrential Downpour",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 268602,
"SidewaysCard": false,
"CustomDeck": {
"2686": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276376681/E84FBB15C0E41101EADCE96A1DEDA8FDE7E1BE9B/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "6b59f0",
"Name": "Deck",
"Transform": {
"posX": -19.7418823,
"posY": 2.33749819,
"posZ": -92.964325,
"rotX": 0.0208078623,
"rotY": 270.0,
"rotZ": 180.016769,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Insects Encounter Set",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": false,
"SidewaysCard": false,
"DeckIDs": [
268400,
268401,
268402
],
"CustomDeck": {
"2684": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276373786/80F14A977D91611CC23132A66A22CEFA893EDEE5/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "840a4b",
"Name": "Card",
"Transform": {
"posX": 25.0508232,
"posY": 1.29218733,
"posZ": -67.90123,
"rotX": 0.02093279,
"rotY": 270.014923,
"rotZ": 0.01595221,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Vicious Mosquitos",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 268400,
"SidewaysCard": false,
"CustomDeck": {
"2684": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276373786/80F14A977D91611CC23132A66A22CEFA893EDEE5/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "09b78c",
"Name": "Card",
"Transform": {
"posX": 25.1758156,
"posY": 1.334095,
"posZ": -67.7666245,
"rotX": 0.0231745616,
"rotY": 270.014984,
"rotZ": 0.0145197483,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Tsetse Fly Bite",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 268401,
"SidewaysCard": false,
"CustomDeck": {
"2684": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276373786/80F14A977D91611CC23132A66A22CEFA893EDEE5/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "800ce9",
"Name": "Card",
"Transform": {
"posX": 24.9140148,
"posY": 1.36793029,
"posZ": -67.99905,
"rotX": 0.0207903981,
"rotY": 270.014954,
"rotZ": 0.0163587052,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Army of Ants",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 268402,
"SidewaysCard": false,
"CustomDeck": {
"2684": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276373786/80F14A977D91611CC23132A66A22CEFA893EDEE5/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "fb283a",
"Name": "Deck",
"Transform": {
"posX": -20.4856415,
"posY": 2.33975649,
"posZ": -84.81526,
"rotX": 0.0208076686,
"rotY": 270.0,
"rotZ": 180.016769,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Hippos Encounter Set",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": false,
"SidewaysCard": false,
"DeckIDs": [
268300,
268301,
268302
],
"CustomDeck": {
"2683": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276372693/EA7F2E6156917EC8083FAAE13BAAADB11D6B7F0A/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "312425",
"Name": "Card",
"Transform": {
"posX": 24.6207619,
"posY": 1.29318035,
"posZ": -63.9701958,
"rotX": 0.02095358,
"rotY": 269.9986,
"rotZ": 0.015839586,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Territorial Beasts",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 268300,
"SidewaysCard": false,
"CustomDeck": {
"2683": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276372693/EA7F2E6156917EC8083FAAE13BAAADB11D6B7F0A/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "6ee522",
"Name": "Card",
"Transform": {
"posX": 24.804945,
"posY": 1.33509588,
"posZ": -63.8842354,
"rotX": 0.0231752861,
"rotY": 269.9986,
"rotZ": 0.0148908664,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Enraged Hippopotamus",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 268301,
"SidewaysCard": false,
"CustomDeck": {
"2683": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276372693/EA7F2E6156917EC8083FAAE13BAAADB11D6B7F0A/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "458430",
"Name": "Card",
"Transform": {
"posX": 24.75588,
"posY": 1.36899889,
"posZ": -64.09441,
"rotX": 0.0212697051,
"rotY": 269.9985,
"rotZ": 0.016194379,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Enraged Hippopotamus",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 268302,
"SidewaysCard": false,
"CustomDeck": {
"2683": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276372693/EA7F2E6156917EC8083FAAE13BAAADB11D6B7F0A/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "16bb06",
"Name": "Deck",
"Transform": {
"posX": -10.5389986,
"posY": 2.007384,
"posZ": -110.883,
"rotX": 0.0208082814,
"rotY": 270.0,
"rotZ": 180.016769,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Gorillas Encounter Set",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": false,
"SidewaysCard": false,
"DeckIDs": [
268200,
268201,
268202
],
"CustomDeck": {
"2682": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276371784/A7EAF9B5EE81B317905481B9BD1FABA1ADCB4F56/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "8abb3c",
"Name": "Card",
"Transform": {
"posX": 24.33702,
"posY": 1.2939142,
"posZ": -61.1086273,
"rotX": 0.0209677573,
"rotY": 269.993225,
"rotZ": 0.01578696,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Eyes in the Mist",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 268200,
"SidewaysCard": false,
"CustomDeck": {
"2682": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276371784/A7EAF9B5EE81B317905481B9BD1FABA1ADCB4F56/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "d38359",
"Name": "Card",
"Transform": {
"posX": 24.2825737,
"posY": 1.33573771,
"posZ": -61.03516,
"rotX": 0.0183939338,
"rotY": 269.993225,
"rotZ": 0.0148416823,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Furious Silverback",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 268201,
"SidewaysCard": false,
"CustomDeck": {
"2682": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276371784/A7EAF9B5EE81B317905481B9BD1FABA1ADCB4F56/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "96977b",
"Name": "Card",
"Transform": {
"posX": 24.34784,
"posY": 1.36975265,
"posZ": -60.99368,
"rotX": 0.02141279,
"rotY": 269.993225,
"rotZ": 0.016307462,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Furious Silverback",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 268202,
"SidewaysCard": false,
"CustomDeck": {
"2682": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276371784/A7EAF9B5EE81B317905481B9BD1FABA1ADCB4F56/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "657162",
"Name": "Deck",
"Transform": {
"posX": -9.393531,
"posY": 2.00733137,
"posZ": -102.3101,
"rotX": 0.0208080653,
"rotY": 270.000061,
"rotZ": 180.016769,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Earthquake Encounter Set",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": false,
"SidewaysCard": false,
"DeckIDs": [
268102,
268101,
268100
],
"CustomDeck": {
"2681": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276370543/A37839D17F53955300B4A63ECD58E262AFFAAEAA/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "1b303f",
"Name": "Card",
"Transform": {
"posX": 24.80714,
"posY": 1.29628444,
"posZ": -53.6193542,
"rotX": 0.0208951514,
"rotY": 269.9983,
"rotZ": 0.0162725,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Collapsing Ground",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 268102,
"SidewaysCard": false,
"CustomDeck": {
"2681": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276370543/A37839D17F53955300B4A63ECD58E262AFFAAEAA/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "9c8303",
"Name": "Card",
"Transform": {
"posX": 24.7718678,
"posY": 1.338161,
"posZ": -53.36103,
"rotX": 0.0189236719,
"rotY": 269.9983,
"rotZ": 0.0135790566,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Collapsing Ground",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 268101,
"SidewaysCard": false,
"CustomDeck": {
"2681": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276370543/A37839D17F53955300B4A63ECD58E262AFFAAEAA/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "a46c05",
"Name": "Card",
"Transform": {
"posX": 24.808054,
"posY": 1.3721633,
"posZ": -53.3087349,
"rotX": 0.02122983,
"rotY": 269.9983,
"rotZ": 0.0160391368,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Collapsing Ground",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 268100,
"SidewaysCard": false,
"CustomDeck": {
"2681": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276370543/A37839D17F53955300B4A63ECD58E262AFFAAEAA/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "905c7c",
"Name": "Deck",
"Transform": {
"posX": -4.53710651,
"posY": 2.348213,
"posZ": -75.52104,
"rotX": 0.020808449,
"rotY": 269.999939,
"rotZ": 180.016769,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Crocodiles Encounter Set",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": false,
"SidewaysCard": false,
"DeckIDs": [
270500,
270501,
270502
],
"CustomDeck": {
"2705": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870697260293407747/EB7115C88427376298827CCFE4490F6074D32711/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "c44970",
"Name": "Card",
"Transform": {
"posX": -16.00113,
"posY": 1.32042634,
"posZ": -45.030056,
"rotX": 0.0208751783,
"rotY": 270.001221,
"rotZ": 0.0163730867,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Violent Ambush",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 270500,
"SidewaysCard": false,
"CustomDeck": {
"2705": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870697260293407747/EB7115C88427376298827CCFE4490F6074D32711/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "8efd3a",
"Name": "Card",
"Transform": {
"posX": -16.0350189,
"posY": 1.36225808,
"posZ": -45.09875,
"rotX": 0.0202912763,
"rotY": 270.001251,
"rotZ": 0.0127606923,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Violent Ambush",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 270501,
"SidewaysCard": false,
"CustomDeck": {
"2705": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870697260293407747/EB7115C88427376298827CCFE4490F6074D32711/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "c5743e",
"Name": "Card",
"Transform": {
"posX": -16.0480175,
"posY": 1.44069886,
"posZ": -44.9269829,
"rotX": 1.72530949,
"rotY": 270.016754,
"rotZ": 0.0171226151,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "River Crocodile",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 270502,
"SidewaysCard": false,
"CustomDeck": {
"2705": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870697260293407747/EB7115C88427376298827CCFE4490F6074D32711/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "29f6b6",
"Name": "Deck",
"Transform": {
"posX": -5.73112965,
"posY": 2.343653,
"posZ": -89.91059,
"rotX": 0.0208074432,
"rotY": 269.999969,
"rotZ": 180.016769,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Climate Encounter Set",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": false,
"SidewaysCard": false,
"DeckIDs": [
267900,
267901,
267902
],
"CustomDeck": {
"2679": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276368674/4B6C8D8422818E8E05176CF59136D59CF433FA7B/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "eb5d9f",
"Name": "Card",
"Transform": {
"posX": 24.8880634,
"posY": 1.29811287,
"posZ": -47.430706,
"rotX": 0.0210058335,
"rotY": 270.002747,
"rotZ": 0.0154613191,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Overheated",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 267900,
"SidewaysCard": false,
"CustomDeck": {
"2679": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276368674/4B6C8D8422818E8E05176CF59136D59CF433FA7B/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "116f06",
"Name": "Card",
"Transform": {
"posX": 24.9569988,
"posY": 1.33991,
"posZ": -47.68222,
"rotX": 0.0233008526,
"rotY": 270.002747,
"rotZ": 0.0143792676,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Overheated",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 267901,
"SidewaysCard": false,
"CustomDeck": {
"2679": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276368674/4B6C8D8422818E8E05176CF59136D59CF433FA7B/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "6c30e3",
"Name": "Card",
"Transform": {
"posX": 24.5949345,
"posY": 1.37379181,
"posZ": -47.6089973,
"rotX": 0.0208919179,
"rotY": 270.0027,
"rotZ": 0.016305685,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Overheated",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 267902,
"SidewaysCard": false,
"CustomDeck": {
"2679": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276368674/4B6C8D8422818E8E05176CF59136D59CF433FA7B/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
}
]
},
{
"GUID": "f9b202",
"Name": "Card",
"Transform": {
"posX": -16.056,
"posY": 1.61810541,
"posZ": 2.23339987,
"rotX": 359.9201,
"rotY": 270.015869,
"rotZ": 0.0168176759,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Sarah Whittle",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 271314,
"SidewaysCard": false,
"CustomDeck": {
"2713": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276387774/E6A00C41CDCADC620EF4788F691E334F88B9EE70/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 4,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "35aa25",
"Name": "Card",
"Transform": {
"posX": -17.12,
"posY": 1.6189239,
"posZ": -0.0299996231,
"rotX": 359.9201,
"rotY": 269.9999,
"rotZ": 180.01683,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Shrouded Clearing",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 267401,
"SidewaysCard": false,
"CustomDeck": {
"2674": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276356813/F1D5BF7ADBCAFE18D6B466D2E226AA259378AA2E/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276357274/9D2AD5BB3030895999F7F600516996C5E1D66924/",
"NumWidth": 4,
"NumHeight": 4,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "50f686",
"Name": "Custom_Tile",
"Transform": {
"posX": -20.1427288,
"posY": 1.610754,
"posZ": 4.120786,
"rotX": 359.93158,
"rotY": 314.988434,
"rotZ": 359.9554,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "fac097",
"Name": "Custom_Tile",
"Transform": {
"posX": -20.0589256,
"posY": 1.60940361,
"posZ": -0.0761133,
"rotX": 359.9201,
"rotY": 270.0101,
"rotZ": 0.0168535765,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "914939",
"Name": "Custom_Tile",
"Transform": {
"posX": -20.0836258,
"posY": 1.6082474,
"posZ": -4.12720776,
"rotX": 359.955383,
"rotY": 225.011566,
"rotZ": 0.0683717,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "cbb2d5",
"Name": "Custom_Tile",
"Transform": {
"posX": -23.67643,
"posY": 1.61334455,
"posZ": -3.83001566,
"rotX": 0.0168301184,
"rotY": 180.006454,
"rotZ": 0.0799415857,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "3d4d6b",
"Name": "Custom_Tile",
"Transform": {
"posX": -23.6764259,
"posY": 1.61560464,
"posZ": 3.8599844,
"rotX": 0.0168316085,
"rotY": 180.005432,
"rotZ": 0.07993772,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "3c7644",
"Name": "Deck",
"Transform": {
"posX": -23.6765232,
"posY": 1.65802526,
"posZ": 11.4600124,
"rotX": 359.9201,
"rotY": 269.998962,
"rotZ": 180.01683,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Copies of Overgrown Streets",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"SidewaysCard": false,
"DeckIDs": [
266906,
266907,
266908,
266909
],
"CustomDeck": {
"2669": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1917989596840061344/119BADBF67F5F3FFFCDCA3C81071863F997CF0B8/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1917989596840061776/D937B66671C643FC93210B87597025A65F84EDAE/",
"NumWidth": 4,
"NumHeight": 4,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "ee49b9",
"Name": "Card",
"Transform": {
"posX": -24.13385,
"posY": 1.39265668,
"posZ": -82.38728,
"rotX": 0.0128517346,
"rotY": 270.0001,
"rotZ": 179.9281,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Overgrown Streets",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 266906,
"SidewaysCard": false,
"CustomDeck": {
"2669": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1917989596840061344/119BADBF67F5F3FFFCDCA3C81071863F997CF0B8/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1917989596840061776/D937B66671C643FC93210B87597025A65F84EDAE/",
"NumWidth": 4,
"NumHeight": 4,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "510dbd",
"Name": "Card",
"Transform": {
"posX": -24.1732483,
"posY": 1.47589135,
"posZ": -82.50688,
"rotX": 0.00993323,
"rotY": 270.000977,
"rotZ": 185.78064,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Overgrown Streets",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 266907,
"SidewaysCard": false,
"CustomDeck": {
"2669": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1917989596840061344/119BADBF67F5F3FFFCDCA3C81071863F997CF0B8/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1917989596840061776/D937B66671C643FC93210B87597025A65F84EDAE/",
"NumWidth": 4,
"NumHeight": 4,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "6c2a18",
"Name": "Card",
"Transform": {
"posX": -24.1152344,
"posY": 1.34362793,
"posZ": -81.99834,
"rotX": 359.9939,
"rotY": 270.0002,
"rotZ": 179.93335,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Overgrown Streets",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 266908,
"SidewaysCard": false,
"CustomDeck": {
"2669": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1917989596840061344/119BADBF67F5F3FFFCDCA3C81071863F997CF0B8/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1917989596840061776/D937B66671C643FC93210B87597025A65F84EDAE/",
"NumWidth": 4,
"NumHeight": 4,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "dea37c",
"Name": "Card",
"Transform": {
"posX": -24.4234619,
"posY": 1.306337,
"posZ": -82.2961,
"rotX": 0.0221212134,
"rotY": 269.999,
"rotZ": 180.0254,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Overgrown Streets",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 266909,
"SidewaysCard": false,
"CustomDeck": {
"2669": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1917989596840061344/119BADBF67F5F3FFFCDCA3C81071863F997CF0B8/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1917989596840061776/D937B66671C643FC93210B87597025A65F84EDAE/",
"NumWidth": 4,
"NumHeight": 4,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "ce8b7f",
"Name": "Deck",
"Transform": {
"posX": -30.2242527,
"posY": 1.66234159,
"posZ": 11.4600143,
"rotX": 359.9201,
"rotY": 269.9999,
"rotZ": 180.01683,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Copies of Rampant Jungle",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"SidewaysCard": false,
"DeckIDs": [
267412,
267410,
267411
],
"CustomDeck": {
"2674": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276356813/F1D5BF7ADBCAFE18D6B466D2E226AA259378AA2E/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276357274/9D2AD5BB3030895999F7F600516996C5E1D66924/",
"NumWidth": 4,
"NumHeight": 4,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "e0041c",
"Name": "Card",
"Transform": {
"posX": -30.2242336,
"posY": 1.70548129,
"posZ": 11.4600115,
"rotX": 359.918,
"rotY": 270.00235,
"rotZ": 180.017746,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Rampant Jungle",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 267412,
"SidewaysCard": false,
"CustomDeck": {
"2674": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276356813/F1D5BF7ADBCAFE18D6B466D2E226AA259378AA2E/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276357274/9D2AD5BB3030895999F7F600516996C5E1D66924/",
"NumWidth": 4,
"NumHeight": 4,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "c5c2e7",
"Name": "Card",
"Transform": {
"posX": -30.2241917,
"posY": 1.6710242,
"posZ": 11.4598742,
"rotX": 359.859161,
"rotY": 269.999847,
"rotZ": 180.161652,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Rampant Jungle",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 267410,
"SidewaysCard": false,
"CustomDeck": {
"2674": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276356813/F1D5BF7ADBCAFE18D6B466D2E226AA259378AA2E/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276357274/9D2AD5BB3030895999F7F600516996C5E1D66924/",
"NumWidth": 4,
"NumHeight": 4,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "0ebba0",
"Name": "Card",
"Transform": {
"posX": -30.2242661,
"posY": 1.64074743,
"posZ": 11.4600258,
"rotX": 359.918945,
"rotY": 270.000122,
"rotZ": 180.006119,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Rampant Jungle",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 267411,
"SidewaysCard": false,
"CustomDeck": {
"2674": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276356813/F1D5BF7ADBCAFE18D6B466D2E226AA259378AA2E/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276357274/9D2AD5BB3030895999F7F600516996C5E1D66924/",
"NumWidth": 4,
"NumHeight": 4,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "63deef",
"Name": "Deck",
"Transform": {
"posX": -36.7731857,
"posY": 1.67628777,
"posZ": 11.4600077,
"rotX": 359.9201,
"rotY": 270.002075,
"rotZ": 180.01683,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Copies of Tangled Neighborhood",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"SidewaysCard": false,
"DeckIDs": [
266902,
266903,
266904,
266905
],
"CustomDeck": {
"2669": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1917989596840061344/119BADBF67F5F3FFFCDCA3C81071863F997CF0B8/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1917989596840061776/D937B66671C643FC93210B87597025A65F84EDAE/",
"NumWidth": 4,
"NumHeight": 4,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "fdf2ee",
"Name": "Card",
"Transform": {
"posX": -23.229723,
"posY": 1.39479923,
"posZ": -73.87595,
"rotX": 0.0206363481,
"rotY": 270.002075,
"rotZ": 180.017456,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Tangled Neighborhood",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 266902,
"SidewaysCard": false,
"CustomDeck": {
"2669": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1917989596840061344/119BADBF67F5F3FFFCDCA3C81071863F997CF0B8/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1917989596840061776/D937B66671C643FC93210B87597025A65F84EDAE/",
"NumWidth": 4,
"NumHeight": 4,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "988c9f",
"Name": "Card",
"Transform": {
"posX": -24.225502,
"posY": 1.37891114,
"posZ": -73.32705,
"rotX": 0.0128601054,
"rotY": 270.0007,
"rotZ": 179.815918,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Tangled Neighborhood",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 266903,
"SidewaysCard": false,
"CustomDeck": {
"2669": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1917989596840061344/119BADBF67F5F3FFFCDCA3C81071863F997CF0B8/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1917989596840061776/D937B66671C643FC93210B87597025A65F84EDAE/",
"NumWidth": 4,
"NumHeight": 4,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "7a490a",
"Name": "Card",
"Transform": {
"posX": -24.31058,
"posY": 1.3550899,
"posZ": -72.89234,
"rotX": 0.0177640542,
"rotY": 270.000031,
"rotZ": 180.051392,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Tangled Neighborhood",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 266904,
"SidewaysCard": false,
"CustomDeck": {
"2669": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1917989596840061344/119BADBF67F5F3FFFCDCA3C81071863F997CF0B8/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1917989596840061776/D937B66671C643FC93210B87597025A65F84EDAE/",
"NumWidth": 4,
"NumHeight": 4,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "24e191",
"Name": "Card",
"Transform": {
"posX": -24.4692154,
"posY": 1.30919647,
"posZ": -72.86308,
"rotX": 0.0209389832,
"rotY": 270.000031,
"rotZ": 180.017639,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Tangled Neighborhood",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 266905,
"SidewaysCard": false,
"CustomDeck": {
"2669": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1917989596840061344/119BADBF67F5F3FFFCDCA3C81071863F997CF0B8/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1917989596840061776/D937B66671C643FC93210B87597025A65F84EDAE/",
"NumWidth": 4,
"NumHeight": 4,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "3ab4cb",
"Name": "Custom_Tile",
"Transform": {
"posX": -26.837925,
"posY": 1.62107444,
"posZ": 7.47068834,
"rotX": 359.9201,
"rotY": 270.01,
"rotZ": 0.0168531183,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "fe551f",
"Name": "Custom_Tile",
"Transform": {
"posX": -27.25203,
"posY": 1.62098718,
"posZ": 5.20858335,
"rotX": 359.945465,
"rotY": 329.998077,
"rotZ": 359.9392,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "d204b4",
"Name": "Custom_Tile",
"Transform": {
"posX": -27.91993,
"posY": 1.621655,
"posZ": 4.311787,
"rotX": 359.963043,
"rotY": 344.985565,
"rotZ": 359.927155,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "de2271",
"Name": "Custom_Tile",
"Transform": {
"posX": -30.2243252,
"posY": 1.62473512,
"posZ": 3.85998559,
"rotX": 0.01682727,
"rotY": 180.008545,
"rotZ": 0.0799423456,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "7fbc95",
"Name": "Custom_Tile",
"Transform": {
"posX": -32.2273331,
"posY": 1.62771237,
"posZ": 4.48608541,
"rotX": 359.97464,
"rotY": 209.988327,
"rotZ": 0.0776165649,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "da02b5",
"Name": "Custom_Tile",
"Transform": {
"posX": -32.7757225,
"posY": 1.62884247,
"posZ": 5.72958326,
"rotX": 359.955444,
"rotY": 224.984,
"rotZ": 0.06839126,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "ecfb78",
"Name": "Custom_Tile",
"Transform": {
"posX": -33.56813,
"posY": 1.63050246,
"posZ": 7.617584,
"rotX": 359.9201,
"rotY": 270.0127,
"rotZ": 0.0168480482,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "972462",
"Name": "Card",
"Transform": {
"posX": -30.2243118,
"posY": 1.637197,
"posZ": -0.0299987476,
"rotX": 359.9201,
"rotY": 269.999969,
"rotZ": 0.01684113,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 267413,
"SidewaysCard": false,
"CustomDeck": {
"2674": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276356813/F1D5BF7ADBCAFE18D6B466D2E226AA259378AA2E/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276357274/9D2AD5BB3030895999F7F600516996C5E1D66924/",
"NumWidth": 4,
"NumHeight": 4,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "c626f4",
"Name": "Custom_Tile",
"Transform": {
"posX": -27.072525,
"posY": 1.61690688,
"posZ": -7.82331228,
"rotX": 359.9201,
"rotY": 270.01,
"rotZ": 0.016853366,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "d144b0",
"Name": "Custom_Tile",
"Transform": {
"posX": -26.9998341,
"posY": 1.61742973,
"posZ": -5.6992135,
"rotX": 359.974457,
"rotY": 210.125473,
"rotZ": 0.0775558352,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "ac41e0",
"Name": "Custom_Tile",
"Transform": {
"posX": -27.7872257,
"posY": 1.61880386,
"posZ": -4.75951529,
"rotX": -0.004404899,
"rotY": 194.992615,
"rotZ": 0.08156028,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": -30.2241249,
"posY": 1.62247491,
"posZ": -3.83001375,
"rotX": 0.0168230478,
"rotY": 180.011536,
"rotZ": 0.07994243,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "5deb40",
"Name": "Custom_Tile",
"Transform": {
"posX": -32.27003,
"posY": 1.625042,
"posZ": -4.803716,
"rotX": 359.963074,
"rotY": 345.02002,
"rotZ": 359.927124,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "0758bc",
"Name": "Custom_Tile",
"Transform": {
"posX": -33.0771332,
"posY": 1.62588108,
"posZ": -5.777917,
"rotX": 359.9455,
"rotY": 330.020477,
"rotZ": 359.939178,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "0ecd1e",
"Name": "Custom_Tile",
"Transform": {
"posX": -33.3070335,
"posY": 1.62561512,
"posZ": -7.77312231,
"rotX": 359.9201,
"rotY": 269.9882,
"rotZ": 0.01688366,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "d398af",
"Name": "Custom_Tile",
"Transform": {
"posX": -36.7731323,
"posY": 1.633867,
"posZ": 3.85998487,
"rotX": 0.0168446582,
"rotY": 179.9961,
"rotZ": 0.07994139,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "184f2d",
"Name": "Custom_Tile",
"Transform": {
"posX": -36.7619324,
"posY": 1.63159287,
"posZ": -3.82541537,
"rotX": 0.0166274123,
"rotY": 180.15181,
"rotZ": 0.07998389,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "d85359",
"Name": "Custom_Tile",
"Transform": {
"posX": -40.10313,
"posY": 1.63620472,
"posZ": -3.987111,
"rotX": 359.93158,
"rotY": 315.005951,
"rotZ": 359.9554,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "d86c58",
"Name": "Custom_Tile",
"Transform": {
"posX": -40.17904,
"posY": 1.63744891,
"posZ": -0.113122828,
"rotX": 359.9201,
"rotY": 270.0125,
"rotZ": 0.016850289,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "3391c8",
"Name": "Custom_Tile",
"Transform": {
"posX": -40.31043,
"posY": 1.63888025,
"posZ": 4.134092,
"rotX": 359.955566,
"rotY": 224.87294,
"rotZ": 0.06848195,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "10ee78",
"Name": "Card",
"Transform": {
"posX": -43.8864,
"posY": 1.73241293,
"posZ": 2.37629986,
"rotX": 357.9421,
"rotY": 269.944275,
"rotZ": 1.20256662,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Alan Parrish",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 270913,
"SidewaysCard": false,
"CustomDeck": {
"2709": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276387774/E6A00C41CDCADC620EF4788F691E334F88B9EE70/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 4,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "f5b51e",
"Name": "Card",
"Transform": {
"posX": -43.3701019,
"posY": 1.655528,
"posZ": -0.0299994182,
"rotX": 359.9201,
"rotY": 269.999268,
"rotZ": 180.01683,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Dense Thicket",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 267400,
"SidewaysCard": false,
"CustomDeck": {
"2674": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276356813/F1D5BF7ADBCAFE18D6B466D2E226AA259378AA2E/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276357274/9D2AD5BB3030895999F7F600516996C5E1D66924/",
"NumWidth": 4,
"NumHeight": 4,
"BackIsHidden": false,
"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": "8cd599",
"Name": "Notecard",
"Transform": {
"posX": 14.16023,
"posY": 1.523038,
"posZ": -29.64856,
"rotX": 0.07987347,
"rotY": 89.98799,
"rotZ": 359.983124,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Jumanji Campaign Log",
"Description": "Page 1: Investigator details and notes\nPage 2: Scenario progress, turns taken, threat lists, tokens added\n\nPress page up/page down to swap between the pages",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "90b00d",
"Name": "Custom_PDF",
"Transform": {
"posX": 8.891399,
"posY": 1.5000006,
"posZ": 39.8367,
"rotX": -1.07393282E-06,
"rotY": 270.012,
"rotZ": 3.51441827E-06,
"scaleX": 1.76113939,
"scaleY": 1.0,
"scaleZ": 1.76113939
},
"Nickname": "Additional Rules",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomPDF": {
"PDFUrl": "http://cloud-3.steamusercontent.com/ugc/1688271369106169580/ABB0A6B305AA80FA681F4882803966F76621508F/",
"PDFPassword": "",
"PDFPage": 0,
"PDFPageOffset": 0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "c2f5ae",
"Name": "Custom_PDF",
"Transform": {
"posX": 12.2641373,
"posY": 1.47266543,
"posZ": 28.0283756,
"rotX": 359.920135,
"rotY": 269.999939,
"rotZ": 0.016872,
"scaleX": 3.57731819,
"scaleY": 1.0,
"scaleZ": 3.57731819
},
"Nickname": "Jumanji Campaign Guide",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomPDF": {
"PDFUrl": "http://cloud-3.steamusercontent.com/ugc/1917989596840037929/52E182FCF93EA88916DCE7118361D47E18C97D72/",
"PDFPassword": "",
"PDFPage": 0,
"PDFPageOffset": 0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "c3633f",
"Name": "Custom_Model_Bag",
"Transform": {
"posX": 12.2518692,
"posY": 1.4632467,
"posZ": -4.014724,
"rotX": 359.920135,
"rotY": 270.002563,
"rotZ": 0.0168701578,
"scaleX": 2.21,
"scaleY": 0.46,
"scaleZ": 2.42
},
"Nickname": "3: Game Night",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"MaterialIndex": -1,
"MeshIndex": -1,
"CustomMesh": {
"MeshURL": "https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276524818/9F6F2148A168CB054FCAAF3DADF1A58EDC1E6978/",
"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\":{\"0c0dbb\":{\"lock\":false,\"pos\":{\"x\":-36.7731,\"y\":1.6452,\"z\":-3.83},\"rot\":{\"x\":359.9201,\"y\":270.0042,\"z\":180.0168}},\"10154f\":{\"lock\":false,\"pos\":{\"x\":-30.2242,\"y\":1.6236,\"z\":-0.03},\"rot\":{\"x\":0.0168,\"y\":180,\"z\":0.0799}},\"155588\":{\"lock\":false,\"pos\":{\"x\":-2.6887,\"y\":1.6239,\"z\":-5.0485},\"rot\":{\"x\":0.0168,\"y\":180.0226,\"z\":0.0803}},\"2051e1\":{\"lock\":false,\"pos\":{\"x\":-39.3855,\"y\":1.6518,\"z\":6.184},\"rot\":{\"x\":359.9201,\"y\":270.012,\"z\":0.0168}},\"21f34d\":{\"lock\":false,\"pos\":{\"x\":-30.2242,\"y\":1.6213,\"z\":-7.7},\"rot\":{\"x\":0.0168,\"y\":179.9999,\"z\":0.0799}},\"23b97c\":{\"lock\":false,\"pos\":{\"x\":-36.7732,\"y\":1.6305,\"z\":-7.7},\"rot\":{\"x\":0.0168,\"y\":179.9996,\"z\":0.08}},\"28c6e8\":{\"lock\":false,\"pos\":{\"x\":1.6977,\"y\":1.5583,\"z\":14.2786},\"rot\":{\"x\":359.9551,\"y\":225.0046,\"z\":0.0687}},\"2a2fe8\":{\"lock\":false,\"pos\":{\"x\":-26.5494,\"y\":1.6161,\"z\":-8.1485},\"rot\":{\"x\":359.9555,\"y\":224.953,\"z\":0.0684}},\"39a613\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6292,\"z\":3.86},\"rot\":{\"x\":359.9201,\"y\":270.0067,\"z\":180.0168}},\"39bd43\":{\"lock\":false,\"pos\":{\"x\":-10.9122,\"y\":1.407,\"z\":-15.68},\"rot\":{\"x\":359.9832,\"y\":0.0007,\"z\":359.92}},\"3e8cb3\":{\"lock\":false,\"pos\":{\"x\":-36.7731,\"y\":1.6497,\"z\":11.46},\"rot\":{\"x\":359.9201,\"y\":270.0051,\"z\":180.0168}},\"4a7b4a\":{\"lock\":false,\"pos\":{\"x\":-33.3845,\"y\":1.6269,\"z\":-3.8293},\"rot\":{\"x\":359.9201,\"y\":270.0098,\"z\":0.0169}},\"6eb2d5\":{\"lock\":false,\"pos\":{\"x\":-30.2242,\"y\":1.6361,\"z\":-3.83},\"rot\":{\"x\":359.9201,\"y\":270.0044,\"z\":180.0168}},\"710027\":{\"lock\":false,\"pos\":{\"x\":-3.9279,\"y\":1.6529,\"z\":5.7573},\"rot\":{\"x\":359.9197,\"y\":270.0006,\"z\":180.0168}},\"7234af\":{\"lock\":false,\"pos\":{\"x\":-36.7731,\"y\":1.635,\"z\":7.57},\"rot\":{\"x\":0.0168,\"y\":179.9995,\"z\":0.0799}},\"78c4cf\":{\"lock\":false,\"pos\":{\"x\":-30.2242,\"y\":1.6383,\"z\":3.86},\"rot\":{\"x\":359.9201,\"y\":270.0068,\"z\":180.0168}},\"89eac5\":{\"lock\":false,\"pos\":{\"x\":-36.7731,\"y\":1.6327,\"z\":-0.03},\"rot\":{\"x\":0.0168,\"y\":180,\"z\":0.0799}},\"9ae64e\":{\"lock\":false,\"pos\":{\"x\":-27.2077,\"y\":1.6194,\"z\":-0.0912},\"rot\":{\"x\":359.9554,\"y\":224.9931,\"z\":0.0684}},\"a6631e\":{\"lock\":false,\"pos\":{\"x\":-33.328,\"y\":1.6302,\"z\":7.6832},\"rot\":{\"x\":359.9316,\"y\":315.0042,\"z\":359.9554}},\"a7930b\":{\"lock\":false,\"pos\":{\"x\":-36.7732,\"y\":1.6475,\"z\":3.86},\"rot\":{\"x\":359.9201,\"y\":270.0004,\"z\":180.0168}},\"af1b40\":{\"lock\":false,\"pos\":{\"x\":-40.205,\"y\":1.6523,\"z\":3.8667},\"rot\":{\"x\":359.9201,\"y\":269.9888,\"z\":0.0169}},\"b022fa\":{\"lock\":false,\"pos\":{\"x\":-27.0465,\"y\":1.6203,\"z\":3.7851},\"rot\":{\"x\":359.9201,\"y\":270.01,\"z\":0.0169}},\"b9d4f9\":{\"lock\":false,\"pos\":{\"x\":-39.394,\"y\":1.6505,\"z\":1.6048},\"rot\":{\"x\":359.9201,\"y\":270.0072,\"z\":0.0168}},\"c8cb5c\":{\"lock\":false,\"pos\":{\"x\":-3.956,\"y\":1.5975,\"z\":-10.4376},\"rot\":{\"x\":359.9197,\"y\":270.0293,\"z\":0.0168}},\"d30758\":{\"lock\":false,\"pos\":{\"x\":-26.5753,\"y\":1.6173,\"z\":-3.9871},\"rot\":{\"x\":359.9201,\"y\":270.0125,\"z\":0.0168}},\"d4fd14\":{\"lock\":false,\"pos\":{\"x\":-36.7731,\"y\":1.643,\"z\":-11.51},\"rot\":{\"x\":359.9201,\"y\":270.0051,\"z\":180.0168}},\"ddfae1\":{\"lock\":false,\"pos\":{\"x\":-33.3621,\"y\":1.6257,\"z\":-7.7078},\"rot\":{\"x\":359.9746,\"y\":210.0024,\"z\":0.0776}},\"e1a2a1\":{\"lock\":false,\"pos\":{\"x\":-5.5818,\"y\":1.6074,\"z\":15.3423},\"rot\":{\"x\":359.9197,\"y\":270.0154,\"z\":0.0168}},\"e6adaf\":{\"lock\":false,\"pos\":{\"x\":-10.4692,\"y\":1.671,\"z\":-12.6492},\"rot\":{\"x\":359.9201,\"y\":270,\"z\":180.0168}},\"f871ed\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6513,\"z\":-11.51},\"rot\":{\"x\":359.9201,\"y\":270.0078,\"z\":180.0168}},\"fabdc6\":{\"lock\":false,\"pos\":{\"x\":-2.7248,\"y\":1.6159,\"z\":0.3733},\"rot\":{\"x\":0.0168,\"y\":180.0172,\"z\":0.0803}}}}",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "28c6e8",
"Name": "Custom_Model_Bag",
"Transform": {
"posX": 1.69767678,
"posY": 1.5583148,
"posZ": 14.2785921,
"rotX": 359.955139,
"rotY": 225.004578,
"rotZ": 0.06866743,
"scaleX": 2.0,
"scaleY": 2.0,
"scaleZ": 2.0
},
"Nickname": "Set-aside",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "e98b54",
"Name": "Deck",
"Transform": {
"posX": 8.342314,
"posY": 2.34887457,
"posZ": -87.9964752,
"rotX": 0.0208005439,
"rotY": 270.0249,
"rotZ": 0.0167787038,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Hunter Encounter Set",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": false,
"SidewaysCard": false,
"DeckIDs": [
269600,
269601,
269602
],
"CustomDeck": {
"2696": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276386819/78CBD2BC1330F8D587C8A1FBCDBFDA58BE94474F/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "23fdac",
"Name": "Card",
"Transform": {
"posX": 8.384593,
"posY": 1.31989717,
"posZ": -77.1129761,
"rotX": 0.0208171532,
"rotY": 270.0227,
"rotZ": 0.01675328,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Rifle Blast",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 269600,
"SidewaysCard": false,
"CustomDeck": {
"2696": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276386819/78CBD2BC1330F8D587C8A1FBCDBFDA58BE94474F/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "135873",
"Name": "Card",
"Transform": {
"posX": 8.487699,
"posY": 1.36182475,
"posZ": -76.92184,
"rotX": 0.0193480588,
"rotY": 270.0228,
"rotZ": 0.0121252919,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Rifle Blast",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 269601,
"SidewaysCard": false,
"CustomDeck": {
"2696": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276386819/78CBD2BC1330F8D587C8A1FBCDBFDA58BE94474F/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "6e7562",
"Name": "Card",
"Transform": {
"posX": 8.995375,
"posY": 1.39597023,
"posZ": -76.78578,
"rotX": 0.0209061541,
"rotY": 270.0227,
"rotZ": 0.01625923,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "\"Got you in my sights...\"",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 269602,
"SidewaysCard": false,
"CustomDeck": {
"2696": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276386819/78CBD2BC1330F8D587C8A1FBCDBFDA58BE94474F/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "7610e3",
"Name": "Card",
"Transform": {
"posX": -1.83675194,
"posY": 2.329908,
"posZ": -67.4637756,
"rotX": 0.0208065175,
"rotY": 270.0073,
"rotZ": 0.01677372,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Van Pelt",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 270403,
"SidewaysCard": false,
"CustomDeck": {
"2704": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870697260293406593/746BF4E2667E5E04DD6650A8D0AFCD477D083819/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "c7b914",
"Name": "Deck",
"Transform": {
"posX": 17.6111126,
"posY": 2.00257015,
"posZ": -103.60244,
"rotX": 0.02081094,
"rotY": 269.9936,
"rotZ": 0.0167689677,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Lions Encounter Set",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": false,
"SidewaysCard": false,
"DeckIDs": [
268500,
268501
],
"CustomDeck": {
"2685": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276374906/B534C97542A0BE04B2398A69A6C6DB85A05DA1F6/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "ba7e5e",
"Name": "Card",
"Transform": {
"posX": 8.334637,
"posY": 1.32602453,
"posZ": -56.063488,
"rotX": 0.0209763218,
"rotY": 269.992157,
"rotZ": 0.0156911947,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Feral Roar",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 268500,
"SidewaysCard": false,
"CustomDeck": {
"2685": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276374906/B534C97542A0BE04B2398A69A6C6DB85A05DA1F6/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "f6f7f9",
"Name": "Card",
"Transform": {
"posX": 8.393179,
"posY": 1.36785448,
"posZ": -56.09618,
"rotX": 0.0240077749,
"rotY": 269.992126,
"rotZ": 0.0127312895,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Feral Roar",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 268501,
"SidewaysCard": false,
"CustomDeck": {
"2685": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276374906/B534C97542A0BE04B2398A69A6C6DB85A05DA1F6/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "ebdd33",
"Name": "Card",
"Transform": {
"posX": 29.96673,
"posY": 1.98563457,
"posZ": -98.8323059,
"rotX": 0.0208106413,
"rotY": 269.9935,
"rotZ": 0.0167691763,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Ferocious Lion",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 268502,
"SidewaysCard": false,
"CustomDeck": {
"2685": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276374906/B534C97542A0BE04B2398A69A6C6DB85A05DA1F6/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "bf49fd",
"Name": "Deck",
"Transform": {
"posX": 13.1773643,
"posY": 2.44334865,
"posZ": -48.84393,
"rotX": 359.9216,
"rotY": 269.993,
"rotZ": 0.0167630725,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Copies of Thieving Monkey",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": false,
"SidewaysCard": false,
"DeckIDs": [
267106,
267105,
267103,
267104
],
"CustomDeck": {
"2671": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276350820/C96E1FD23796E6FF7C78F4DCABD6EDFD5D750433/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 4,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "3308ee",
"Name": "Card",
"Transform": {
"posX": -8.159699,
"posY": 1.60198867,
"posZ": -15.25814,
"rotX": 359.921753,
"rotY": 269.99472,
"rotZ": 0.017322747,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Thieving Monkey",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 267106,
"SidewaysCard": false,
"CustomDeck": {
"2671": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276350820/C96E1FD23796E6FF7C78F4DCABD6EDFD5D750433/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 4,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "143cf1",
"Name": "Card",
"Transform": {
"posX": -8.33486748,
"posY": 1.64433,
"posZ": -15.4711847,
"rotX": 359.921448,
"rotY": 269.9926,
"rotZ": 0.0164849777,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Thieving Monkey",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 267105,
"SidewaysCard": false,
"CustomDeck": {
"2671": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276350820/C96E1FD23796E6FF7C78F4DCABD6EDFD5D750433/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 4,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "f92ecb",
"Name": "Card",
"Transform": {
"posX": -8.470981,
"posY": 1.67847753,
"posZ": -15.4583082,
"rotX": 359.921448,
"rotY": 269.994568,
"rotZ": 0.0171278678,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Thieving Monkey",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 267103,
"SidewaysCard": false,
"CustomDeck": {
"2671": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276350820/C96E1FD23796E6FF7C78F4DCABD6EDFD5D750433/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 4,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "616368",
"Name": "Card",
"Transform": {
"posX": -8.371301,
"posY": 1.68801832,
"posZ": -15.414073,
"rotX": 359.921448,
"rotY": 269.995483,
"rotZ": 0.0171274412,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Thieving Monkey",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 267104,
"SidewaysCard": false,
"CustomDeck": {
"2671": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276350820/C96E1FD23796E6FF7C78F4DCABD6EDFD5D750433/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 4,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "e7ba9a",
"Name": "Card",
"Transform": {
"posX": 16.63079,
"posY": 2.6660645,
"posZ": -44.6626854,
"rotX": 359.9201,
"rotY": 269.9949,
"rotZ": 0.01684497,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Coiling Growth",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 267107,
"SidewaysCard": false,
"CustomDeck": {
"2671": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276350820/C96E1FD23796E6FF7C78F4DCABD6EDFD5D750433/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 4,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "e1a2a1",
"Name": "Card",
"Transform": {
"posX": -5.58180141,
"posY": 1.60739315,
"posZ": 15.3423052,
"rotX": 359.919739,
"rotY": 270.0154,
"rotZ": 0.0168155767,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Fourth Player",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 270212,
"SidewaysCard": false,
"CustomDeck": {
"2702": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276387774/E6A00C41CDCADC620EF4788F691E334F88B9EE70/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 4,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "710027",
"Name": "Deck",
"Transform": {
"posX": -3.92787766,
"posY": 1.65291214,
"posZ": 5.7573204,
"rotX": 359.919739,
"rotY": 270.0006,
"rotZ": 180.01683,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Encounter Deck",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": false,
"SidewaysCard": false,
"DeckIDs": [
272600,
272601,
272602,
267000,
267701,
267702,
268700,
268701,
268702
],
"CustomDeck": {
"2726": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276350820/C96E1FD23796E6FF7C78F4DCABD6EDFD5D750433/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 4,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"2670": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1917989596840064342/A30C8EB0B500424071210EFFC80714FA1AA17DC6/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"2677": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276365497/D5CF343EEF67D6F69369A3A251C41B2DDCE3316F/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"2687": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276377452/B5BD1CDCBBF1EA015776C303BC12E93650514E6D/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "befd78",
"Name": "Card",
"Transform": {
"posX": -3.92769647,
"posY": 1.71625137,
"posZ": 5.757144,
"rotX": 359.9519,
"rotY": 269.997437,
"rotZ": 177.798386,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Wild Interference",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 272600,
"SidewaysCard": false,
"CustomDeck": {
"2671": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276350820/C96E1FD23796E6FF7C78F4DCABD6EDFD5D750433/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 4,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "cb9800",
"Name": "Card",
"Transform": {
"posX": -3.92770958,
"posY": 1.65020263,
"posZ": 5.757146,
"rotX": 0.008066027,
"rotY": 270.0,
"rotZ": 180.0256,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Wild Interference",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 272601,
"SidewaysCard": false,
"CustomDeck": {
"2671": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276350820/C96E1FD23796E6FF7C78F4DCABD6EDFD5D750433/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 4,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "145a54",
"Name": "Card",
"Transform": {
"posX": -3.92767382,
"posY": 1.60225964,
"posZ": 5.757145,
"rotX": 359.919739,
"rotY": 270.000061,
"rotZ": 180.01683,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Mischievous Chimp",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 272602,
"SidewaysCard": false,
"CustomDeck": {
"2671": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276350820/C96E1FD23796E6FF7C78F4DCABD6EDFD5D750433/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 4,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "989559",
"Name": "Card",
"Transform": {
"posX": 1.48654318,
"posY": 1.985616,
"posZ": -117.297493,
"rotX": 0.0208073854,
"rotY": 270.004,
"rotZ": 0.0167726427,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Swooping Bats",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 267000,
"SidewaysCard": false,
"CustomDeck": {
"2670": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1917989596840064342/A30C8EB0B500424071210EFFC80714FA1AA17DC6/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "da5aa4",
"Name": "Card",
"Transform": {
"posX": 7.699326,
"posY": 1.36807477,
"posZ": -54.39343,
"rotX": 0.0176024567,
"rotY": 270.0012,
"rotZ": 0.016704293,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Nocturnal Shrieks",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 267701,
"SidewaysCard": false,
"CustomDeck": {
"2677": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276365497/D5CF343EEF67D6F69369A3A251C41B2DDCE3316F/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "c6095f",
"Name": "Card",
"Transform": {
"posX": 7.903186,
"posY": 1.40211022,
"posZ": -54.57995,
"rotX": 0.0210402738,
"rotY": 270.0021,
"rotZ": 0.0164363068,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Nocturnal Shrieks",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 267702,
"SidewaysCard": false,
"CustomDeck": {
"2677": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276365497/D5CF343EEF67D6F69369A3A251C41B2DDCE3316F/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "ad5343",
"Name": "Card",
"Transform": {
"posX": 8.622107,
"posY": 1.32397449,
"posZ": -63.4404526,
"rotX": 0.0209267512,
"rotY": 269.999817,
"rotZ": 0.0160187017,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Maneater Flytrap",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 268700,
"SidewaysCard": false,
"CustomDeck": {
"2687": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276377452/B5BD1CDCBBF1EA015776C303BC12E93650514E6D/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "d2be91",
"Name": "Card",
"Transform": {
"posX": 8.719715,
"posY": 1.36588168,
"posZ": -63.27187,
"rotX": 0.023138538,
"rotY": 269.999817,
"rotZ": 0.0142350085,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Constrictor Vines",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 268701,
"SidewaysCard": false,
"CustomDeck": {
"2687": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276377452/B5BD1CDCBBF1EA015776C303BC12E93650514E6D/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "c14d90",
"Name": "Card",
"Transform": {
"posX": 8.906282,
"posY": 1.39980447,
"posZ": -63.7161865,
"rotX": 0.0210917424,
"rotY": 270.000061,
"rotZ": 0.0163809825,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Constrictor Vines",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 268702,
"SidewaysCard": false,
"CustomDeck": {
"2687": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276377452/B5BD1CDCBBF1EA015776C303BC12E93650514E6D/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "fabdc6",
"Name": "Deck",
"Transform": {
"posX": -2.72475362,
"posY": 1.61594641,
"posZ": 0.373311818,
"rotX": 0.0168112386,
"rotY": 180.0172,
"rotZ": 0.0802615359,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Agenda Deck",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"SidewaysCard": true,
"DeckIDs": [
267510,
267511
],
"CustomDeck": {
"2675": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276359345/390A7DBD238CE756C927999900C9455DDC27DCD5/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276360184/248A727BCF1676B1018CC139D3214F0D6A95C86D/",
"NumWidth": 5,
"NumHeight": 5,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "7f286a",
"Name": "Card",
"Transform": {
"posX": 28.34817,
"posY": 1.29997194,
"posZ": -45.3848228,
"rotX": 0.0169498529,
"rotY": 180.017075,
"rotZ": 359.978119,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Agenda 2 - Growing Catastrophe",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 267510,
"SidewaysCard": true,
"CustomDeck": {
"2675": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276359345/390A7DBD238CE756C927999900C9455DDC27DCD5/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276360184/248A727BCF1676B1018CC139D3214F0D6A95C86D/",
"NumWidth": 5,
"NumHeight": 5,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "8935f1",
"Name": "Card",
"Transform": {
"posX": 28.2995758,
"posY": 1.34174633,
"posZ": -45.45335,
"rotX": 0.014296188,
"rotY": 180.016968,
"rotZ": 359.977417,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Agenda 1 - Housewarming",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 267511,
"SidewaysCard": true,
"CustomDeck": {
"2675": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276359345/390A7DBD238CE756C927999900C9455DDC27DCD5/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276360184/248A727BCF1676B1018CC139D3214F0D6A95C86D/",
"NumWidth": 5,
"NumHeight": 5,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "155588",
"Name": "Deck",
"Transform": {
"posX": -2.688654,
"posY": 1.62393081,
"posZ": -5.04848957,
"rotX": 0.0168038271,
"rotY": 180.022583,
"rotZ": 0.08026278,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Act Deck",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"SidewaysCard": true,
"DeckIDs": [
267506,
267507,
267508,
269709
],
"CustomDeck": {
"2675": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276359345/390A7DBD238CE756C927999900C9455DDC27DCD5/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276360184/248A727BCF1676B1018CC139D3214F0D6A95C86D/",
"NumWidth": 5,
"NumHeight": 5,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
},
"2697": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870697260293360181/F9B2AF1453A3FF9CCBA54A590E03ADE5EA4C262B/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1870697260293361288/24580DDAC7B665861EEAFEE53832587352E50FAD/",
"NumWidth": 5,
"NumHeight": 5,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "4a4ecb",
"Name": "Card",
"Transform": {
"posX": 26.8457069,
"posY": 1.29945064,
"posZ": -45.3220367,
"rotX": 0.0168878045,
"rotY": 180.022552,
"rotZ": 359.978516,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Act 4 - Hunting Grounds",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 267506,
"SidewaysCard": true,
"CustomDeck": {
"2675": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276359345/390A7DBD238CE756C927999900C9455DDC27DCD5/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276360184/248A727BCF1676B1018CC139D3214F0D6A95C86D/",
"NumWidth": 5,
"NumHeight": 5,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "74a337",
"Name": "Card",
"Transform": {
"posX": 26.6558876,
"posY": 1.342159,
"posZ": -45.0831261,
"rotX": 0.0186512247,
"rotY": 180.02269,
"rotZ": 0.1635598,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Act 3 - Going Ape",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 267507,
"SidewaysCard": true,
"CustomDeck": {
"2675": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276359345/390A7DBD238CE756C927999900C9455DDC27DCD5/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276360184/248A727BCF1676B1018CC139D3214F0D6A95C86D/",
"NumWidth": 5,
"NumHeight": 5,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "ee509b",
"Name": "Card",
"Transform": {
"posX": 26.9873219,
"posY": 1.37534714,
"posZ": -45.13721,
"rotX": 0.0171810035,
"rotY": 180.017654,
"rotZ": 359.978668,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Act 2 - Aggressive Gardening",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 267508,
"SidewaysCard": true,
"CustomDeck": {
"2675": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276359345/390A7DBD238CE756C927999900C9455DDC27DCD5/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276360184/248A727BCF1676B1018CC139D3214F0D6A95C86D/",
"NumWidth": 5,
"NumHeight": 5,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "a6965d",
"Name": "Card",
"Transform": {
"posX": -2.68832326,
"posY": 1.65794981,
"posZ": -5.04869,
"rotX": 0.59719944,
"rotY": 180.006592,
"rotZ": 1.47838247,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Act 1 - On a Roll",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 269709,
"SidewaysCard": true,
"CustomDeck": {
"2697": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870697260293360181/F9B2AF1453A3FF9CCBA54A590E03ADE5EA4C262B/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1870697260293361288/24580DDAC7B665861EEAFEE53832587352E50FAD/",
"NumWidth": 5,
"NumHeight": 5,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "c8cb5c",
"Name": "Card",
"Transform": {
"posX": -3.95598984,
"posY": 1.5975405,
"posZ": -10.4376249,
"rotX": 359.919739,
"rotY": 270.029266,
"rotZ": 0.0167961568,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Game Night",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 266811,
"SidewaysCard": false,
"CustomDeck": {
"2668": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1917989596840059091/274F3C4E56F1CD364C5F1980070AC65D9961DBCA/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1917989596840059523/5F02B60338C70679ACB5CD0C3B479A4EBBF85360/",
"NumWidth": 4,
"NumHeight": 3,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "e6adaf",
"Name": "Deck",
"Transform": {
"posX": -10.4692163,
"posY": 1.67103541,
"posZ": -12.6492481,
"rotX": 359.9201,
"rotY": 270.000031,
"rotZ": 180.01683,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Jumanji Deck",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": false,
"SidewaysCard": false,
"DeckIDs": [
267200,
267203,
267201,
267202,
267204,
267205,
267206,
267207,
267208,
267209,
267210,
267211
],
"CustomDeck": {
"2672": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1917989596840067511/33925322102358AE6A431013A950C2ABBD027203/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 4,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "7d2605",
"Name": "Card",
"Transform": {
"posX": -26.5301838,
"posY": 2.17548156,
"posZ": -84.98825,
"rotX": 0.03854557,
"rotY": 268.2984,
"rotZ": 359.932648,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Tigers",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 267200,
"SidewaysCard": false,
"CustomDeck": {
"2672": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1917989596840067511/33925322102358AE6A431013A950C2ABBD027203/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 4,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "0b2281",
"Name": "Card",
"Transform": {
"posX": -26.5265713,
"posY": 2.255689,
"posZ": -84.978714,
"rotX": 0.00907078851,
"rotY": 270.0586,
"rotZ": 359.941437,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Snakes",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 267203,
"SidewaysCard": false,
"CustomDeck": {
"2672": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1917989596840067511/33925322102358AE6A431013A950C2ABBD027203/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 4,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "418e6a",
"Name": "Card",
"Transform": {
"posX": -26.41774,
"posY": 2.20242429,
"posZ": -84.99252,
"rotX": 0.0379043,
"rotY": 269.155243,
"rotZ": 359.925781,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Stampede",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 267201,
"SidewaysCard": false,
"CustomDeck": {
"2672": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1917989596840067511/33925322102358AE6A431013A950C2ABBD027203/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 4,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "cfd7da",
"Name": "Card",
"Transform": {
"posX": -26.620945,
"posY": 2.22919536,
"posZ": -84.8645248,
"rotX": 0.03333737,
"rotY": 273.432556,
"rotZ": 359.933258,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Spiders",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 267202,
"SidewaysCard": false,
"CustomDeck": {
"2672": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1917989596840067511/33925322102358AE6A431013A950C2ABBD027203/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 4,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "975699",
"Name": "Card",
"Transform": {
"posX": -26.5797863,
"posY": 2.28257585,
"posZ": -84.98774,
"rotX": 0.005031425,
"rotY": 270.6381,
"rotZ": 359.91745,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Quicksand",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 267204,
"SidewaysCard": false,
"CustomDeck": {
"2672": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1917989596840067511/33925322102358AE6A431013A950C2ABBD027203/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 4,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "61e435",
"Name": "Card",
"Transform": {
"posX": -26.4444885,
"posY": 2.30872035,
"posZ": -85.00199,
"rotX": 0.0222472977,
"rotY": 270.6724,
"rotZ": 359.908478,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Monsoon",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 267205,
"SidewaysCard": false,
"CustomDeck": {
"2672": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1917989596840067511/33925322102358AE6A431013A950C2ABBD027203/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 4,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "14b464",
"Name": "Card",
"Transform": {
"posX": -26.6065311,
"posY": 2.33558226,
"posZ": -85.00669,
"rotX": 0.0236693732,
"rotY": 267.821228,
"rotZ": 359.9302,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Insects",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 267206,
"SidewaysCard": false,
"CustomDeck": {
"2672": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1917989596840067511/33925322102358AE6A431013A950C2ABBD027203/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 4,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "544e5b",
"Name": "Card",
"Transform": {
"posX": -26.48533,
"posY": 2.36188626,
"posZ": -84.96193,
"rotX": 0.031261187,
"rotY": 269.575073,
"rotZ": 359.956482,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Hippos",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 267207,
"SidewaysCard": false,
"CustomDeck": {
"2672": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1917989596840067511/33925322102358AE6A431013A950C2ABBD027203/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 4,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "aa5164",
"Name": "Card",
"Transform": {
"posX": -26.5179214,
"posY": 2.38885379,
"posZ": -84.96035,
"rotX": 0.03513058,
"rotY": 270.2519,
"rotZ": 359.973267,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Gorillas",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 267208,
"SidewaysCard": false,
"CustomDeck": {
"2672": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1917989596840067511/33925322102358AE6A431013A950C2ABBD027203/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 4,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "8aeaaa",
"Name": "Card",
"Transform": {
"posX": -26.572094,
"posY": 2.41547418,
"posZ": -85.0004959,
"rotX": 0.0466686748,
"rotY": 269.9593,
"rotZ": 359.9824,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Earthquake",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 267209,
"SidewaysCard": false,
"CustomDeck": {
"2672": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1917989596840067511/33925322102358AE6A431013A950C2ABBD027203/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 4,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "c3a774",
"Name": "Card",
"Transform": {
"posX": -26.5476589,
"posY": 1.312633,
"posZ": -58.60623,
"rotX": 0.02078741,
"rotY": 269.967865,
"rotZ": 0.0170682464,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Crocodiles",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 267210,
"SidewaysCard": false,
"CustomDeck": {
"2672": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1917989596840067511/33925322102358AE6A431013A950C2ABBD027203/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 4,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "615e7b",
"Name": "Card",
"Transform": {
"posX": -26.5027027,
"posY": 1.35457385,
"posZ": -58.2287369,
"rotX": 0.0186209455,
"rotY": 269.967377,
"rotZ": 0.0101237716,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Climate",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 267211,
"SidewaysCard": false,
"CustomDeck": {
"2672": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1917989596840067511/33925322102358AE6A431013A950C2ABBD027203/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 4,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "39bd43",
"Name": "Bag",
"Transform": {
"posX": -10.912199,
"posY": 1.407029,
"posZ": -15.6799965,
"rotX": 359.983154,
"rotY": 0.000674146751,
"rotZ": 359.920044,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Jumanji Sets",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.850174069,
"g": 0.7016305,
"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": "64c874",
"Name": "Deck",
"Transform": {
"posX": -51.61716,
"posY": 2.00733781,
"posZ": -103.279572,
"rotX": 0.0208080579,
"rotY": 270.000061,
"rotZ": 180.016769,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Tigers Encounter Set",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": false,
"SidewaysCard": false,
"DeckIDs": [
269200,
269201,
269202
],
"CustomDeck": {
"2692": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276382501/EAECE45E550BE8723A21A2DE00B4D64D74B08710/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "71f06c",
"Name": "Card",
"Transform": {
"posX": 21.3474445,
"posY": 1.29072881,
"posZ": -68.1729,
"rotX": 0.0212800074,
"rotY": 270.001221,
"rotZ": 0.0137168737,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Silent Stalking",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 269200,
"SidewaysCard": false,
"CustomDeck": {
"2692": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276382501/EAECE45E550BE8723A21A2DE00B4D64D74B08710/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "cde970",
"Name": "Card",
"Transform": {
"posX": 21.2629566,
"posY": 1.33480608,
"posZ": -68.08163,
"rotX": 0.0127699422,
"rotY": 270.000977,
"rotZ": 359.896454,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Savage Tiger",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 269201,
"SidewaysCard": false,
"CustomDeck": {
"2692": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276382501/EAECE45E550BE8723A21A2DE00B4D64D74B08710/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "514fe7",
"Name": "Card",
"Transform": {
"posX": 21.5538635,
"posY": 1.366633,
"posZ": -68.15456,
"rotX": 0.0213430077,
"rotY": 270.0011,
"rotZ": 0.0164976269,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Savage Tiger",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 269202,
"SidewaysCard": false,
"CustomDeck": {
"2692": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276382501/EAECE45E550BE8723A21A2DE00B4D64D74B08710/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "658e47",
"Name": "Deck",
"Transform": {
"posX": -22.275135,
"posY": 2.341123,
"posZ": -78.2229462,
"rotX": 0.0208081733,
"rotY": 269.999969,
"rotZ": 180.016769,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Stampede Encounter Set",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": false,
"SidewaysCard": false,
"DeckIDs": [
270800,
270801,
270802
],
"CustomDeck": {
"2708": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870697260293411807/D9BBB7E82936ABE55C7299088556D17D4149AEA7/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "2830d9",
"Name": "Card",
"Transform": {
"posX": -27.1081676,
"posY": 1.31466043,
"posZ": -50.92882,
"rotX": 0.02092839,
"rotY": 270.000031,
"rotZ": 0.016006995,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Trampled Underfoot",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 270800,
"SidewaysCard": false,
"CustomDeck": {
"2708": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870697260293411807/D9BBB7E82936ABE55C7299088556D17D4149AEA7/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "a70b5d",
"Name": "Card",
"Transform": {
"posX": -27.1702671,
"posY": 1.35642779,
"posZ": -51.2482643,
"rotX": 0.0204208139,
"rotY": 270.000031,
"rotZ": 0.0131465085,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Charging Rhinoceros",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 270801,
"SidewaysCard": false,
"CustomDeck": {
"2708": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870697260293411807/D9BBB7E82936ABE55C7299088556D17D4149AEA7/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "a19b11",
"Name": "Card",
"Transform": {
"posX": -27.298418,
"posY": 1.39032984,
"posZ": -51.15118,
"rotX": 0.02184725,
"rotY": 270.000031,
"rotZ": 0.0166021865,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Berserk Elephant",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 270802,
"SidewaysCard": false,
"CustomDeck": {
"2708": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870697260293411807/D9BBB7E82936ABE55C7299088556D17D4149AEA7/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "f7403c",
"Name": "Deck",
"Transform": {
"posX": -22.0190773,
"posY": 2.343333,
"posZ": -72.0392151,
"rotX": 0.0208081976,
"rotY": 269.999969,
"rotZ": 180.016769,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Spiders Encounter Set",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": false,
"SidewaysCard": false,
"DeckIDs": [
270700,
270701,
270702
],
"CustomDeck": {
"2707": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870697260293410774/94CF9F916B2F913F13028E59B5BBB5DEDE76C4CF/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "4abade",
"Name": "Card",
"Transform": {
"posX": -23.3748951,
"posY": 1.31774688,
"posZ": -45.0065,
"rotX": 0.02096923,
"rotY": 269.952759,
"rotZ": 0.015805,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Tangling Webs",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 270700,
"SidewaysCard": false,
"CustomDeck": {
"2707": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870697260293410774/94CF9F916B2F913F13028E59B5BBB5DEDE76C4CF/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "9a1cdf",
"Name": "Card",
"Transform": {
"posX": -23.5017471,
"posY": 1.359529,
"posZ": -44.85992,
"rotX": 0.0250807051,
"rotY": 269.97702,
"rotZ": 0.0108684814,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Tangling Webs",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 270701,
"SidewaysCard": false,
"CustomDeck": {
"2707": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870697260293410774/94CF9F916B2F913F13028E59B5BBB5DEDE76C4CF/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "562878",
"Name": "Card",
"Transform": {
"posX": -23.4667759,
"posY": 1.39349842,
"posZ": -45.16588,
"rotX": 0.0207694136,
"rotY": 269.983429,
"rotZ": 0.0164016783,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Giant Tarantula",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 270702,
"SidewaysCard": false,
"CustomDeck": {
"2707": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870697260293410774/94CF9F916B2F913F13028E59B5BBB5DEDE76C4CF/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "daa092",
"Name": "Deck",
"Transform": {
"posX": -23.065052,
"posY": 2.34393167,
"posZ": -66.76614,
"rotX": 0.020808585,
"rotY": 270.0,
"rotZ": 180.016769,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Snakes Encounter Set",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": false,
"SidewaysCard": false,
"DeckIDs": [
270600,
270601,
270602
],
"CustomDeck": {
"2706": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870697260293409407/A5658C6413B4EF9E44E5EDAA256C292F1DFBB28C/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "91202a",
"Name": "Card",
"Transform": {
"posX": -19.4805527,
"posY": 1.317286,
"posZ": -51.42474,
"rotX": 0.0209194962,
"rotY": 270.0084,
"rotZ": 0.0160570238,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Rainforest Viper",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 270600,
"SidewaysCard": false,
"CustomDeck": {
"2706": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870697260293409407/A5658C6413B4EF9E44E5EDAA256C292F1DFBB28C/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "3f088e",
"Name": "Card",
"Transform": {
"posX": -19.31576,
"posY": 1.35921788,
"posZ": -51.25872,
"rotX": 0.022883581,
"rotY": 270.0084,
"rotZ": 0.0144423516,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Hidden Menace",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 270601,
"SidewaysCard": false,
"CustomDeck": {
"2706": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870697260293409407/A5658C6413B4EF9E44E5EDAA256C292F1DFBB28C/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "7c11b4",
"Name": "Card",
"Transform": {
"posX": -19.3545475,
"posY": 1.39320838,
"posZ": -51.154583,
"rotX": 0.0205599535,
"rotY": 270.0084,
"rotZ": 0.0161898285,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Hidden Menace",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 270602,
"SidewaysCard": false,
"CustomDeck": {
"2706": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870697260293409407/A5658C6413B4EF9E44E5EDAA256C292F1DFBB28C/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "44afc7",
"Name": "Deck",
"Transform": {
"posX": -23.07435,
"posY": 2.007384,
"posZ": -104.867126,
"rotX": 0.02080842,
"rotY": 270.0,
"rotZ": 180.016769,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Quicksand Encounter Set",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": false,
"SidewaysCard": false,
"DeckIDs": [
268802,
268801,
268800
],
"CustomDeck": {
"2688": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276378389/B4B7FB4FA99B3A2E2E3E4646D7914F4AD2BC13D6/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "0cdb4f",
"Name": "Card",
"Transform": {
"posX": 21.4666634,
"posY": 1.29608655,
"posZ": -50.1384621,
"rotX": 0.0209212,
"rotY": 270.021851,
"rotZ": 0.01604578,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Quicksand Pit",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 268802,
"SidewaysCard": false,
"CustomDeck": {
"2688": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276378389/B4B7FB4FA99B3A2E2E3E4646D7914F4AD2BC13D6/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "1bc3ce",
"Name": "Card",
"Transform": {
"posX": 21.3064232,
"posY": 1.337903,
"posZ": -49.95226,
"rotX": 0.019072827,
"rotY": 270.020355,
"rotZ": 0.0142658744,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Quicksand Pit",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 268801,
"SidewaysCard": false,
"CustomDeck": {
"2688": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276378389/B4B7FB4FA99B3A2E2E3E4646D7914F4AD2BC13D6/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "790fce",
"Name": "Card",
"Transform": {
"posX": 21.42977,
"posY": 1.37260354,
"posZ": -49.67911,
"rotX": 0.0205799118,
"rotY": 270.022583,
"rotZ": 0.01585853,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Quicksand Pit",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 268800,
"SidewaysCard": false,
"CustomDeck": {
"2688": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276378389/B4B7FB4FA99B3A2E2E3E4646D7914F4AD2BC13D6/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "57898e",
"Name": "Deck",
"Transform": {
"posX": -23.58652,
"posY": 2.33504462,
"posZ": -96.89724,
"rotX": 0.0208074637,
"rotY": 269.999969,
"rotZ": 180.016769,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Monsoon Encounter Set",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": false,
"SidewaysCard": false,
"DeckIDs": [
268600,
268601,
268602
],
"CustomDeck": {
"2686": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276376681/E84FBB15C0E41101EADCE96A1DEDA8FDE7E1BE9B/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "f0ae03",
"Name": "Card",
"Transform": {
"posX": 21.1372452,
"posY": 1.29510093,
"posZ": -52.9168663,
"rotX": 0.02145229,
"rotY": 269.9925,
"rotZ": 0.0125408927,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Torrential Downpour",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 268600,
"SidewaysCard": false,
"CustomDeck": {
"2686": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276376681/E84FBB15C0E41101EADCE96A1DEDA8FDE7E1BE9B/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "de0eaf",
"Name": "Card",
"Transform": {
"posX": 21.313509,
"posY": 1.33673024,
"posZ": -53.402832,
"rotX": 0.01615253,
"rotY": 269.9925,
"rotZ": 0.0207034964,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Torrential Downpour",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 268601,
"SidewaysCard": false,
"CustomDeck": {
"2686": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276376681/E84FBB15C0E41101EADCE96A1DEDA8FDE7E1BE9B/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "e2694f",
"Name": "Card",
"Transform": {
"posX": 20.7980766,
"posY": 1.37076461,
"posZ": -53.2578545,
"rotX": 0.0209043771,
"rotY": 269.992432,
"rotZ": 0.0162801817,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Torrential Downpour",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 268602,
"SidewaysCard": false,
"CustomDeck": {
"2686": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276376681/E84FBB15C0E41101EADCE96A1DEDA8FDE7E1BE9B/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "6b59f0",
"Name": "Deck",
"Transform": {
"posX": -19.7418823,
"posY": 2.33749819,
"posZ": -92.964325,
"rotX": 0.0208078623,
"rotY": 270.0,
"rotZ": 180.016769,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Insects Encounter Set",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": false,
"SidewaysCard": false,
"DeckIDs": [
268400,
268401,
268402
],
"CustomDeck": {
"2684": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276373786/80F14A977D91611CC23132A66A22CEFA893EDEE5/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "840a4b",
"Name": "Card",
"Transform": {
"posX": 25.0508232,
"posY": 1.29218733,
"posZ": -67.90123,
"rotX": 0.02093279,
"rotY": 270.014923,
"rotZ": 0.01595221,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Vicious Mosquitos",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 268400,
"SidewaysCard": false,
"CustomDeck": {
"2684": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276373786/80F14A977D91611CC23132A66A22CEFA893EDEE5/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "09b78c",
"Name": "Card",
"Transform": {
"posX": 25.1758156,
"posY": 1.334095,
"posZ": -67.7666245,
"rotX": 0.0231745616,
"rotY": 270.014984,
"rotZ": 0.0145197483,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Tsetse Fly Bite",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 268401,
"SidewaysCard": false,
"CustomDeck": {
"2684": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276373786/80F14A977D91611CC23132A66A22CEFA893EDEE5/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "800ce9",
"Name": "Card",
"Transform": {
"posX": 24.9140148,
"posY": 1.36793029,
"posZ": -67.99905,
"rotX": 0.0207903981,
"rotY": 270.014954,
"rotZ": 0.0163587052,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Army of Ants",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 268402,
"SidewaysCard": false,
"CustomDeck": {
"2684": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276373786/80F14A977D91611CC23132A66A22CEFA893EDEE5/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "fb283a",
"Name": "Deck",
"Transform": {
"posX": -20.4856415,
"posY": 2.33975649,
"posZ": -84.81526,
"rotX": 0.0208076686,
"rotY": 270.0,
"rotZ": 180.016769,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Hippos Encounter Set",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": false,
"SidewaysCard": false,
"DeckIDs": [
268300,
268301,
268302
],
"CustomDeck": {
"2683": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276372693/EA7F2E6156917EC8083FAAE13BAAADB11D6B7F0A/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "312425",
"Name": "Card",
"Transform": {
"posX": 24.6207619,
"posY": 1.29318035,
"posZ": -63.9701958,
"rotX": 0.02095358,
"rotY": 269.9986,
"rotZ": 0.015839586,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Territorial Beasts",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 268300,
"SidewaysCard": false,
"CustomDeck": {
"2683": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276372693/EA7F2E6156917EC8083FAAE13BAAADB11D6B7F0A/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "6ee522",
"Name": "Card",
"Transform": {
"posX": 24.804945,
"posY": 1.33509588,
"posZ": -63.8842354,
"rotX": 0.0231752861,
"rotY": 269.9986,
"rotZ": 0.0148908664,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Enraged Hippopotamus",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 268301,
"SidewaysCard": false,
"CustomDeck": {
"2683": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276372693/EA7F2E6156917EC8083FAAE13BAAADB11D6B7F0A/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "458430",
"Name": "Card",
"Transform": {
"posX": 24.75588,
"posY": 1.36899889,
"posZ": -64.09441,
"rotX": 0.0212697051,
"rotY": 269.9985,
"rotZ": 0.016194379,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Enraged Hippopotamus",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 268302,
"SidewaysCard": false,
"CustomDeck": {
"2683": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276372693/EA7F2E6156917EC8083FAAE13BAAADB11D6B7F0A/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "16bb06",
"Name": "Deck",
"Transform": {
"posX": -10.5389986,
"posY": 2.007384,
"posZ": -110.883,
"rotX": 0.0208082814,
"rotY": 270.0,
"rotZ": 180.016769,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Gorillas Encounter Set",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": false,
"SidewaysCard": false,
"DeckIDs": [
268200,
268201,
268202
],
"CustomDeck": {
"2682": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276371784/A7EAF9B5EE81B317905481B9BD1FABA1ADCB4F56/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "8abb3c",
"Name": "Card",
"Transform": {
"posX": 24.33702,
"posY": 1.2939142,
"posZ": -61.1086273,
"rotX": 0.0209677573,
"rotY": 269.993225,
"rotZ": 0.01578696,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Eyes in the Mist",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 268200,
"SidewaysCard": false,
"CustomDeck": {
"2682": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276371784/A7EAF9B5EE81B317905481B9BD1FABA1ADCB4F56/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "d38359",
"Name": "Card",
"Transform": {
"posX": 24.2825737,
"posY": 1.33573771,
"posZ": -61.03516,
"rotX": 0.0183939338,
"rotY": 269.993225,
"rotZ": 0.0148416823,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Furious Silverback",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 268201,
"SidewaysCard": false,
"CustomDeck": {
"2682": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276371784/A7EAF9B5EE81B317905481B9BD1FABA1ADCB4F56/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "96977b",
"Name": "Card",
"Transform": {
"posX": 24.34784,
"posY": 1.36975265,
"posZ": -60.99368,
"rotX": 0.02141279,
"rotY": 269.993225,
"rotZ": 0.016307462,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Furious Silverback",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 268202,
"SidewaysCard": false,
"CustomDeck": {
"2682": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276371784/A7EAF9B5EE81B317905481B9BD1FABA1ADCB4F56/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "657162",
"Name": "Deck",
"Transform": {
"posX": -9.393531,
"posY": 2.00733137,
"posZ": -102.3101,
"rotX": 0.0208080653,
"rotY": 270.000061,
"rotZ": 180.016769,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Earthquake Encounter Set",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": false,
"SidewaysCard": false,
"DeckIDs": [
268102,
268101,
268100
],
"CustomDeck": {
"2681": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276370543/A37839D17F53955300B4A63ECD58E262AFFAAEAA/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "1b303f",
"Name": "Card",
"Transform": {
"posX": 24.80714,
"posY": 1.29628444,
"posZ": -53.6193542,
"rotX": 0.0208951514,
"rotY": 269.9983,
"rotZ": 0.0162725,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Collapsing Ground",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 268102,
"SidewaysCard": false,
"CustomDeck": {
"2681": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276370543/A37839D17F53955300B4A63ECD58E262AFFAAEAA/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "9c8303",
"Name": "Card",
"Transform": {
"posX": 24.7718678,
"posY": 1.338161,
"posZ": -53.36103,
"rotX": 0.0189236719,
"rotY": 269.9983,
"rotZ": 0.0135790566,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Collapsing Ground",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 268101,
"SidewaysCard": false,
"CustomDeck": {
"2681": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276370543/A37839D17F53955300B4A63ECD58E262AFFAAEAA/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "a46c05",
"Name": "Card",
"Transform": {
"posX": 24.808054,
"posY": 1.3721633,
"posZ": -53.3087349,
"rotX": 0.02122983,
"rotY": 269.9983,
"rotZ": 0.0160391368,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Collapsing Ground",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 268100,
"SidewaysCard": false,
"CustomDeck": {
"2681": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276370543/A37839D17F53955300B4A63ECD58E262AFFAAEAA/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "f5c9c6",
"Name": "Deck",
"Transform": {
"posX": -5.48708153,
"posY": 2.34788752,
"posZ": -76.70874,
"rotX": 0.02080832,
"rotY": 269.999939,
"rotZ": 180.016769,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Crocodiles Encounter Set",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": false,
"SidewaysCard": false,
"DeckIDs": [
270500,
270501,
270502
],
"CustomDeck": {
"2705": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870697260293407747/EB7115C88427376298827CCFE4490F6074D32711/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "c44970",
"Name": "Card",
"Transform": {
"posX": -16.00113,
"posY": 1.32042634,
"posZ": -45.030056,
"rotX": 0.0208751783,
"rotY": 270.001221,
"rotZ": 0.0163730867,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Violent Ambush",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 270500,
"SidewaysCard": false,
"CustomDeck": {
"2705": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870697260293407747/EB7115C88427376298827CCFE4490F6074D32711/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "8efd3a",
"Name": "Card",
"Transform": {
"posX": -16.0350189,
"posY": 1.36225808,
"posZ": -45.09875,
"rotX": 0.0202912763,
"rotY": 270.001251,
"rotZ": 0.0127606923,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Violent Ambush",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 270501,
"SidewaysCard": false,
"CustomDeck": {
"2705": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870697260293407747/EB7115C88427376298827CCFE4490F6074D32711/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "c5743e",
"Name": "Card",
"Transform": {
"posX": -16.0480175,
"posY": 1.44069886,
"posZ": -44.9269829,
"rotX": 1.72530949,
"rotY": 270.016754,
"rotZ": 0.0171226151,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "River Crocodile",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 270502,
"SidewaysCard": false,
"CustomDeck": {
"2705": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870697260293407747/EB7115C88427376298827CCFE4490F6074D32711/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "29f6b6",
"Name": "Deck",
"Transform": {
"posX": -5.73112965,
"posY": 2.343653,
"posZ": -89.91059,
"rotX": 0.0208074432,
"rotY": 269.999969,
"rotZ": 180.016769,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Climate Encounter Set",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": false,
"SidewaysCard": false,
"DeckIDs": [
267900,
267901,
267902
],
"CustomDeck": {
"2679": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276368674/4B6C8D8422818E8E05176CF59136D59CF433FA7B/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "eb5d9f",
"Name": "Card",
"Transform": {
"posX": 24.8880634,
"posY": 1.29811287,
"posZ": -47.430706,
"rotX": 0.0210058335,
"rotY": 270.002747,
"rotZ": 0.0154613191,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Overheated",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 267900,
"SidewaysCard": false,
"CustomDeck": {
"2679": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276368674/4B6C8D8422818E8E05176CF59136D59CF433FA7B/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "116f06",
"Name": "Card",
"Transform": {
"posX": 24.9569988,
"posY": 1.33991,
"posZ": -47.68222,
"rotX": 0.0233008526,
"rotY": 270.002747,
"rotZ": 0.0143792676,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Overheated",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 267901,
"SidewaysCard": false,
"CustomDeck": {
"2679": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276368674/4B6C8D8422818E8E05176CF59136D59CF433FA7B/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "6c30e3",
"Name": "Card",
"Transform": {
"posX": 24.5949345,
"posY": 1.37379181,
"posZ": -47.6089973,
"rotX": 0.0208919179,
"rotY": 270.0027,
"rotZ": 0.016305685,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Overheated",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 267902,
"SidewaysCard": false,
"CustomDeck": {
"2679": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276368674/4B6C8D8422818E8E05176CF59136D59CF433FA7B/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
}
]
},
{
"GUID": "39a613",
"Name": "Card",
"Transform": {
"posX": -23.6765,
"posY": 1.62920976,
"posZ": 3.86000061,
"rotX": 359.9201,
"rotY": 270.0067,
"rotZ": 180.016815,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Attic",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 272300,
"SidewaysCard": false,
"CustomDeck": {
"2723": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276353109/92C8607879C19C063A02520B704EE99585BA13EE/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276353530/A378394BC8A7714E2841AB2A08AC0BD25562A91E/",
"NumWidth": 4,
"NumHeight": 3,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "b022fa",
"Name": "Custom_Tile",
"Transform": {
"posX": -27.0465279,
"posY": 1.62028217,
"posZ": 3.785087,
"rotX": 359.9201,
"rotY": 270.009979,
"rotZ": 0.0168545172,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "78c4cf",
"Name": "Card",
"Transform": {
"posX": -30.2242,
"posY": 1.63834012,
"posZ": 3.86000133,
"rotX": 359.9201,
"rotY": 270.006775,
"rotZ": 180.016815,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Master Bedroom",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 272705,
"SidewaysCard": false,
"CustomDeck": {
"2727": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276353109/92C8607879C19C063A02520B704EE99585BA13EE/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276353530/A378394BC8A7714E2841AB2A08AC0BD25562A91E/",
"NumWidth": 4,
"NumHeight": 3,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "10154f",
"Name": "Custom_Tile",
"Transform": {
"posX": -30.224226,
"posY": 1.6235919,
"posZ": -0.0300144944,
"rotX": 0.0168392789,
"rotY": 180.0,
"rotZ": 0.07993974,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.6045295,
"g": 0.6045295,
"b": 0.6045295
},
"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,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "9ae64e",
"Name": "Custom_Tile",
"Transform": {
"posX": -27.20773,
"posY": 1.6193676,
"posZ": -0.09121096,
"rotX": 359.9554,
"rotY": 224.993118,
"rotZ": 0.06838511,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "d30758",
"Name": "Custom_Tile",
"Transform": {
"posX": -26.57533,
"posY": 1.61734092,
"posZ": -3.98711753,
"rotX": 359.9201,
"rotY": 270.012543,
"rotZ": 0.016849814,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "6eb2d5",
"Name": "Card",
"Transform": {
"posX": -30.2242,
"posY": 1.63608015,
"posZ": -3.83000016,
"rotX": 359.9201,
"rotY": 270.0044,
"rotZ": 180.01683,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Spiral Staircase",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 272506,
"SidewaysCard": false,
"CustomDeck": {
"2725": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276353109/92C8607879C19C063A02520B704EE99585BA13EE/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276353530/A378394BC8A7714E2841AB2A08AC0BD25562A91E/",
"NumWidth": 4,
"NumHeight": 3,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "4a7b4a",
"Name": "Custom_Tile",
"Transform": {
"posX": -33.3845329,
"posY": 1.6268822,
"posZ": -3.82931519,
"rotX": 359.9201,
"rotY": 270.009827,
"rotZ": 0.01685333,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "f871ed",
"Name": "Deck",
"Transform": {
"posX": -23.6765327,
"posY": 1.65127468,
"posZ": -11.5099945,
"rotX": 359.9201,
"rotY": 270.007843,
"rotZ": 180.016815,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Copies of Abandoned Room",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"SidewaysCard": false,
"DeckIDs": [
272903,
272901,
272904,
272902
],
"CustomDeck": {
"2729": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276353109/92C8607879C19C063A02520B704EE99585BA13EE/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276353530/A378394BC8A7714E2841AB2A08AC0BD25562A91E/",
"NumWidth": 4,
"NumHeight": 3,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "5e94cb",
"Name": "Card",
"Transform": {
"posX": -23.67656,
"posY": 1.65371227,
"posZ": -15.2800846,
"rotX": 359.838165,
"rotY": 270.004517,
"rotZ": 180.113449,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Abandoned Room",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 272903,
"SidewaysCard": false,
"CustomDeck": {
"2672": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276353109/92C8607879C19C063A02520B704EE99585BA13EE/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276353530/A378394BC8A7714E2841AB2A08AC0BD25562A91E/",
"NumWidth": 4,
"NumHeight": 3,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "f6bead",
"Name": "Card",
"Transform": {
"posX": -23.6766567,
"posY": 1.62365055,
"posZ": -15.2799873,
"rotX": 359.919952,
"rotY": 270.0066,
"rotZ": 180.013184,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Abandoned Room",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 272901,
"SidewaysCard": false,
"CustomDeck": {
"2672": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276353109/92C8607879C19C063A02520B704EE99585BA13EE/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276353530/A378394BC8A7714E2841AB2A08AC0BD25562A91E/",
"NumWidth": 4,
"NumHeight": 3,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "838a93",
"Name": "Card",
"Transform": {
"posX": -23.6764736,
"posY": 1.655368,
"posZ": -11.5101233,
"rotX": 359.8629,
"rotY": 270.0063,
"rotZ": 180.150085,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Abandoned Room",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 272904,
"SidewaysCard": false,
"CustomDeck": {
"2672": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276353109/92C8607879C19C063A02520B704EE99585BA13EE/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276353530/A378394BC8A7714E2841AB2A08AC0BD25562A91E/",
"NumWidth": 4,
"NumHeight": 3,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "5a2332",
"Name": "Card",
"Transform": {
"posX": -23.67647,
"posY": 1.62485683,
"posZ": -11.5099964,
"rotX": 359.918976,
"rotY": 270.006531,
"rotZ": 180.006668,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Abandoned Room",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 272902,
"SidewaysCard": false,
"CustomDeck": {
"2672": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276353109/92C8607879C19C063A02520B704EE99585BA13EE/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276353530/A378394BC8A7714E2841AB2A08AC0BD25562A91E/",
"NumWidth": 4,
"NumHeight": 3,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "2a2fe8",
"Name": "Custom_Tile",
"Transform": {
"posX": -26.54943,
"posY": 1.61608171,
"posZ": -8.148515,
"rotX": 359.955475,
"rotY": 224.953033,
"rotZ": 0.06841234,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "21f34d",
"Name": "Custom_Tile",
"Transform": {
"posX": -30.22423,
"posY": 1.62133777,
"posZ": -7.7000165,
"rotX": 0.0168392472,
"rotY": 179.999924,
"rotZ": 0.07993948,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.6045295,
"g": 0.6045295,
"b": 0.6045295
},
"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,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "ddfae1",
"Name": "Custom_Tile",
"Transform": {
"posX": -33.36213,
"posY": 1.62571108,
"posZ": -7.707808,
"rotX": 359.97464,
"rotY": 210.002411,
"rotZ": 0.07760979,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "a6631e",
"Name": "Custom_Tile",
"Transform": {
"posX": -33.32803,
"posY": 1.630187,
"posZ": 7.68318367,
"rotX": 359.9316,
"rotY": 315.004242,
"rotZ": 359.9554,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "3e8cb3",
"Name": "Card",
"Transform": {
"posX": -36.7731,
"posY": 1.64970565,
"posZ": 11.4600019,
"rotX": 359.9201,
"rotY": 270.005127,
"rotZ": 180.016815,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Veranda",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 272408,
"SidewaysCard": false,
"CustomDeck": {
"2724": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276353109/92C8607879C19C063A02520B704EE99585BA13EE/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276353530/A378394BC8A7714E2841AB2A08AC0BD25562A91E/",
"NumWidth": 4,
"NumHeight": 3,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "7234af",
"Name": "Custom_Tile",
"Transform": {
"posX": -36.7731323,
"posY": 1.63495743,
"posZ": 7.569984,
"rotX": 0.0168399,
"rotY": 179.999481,
"rotZ": 0.07993957,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.6045295,
"g": 0.6045295,
"b": 0.6045295
},
"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,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "a7930b",
"Name": "Card",
"Transform": {
"posX": -36.7732048,
"posY": 1.64747226,
"posZ": 3.86000156,
"rotX": 359.9201,
"rotY": 270.000366,
"rotZ": 180.01683,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Parlor",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 270910,
"SidewaysCard": false,
"CustomDeck": {
"2709": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870697260293414201/F67849C5CDA7F01A77C92B62EAF595BD6CBE7470/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276353530/A378394BC8A7714E2841AB2A08AC0BD25562A91E/",
"NumWidth": 4,
"NumHeight": 3,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "2051e1",
"Name": "Card",
"Transform": {
"posX": -39.3855,
"posY": 1.65179789,
"posZ": 6.184,
"rotX": 359.9201,
"rotY": 270.012024,
"rotZ": 0.0168228876,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Sarah Whittle",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 269814,
"SidewaysCard": false,
"CustomDeck": {
"2698": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276387774/E6A00C41CDCADC620EF4788F691E334F88B9EE70/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 4,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "af1b40",
"Name": "Card",
"Transform": {
"posX": -40.205,
"posY": 1.65225959,
"posZ": 3.86670017,
"rotX": 359.9201,
"rotY": 269.98877,
"rotZ": 0.0168553311,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Jumanji Dice",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 270315,
"SidewaysCard": false,
"CustomDeck": {
"2703": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870697260293398218/DDCD2C00456FDEB03DB20A7E02AC43620A34935D/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 4,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "b9d4f9",
"Name": "Card",
"Transform": {
"posX": -39.394,
"posY": 1.65046394,
"posZ": 1.60479939,
"rotX": 359.9201,
"rotY": 270.0072,
"rotZ": 0.0168295782,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Alan Parrish",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 270113,
"SidewaysCard": false,
"CustomDeck": {
"2701": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276387774/E6A00C41CDCADC620EF4788F691E334F88B9EE70/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 4,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "89eac5",
"Name": "Custom_Tile",
"Transform": {
"posX": -36.77314,
"posY": 1.63272393,
"posZ": -0.0300146472,
"rotX": 0.0168393422,
"rotY": 179.999954,
"rotZ": 0.07993941,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.6045295,
"g": 0.6045295,
"b": 0.6045295
},
"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,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "0c0dbb",
"Name": "Card",
"Transform": {
"posX": -36.7731,
"posY": 1.645212,
"posZ": -3.83,
"rotX": 359.9201,
"rotY": 270.0042,
"rotZ": 180.01683,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Foyer",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 272109,
"SidewaysCard": false,
"CustomDeck": {
"2721": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276353109/92C8607879C19C063A02520B704EE99585BA13EE/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276353530/A378394BC8A7714E2841AB2A08AC0BD25562A91E/",
"NumWidth": 4,
"NumHeight": 3,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "23b97c",
"Name": "Custom_Tile",
"Transform": {
"posX": -36.77324,
"posY": 1.6304698,
"posZ": -7.70001554,
"rotX": 0.0168397184,
"rotY": 179.999619,
"rotZ": 0.07996024,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.6045295,
"g": 0.6045295,
"b": 0.6045295
},
"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,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "d4fd14",
"Name": "Card",
"Transform": {
"posX": -36.7731,
"posY": 1.64295506,
"posZ": -11.5100021,
"rotX": 359.9201,
"rotY": 270.005066,
"rotZ": 180.016815,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Reception Room",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 272807,
"SidewaysCard": false,
"CustomDeck": {
"2728": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276353109/92C8607879C19C063A02520B704EE99585BA13EE/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276353530/A378394BC8A7714E2841AB2A08AC0BD25562A91E/",
"NumWidth": 4,
"NumHeight": 3,
"BackIsHidden": false,
"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": "c5afbe",
"Name": "Custom_Model",
"Transform": {
"posX": -0.260230362,
"posY": 1.62692189,
"posZ": -16.4254951,
"rotX": 359.919739,
"rotY": 269.9958,
"rotZ": 0.0168303363,
"scaleX": 0.5000004,
"scaleY": 0.5000004,
"scaleZ": 0.5000004
},
"Nickname": "Jumanji Custom Data Helper",
"Description": "Include this in custom content for clue spawning!",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"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 \"Side Yard\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\r\n \"Backyard\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"front\"},\r\n \"Entry Hall\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"front\"},\r\n \"Living Room\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\r\n \"Dining Room\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"front\"},\r\n \"Kitchen\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"front\"},\r\n \"Bathroom\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\r\n \"Study\": {\"type\": \"perPlayer\", \"value\": 3, \"clueSide\": \"front\"},\r\n \"Whittle Residence\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\r\n \"Smitty's Diner\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"front\"},\r\n \"Whittle Residence\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\r\n \"Brantford Police Station\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\r\n \"Brantford City Hall\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\r\n \"Telephone Dispatch Office\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"front\"},\r\n \"Municipal Hospital\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"front\"},\r\n \"Chronicle Archives\": {\"type\": \"perPlayer\", \"value\": 3, \"clueSide\": \"front\"},\r\n \"St. Simon's Church\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\r\n \"Municipal Mental Ward\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"front\"},\r\n \"Boorstein Clinic\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"front\"},\r\n \"Howell Asylum\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"front\"},\r\n \"Parlor\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\r\n \"Foyer\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\r\n \"Veranda\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\r\n \"Reception Room\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"front\"},\r\n \"Spiral Staircase\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\r\n \"Master Bedroom\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"front\"},\r\n \"Abandoned Room\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\r\n \"Attic\": {\"type\": \"perPlayer\", \"value\": 3, \"clueSide\": \"front\"},\r\n \"Rampant Jungle\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\r\n \"Overgrown Streets\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"front\"},\r\n \"Tangled Neighborhood\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"front\"},\r\n \"Shrouded Clearing\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\r\n \"Dense Thicket\": {\"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",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "ca53e8",
"Name": "Custom_Model_Bag",
"Transform": {
"posX": -9.380982,
"posY": 1.59741724,
"posZ": -2.37029529,
"rotX": 359.932373,
"rotY": 314.9598,
"rotZ": 359.956726,
"scaleX": 3.0,
"scaleY": 3.0,
"scaleZ": 3.0
},
"Nickname": "Hard Tokens",
"Description": "Chaos Bag",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"chaos_bag"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"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/87098596225685535/6C95EB6308A0A9E89367DD67D5C65D09EB3C06A0/",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/959719855127933035/B199A5F515A8F3ED7E06780D3723285C02ADE085/",
"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": "function filterObjectEnter(obj)\n local props = obj.getCustomObject()\n if props ~= nil and props.image ~= nil then\n obj.setName(Global.call(\"getTokenName\", { url=props.image }))\n end\n return true\nend\n\nfunction onCollisionEnter(collision_info)\n self.shuffle()\n self.shuffle()\n self.shuffle()\nend",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "fbe491",
"Name": "Custom_Tile",
"Transform": {
"posX": -8.012274,
"posY": 3.33432841,
"posZ": -4.349642,
"rotX": 43.9206352,
"rotY": 318.710754,
"rotZ": 288.692871,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "Elder Sign",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/nEmqjmj.png",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "cbb37c",
"Name": "Custom_Tile",
"Transform": {
"posX": -7.90594864,
"posY": 3.391149,
"posZ": -4.16767263,
"rotX": 318.857269,
"rotY": 293.508972,
"rotZ": 107.798767,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "Auto-fail",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/lns4fhz.png",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "8919e8",
"Name": "Custom_Tile",
"Transform": {
"posX": -7.67131138,
"posY": 3.5698123,
"posZ": -3.86520076,
"rotX": 341.962433,
"rotY": 301.007324,
"rotZ": 104.550308,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "Skull",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/stbBxtx.png",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "e01c7f",
"Name": "Custom_Tile",
"Transform": {
"posX": -7.521031,
"posY": 3.62769365,
"posZ": -3.406009,
"rotX": 325.775879,
"rotY": 297.5439,
"rotZ": 276.414978,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "-3",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/yfs8gHq.png",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "20798a",
"Name": "Custom_Tile",
"Transform": {
"posX": -7.456582,
"posY": 3.5040288,
"posZ": -3.61385775,
"rotX": 25.9270611,
"rotY": 304.475555,
"rotZ": 279.250916,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "-4",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/qrgGQRD.png",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "dd1134",
"Name": "Custom_Tile",
"Transform": {
"posX": -7.062924,
"posY": 3.70667934,
"posZ": -2.915209,
"rotX": 347.269623,
"rotY": 304.319153,
"rotZ": 96.56824,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "-1",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/w3XbrCC.png",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "b8c4d2",
"Name": "Custom_Tile",
"Transform": {
"posX": -7.973791,
"posY": 3.84865928,
"posZ": -4.224893,
"rotX": 354.887726,
"rotY": 303.6754,
"rotZ": 285.645538,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "Elder Thing",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/ttnspKt.png",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "ea22fb",
"Name": "Custom_Tile",
"Transform": {
"posX": -7.582466,
"posY": 3.44921541,
"posZ": -3.87196684,
"rotX": 2.545414,
"rotY": 305.6051,
"rotZ": 282.7191,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "Skull",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/stbBxtx.png",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "7481bc",
"Name": "Custom_Tile",
"Transform": {
"posX": -7.09491873,
"posY": 3.81407428,
"posZ": -2.889849,
"rotX": 358.368225,
"rotY": 306.498627,
"rotZ": 276.071747,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "-1",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/w3XbrCC.png",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "7fcd14",
"Name": "Custom_Tile",
"Transform": {
"posX": -6.954187,
"posY": 3.70172548,
"posZ": -2.70322967,
"rotX": 1.36859775,
"rotY": 306.064972,
"rotZ": 96.25993,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "0",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/btEtVfd.png",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "8e9969",
"Name": "Custom_Tile",
"Transform": {
"posX": -7.193728,
"posY": 3.62805557,
"posZ": -3.35616326,
"rotX": 20.81613,
"rotY": 304.196136,
"rotZ": 95.4138947,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "-2",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/bfTg2hb.png",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "53997b",
"Name": "Custom_Tile",
"Transform": {
"posX": -7.65795755,
"posY": 3.65677977,
"posZ": -3.552847,
"rotX": 16.2252,
"rotY": 305.104675,
"rotZ": 99.69667,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "-5",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/3Ym1IeG.png",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "a1e645",
"Name": "Custom_Tile",
"Transform": {
"posX": -7.25128031,
"posY": 3.62965846,
"posZ": -3.07940221,
"rotX": 5.118368,
"rotY": 305.391541,
"rotZ": 276.467438,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "-1",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/w3XbrCC.png",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "e1a10c",
"Name": "Custom_Tile",
"Transform": {
"posX": -7.326857,
"posY": 3.63369846,
"posZ": -3.17323685,
"rotX": 15.0627785,
"rotY": 306.159241,
"rotZ": 275.284637,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "-2",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/bfTg2hb.png",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "183c56",
"Name": "Custom_Tile",
"Transform": {
"posX": -7.80916357,
"posY": 3.19392776,
"posZ": -3.85688567,
"rotX": 357.991119,
"rotY": 304.667877,
"rotZ": 105.943909,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "Skull",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/stbBxtx.png",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "f0f8ef",
"Name": "Custom_Tile",
"Transform": {
"posX": -6.92924,
"posY": 3.715659,
"posZ": -2.70109439,
"rotX": 8.181516,
"rotY": 307.1251,
"rotZ": 275.748169,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "0",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/btEtVfd.png",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "cba0aa",
"Name": "Custom_Model_Bag",
"Transform": {
"posX": -9.423447,
"posY": 1.59881711,
"posZ": 2.201668,
"rotX": 359.931763,
"rotY": 315.0249,
"rotZ": 359.95636,
"scaleX": 3.0,
"scaleY": 3.0,
"scaleZ": 3.0
},
"Nickname": "Standard Tokens",
"Description": "Chaos Bag",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"chaos_bag"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"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/87098596225685535/6C95EB6308A0A9E89367DD67D5C65D09EB3C06A0/",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/959719855127933035/B199A5F515A8F3ED7E06780D3723285C02ADE085/",
"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": "function filterObjectEnter(obj)\n local props = obj.getCustomObject()\n if props ~= nil and props.image ~= nil then\n obj.setName(Global.call(\"getTokenName\", { url=props.image }))\n end\n return true\nend\n\nfunction onCollisionEnter(collision_info)\n self.shuffle()\n self.shuffle()\n self.shuffle()\nend",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "02703f",
"Name": "Custom_Tile",
"Transform": {
"posX": -10.2971067,
"posY": 3.135698,
"posZ": 1.98896575,
"rotX": 7.26074839,
"rotY": 309.56662,
"rotZ": 293.3864,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "Elder Thing",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/ttnspKt.png",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "dae80d",
"Name": "Custom_Tile",
"Transform": {
"posX": -10.1117115,
"posY": 3.97225213,
"posZ": 2.19809532,
"rotX": 359.034424,
"rotY": 306.8216,
"rotZ": 282.881226,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "-4",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/qrgGQRD.png",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "a24643",
"Name": "Custom_Tile",
"Transform": {
"posX": -9.748,
"posY": 4.106498,
"posZ": 2.60703158,
"rotX": 4.79241657,
"rotY": 308.286835,
"rotZ": 102.121292,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "-1",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/w3XbrCC.png",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "240ff7",
"Name": "Custom_Tile",
"Transform": {
"posX": -9.512972,
"posY": 4.250103,
"posZ": 3.07731724,
"rotX": 357.898682,
"rotY": 305.5822,
"rotZ": 103.064468,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "+1",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/uIx8jbY.png",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "ec3683",
"Name": "Custom_Tile",
"Transform": {
"posX": -9.652753,
"posY": 4.58675671,
"posZ": 2.69296,
"rotX": 5.559061,
"rotY": 307.373322,
"rotZ": 283.3579,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "0",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/btEtVfd.png",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "dd69ee",
"Name": "Custom_Tile",
"Transform": {
"posX": -10.0123835,
"posY": 3.56261468,
"posZ": 2.23959017,
"rotX": 354.69104,
"rotY": 305.795715,
"rotZ": 103.032745,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "Skull",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/stbBxtx.png",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "e89c81",
"Name": "Custom_Tile",
"Transform": {
"posX": -9.942545,
"posY": 3.95193529,
"posZ": 2.3797183,
"rotX": 333.201355,
"rotY": 300.340546,
"rotZ": 284.9389,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "-2",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/bfTg2hb.png",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "21ac74",
"Name": "Custom_Tile",
"Transform": {
"posX": -10.1511469,
"posY": 4.29774237,
"posZ": 2.4165113,
"rotX": 17.6180649,
"rotY": 310.9772,
"rotZ": 104.610947,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "-3",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/yfs8gHq.png",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "1fac0c",
"Name": "Custom_Tile",
"Transform": {
"posX": -10.4547148,
"posY": 4.246201,
"posZ": 1.664594,
"rotX": 308.996338,
"rotY": 299.598663,
"rotZ": 98.1107,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "Elder Sign",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/nEmqjmj.png",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "3d7860",
"Name": "Custom_Tile",
"Transform": {
"posX": -9.93543148,
"posY": 3.9078846,
"posZ": 2.52423358,
"rotX": 21.0126781,
"rotY": 312.862732,
"rotZ": 284.2841,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "-2",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/bfTg2hb.png",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "a0bd73",
"Name": "Custom_Tile",
"Transform": {
"posX": -10.4280233,
"posY": 4.341276,
"posZ": 1.76756358,
"rotX": 41.18389,
"rotY": 319.159363,
"rotZ": 287.9427,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "Auto-fail",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/lns4fhz.png",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "8b35f0",
"Name": "Custom_Tile",
"Transform": {
"posX": -9.59682751,
"posY": 3.83472276,
"posZ": 2.9994607,
"rotX": 356.568237,
"rotY": 305.306152,
"rotZ": 283.186676,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "0",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/btEtVfd.png",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "33201c",
"Name": "Custom_Tile",
"Transform": {
"posX": -10.2460651,
"posY": 3.82962251,
"posZ": 2.05203915,
"rotX": 5.559162,
"rotY": 308.4682,
"rotZ": 103.565536,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "Skull",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/stbBxtx.png",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "753bde",
"Name": "Custom_Tile",
"Transform": {
"posX": -9.737029,
"posY": 4.094751,
"posZ": 2.88411069,
"rotX": 3.947875,
"rotY": 306.816528,
"rotZ": 102.556885,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "-1",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/w3XbrCC.png",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "8733de",
"Name": "Custom_Tile",
"Transform": {
"posX": -9.829079,
"posY": 4.178472,
"posZ": 2.654887,
"rotX": 7.0428195,
"rotY": 308.416779,
"rotZ": 282.131866,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "-1",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/w3XbrCC.png",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "f43b4a",
"Name": "Custom_Tile",
"Transform": {
"posX": -10.3586121,
"posY": 4.086417,
"posZ": 2.064299,
"rotX": 350.331818,
"rotY": 304.627319,
"rotZ": 284.059448,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "Skull",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/stbBxtx.png",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "e11d84",
"Name": "Custom_Model_Bag",
"Transform": {
"posX": 12.2543564,
"posY": 1.46795487,
"posZ": 11.9858694,
"rotX": 359.920135,
"rotY": 269.9912,
"rotZ": 0.0168861151,
"scaleX": 2.21,
"scaleY": 0.46,
"scaleZ": 2.42
},
"Nickname": "1: Home Invasion",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"MaterialIndex": -1,
"MeshIndex": -1,
"CustomMesh": {
"MeshURL": "https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276523787/614D684BD99C5E12E9B3676E4FD0FE4B849BCD02/",
"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\":{\"183ac4\":{\"lock\":false,\"pos\":{\"x\":-30.2243,\"y\":1.6361,\"z\":-3.83},\"rot\":{\"x\":359.9201,\"y\":270.0004,\"z\":180.0168}},\"18aade\":{\"lock\":false,\"pos\":{\"x\":-23.6766,\"y\":1.6292,\"z\":3.86},\"rot\":{\"x\":359.9201,\"y\":270.0003,\"z\":180.0168}},\"2a0d05\":{\"lock\":false,\"pos\":{\"x\":-39.8651,\"y\":1.6387,\"z\":5.6268},\"rot\":{\"x\":359.9554,\"y\":224.9879,\"z\":0.0684}},\"2b891f\":{\"lock\":false,\"pos\":{\"x\":-30.2243,\"y\":1.6383,\"z\":3.86},\"rot\":{\"x\":359.9201,\"y\":270.0003,\"z\":180.0168}},\"39551c\":{\"lock\":false,\"pos\":{\"x\":-2.7247,\"y\":1.6208,\"z\":0.3733},\"rot\":{\"x\":0.0168,\"y\":180.0169,\"z\":0.0803}},\"462eab\":{\"lock\":false,\"pos\":{\"x\":-33.5154,\"y\":1.6271,\"z\":-3.7368},\"rot\":{\"x\":359.9201,\"y\":270.01,\"z\":0.0169}},\"47267e\":{\"lock\":false,\"pos\":{\"x\":-26.8813,\"y\":1.6178,\"z\":-3.8511},\"rot\":{\"x\":359.9201,\"y\":270.0127,\"z\":0.0169}},\"48984a\":{\"lock\":false,\"pos\":{\"x\":-30.2243,\"y\":1.6236,\"z\":0.0319},\"rot\":{\"x\":0.0167,\"y\":180.1258,\"z\":0.08}},\"53289e\":{\"lock\":false,\"pos\":{\"x\":-20.4131,\"y\":1.6535,\"z\":11.5509},\"rot\":{\"x\":359.9201,\"y\":270.0012,\"z\":180.0168}},\"538c3f\":{\"lock\":false,\"pos\":{\"x\":-19.1325,\"y\":1.607,\"z\":-3.8133},\"rot\":{\"x\":359.9746,\"y\":209.9842,\"z\":0.0776}},\"5658eb\":{\"lock\":false,\"pos\":{\"x\":-2.6886,\"y\":1.6191,\"z\":-5.0485},\"rot\":{\"x\":0.0168,\"y\":180.0164,\"z\":0.0803}},\"5676b4\":{\"lock\":false,\"pos\":{\"x\":-36.7732,\"y\":1.6452,\"z\":-3.83},\"rot\":{\"x\":359.9201,\"y\":270.0007,\"z\":180.0168}},\"615d2d\":{\"lock\":false,\"pos\":{\"x\":-20.3244,\"y\":1.6104,\"z\":1.9078},\"rot\":{\"x\":359.9224,\"y\":300.0088,\"z\":359.9747}},\"69c954\":{\"lock\":false,\"pos\":{\"x\":-43.37,\"y\":1.6555,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":270.0046,\"z\":180.0168}},\"7234af\":{\"lock\":false,\"pos\":{\"x\":-36.7732,\"y\":1.6327,\"z\":-0.03},\"rot\":{\"x\":0.0168,\"y\":180.0001,\"z\":0.0799}},\"7a167a\":{\"lock\":false,\"pos\":{\"x\":1.7006,\"y\":1.5583,\"z\":14.2872},\"rot\":{\"x\":359.9555,\"y\":224.7285,\"z\":0.0689}},\"8c9db7\":{\"lock\":false,\"pos\":{\"x\":-23.6766,\"y\":1.6269,\"z\":-3.83},\"rot\":{\"x\":359.9201,\"y\":270.0004,\"z\":180.0168}},\"966e21\":{\"lock\":false,\"pos\":{\"x\":-19.2546,\"y\":1.6095,\"z\":3.9467},\"rot\":{\"x\":359.9455,\"y\":329.9891,\"z\":359.9392}},\"a5fdd9\":{\"lock\":false,\"pos\":{\"x\":-23.6767,\"y\":1.6145,\"z\":-0.0299},\"rot\":{\"x\":0.0169,\"y\":179.9856,\"z\":0.0799}},\"b30c5d\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6189,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":270.0004,\"z\":180.0168}},\"b514de\":{\"lock\":false,\"pos\":{\"x\":-26.705,\"y\":1.6198,\"z\":3.8939},\"rot\":{\"x\":359.9201,\"y\":270.0127,\"z\":0.0169}},\"b98ab2\":{\"lock\":false,\"pos\":{\"x\":-36.7732,\"y\":1.6475,\"z\":3.86},\"rot\":{\"x\":359.9201,\"y\":270.0009,\"z\":180.0168}},\"c233d1\":{\"lock\":false,\"pos\":{\"x\":-40.0564,\"y\":1.6379,\"z\":2.0967},\"rot\":{\"x\":359.9554,\"y\":224.9916,\"z\":0.0684}},\"d7dcb8\":{\"lock\":false,\"pos\":{\"x\":-39.7295,\"y\":1.6352,\"z\":-5.5883},\"rot\":{\"x\":359.9316,\"y\":314.9885,\"z\":359.9554}},\"db2b2a\":{\"lock\":false,\"pos\":{\"x\":-33.4601,\"y\":1.6292,\"z\":3.744},\"rot\":{\"x\":359.9201,\"y\":270.0127,\"z\":0.0169}},\"eac9d0\":{\"lock\":false,\"pos\":{\"x\":-3.9277,\"y\":1.6722,\"z\":5.7572},\"rot\":{\"x\":359.9197,\"y\":269.9873,\"z\":180.0168}},\"faba94\":{\"lock\":false,\"pos\":{\"x\":-3.956,\"y\":1.5975,\"z\":-10.4412},\"rot\":{\"x\":359.9197,\"y\":269.9997,\"z\":0.0168}}}}",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "183ac4",
"Name": "Card",
"Transform": {
"posX": -30.2243,
"posY": 1.63608027,
"posZ": -3.83,
"rotX": 359.9201,
"rotY": 270.000366,
"rotZ": 180.01683,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Study",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 267300,
"SidewaysCard": false,
"CustomDeck": {
"2673": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276341564/2282BBB25E0A4432B2FAD61E0FECE3F155F947E0/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276341908/BED5652F068FD57909CFC00CC6EE15F08F032932/",
"NumWidth": 7,
"NumHeight": 2,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "18aade",
"Name": "Card",
"Transform": {
"posX": -23.6766,
"posY": 1.62920988,
"posZ": 3.86000013,
"rotX": 359.9201,
"rotY": 270.0003,
"rotZ": 180.01683,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Kitchen",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 267402,
"SidewaysCard": false,
"CustomDeck": {
"2674": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276341564/2282BBB25E0A4432B2FAD61E0FECE3F155F947E0/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276341908/BED5652F068FD57909CFC00CC6EE15F08F032932/",
"NumWidth": 7,
"NumHeight": 2,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "2a0d05",
"Name": "Custom_Tile",
"Transform": {
"posX": -39.8651,
"posY": 1.638698,
"posZ": 5.62680054,
"rotX": 359.9554,
"rotY": 224.98793,
"rotZ": 0.06838796,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "2b891f",
"Name": "Card",
"Transform": {
"posX": -30.2243,
"posY": 1.63834023,
"posZ": 3.86000037,
"rotX": 359.9201,
"rotY": 270.0003,
"rotZ": 180.01683,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Dining Room",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 267503,
"SidewaysCard": false,
"CustomDeck": {
"2675": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276341564/2282BBB25E0A4432B2FAD61E0FECE3F155F947E0/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276341908/BED5652F068FD57909CFC00CC6EE15F08F032932/",
"NumWidth": 7,
"NumHeight": 2,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "39551c",
"Name": "Deck",
"Transform": {
"posX": -2.72470522,
"posY": 1.62076044,
"posZ": 0.373301417,
"rotX": 0.0168119073,
"rotY": 180.0169,
"rotZ": 0.08026115,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Agenda Deck",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"SidewaysCard": true,
"DeckIDs": [
269722,
269723,
269724
],
"CustomDeck": {
"2697": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870697260293360181/F9B2AF1453A3FF9CCBA54A590E03ADE5EA4C262B/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1870697260293361288/24580DDAC7B665861EEAFEE53832587352E50FAD/",
"NumWidth": 5,
"NumHeight": 5,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "4a9ce4",
"Name": "Card",
"Transform": {
"posX": 4.046911,
"posY": 1.32531142,
"posZ": -53.2084923,
"rotX": 0.016857883,
"rotY": 180.000244,
"rotZ": 359.978668,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Agenda 3 - Impenetrable Jungle",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 269722,
"SidewaysCard": true,
"CustomDeck": {
"2697": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870697260293360181/F9B2AF1453A3FF9CCBA54A590E03ADE5EA4C262B/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1870697260293361288/24580DDAC7B665861EEAFEE53832587352E50FAD/",
"NumWidth": 5,
"NumHeight": 5,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "7f3e20",
"Name": "Card",
"Transform": {
"posX": 3.78829479,
"posY": 1.36709845,
"posZ": -53.0234146,
"rotX": 0.0184601285,
"rotY": 179.999969,
"rotZ": 359.9764,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Agenda 2 - Spreading Like Weeds",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 269723,
"SidewaysCard": true,
"CustomDeck": {
"2697": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870697260293360181/F9B2AF1453A3FF9CCBA54A590E03ADE5EA4C262B/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1870697260293361288/24580DDAC7B665861EEAFEE53832587352E50FAD/",
"NumWidth": 5,
"NumHeight": 5,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "234da0",
"Name": "Card",
"Transform": {
"posX": 3.7195406,
"posY": 1.40082574,
"posZ": -53.696743,
"rotX": 0.0186500344,
"rotY": 179.999771,
"rotZ": 359.976685,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Agenda 1 - Savage Garden",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 269724,
"SidewaysCard": true,
"CustomDeck": {
"2697": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870697260293360181/F9B2AF1453A3FF9CCBA54A590E03ADE5EA4C262B/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1870697260293361288/24580DDAC7B665861EEAFEE53832587352E50FAD/",
"NumWidth": 5,
"NumHeight": 5,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "462eab",
"Name": "Custom_Tile",
"Transform": {
"posX": -33.5154,
"posY": 1.627092,
"posZ": -3.73680043,
"rotX": 359.9201,
"rotY": 270.01,
"rotZ": 0.0168531053,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "47267e",
"Name": "Custom_Tile",
"Transform": {
"posX": -26.8813,
"posY": 1.61780751,
"posZ": -3.851101,
"rotX": 359.9201,
"rotY": 270.0127,
"rotZ": 0.0168493781,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "48984a",
"Name": "Custom_Tile",
"Transform": {
"posX": -30.2243,
"posY": 1.62361014,
"posZ": 0.03190009,
"rotX": 0.01666363,
"rotY": 180.125778,
"rotZ": 0.07997629,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.6045295,
"g": 0.6045295,
"b": 0.6045295
},
"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,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "53289e",
"Name": "Deck",
"Transform": {
"posX": -20.413126,
"posY": 1.65350151,
"posZ": 11.5509062,
"rotX": 359.9201,
"rotY": 270.00116,
"rotZ": 180.01683,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Copies of Side Yard",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"SidewaysCard": false,
"DeckIDs": [
269807,
269808,
269809,
269810
],
"CustomDeck": {
"2698": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276341564/2282BBB25E0A4432B2FAD61E0FECE3F155F947E0/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276341908/BED5652F068FD57909CFC00CC6EE15F08F032932/",
"NumWidth": 7,
"NumHeight": 2,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "03cf0f",
"Name": "Card",
"Transform": {
"posX": -43.37,
"posY": 1.73344028,
"posZ": 11.4600077,
"rotX": 359.922363,
"rotY": 270.000916,
"rotZ": 180.019684,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Side Yard",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 269807,
"SidewaysCard": false,
"CustomDeck": {
"2666": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276341564/2282BBB25E0A4432B2FAD61E0FECE3F155F947E0/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276341908/BED5652F068FD57909CFC00CC6EE15F08F032932/",
"NumWidth": 7,
"NumHeight": 2,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "46c2d0",
"Name": "Card",
"Transform": {
"posX": -43.3700027,
"posY": 1.72373462,
"posZ": 11.4599876,
"rotX": 359.919647,
"rotY": 270.00116,
"rotZ": 180.018616,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Side Yard",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 269808,
"SidewaysCard": false,
"CustomDeck": {
"2666": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276341564/2282BBB25E0A4432B2FAD61E0FECE3F155F947E0/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276341908/BED5652F068FD57909CFC00CC6EE15F08F032932/",
"NumWidth": 7,
"NumHeight": 2,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "fae8ba",
"Name": "Card",
"Transform": {
"posX": -43.3699532,
"posY": 1.68929827,
"posZ": 11.45987,
"rotX": 359.858215,
"rotY": 270.0011,
"rotZ": 180.164566,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Side Yard",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 269809,
"SidewaysCard": false,
"CustomDeck": {
"2666": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276341564/2282BBB25E0A4432B2FAD61E0FECE3F155F947E0/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276341908/BED5652F068FD57909CFC00CC6EE15F08F032932/",
"NumWidth": 7,
"NumHeight": 2,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "f4cde9",
"Name": "Card",
"Transform": {
"posX": -43.3700333,
"posY": 1.65908062,
"posZ": 11.460022,
"rotX": 359.9189,
"rotY": 270.001282,
"rotZ": 180.005966,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Side Yard",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 269810,
"SidewaysCard": false,
"CustomDeck": {
"2666": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276341564/2282BBB25E0A4432B2FAD61E0FECE3F155F947E0/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276341908/BED5652F068FD57909CFC00CC6EE15F08F032932/",
"NumWidth": 7,
"NumHeight": 2,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "538c3f",
"Name": "Custom_Tile",
"Transform": {
"posX": -19.1324978,
"posY": 1.60701334,
"posZ": -3.81329918,
"rotX": 359.97464,
"rotY": 209.984161,
"rotZ": 0.0776211545,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "5658eb",
"Name": "Deck",
"Transform": {
"posX": -2.68867779,
"posY": 1.61911678,
"posZ": -5.048508,
"rotX": 0.0168122184,
"rotY": 180.016678,
"rotZ": 0.08026075,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Act Deck",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"SidewaysCard": true,
"DeckIDs": [
266419,
266420,
266421
],
"CustomDeck": {
"2664": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1917989596840047596/2BAB015DA6B0ECC4FAA19C975EE2840F1728EC52/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1870697260293361288/24580DDAC7B665861EEAFEE53832587352E50FAD/",
"NumWidth": 5,
"NumHeight": 5,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "eac8ed",
"Name": "Card",
"Transform": {
"posX": -29.754385,
"posY": 1.3954823,
"posZ": -49.0815926,
"rotX": 0.01574842,
"rotY": 180.002869,
"rotZ": 356.073517,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Act 3 - Condemned Building",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 266419,
"SidewaysCard": true,
"CustomDeck": {
"2664": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1917989596840047596/2BAB015DA6B0ECC4FAA19C975EE2840F1728EC52/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1870697260293361288/24580DDAC7B665861EEAFEE53832587352E50FAD/",
"NumWidth": 5,
"NumHeight": 5,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "115cad",
"Name": "Card",
"Transform": {
"posX": -29.4487267,
"posY": 1.50187492,
"posZ": -49.4363251,
"rotX": 0.0157720279,
"rotY": 179.999512,
"rotZ": 359.252075,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Act 2 - No Dice",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 266420,
"SidewaysCard": true,
"CustomDeck": {
"2664": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1917989596840047596/2BAB015DA6B0ECC4FAA19C975EE2840F1728EC52/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1870697260293361288/24580DDAC7B665861EEAFEE53832587352E50FAD/",
"NumWidth": 5,
"NumHeight": 5,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "fb6163",
"Name": "Card",
"Transform": {
"posX": -29.8632317,
"posY": 1.64465547,
"posZ": -49.0381775,
"rotX": 4.199448,
"rotY": 179.984192,
"rotZ": 359.561371,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Act 1 - Invasive Species",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 266421,
"SidewaysCard": true,
"CustomDeck": {
"2664": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1917989596840047596/2BAB015DA6B0ECC4FAA19C975EE2840F1728EC52/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1870697260293361288/24580DDAC7B665861EEAFEE53832587352E50FAD/",
"NumWidth": 5,
"NumHeight": 5,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "5676b4",
"Name": "Card",
"Transform": {
"posX": -36.7732,
"posY": 1.64521217,
"posZ": -3.82999969,
"rotX": 359.9201,
"rotY": 270.0007,
"rotZ": 180.01683,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Living Room",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 269904,
"SidewaysCard": false,
"CustomDeck": {
"2699": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276341564/2282BBB25E0A4432B2FAD61E0FECE3F155F947E0/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276341908/BED5652F068FD57909CFC00CC6EE15F08F032932/",
"NumWidth": 7,
"NumHeight": 2,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "615d2d",
"Name": "Custom_Tile",
"Transform": {
"posX": -20.3244,
"posY": 1.61035693,
"posZ": 1.90779984,
"rotX": 359.9224,
"rotY": 300.0088,
"rotZ": 359.97467,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "69c954",
"Name": "Card",
"Transform": {
"posX": -43.37,
"posY": 1.65552771,
"posZ": -0.0299998019,
"rotX": 359.9201,
"rotY": 270.0046,
"rotZ": 180.01683,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Front Garden",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 270011,
"SidewaysCard": false,
"CustomDeck": {
"2700": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276341564/2282BBB25E0A4432B2FAD61E0FECE3F155F947E0/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276341908/BED5652F068FD57909CFC00CC6EE15F08F032932/",
"NumWidth": 7,
"NumHeight": 2,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "7234af",
"Name": "Custom_Tile",
"Transform": {
"posX": -36.7732,
"posY": 1.632724,
"posZ": -0.0300000831,
"rotX": 0.0168392491,
"rotY": 180.000015,
"rotZ": 0.0799392238,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.6045295,
"g": 0.6045295,
"b": 0.6045295
},
"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,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "7a167a",
"Name": "Custom_Model_Bag",
"Transform": {
"posX": 1.70060122,
"posY": 1.55831385,
"posZ": 14.2872019,
"rotX": 359.955475,
"rotY": 224.728455,
"rotZ": 0.0688838363,
"scaleX": 2.0,
"scaleY": 2.0,
"scaleZ": 2.0
},
"Nickname": "Set-aside",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "b3c641",
"Name": "Card",
"Transform": {
"posX": 3.369053,
"posY": 2.38436723,
"posZ": -95.65934,
"rotX": 0.0205965433,
"rotY": 269.9995,
"rotZ": 356.795532,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Wild Man",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 266513,
"SidewaysCard": false,
"CustomDeck": {
"2665": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1917989596840051442/607597AFC52E724B4FD89601EF3A0C0444F0B944/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 7,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "d01172",
"Name": "Deck",
"Transform": {
"posX": 30.01579,
"posY": 2.31631827,
"posZ": -83.97561,
"rotX": 0.0208106972,
"rotY": 269.9934,
"rotZ": 0.0167686269,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Lions Encounter Set",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": false,
"SidewaysCard": false,
"DeckIDs": [
268500,
268501
],
"CustomDeck": {
"2685": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276374906/B534C97542A0BE04B2398A69A6C6DB85A05DA1F6/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "ba7e5e",
"Name": "Card",
"Transform": {
"posX": 8.334637,
"posY": 1.32602453,
"posZ": -56.063488,
"rotX": 0.0209763218,
"rotY": 269.992157,
"rotZ": 0.0156911947,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Feral Roar",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 268500,
"SidewaysCard": false,
"CustomDeck": {
"2685": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276374906/B534C97542A0BE04B2398A69A6C6DB85A05DA1F6/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "f6f7f9",
"Name": "Card",
"Transform": {
"posX": 8.393179,
"posY": 1.36785448,
"posZ": -56.09618,
"rotX": 0.0240077749,
"rotY": 269.992126,
"rotZ": 0.0127312895,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Feral Roar",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 268501,
"SidewaysCard": false,
"CustomDeck": {
"2685": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276374906/B534C97542A0BE04B2398A69A6C6DB85A05DA1F6/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "79bf19",
"Name": "Card",
"Transform": {
"posX": 25.8627682,
"posY": 2.30242252,
"posZ": -70.78268,
"rotX": 0.02081071,
"rotY": 269.993439,
"rotZ": 0.01676884,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Ferocious Lion",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 268502,
"SidewaysCard": false,
"CustomDeck": {
"2685": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276374906/B534C97542A0BE04B2398A69A6C6DB85A05DA1F6/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "8c9db7",
"Name": "Card",
"Transform": {
"posX": -23.6766,
"posY": 1.62694991,
"posZ": -3.82999945,
"rotX": 359.9201,
"rotY": 270.000366,
"rotZ": 180.01683,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Bathroom",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 270101,
"SidewaysCard": false,
"CustomDeck": {
"2701": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276341564/2282BBB25E0A4432B2FAD61E0FECE3F155F947E0/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276341908/BED5652F068FD57909CFC00CC6EE15F08F032932/",
"NumWidth": 7,
"NumHeight": 2,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "966e21",
"Name": "Custom_Tile",
"Transform": {
"posX": -19.2545986,
"posY": 1.60946453,
"posZ": 3.9467,
"rotX": 359.945465,
"rotY": 329.989044,
"rotZ": 359.9392,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "a5fdd9",
"Name": "Custom_Tile",
"Transform": {
"posX": -23.6767,
"posY": 1.61446178,
"posZ": -0.02989978,
"rotX": 0.016859388,
"rotY": 179.985535,
"rotZ": 0.079936,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.6045295,
"g": 0.6045295,
"b": 0.6045295
},
"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,
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "b30c5d",
"Name": "Card",
"Transform": {
"posX": -17.1199989,
"posY": 1.6189239,
"posZ": -0.029999841,
"rotX": 359.9201,
"rotY": 270.000336,
"rotZ": 180.01683,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Backyard",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 270206,
"SidewaysCard": false,
"CustomDeck": {
"2702": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276341564/2282BBB25E0A4432B2FAD61E0FECE3F155F947E0/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276341908/BED5652F068FD57909CFC00CC6EE15F08F032932/",
"NumWidth": 7,
"NumHeight": 2,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "b514de",
"Name": "Custom_Tile",
"Transform": {
"posX": -26.705,
"posY": 1.61983788,
"posZ": 3.89390016,
"rotX": 359.9201,
"rotY": 270.0127,
"rotZ": 0.0168502312,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "b98ab2",
"Name": "Card",
"Transform": {
"posX": -36.7732,
"posY": 1.64747226,
"posZ": 3.86000061,
"rotX": 359.9201,
"rotY": 270.000946,
"rotZ": 180.01683,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Entry Hall",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 270305,
"SidewaysCard": false,
"CustomDeck": {
"2703": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276341564/2282BBB25E0A4432B2FAD61E0FECE3F155F947E0/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276341908/BED5652F068FD57909CFC00CC6EE15F08F032932/",
"NumWidth": 7,
"NumHeight": 2,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "c233d1",
"Name": "Custom_Tile",
"Transform": {
"posX": -40.0564,
"posY": 1.63792729,
"posZ": 2.09670067,
"rotX": 359.9554,
"rotY": 224.991776,
"rotZ": 0.0683950856,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "d7dcb8",
"Name": "Custom_Tile",
"Transform": {
"posX": -39.7295,
"posY": 1.635213,
"posZ": -5.5883,
"rotX": 359.93158,
"rotY": 314.9885,
"rotZ": 359.9554,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "db2b2a",
"Name": "Custom_Tile",
"Transform": {
"posX": -33.4601,
"posY": 1.62921321,
"posZ": 3.744,
"rotX": 359.9201,
"rotY": 270.0127,
"rotZ": 0.0168493018,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "eac9d0",
"Name": "Deck",
"Transform": {
"posX": -3.92772126,
"posY": 1.75400686,
"posZ": 5.75721073,
"rotX": 359.919739,
"rotY": 269.9873,
"rotZ": 180.016846,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Encounter Deck",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": false,
"SidewaysCard": false,
"DeckIDs": [
269600,
269601,
269602,
270403,
270404,
270405,
270406,
270407,
266509,
266508,
269611,
269610,
269612,
267000,
267701,
267702,
267802,
267801,
267800,
269300,
269301,
269302,
269303,
268700,
268701,
268702,
269500,
269501,
269502,
269503
],
"CustomDeck": {
"2696": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870697260293351923/ACABE58DD192016C81FE6602246651F5CE67387E/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 7,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"2704": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276338182/E3075B66B74C904E293C5DC209800DF928E61AAB/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 7,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"2665": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1917989596840051442/607597AFC52E724B4FD89601EF3A0C0444F0B944/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 7,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"2670": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1917989596840064342/A30C8EB0B500424071210EFFC80714FA1AA17DC6/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"2677": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276365497/D5CF343EEF67D6F69369A3A251C41B2DDCE3316F/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"2678": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276367852/B71E44C2909CE3A01189155976E253C37E4D16A7/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"2693": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276384323/CC03EEFE3EE9FB01D92D9D2A58F813CBB1A2CED1/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"2687": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276377452/B5BD1CDCBBF1EA015776C303BC12E93650514E6D/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"2695": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276386109/213CDCD24DAE39AD0BE1E8CD7B198F6FD03BE4B2/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "4f1f65",
"Name": "Card",
"Transform": {
"posX": -15.2019281,
"posY": 1.40914166,
"posZ": -49.54231,
"rotX": 3.38103342,
"rotY": 270.0197,
"rotZ": 0.0164925568,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Thorny Growths",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 269600,
"SidewaysCard": false,
"CustomDeck": {
"2696": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870697260293351923/ACABE58DD192016C81FE6602246651F5CE67387E/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 7,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "6df01e",
"Name": "Card",
"Transform": {
"posX": -15.0930672,
"posY": 1.460343,
"posZ": -49.66678,
"rotX": 3.49523854,
"rotY": 270.004059,
"rotZ": 0.0340912044,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Thorny Growths",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 269601,
"SidewaysCard": false,
"CustomDeck": {
"2696": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870697260293351923/ACABE58DD192016C81FE6602246651F5CE67387E/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 7,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "11c35d",
"Name": "Card",
"Transform": {
"posX": -15.1808176,
"posY": 1.56005549,
"posZ": -49.35136,
"rotX": 0.488956332,
"rotY": 270.015778,
"rotZ": 0.01700627,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Thorny Growths",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 269602,
"SidewaysCard": false,
"CustomDeck": {
"2696": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870697260293351923/ACABE58DD192016C81FE6602246651F5CE67387E/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 7,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "801297",
"Name": "Card",
"Transform": {
"posX": 32.9853,
"posY": 1.49438179,
"posZ": -47.4095535,
"rotX": 2.04910064,
"rotY": 269.99,
"rotZ": 179.9614,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Ripping Tendrils",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 270403,
"SidewaysCard": false,
"CustomDeck": {
"2665": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276338182/E3075B66B74C904E293C5DC209800DF928E61AAB/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 7,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "478c53",
"Name": "Card",
"Transform": {
"posX": 32.9853,
"posY": 1.48955631,
"posZ": -47.4095535,
"rotX": 0.0125529272,
"rotY": 269.999084,
"rotZ": 183.221954,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Ripping Tendrils",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 270404,
"SidewaysCard": false,
"CustomDeck": {
"2665": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276338182/E3075B66B74C904E293C5DC209800DF928E61AAB/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 7,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "40cfb4",
"Name": "Card",
"Transform": {
"posX": 32.9853,
"posY": 1.47174525,
"posZ": -47.4095535,
"rotX": 1.95404863,
"rotY": 270.001282,
"rotZ": 180.016953,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Rapid Flourishing",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 270405,
"SidewaysCard": false,
"CustomDeck": {
"2665": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276338182/E3075B66B74C904E293C5DC209800DF928E61AAB/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 7,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "308c18",
"Name": "Card",
"Transform": {
"posX": 32.9852943,
"posY": 1.41165149,
"posZ": -47.4087067,
"rotX": 0.0122979963,
"rotY": 269.998474,
"rotZ": 180.285843,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Rapid Flourishing",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 270406,
"SidewaysCard": false,
"CustomDeck": {
"2665": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276338182/E3075B66B74C904E293C5DC209800DF928E61AAB/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 7,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "ecf799",
"Name": "Card",
"Transform": {
"posX": 32.9853,
"posY": 1.44071341,
"posZ": -47.40955,
"rotX": 0.0124364942,
"rotY": 269.9995,
"rotZ": 181.897659,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Rapid Flourishing",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 270407,
"SidewaysCard": false,
"CustomDeck": {
"2665": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276338182/E3075B66B74C904E293C5DC209800DF928E61AAB/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 7,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "5806f0",
"Name": "Card",
"Transform": {
"posX": -27.1350269,
"posY": 1.31575072,
"posZ": -47.16222,
"rotX": 0.0209549516,
"rotY": 269.9801,
"rotZ": 0.0158465467,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Giant Sundew",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 266509,
"SidewaysCard": false,
"CustomDeck": {
"2665": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1917989596840051442/607597AFC52E724B4FD89601EF3A0C0444F0B944/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 7,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "92d921",
"Name": "Card",
"Transform": {
"posX": -27.0662155,
"posY": 1.35887039,
"posZ": -47.10813,
"rotX": 0.0233884361,
"rotY": 269.972137,
"rotZ": 0.08824204,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Giant Sundew",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 266508,
"SidewaysCard": false,
"CustomDeck": {
"2665": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1917989596840051442/607597AFC52E724B4FD89601EF3A0C0444F0B944/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 7,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "b65e5f",
"Name": "Card",
"Transform": {
"posX": -11.8164577,
"posY": 1.3206588,
"posZ": -49.3872452,
"rotX": 0.02098362,
"rotY": 270.01297,
"rotZ": 0.0155986045,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Carrion Flowers",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 269611,
"SidewaysCard": false,
"CustomDeck": {
"2696": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870697260293351923/ACABE58DD192016C81FE6602246651F5CE67387E/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 7,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "c174c0",
"Name": "Card",
"Transform": {
"posX": -11.7784758,
"posY": 1.36246967,
"posZ": -49.5171738,
"rotX": 0.0238743238,
"rotY": 270.01297,
"rotZ": 0.0135452338,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Carrion Flowers",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 269610,
"SidewaysCard": false,
"CustomDeck": {
"2696": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870697260293351923/ACABE58DD192016C81FE6602246651F5CE67387E/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 7,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "d768ce",
"Name": "Card",
"Transform": {
"posX": -12.0551538,
"posY": 1.39634168,
"posZ": -49.6455879,
"rotX": 0.0208298732,
"rotY": 270.015442,
"rotZ": 0.0163965877,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Carrion Flowers",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 269612,
"SidewaysCard": false,
"CustomDeck": {
"2696": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870697260293351923/ACABE58DD192016C81FE6602246651F5CE67387E/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 7,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "804ed6",
"Name": "Card",
"Transform": {
"posX": -22.4641342,
"posY": 2.31938386,
"posZ": -76.75355,
"rotX": 0.020807283,
"rotY": 270.004,
"rotZ": 0.0167719964,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Swooping Bats",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 267000,
"SidewaysCard": false,
"CustomDeck": {
"2670": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1917989596840064342/A30C8EB0B500424071210EFFC80714FA1AA17DC6/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "da5aa4",
"Name": "Card",
"Transform": {
"posX": 7.699326,
"posY": 1.36807477,
"posZ": -54.39343,
"rotX": 0.0176024567,
"rotY": 270.0012,
"rotZ": 0.016704293,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Nocturnal Shrieks",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 267701,
"SidewaysCard": false,
"CustomDeck": {
"2677": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276365497/D5CF343EEF67D6F69369A3A251C41B2DDCE3316F/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "c6095f",
"Name": "Card",
"Transform": {
"posX": 7.903186,
"posY": 1.40211022,
"posZ": -54.57995,
"rotX": 0.0210402738,
"rotY": 270.0021,
"rotZ": 0.0164363068,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Nocturnal Shrieks",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 267702,
"SidewaysCard": false,
"CustomDeck": {
"2677": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276365497/D5CF343EEF67D6F69369A3A251C41B2DDCE3316F/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "250030",
"Name": "Card",
"Transform": {
"posX": 8.535946,
"posY": 1.32795668,
"posZ": -49.7288437,
"rotX": 0.0209323615,
"rotY": 269.99826,
"rotZ": 0.016006304,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Haunting Drums",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 267802,
"SidewaysCard": false,
"CustomDeck": {
"2678": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276367852/B71E44C2909CE3A01189155976E253C37E4D16A7/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "b69158",
"Name": "Card",
"Transform": {
"posX": 8.5150795,
"posY": 1.36976767,
"posZ": -49.4876976,
"rotX": 0.0250216983,
"rotY": 269.9961,
"rotZ": 0.0093507655,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Haunting Drums",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 267801,
"SidewaysCard": false,
"CustomDeck": {
"2678": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276367852/B71E44C2909CE3A01189155976E253C37E4D16A7/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "7fc09a",
"Name": "Card",
"Transform": {
"posX": 8.649743,
"posY": 1.40382469,
"posZ": -49.6263962,
"rotX": 0.0213067532,
"rotY": 270.000183,
"rotZ": 0.0164060649,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Haunting Drums",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 267800,
"SidewaysCard": false,
"CustomDeck": {
"2678": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276367852/B71E44C2909CE3A01189155976E253C37E4D16A7/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "8c460f",
"Name": "Card",
"Transform": {
"posX": 8.736771,
"posY": 1.32297111,
"posZ": -66.92138,
"rotX": 0.0212178454,
"rotY": 269.900024,
"rotZ": 0.0142478244,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Fallen Explorer",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 269300,
"SidewaysCard": false,
"CustomDeck": {
"2693": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276384323/CC03EEFE3EE9FB01D92D9D2A58F813CBB1A2CED1/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "aef8a5",
"Name": "Card",
"Transform": {
"posX": 8.776021,
"posY": 1.35927463,
"posZ": -66.98697,
"rotX": 0.0218854733,
"rotY": 270.03064,
"rotZ": -0.00210294477,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Fallen Explorer",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 269301,
"SidewaysCard": false,
"CustomDeck": {
"2693": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276384323/CC03EEFE3EE9FB01D92D9D2A58F813CBB1A2CED1/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "c169bd",
"Name": "Card",
"Transform": {
"posX": 9.081781,
"posY": 1.3993752,
"posZ": -65.27199,
"rotX": 0.0208618883,
"rotY": 270.0334,
"rotZ": 0.0157792941,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Chaotic Aspect",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 269302,
"SidewaysCard": false,
"CustomDeck": {
"2693": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276384323/CC03EEFE3EE9FB01D92D9D2A58F813CBB1A2CED1/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "8b18b0",
"Name": "Card",
"Transform": {
"posX": 9.12202,
"posY": 1.40890467,
"posZ": -65.72903,
"rotX": 0.0211583152,
"rotY": 270.0342,
"rotZ": 0.01651411,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Chaotic Aspect",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 269303,
"SidewaysCard": false,
"CustomDeck": {
"2693": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276384323/CC03EEFE3EE9FB01D92D9D2A58F813CBB1A2CED1/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "ad5343",
"Name": "Card",
"Transform": {
"posX": 8.622107,
"posY": 1.32397449,
"posZ": -63.4404526,
"rotX": 0.0209267512,
"rotY": 269.999817,
"rotZ": 0.0160187017,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Maneater Flytrap",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 268700,
"SidewaysCard": false,
"CustomDeck": {
"2687": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276377452/B5BD1CDCBBF1EA015776C303BC12E93650514E6D/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "d2be91",
"Name": "Card",
"Transform": {
"posX": 8.719715,
"posY": 1.36588168,
"posZ": -63.27187,
"rotX": 0.023138538,
"rotY": 269.999817,
"rotZ": 0.0142350085,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Constrictor Vines",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 268701,
"SidewaysCard": false,
"CustomDeck": {
"2687": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276377452/B5BD1CDCBBF1EA015776C303BC12E93650514E6D/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "c14d90",
"Name": "Card",
"Transform": {
"posX": 8.906282,
"posY": 1.39980447,
"posZ": -63.7161865,
"rotX": 0.0210917424,
"rotY": 270.000061,
"rotZ": 0.0163809825,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Constrictor Vines",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 268702,
"SidewaysCard": false,
"CustomDeck": {
"2687": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276377452/B5BD1CDCBBF1EA015776C303BC12E93650514E6D/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "105ecc",
"Name": "Card",
"Transform": {
"posX": 4.37371,
"posY": 1.32240164,
"posZ": -63.5525932,
"rotX": 0.0209068339,
"rotY": 270.0003,
"rotZ": 0.01619891,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Jungle Reclamation",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 269500,
"SidewaysCard": false,
"CustomDeck": {
"2695": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276386109/213CDCD24DAE39AD0BE1E8CD7B198F6FD03BE4B2/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "e98807",
"Name": "Card",
"Transform": {
"posX": 4.31495,
"posY": 1.36418426,
"posZ": -63.2001152,
"rotX": 0.0259661414,
"rotY": 270.003052,
"rotZ": 0.00637912424,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Jungle Reclamation",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 269501,
"SidewaysCard": false,
"CustomDeck": {
"2695": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276386109/213CDCD24DAE39AD0BE1E8CD7B198F6FD03BE4B2/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "819805",
"Name": "Card",
"Transform": {
"posX": 4.42892027,
"posY": 1.39830649,
"posZ": -63.2213745,
"rotX": 0.0211659372,
"rotY": 270.0024,
"rotZ": 0.0160875078,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Creeping Foliage",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 269502,
"SidewaysCard": false,
"CustomDeck": {
"2695": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276386109/213CDCD24DAE39AD0BE1E8CD7B198F6FD03BE4B2/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "3dd4be",
"Name": "Card",
"Transform": {
"posX": 4.713935,
"posY": 1.40805316,
"posZ": -63.1260033,
"rotX": 0.0209549461,
"rotY": 270.000244,
"rotZ": 0.0161888059,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Creeping Foliage",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 269503,
"SidewaysCard": false,
"CustomDeck": {
"2695": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276386109/213CDCD24DAE39AD0BE1E8CD7B198F6FD03BE4B2/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "faba94",
"Name": "Card",
"Transform": {
"posX": -3.95600033,
"posY": 1.59753942,
"posZ": -10.4412012,
"rotX": 359.919739,
"rotY": 269.9997,
"rotZ": 0.0168376248,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Home Invasion",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 270512,
"SidewaysCard": false,
"CustomDeck": {
"2705": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276341564/2282BBB25E0A4432B2FAD61E0FECE3F155F947E0/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276341908/BED5652F068FD57909CFC00CC6EE15F08F032932/",
"NumWidth": 7,
"NumHeight": 2,
"BackIsHidden": false,
"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": "eda22b",
"Name": "Custom_Token",
"Transform": {
"posX": 1.14761448,
"posY": 1.57115185,
"posZ": -29.7409573,
"rotX": 359.9201,
"rotY": 270.021851,
"rotZ": 0.016841,
"scaleX": 5.189041,
"scaleY": 1.0,
"scaleZ": 5.189041
},
"Nickname": "Jumanji Campaign Log 1",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276400654/CA0CB2DFEC2369A88438155657A68BE20B90A90E/",
"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": "",
"States": {
"2": {
"GUID": "a9628a",
"Name": "Custom_Token",
"Transform": {
"posX": 1.147618,
"posY": 1.571152,
"posZ": -29.7407913,
"rotX": 359.9201,
"rotY": 270.021973,
"rotZ": 0.0168410949,
"scaleX": 5.188961,
"scaleY": 1.0,
"scaleZ": 5.188961
},
"Nickname": "Jumanji Campaign Log 2",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276403495/316E06F3D6F35585DFA7C9F161D9B6F0C6D34558/",
"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 --Home Invasion\r\n {\r\n pos = {-1.370,0.1,-0.158},\r\n size = 600,\r\n state = false\r\n },\r\n --Urban Jungle\r\n {\r\n pos = {-1.352,0.1,-0.031},\r\n size = 600,\r\n state = false\r\n },\r\n --Back to Start\r\n {\r\n pos = {-1.339,0.1,0.099},\r\n size = 600,\r\n state = false\r\n },\r\n --Urban Jungle\r\n {\r\n pos = {-1.331,0.1,0.234},\r\n size = 600,\r\n state = false\r\n },\r\n --Force of Nature\r\n {\r\n pos = {-1.319,0.1,0.369},\r\n size = 600,\r\n state = false\r\n },\r\n --1: Cultist Token\r\n {\r\n pos = {-1.268,0.1,1.158},\r\n size = 600,\r\n state = false\r\n },\r\n --1: Monster Token\r\n {\r\n pos = {-0.773,0.1,1.119},\r\n size = 600,\r\n state = false\r\n },\r\n --2: Cultist Token\r\n {\r\n pos = {-1.260,0.1,1.287},\r\n size = 600,\r\n state = false\r\n },\r\n --2: Tablet Token\r\n {\r\n pos = {-0.760,0.1,1.251},\r\n size = 600,\r\n state = false\r\n },\r\n --3: Tablet Token\r\n {\r\n pos = {-1.247,0.1,1.420},\r\n size = 600,\r\n state = false\r\n },\r\n --3: Monster Token\r\n {\r\n pos = {-0.751,0.1,1.380},\r\n size = 600,\r\n state = false\r\n },\r\n --4: Cultist Token\r\n {\r\n pos = {-1.239,0.1,1.549},\r\n size = 600,\r\n state = false\r\n },\r\n --4: Tablet Token\r\n {\r\n pos = {-0.743,0.1,1.517},\r\n size = 600,\r\n state = false\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 --Turns Taken\r\n {\r\n pos = {-0.880,0.1,0.737},\r\n size = 1500,\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 --Aggressive Threats\r\n {\r\n pos = {0.640,0.1,-1.500},\r\n rows = 4,\r\n width = 3800,\r\n font_size = 450,\r\n label = \"Empty\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --Lurking Threats\r\n {\r\n pos = {0.620,0.1,-1.000},\r\n rows = 4,\r\n width = 3800,\r\n font_size = 450,\r\n label = \"Empty\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --Environmental Threats\r\n {\r\n pos = {0.600,0.1,-0.500},\r\n rows = 4,\r\n width = 3800,\r\n font_size = 450,\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\":[{\"pos\":[-1.37,0.1,-0.158],\"size\":600,\"state\":false},{\"pos\":[-1.352,0.1,-0.031],\"size\":600,\"state\":false},{\"pos\":[-1.339,0.1,0.099],\"size\":600,\"state\":false},{\"pos\":[-1.331,0.1,0.234],\"size\":600,\"state\":false},{\"pos\":[-1.319,0.1,0.369],\"size\":600,\"state\":false},{\"pos\":[-1.268,0.1,1.158],\"size\":600,\"state\":false},{\"pos\":[-0.773,0.1,1.119],\"size\":600,\"state\":false},{\"pos\":[-1.26,0.1,1.287],\"size\":600,\"state\":false},{\"pos\":[-0.76,0.1,1.251],\"size\":600,\"state\":false},{\"pos\":[-1.247,0.1,1.42],\"size\":600,\"state\":false},{\"pos\":[-0.751,0.1,1.38],\"size\":600,\"state\":false},{\"pos\":[-1.239,0.1,1.549],\"size\":600,\"state\":false},{\"pos\":[-0.743,0.1,1.517],\"size\":600,\"state\":false}],\"counter\":[{\"hideBG\":true,\"pos\":[-0.88,0.1,0.737],\"size\":1500,\"value\":0}],\"textbox\":[{\"alignment\":2,\"font_size\":450,\"label\":\"Empty\",\"pos\":[0.64,0.1,-1.5],\"rows\":4,\"value\":\"\",\"width\":3800},{\"alignment\":2,\"font_size\":450,\"label\":\"Empty\",\"pos\":[0.62,0.1,-1],\"rows\":4,\"value\":\"\",\"width\":3800},{\"alignment\":2,\"font_size\":450,\"label\":\"Empty\",\"pos\":[0.6,0.1,-0.5],\"rows\":4,\"value\":\"\",\"width\":3800}]}",
"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": "dd90c5",
"Name": "Custom_Model_Bag",
"Transform": {
"posX": 36.6910858,
"posY": 1.42772985,
"posZ": -8.925175,
"rotX": 359.920135,
"rotY": 270.000336,
"rotZ": 0.01687281,
"scaleX": 2.17743635,
"scaleY": 0.453221977,
"scaleZ": 2.38434219
},
"Nickname": "Battle Goes On",
"Description": "by The Popest",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"MaterialIndex": -1,
"MeshIndex": -1,
"CustomMesh": {
"MeshURL": "https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj",
"DiffuseURL": "https://i.imgur.com/F4W3qLq.jpg",
"NormalURL": "",
"ColliderURL": "",
"Convex": true,
"MaterialIndex": 2,
"TypeIndex": 6,
"CustomShader": {
"SpecularColor": {
"r": 0.735294163,
"g": 0.735294163,
"b": 0.735294163
},
"SpecularIntensity": 5.0,
"SpecularSharpness": 8.0,
"FresnelStrength": 0.7999996
},
"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",
"LuaScriptState": "{\"ml\":{\"024a88\":{\"lock\":false,\"pos\":{\"x\":-26.3008,\"y\":1.2711,\"z\":-69.0611},\"rot\":{\"x\":359.9792,\"y\":89.9867,\"z\":359.9832}},\"06ba48\":{\"lock\":false,\"pos\":{\"x\":5.7548,\"y\":1.3231,\"z\":-63.0474},\"rot\":{\"x\":0.0208,\"y\":270.0127,\"z\":0.0168}},\"080508\":{\"lock\":false,\"pos\":{\"x\":-16.6234,\"y\":1.355,\"z\":-84.8014},\"rot\":{\"x\":0.0208,\"y\":269.9935,\"z\":0.0168}},\"104c1e\":{\"lock\":false,\"pos\":{\"x\":-16.6218,\"y\":1.3553,\"z\":-83.5247},\"rot\":{\"x\":0.0208,\"y\":269.9935,\"z\":0.0168}},\"112830\":{\"lock\":false,\"pos\":{\"x\":-26.3063,\"y\":1.2734,\"z\":-61.2118},\"rot\":{\"x\":359.9791,\"y\":89.8593,\"z\":359.9833}},\"13f8ae\":{\"lock\":false,\"pos\":{\"x\":5.7547,\"y\":1.3224,\"z\":-65.3523},\"rot\":{\"x\":0.0208,\"y\":270.0086,\"z\":0.0168}},\"196394\":{\"lock\":false,\"pos\":{\"x\":9.3938,\"y\":1.3224,\"z\":-69.9524},\"rot\":{\"x\":0.0208,\"y\":270.0086,\"z\":0.0168}},\"197103\":{\"lock\":false,\"pos\":{\"x\":-16.6228,\"y\":1.3573,\"z\":-76.9288},\"rot\":{\"x\":0.0208,\"y\":269.9872,\"z\":0.0168}},\"1c4e12\":{\"lock\":false,\"pos\":{\"x\":-16.6232,\"y\":1.3638,\"z\":-54.6039},\"rot\":{\"x\":0.0208,\"y\":270.0294,\"z\":0.0168}},\"23a0e7\":{\"lock\":false,\"pos\":{\"x\":9.3938,\"y\":1.321,\"z\":-74.5523},\"rot\":{\"x\":0.0208,\"y\":270.0085,\"z\":0.0168}},\"2f9839\":{\"lock\":false,\"pos\":{\"x\":-22.6157,\"y\":1.311,\"z\":-69.0756},\"rot\":{\"x\":0.0168,\"y\":179.993,\"z\":359.9792}},\"321c5a\":{\"lock\":false,\"pos\":{\"x\":5.7547,\"y\":1.3204,\"z\":-72.2523},\"rot\":{\"x\":0.0208,\"y\":270.0086,\"z\":0.0168}},\"3bdb8f\":{\"lock\":false,\"pos\":{\"x\":-22.6157,\"y\":1.3087,\"z\":-76.946},\"rot\":{\"x\":0.0168,\"y\":179.9718,\"z\":359.9792}},\"3d2067\":{\"lock\":false,\"pos\":{\"x\":-16.6232,\"y\":1.3645,\"z\":-52.1352},\"rot\":{\"x\":0.0208,\"y\":270.0295,\"z\":0.0168}},\"4225c0\":{\"lock\":false,\"pos\":{\"x\":2.1095,\"y\":1.3197,\"z\":-69.9524},\"rot\":{\"x\":0.0208,\"y\":270.0086,\"z\":0.0168}},\"488fe7\":{\"lock\":false,\"pos\":{\"x\":-16.6232,\"y\":1.3642,\"z\":-53.3736},\"rot\":{\"x\":0.0208,\"y\":270.0294,\"z\":0.0168}},\"52e670\":{\"lock\":false,\"pos\":{\"x\":-16.6233,\"y\":1.3619,\"z\":-61.2142},\"rot\":{\"x\":0.0208,\"y\":270.0109,\"z\":0.0168}},\"585744\":{\"lock\":false,\"pos\":{\"x\":-16.6235,\"y\":1.3576,\"z\":-75.6886},\"rot\":{\"x\":0.0208,\"y\":269.9872,\"z\":0.0168}},\"5b9142\":{\"lock\":false,\"pos\":{\"x\":5.7357,\"y\":1.3809,\"z\":-58.1501},\"rot\":{\"x\":359.9792,\"y\":89.999,\"z\":359.9832}},\"5bbf47\":{\"lock\":false,\"pos\":{\"x\":-16.6233,\"y\":1.3622,\"z\":-59.9842},\"rot\":{\"x\":0.0208,\"y\":270.0109,\"z\":0.0168}},\"5de79f\":{\"lock\":false,\"pos\":{\"x\":-16.6233,\"y\":1.3592,\"z\":-70.2738},\"rot\":{\"x\":0.0208,\"y\":269.9991,\"z\":0.0168}},\"621b3f\":{\"lock\":false,\"pos\":{\"x\":9.3938,\"y\":1.3244,\"z\":-63.0524},\"rot\":{\"x\":0.0208,\"y\":270.0085,\"z\":0.0168}},\"668b93\":{\"lock\":false,\"pos\":{\"x\":9.3938,\"y\":1.323,\"z\":-67.6524},\"rot\":{\"x\":0.0208,\"y\":270.0086,\"z\":0.0168}},\"68e686\":{\"lock\":false,\"pos\":{\"x\":-16.6226,\"y\":1.3546,\"z\":-86.0018},\"rot\":{\"x\":0.0208,\"y\":269.9935,\"z\":0.0168}},\"6999ce\":{\"lock\":false,\"pos\":{\"x\":-19.3,\"y\":1.3168,\"z\":-53.4358},\"rot\":{\"x\":0.0208,\"y\":270.0001,\"z\":0.0168}},\"763a27\":{\"lock\":false,\"pos\":{\"x\":-19.2998,\"y\":1.3076,\"z\":-84.8182},\"rot\":{\"x\":0.0208,\"y\":269.9999,\"z\":0.0168}},\"77d5c3\":{\"lock\":false,\"pos\":{\"x\":5.7547,\"y\":1.321,\"z\":-69.9523},\"rot\":{\"x\":0.0208,\"y\":270.0086,\"z\":0.0168}},\"884c7e\":{\"lock\":false,\"pos\":{\"x\":2.1095,\"y\":1.3204,\"z\":-67.6524},\"rot\":{\"x\":0.0208,\"y\":270.0085,\"z\":0.0168}},\"909fa7\":{\"lock\":false,\"pos\":{\"x\":-16.6232,\"y\":1.3615,\"z\":-62.4441},\"rot\":{\"x\":0.0208,\"y\":270.0107,\"z\":0.0168}},\"91a0fc\":{\"lock\":false,\"pos\":{\"x\":2.1095,\"y\":1.3211,\"z\":-65.3524},\"rot\":{\"x\":0.0208,\"y\":270.0085,\"z\":0.0168}},\"9341d5\":{\"lock\":false,\"pos\":{\"x\":5.7547,\"y\":1.3197,\"z\":-74.5523},\"rot\":{\"x\":0.0208,\"y\":270.0087,\"z\":0.0168}},\"93d0b4\":{\"lock\":false,\"pos\":{\"x\":-19.2936,\"y\":1.3099,\"z\":-76.9415},\"rot\":{\"x\":0.0208,\"y\":269.9999,\"z\":0.0168}},\"9725e1\":{\"lock\":false,\"pos\":{\"x\":-16.6233,\"y\":1.3599,\"z\":-67.8038},\"rot\":{\"x\":0.0208,\"y\":269.9991,\"z\":0.0168}},\"97f078\":{\"lock\":false,\"pos\":{\"x\":2.1095,\"y\":1.319,\"z\":-72.2524},\"rot\":{\"x\":0.0208,\"y\":270.0085,\"z\":0.0168}},\"a768fb\":{\"lock\":false,\"pos\":{\"x\":-26.3006,\"y\":1.2757,\"z\":-53.4371},\"rot\":{\"x\":359.9792,\"y\":89.9837,\"z\":359.9832}},\"a836d9\":{\"lock\":false,\"pos\":{\"x\":2.1095,\"y\":1.3184,\"z\":-74.5525},\"rot\":{\"x\":0.0208,\"y\":270.0086,\"z\":0.0168}},\"a9b4ce\":{\"lock\":false,\"pos\":{\"x\":-22.6139,\"y\":1.3156,\"z\":-53.4381},\"rot\":{\"x\":0.0168,\"y\":179.9562,\"z\":359.9792}},\"a9d598\":{\"lock\":false,\"pos\":{\"x\":9.3938,\"y\":1.3217,\"z\":-72.2524},\"rot\":{\"x\":0.0208,\"y\":270.0085,\"z\":0.0168}},\"ac8f35\":{\"lock\":false,\"pos\":{\"x\":-22.6169,\"y\":1.3133,\"z\":-61.241},\"rot\":{\"x\":0.0168,\"y\":180.0202,\"z\":359.9792}},\"b041a2\":{\"lock\":false,\"pos\":{\"x\":5.7547,\"y\":1.3217,\"z\":-67.6523},\"rot\":{\"x\":0.0208,\"y\":270.0086,\"z\":0.0168}},\"b2b405\":{\"lock\":false,\"pos\":{\"x\":-26.3053,\"y\":1.2688,\"z\":-76.9457},\"rot\":{\"x\":359.9792,\"y\":89.9226,\"z\":359.9832}},\"bccf2a\":{\"lock\":false,\"pos\":{\"x\":-19.2959,\"y\":1.3122,\"z\":-69.0607},\"rot\":{\"x\":0.0208,\"y\":270,\"z\":0.0168}},\"d3dcdd\":{\"lock\":false,\"pos\":{\"x\":-19.3001,\"y\":1.3145,\"z\":-61.2332},\"rot\":{\"x\":0.0208,\"y\":270.0001,\"z\":0.0168}},\"d4c471\":{\"lock\":false,\"pos\":{\"x\":-22.6169,\"y\":1.3282,\"z\":-84.8185},\"rot\":{\"x\":0.0168,\"y\":179.9697,\"z\":359.9792}},\"dde61c\":{\"lock\":false,\"pos\":{\"x\":2.1103,\"y\":1.3217,\"z\":-63.0467},\"rot\":{\"x\":0.0208,\"y\":270.0043,\"z\":0.0168}},\"e7550c\":{\"lock\":false,\"pos\":{\"x\":-16.6235,\"y\":1.3596,\"z\":-69.0435},\"rot\":{\"x\":0.0208,\"y\":269.9992,\"z\":0.0168}},\"f9f51a\":{\"lock\":false,\"pos\":{\"x\":-16.6233,\"y\":1.3569,\"z\":-78.1588},\"rot\":{\"x\":0.0208,\"y\":269.9872,\"z\":0.0168}},\"fd8d58\":{\"lock\":false,\"pos\":{\"x\":-26.298,\"y\":1.2665,\"z\":-84.819},\"rot\":{\"x\":359.9792,\"y\":89.9734,\"z\":359.9832}},\"ffcf21\":{\"lock\":false,\"pos\":{\"x\":9.3938,\"y\":1.3237,\"z\":-65.3524},\"rot\":{\"x\":0.0208,\"y\":270.0086,\"z\":0.0168}}}}",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "3ca139",
"Name": "Card",
"Transform": {
"posX": 11.2975426,
"posY": 1.91371238,
"posZ": -45.39024,
"rotX": 0.00407234,
"rotY": 270.012756,
"rotZ": 0.222522959,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Taoism Flag",
"Description": "You found me!\n\nNow you may add the first copy of this card to your deck for free!",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 592429,
"SidewaysCard": false,
"CustomDeck": {
"5924": {
"FaceURL": "https://i.imgur.com/566aMnO.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "5b9142",
"Name": "Notecard",
"Transform": {
"posX": 5.735743,
"posY": 1.38088107,
"posZ": -58.15008,
"rotX": 359.9792,
"rotY": 89.9989853,
"rotZ": 359.983215,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "“Battle Goes On” Player Cards",
"Description": "You may purchase & include cards like you normally would. \nDuring setup, build a \"BGO\" deck using the 18 cards on the right, one copy of each. (Other players purchasing cards won't affect the deck) Everyone in play shares the same \"BGO\" deck. When a card from the \"BGO\" deck enters a play area, it's considered a part of that player's deck during this game. It will go into the player's discard pile once you discard it.",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "621b3f",
"Name": "Card",
"Transform": {
"posX": 9.393796,
"posY": 1.32437956,
"posZ": -63.05242,
"rotX": 0.0208060239,
"rotY": 270.008545,
"rotZ": 0.0167741738,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Seven Stars",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 592400,
"SidewaysCard": false,
"CustomDeck": {
"5924": {
"FaceURL": "https://i.imgur.com/566aMnO.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "ffcf21",
"Name": "Card",
"Transform": {
"posX": 9.393797,
"posY": 1.32370627,
"posZ": -65.3524246,
"rotX": 0.0208057985,
"rotY": 270.008575,
"rotZ": 0.01677362,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Ancient Compass",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 592401,
"SidewaysCard": false,
"CustomDeck": {
"5924": {
"FaceURL": "https://i.imgur.com/566aMnO.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "668b93",
"Name": "Card",
"Transform": {
"posX": 9.393797,
"posY": 1.32303309,
"posZ": -67.65243,
"rotX": 0.0208054986,
"rotY": 270.008575,
"rotZ": 0.0167736616,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Fulu",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 592402,
"SidewaysCard": false,
"CustomDeck": {
"5924": {
"FaceURL": "https://i.imgur.com/566aMnO.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "196394",
"Name": "Card",
"Transform": {
"posX": 9.393789,
"posY": 1.3223598,
"posZ": -69.95243,
"rotX": 0.020805737,
"rotY": 270.008575,
"rotZ": 0.0167735126,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Escaping Tong Pass",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 592403,
"SidewaysCard": false,
"CustomDeck": {
"5924": {
"FaceURL": "https://i.imgur.com/566aMnO.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "a9d598",
"Name": "Card",
"Transform": {
"posX": 9.393791,
"posY": 1.32168651,
"posZ": -72.25243,
"rotX": 0.0208066,
"rotY": 270.008545,
"rotZ": 0.0167747419,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Prodigy Healing",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 592404,
"SidewaysCard": false,
"CustomDeck": {
"5924": {
"FaceURL": "https://i.imgur.com/566aMnO.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "23a0e7",
"Name": "Card",
"Transform": {
"posX": 9.393802,
"posY": 1.32101333,
"posZ": -74.5522842,
"rotX": 0.0208066143,
"rotY": 270.008484,
"rotZ": 0.01677473,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Canonical Texts",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 592405,
"SidewaysCard": false,
"CustomDeck": {
"5924": {
"FaceURL": "https://i.imgur.com/566aMnO.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "9341d5",
"Name": "Card",
"Transform": {
"posX": 5.75474167,
"posY": 1.31969178,
"posZ": -74.55225,
"rotX": 0.0208058488,
"rotY": 270.008667,
"rotZ": 0.0167735461,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Monumental History",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 592411,
"SidewaysCard": false,
"CustomDeck": {
"5924": {
"FaceURL": "https://i.imgur.com/566aMnO.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "321c5a",
"Name": "Card",
"Transform": {
"posX": 5.75473547,
"posY": 1.320365,
"posZ": -72.25233,
"rotX": 0.0208055973,
"rotY": 270.008575,
"rotZ": 0.0167734884,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Infant Care",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 592410,
"SidewaysCard": false,
"CustomDeck": {
"5924": {
"FaceURL": "https://i.imgur.com/566aMnO.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "b041a2",
"Name": "Card",
"Transform": {
"posX": 5.75474358,
"posY": 1.32171142,
"posZ": -67.65232,
"rotX": 0.0208056737,
"rotY": 270.008575,
"rotZ": 0.0167735275,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Treasure Bowl",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 592408,
"SidewaysCard": false,
"CustomDeck": {
"5924": {
"FaceURL": "https://i.imgur.com/566aMnO.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "77d5c3",
"Name": "Card",
"Transform": {
"posX": 5.75473547,
"posY": 1.32103825,
"posZ": -69.9523239,
"rotX": 0.0208057258,
"rotY": 270.0086,
"rotZ": 0.0167734586,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Changban Recog",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 592409,
"SidewaysCard": false,
"CustomDeck": {
"5924": {
"FaceURL": "https://i.imgur.com/566aMnO.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "13f8ae",
"Name": "Card",
"Transform": {
"posX": 5.75473547,
"posY": 1.32238472,
"posZ": -65.35232,
"rotX": 0.020805655,
"rotY": 270.0086,
"rotZ": 0.01677352,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Sky Lantern",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 592407,
"SidewaysCard": false,
"CustomDeck": {
"5924": {
"FaceURL": "https://i.imgur.com/566aMnO.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "06ba48",
"Name": "Card",
"Transform": {
"posX": 5.75480461,
"posY": 1.32305944,
"posZ": -63.0474052,
"rotX": 0.02080455,
"rotY": 270.0127,
"rotZ": 0.0167756118,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "On a Streak",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 592406,
"SidewaysCard": false,
"CustomDeck": {
"5924": {
"FaceURL": "https://i.imgur.com/566aMnO.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "dde61c",
"Name": "Card",
"Transform": {
"posX": 2.110257,
"posY": 1.321736,
"posZ": -63.04674,
"rotX": 0.020807242,
"rotY": 270.0043,
"rotZ": 0.0167726744,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Empty Fort",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 592412,
"SidewaysCard": false,
"CustomDeck": {
"5924": {
"FaceURL": "https://i.imgur.com/566aMnO.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "91a0fc",
"Name": "Card",
"Transform": {
"posX": 2.10951424,
"posY": 1.32106078,
"posZ": -65.3523941,
"rotX": 0.0208057929,
"rotY": 270.008484,
"rotZ": 0.01677343,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Mysterious Suspense",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 592413,
"SidewaysCard": false,
"CustomDeck": {
"5924": {
"FaceURL": "https://i.imgur.com/566aMnO.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "884c7e",
"Name": "Card",
"Transform": {
"posX": 2.109511,
"posY": 1.3203876,
"posZ": -67.6524,
"rotX": 0.0208056811,
"rotY": 270.008484,
"rotZ": 0.01677343,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Straw Shoes",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 592414,
"SidewaysCard": false,
"CustomDeck": {
"5924": {
"FaceURL": "https://i.imgur.com/566aMnO.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "4225c0",
"Name": "Card",
"Transform": {
"posX": 2.10951233,
"posY": 1.31971431,
"posZ": -69.9524,
"rotX": 0.0208055284,
"rotY": 270.0086,
"rotZ": 0.01677354,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Butcher's Hatchet",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 592415,
"SidewaysCard": false,
"CustomDeck": {
"5924": {
"FaceURL": "https://i.imgur.com/566aMnO.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "97f078",
"Name": "Card",
"Transform": {
"posX": 2.10951066,
"posY": 1.31904113,
"posZ": -72.2524,
"rotX": 0.0208056942,
"rotY": 270.008484,
"rotZ": 0.01677356,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Spiked Mace",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 592416,
"SidewaysCard": false,
"CustomDeck": {
"5924": {
"FaceURL": "https://i.imgur.com/566aMnO.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "a836d9",
"Name": "Card",
"Transform": {
"posX": 2.10950875,
"posY": 1.31836784,
"posZ": -74.55247,
"rotX": 0.0208055377,
"rotY": 270.0086,
"rotZ": 0.0167736243,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Historical Novel",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 592417,
"SidewaysCard": false,
"CustomDeck": {
"5924": {
"FaceURL": "https://i.imgur.com/566aMnO.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "3d2067",
"Name": "Custom_Model",
"Transform": {
"posX": -16.623209,
"posY": 1.3645215,
"posZ": -52.1352234,
"rotX": 0.020807378,
"rotY": 270.0295,
"rotZ": 0.0167789962,
"scaleX": 0.45,
"scaleY": 0.6,
"scaleZ": 0.45
},
"Nickname": "Survivor turn token",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": false,
"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": "488fe7",
"Name": "Custom_Model",
"Transform": {
"posX": -16.62321,
"posY": 1.36415887,
"posZ": -53.3736229,
"rotX": 0.0208079312,
"rotY": 270.029419,
"rotZ": 0.0167787988,
"scaleX": 0.45,
"scaleY": 0.6,
"scaleZ": 0.45
},
"Nickname": "Survivor turn token",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": false,
"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": "1c4e12",
"Name": "Custom_Model",
"Transform": {
"posX": -16.6232166,
"posY": 1.36379874,
"posZ": -54.60392,
"rotX": 0.020807812,
"rotY": 270.029419,
"rotZ": 0.01677897,
"scaleX": 0.45,
"scaleY": 0.6,
"scaleZ": 0.45
},
"Nickname": "Survivor turn token",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": false,
"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": "6999ce",
"Name": "Card",
"Transform": {
"posX": -19.3,
"posY": 1.31677353,
"posZ": -53.4358,
"rotX": 0.0208089128,
"rotY": 270.0001,
"rotZ": 0.016770944,
"scaleX": 0.6,
"scaleY": 1.0,
"scaleZ": 0.6
},
"Nickname": "Cao Cao",
"Description": "Mini Card",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 591600,
"SidewaysCard": false,
"CustomDeck": {
"5916": {
"FaceURL": "https://i.imgur.com/cxcVPn9.jpg",
"BackURL": "https://i.imgur.com/MkXqO5J.jpg",
"NumWidth": 5,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "a9b4ce",
"Name": "Card",
"Transform": {
"posX": -22.6138859,
"posY": 1.3155694,
"posZ": -53.4381142,
"rotX": 0.0167554542,
"rotY": 179.956177,
"rotZ": 359.9792,
"scaleX": 1.1,
"scaleY": 1.0,
"scaleZ": 1.1
},
"Nickname": "Cao Cao",
"Description": "Emperor Wu of Wei",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 592500,
"SidewaysCard": true,
"CustomDeck": {
"5925": {
"FaceURL": "https://i.imgur.com/VnGUaFg.jpg",
"BackURL": "https://i.imgur.com/icgJdJQ.jpg",
"NumWidth": 4,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "a768fb",
"Name": "Custom_Model_Bag",
"Transform": {
"posX": -26.3005753,
"posY": 1.27566206,
"posZ": -53.43711,
"rotX": 359.979156,
"rotY": 89.9837,
"rotZ": 359.983246,
"scaleX": 2.0,
"scaleY": 2.0,
"scaleZ": 2.0
},
"Nickname": "starter deck & cards",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "ab2bad",
"Name": "Deck",
"Transform": {
"posX": -26.3000088,
"posY": 3.4683342,
"posZ": -53.43685,
"rotX": 0.0208550859,
"rotY": 270.000031,
"rotZ": 180.016937,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "A \"Battle Goes On\" deck",
"Description": "Everyone in play shares the same \"BGO\" deck. When a card from the \"BGO\" deck enters a play area, it's considered a part of that player's deck during this game. It will go into the player's discard pile once you discard it.",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": false,
"SidewaysCard": false,
"DeckIDs": [
592400,
592401,
592402,
592403,
592404,
592405,
592406,
592407,
592408,
592409,
592410,
592411,
592412,
592413,
592414,
592415,
592416,
592417
],
"CustomDeck": {
"5924": {
"FaceURL": "https://i.imgur.com/566aMnO.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "8a775d",
"Name": "Card",
"Transform": {
"posX": 32.985302,
"posY": 1.29232764,
"posZ": -77.30829,
"rotX": 0.0208061524,
"rotY": 270.008545,
"rotZ": 0.0167743545,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Seven Stars",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 592400,
"SidewaysCard": false,
"CustomDeck": {
"5924": {
"FaceURL": "https://i.imgur.com/566aMnO.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "8f85af",
"Name": "Card",
"Transform": {
"posX": 32.9665146,
"posY": 1.32576036,
"posZ": -77.27228,
"rotX": 0.020806523,
"rotY": 270.008545,
"rotZ": 0.0167748854,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Ancient Compass",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 592401,
"SidewaysCard": false,
"CustomDeck": {
"5924": {
"FaceURL": "https://i.imgur.com/566aMnO.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "6223c5",
"Name": "Card",
"Transform": {
"posX": 33.03376,
"posY": 1.35986257,
"posZ": -77.92008,
"rotX": 0.0208064932,
"rotY": 270.008545,
"rotZ": 0.0167746544,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Fulu",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 592402,
"SidewaysCard": false,
"CustomDeck": {
"5924": {
"FaceURL": "https://i.imgur.com/566aMnO.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "f60e82",
"Name": "Card",
"Transform": {
"posX": 33.5135078,
"posY": 1.36986566,
"posZ": -76.51876,
"rotX": 0.0208062325,
"rotY": 270.008545,
"rotZ": 0.01677456,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Escaping Tong Pass",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 592403,
"SidewaysCard": false,
"CustomDeck": {
"5924": {
"FaceURL": "https://i.imgur.com/566aMnO.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "d71d31",
"Name": "Card",
"Transform": {
"posX": 32.930748,
"posY": 1.37883461,
"posZ": -77.75735,
"rotX": 0.020806063,
"rotY": 270.008545,
"rotZ": 0.016774809,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Prodigy Healing",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 592404,
"SidewaysCard": false,
"CustomDeck": {
"5924": {
"FaceURL": "https://i.imgur.com/566aMnO.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "72e480",
"Name": "Card",
"Transform": {
"posX": 33.07592,
"posY": 1.38860857,
"posZ": -77.05106,
"rotX": 0.0208064876,
"rotY": 270.008545,
"rotZ": 0.0167748984,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Canonical Texts",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 592405,
"SidewaysCard": false,
"CustomDeck": {
"5924": {
"FaceURL": "https://i.imgur.com/566aMnO.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "840b9f",
"Name": "Card",
"Transform": {
"posX": 33.2717323,
"posY": 1.39860189,
"posZ": -77.83151,
"rotX": 0.020806564,
"rotY": 270.008545,
"rotZ": 0.0167747661,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "On a Streak",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 592406,
"SidewaysCard": false,
"CustomDeck": {
"5924": {
"FaceURL": "https://i.imgur.com/566aMnO.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "17ecf7",
"Name": "Card",
"Transform": {
"posX": 32.6919022,
"posY": 1.4088378,
"posZ": -77.93121,
"rotX": 0.0208065063,
"rotY": 270.008545,
"rotZ": 0.0167749133,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Sky Lantern",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 592407,
"SidewaysCard": false,
"CustomDeck": {
"5924": {
"FaceURL": "https://i.imgur.com/566aMnO.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "ba93cc",
"Name": "Card",
"Transform": {
"posX": 32.6176147,
"posY": 1.41838038,
"posZ": -78.0556946,
"rotX": 0.0208064448,
"rotY": 270.008545,
"rotZ": 0.01677476,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Treasure Bowl",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 592408,
"SidewaysCard": false,
"CustomDeck": {
"5924": {
"FaceURL": "https://i.imgur.com/566aMnO.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "eaa1bc",
"Name": "Card",
"Transform": {
"posX": 33.167,
"posY": 1.42713022,
"posZ": -77.08057,
"rotX": 0.02080646,
"rotY": 270.008545,
"rotZ": 0.0167749077,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Changban Recog",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 592409,
"SidewaysCard": false,
"CustomDeck": {
"5924": {
"FaceURL": "https://i.imgur.com/566aMnO.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "4b3ed6",
"Name": "Card",
"Transform": {
"posX": 32.67992,
"posY": 1.43674386,
"posZ": -77.177124,
"rotX": 0.02080631,
"rotY": 270.008545,
"rotZ": 0.0167748556,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Infant Care",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 592410,
"SidewaysCard": false,
"CustomDeck": {
"5924": {
"FaceURL": "https://i.imgur.com/566aMnO.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "d60bb0",
"Name": "Card",
"Transform": {
"posX": 32.5731354,
"posY": 1.44770479,
"posZ": -76.9989548,
"rotX": 0.0208059344,
"rotY": 270.008545,
"rotZ": 0.0167736337,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Monumental History",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 592411,
"SidewaysCard": false,
"CustomDeck": {
"5924": {
"FaceURL": "https://i.imgur.com/566aMnO.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "0d98cd",
"Name": "Card",
"Transform": {
"posX": 32.292202,
"posY": 1.45130634,
"posZ": -77.37188,
"rotX": 0.008660985,
"rotY": 270.047455,
"rotZ": 0.0138463965,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Empty Fort",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 592412,
"SidewaysCard": false,
"CustomDeck": {
"5924": {
"FaceURL": "https://i.imgur.com/566aMnO.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "d776e7",
"Name": "Card",
"Transform": {
"posX": 32.89086,
"posY": 1.46551156,
"posZ": -77.67901,
"rotX": 0.020806551,
"rotY": 270.008545,
"rotZ": 0.0167746115,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Mysterious Suspense",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 592413,
"SidewaysCard": false,
"CustomDeck": {
"5924": {
"FaceURL": "https://i.imgur.com/566aMnO.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "bcf3b0",
"Name": "Card",
"Transform": {
"posX": 32.54368,
"posY": 1.4751339,
"posZ": -77.33252,
"rotX": 0.020806592,
"rotY": 270.008545,
"rotZ": 0.0167746376,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Straw Shoes",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 592414,
"SidewaysCard": false,
"CustomDeck": {
"5924": {
"FaceURL": "https://i.imgur.com/566aMnO.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "5bd99d",
"Name": "Card",
"Transform": {
"posX": 32.6979866,
"posY": 1.48481083,
"posZ": -77.11732,
"rotX": 0.02080632,
"rotY": 270.008545,
"rotZ": 0.0167744532,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Butcher's Hatchet",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 592415,
"SidewaysCard": false,
"CustomDeck": {
"5924": {
"FaceURL": "https://i.imgur.com/566aMnO.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "0b3db4",
"Name": "Card",
"Transform": {
"posX": 32.5693169,
"posY": 1.49432123,
"posZ": -77.63921,
"rotX": 0.0208065361,
"rotY": 270.008545,
"rotZ": 0.0167747047,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Spiked Mace",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 592416,
"SidewaysCard": false,
"CustomDeck": {
"5924": {
"FaceURL": "https://i.imgur.com/566aMnO.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "b9ec5e",
"Name": "Card",
"Transform": {
"posX": 33.03647,
"posY": 1.50409186,
"posZ": -77.3271942,
"rotX": 0.0208064523,
"rotY": 270.008545,
"rotZ": 0.0167748816,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Historical Novel",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 592417,
"SidewaysCard": false,
"CustomDeck": {
"5924": {
"FaceURL": "https://i.imgur.com/566aMnO.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "1c134f",
"Name": "Card",
"Transform": {
"posX": -25.0166225,
"posY": 3.37645769,
"posZ": -54.0366859,
"rotX": 0.0208068267,
"rotY": 270.005768,
"rotZ": 0.0167732071,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Chronic Headache",
"Description": "A Cao Cao Weakness",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 592420,
"SidewaysCard": false,
"CustomDeck": {
"5924": {
"FaceURL": "https://i.imgur.com/566aMnO.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "e8d9ba",
"Name": "Card",
"Transform": {
"posX": -26.49006,
"posY": 3.37629366,
"posZ": -53.588623,
"rotX": 0.0208068751,
"rotY": 270.005768,
"rotZ": 0.0167731047,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Proud Aspirations",
"Description": "A Cao Cao Signature",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 592419,
"SidewaysCard": false,
"CustomDeck": {
"5924": {
"FaceURL": "https://i.imgur.com/566aMnO.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "d65904",
"Name": "Card",
"Transform": {
"posX": -25.6008377,
"posY": 3.37651587,
"posZ": -53.3084869,
"rotX": 0.0208057612,
"rotY": 270.0096,
"rotZ": 0.0167743787,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Shadow Runner",
"Description": "A Cao Cao Signature",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 592418,
"SidewaysCard": false,
"CustomDeck": {
"5924": {
"FaceURL": "https://i.imgur.com/566aMnO.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "112830",
"Name": "Custom_Model_Bag",
"Transform": {
"posX": -26.3063469,
"posY": 1.273384,
"posZ": -61.2117844,
"rotX": 359.979126,
"rotY": 89.85928,
"rotZ": 359.983276,
"scaleX": 2.0,
"scaleY": 2.0,
"scaleZ": 2.0
},
"Nickname": "starter deck & cards",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "bc1f8d",
"Name": "Deck",
"Transform": {
"posX": -26.3001442,
"posY": 3.4660635,
"posZ": -61.2409668,
"rotX": 0.0208585784,
"rotY": 270.000031,
"rotZ": 180.016953,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "A \"Battle Goes On\" deck",
"Description": "Everyone in play shares the same \"BGO\" deck. When a card from the \"BGO\" deck enters a play area, it's considered a part of that player's deck during this game. It will go into the player's discard pile once you discard it.",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": false,
"SidewaysCard": false,
"DeckIDs": [
592400,
592401,
592402,
592403,
592404,
592405,
592406,
592407,
592408,
592409,
592410,
592411,
592412,
592413,
592414,
592415,
592416,
592417
],
"CustomDeck": {
"5924": {
"FaceURL": "https://i.imgur.com/566aMnO.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "8a775d",
"Name": "Card",
"Transform": {
"posX": 32.985302,
"posY": 1.29232764,
"posZ": -77.30829,
"rotX": 0.0208061524,
"rotY": 270.008545,
"rotZ": 0.0167743545,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Seven Stars",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 592400,
"SidewaysCard": false,
"CustomDeck": {
"5924": {
"FaceURL": "https://i.imgur.com/566aMnO.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "8f85af",
"Name": "Card",
"Transform": {
"posX": 32.9665146,
"posY": 1.32576036,
"posZ": -77.27228,
"rotX": 0.020806523,
"rotY": 270.008545,
"rotZ": 0.0167748854,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Ancient Compass",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 592401,
"SidewaysCard": false,
"CustomDeck": {
"5924": {
"FaceURL": "https://i.imgur.com/566aMnO.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "6223c5",
"Name": "Card",
"Transform": {
"posX": 33.03376,
"posY": 1.35986257,
"posZ": -77.92008,
"rotX": 0.0208064932,
"rotY": 270.008545,
"rotZ": 0.0167746544,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Fulu",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 592402,
"SidewaysCard": false,
"CustomDeck": {
"5924": {
"FaceURL": "https://i.imgur.com/566aMnO.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "f60e82",
"Name": "Card",
"Transform": {
"posX": 33.5135078,
"posY": 1.36986566,
"posZ": -76.51876,
"rotX": 0.0208062325,
"rotY": 270.008545,
"rotZ": 0.01677456,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Escaping Tong Pass",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 592403,
"SidewaysCard": false,
"CustomDeck": {
"5924": {
"FaceURL": "https://i.imgur.com/566aMnO.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "d71d31",
"Name": "Card",
"Transform": {
"posX": 32.930748,
"posY": 1.37883461,
"posZ": -77.75735,
"rotX": 0.020806063,
"rotY": 270.008545,
"rotZ": 0.016774809,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Prodigy Healing",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 592404,
"SidewaysCard": false,
"CustomDeck": {
"5924": {
"FaceURL": "https://i.imgur.com/566aMnO.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "72e480",
"Name": "Card",
"Transform": {
"posX": 33.07592,
"posY": 1.38860857,
"posZ": -77.05106,
"rotX": 0.0208064876,
"rotY": 270.008545,
"rotZ": 0.0167748984,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Canonical Texts",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 592405,
"SidewaysCard": false,
"CustomDeck": {
"5924": {
"FaceURL": "https://i.imgur.com/566aMnO.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "840b9f",
"Name": "Card",
"Transform": {
"posX": 33.2717323,
"posY": 1.39860189,
"posZ": -77.83151,
"rotX": 0.020806564,
"rotY": 270.008545,
"rotZ": 0.0167747661,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "On a Streak",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 592406,
"SidewaysCard": false,
"CustomDeck": {
"5924": {
"FaceURL": "https://i.imgur.com/566aMnO.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "17ecf7",
"Name": "Card",
"Transform": {
"posX": 32.6919022,
"posY": 1.4088378,
"posZ": -77.93121,
"rotX": 0.0208065063,
"rotY": 270.008545,
"rotZ": 0.0167749133,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Sky Lantern",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 592407,
"SidewaysCard": false,
"CustomDeck": {
"5924": {
"FaceURL": "https://i.imgur.com/566aMnO.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "ba93cc",
"Name": "Card",
"Transform": {
"posX": 32.6176147,
"posY": 1.41838038,
"posZ": -78.0556946,
"rotX": 0.0208064448,
"rotY": 270.008545,
"rotZ": 0.01677476,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Treasure Bowl",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 592408,
"SidewaysCard": false,
"CustomDeck": {
"5924": {
"FaceURL": "https://i.imgur.com/566aMnO.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "eaa1bc",
"Name": "Card",
"Transform": {
"posX": 33.167,
"posY": 1.42713022,
"posZ": -77.08057,
"rotX": 0.02080646,
"rotY": 270.008545,
"rotZ": 0.0167749077,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Changban Recog",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 592409,
"SidewaysCard": false,
"CustomDeck": {
"5924": {
"FaceURL": "https://i.imgur.com/566aMnO.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "4b3ed6",
"Name": "Card",
"Transform": {
"posX": 32.67992,
"posY": 1.43674386,
"posZ": -77.177124,
"rotX": 0.02080631,
"rotY": 270.008545,
"rotZ": 0.0167748556,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Infant Care",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 592410,
"SidewaysCard": false,
"CustomDeck": {
"5924": {
"FaceURL": "https://i.imgur.com/566aMnO.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "d60bb0",
"Name": "Card",
"Transform": {
"posX": 32.5731354,
"posY": 1.44770479,
"posZ": -76.9989548,
"rotX": 0.0208059344,
"rotY": 270.008545,
"rotZ": 0.0167736337,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Monumental History",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 592411,
"SidewaysCard": false,
"CustomDeck": {
"5924": {
"FaceURL": "https://i.imgur.com/566aMnO.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "0d98cd",
"Name": "Card",
"Transform": {
"posX": 32.292202,
"posY": 1.45130634,
"posZ": -77.37188,
"rotX": 0.008660985,
"rotY": 270.047455,
"rotZ": 0.0138463965,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Empty Fort",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 592412,
"SidewaysCard": false,
"CustomDeck": {
"5924": {
"FaceURL": "https://i.imgur.com/566aMnO.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "d776e7",
"Name": "Card",
"Transform": {
"posX": 32.89086,
"posY": 1.46551156,
"posZ": -77.67901,
"rotX": 0.020806551,
"rotY": 270.008545,
"rotZ": 0.0167746115,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Mysterious Suspense",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 592413,
"SidewaysCard": false,
"CustomDeck": {
"5924": {
"FaceURL": "https://i.imgur.com/566aMnO.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "bcf3b0",
"Name": "Card",
"Transform": {
"posX": 32.54368,
"posY": 1.4751339,
"posZ": -77.33252,
"rotX": 0.020806592,
"rotY": 270.008545,
"rotZ": 0.0167746376,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Straw Shoes",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 592414,
"SidewaysCard": false,
"CustomDeck": {
"5924": {
"FaceURL": "https://i.imgur.com/566aMnO.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "5bd99d",
"Name": "Card",
"Transform": {
"posX": 32.6979866,
"posY": 1.48481083,
"posZ": -77.11732,
"rotX": 0.02080632,
"rotY": 270.008545,
"rotZ": 0.0167744532,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Butcher's Hatchet",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 592415,
"SidewaysCard": false,
"CustomDeck": {
"5924": {
"FaceURL": "https://i.imgur.com/566aMnO.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "0b3db4",
"Name": "Card",
"Transform": {
"posX": 32.5693169,
"posY": 1.49432123,
"posZ": -77.63921,
"rotX": 0.0208065361,
"rotY": 270.008545,
"rotZ": 0.0167747047,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Spiked Mace",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 592416,
"SidewaysCard": false,
"CustomDeck": {
"5924": {
"FaceURL": "https://i.imgur.com/566aMnO.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "b9ec5e",
"Name": "Card",
"Transform": {
"posX": 33.03647,
"posY": 1.50409186,
"posZ": -77.3271942,
"rotX": 0.0208064523,
"rotY": 270.008545,
"rotZ": 0.0167748816,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Historical Novel",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 592417,
"SidewaysCard": false,
"CustomDeck": {
"5924": {
"FaceURL": "https://i.imgur.com/566aMnO.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "8d963e",
"Name": "Card",
"Transform": {
"posX": -26.0372467,
"posY": 3.374163,
"posZ": -61.0657,
"rotX": 0.0208056122,
"rotY": 270.009766,
"rotZ": 0.0167747866,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Shed a Tear",
"Description": "A Liu Bei Weakness",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 592422,
"SidewaysCard": false,
"CustomDeck": {
"5924": {
"FaceURL": "https://i.imgur.com/566aMnO.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "03cf28",
"Name": "Card",
"Transform": {
"posX": -26.7003212,
"posY": 3.37413621,
"posZ": -60.6426735,
"rotX": 0.0208057389,
"rotY": 270.009735,
"rotZ": 0.0167747978,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Peach Garden Oath",
"Description": "A Liu Bei Signature",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 592421,
"SidewaysCard": false,
"CustomDeck": {
"5924": {
"FaceURL": "https://i.imgur.com/566aMnO.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "ac8f35",
"Name": "Card",
"Transform": {
"posX": -22.6169128,
"posY": 1.313284,
"posZ": -61.2409668,
"rotX": 0.0167879332,
"rotY": 180.020233,
"rotZ": 359.979218,
"scaleX": 1.1,
"scaleY": 1.0,
"scaleZ": 1.1
},
"Nickname": "Liu Bei",
"Description": "The Humane Ruler",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 592501,
"SidewaysCard": true,
"CustomDeck": {
"5925": {
"FaceURL": "https://i.imgur.com/VnGUaFg.jpg",
"BackURL": "https://i.imgur.com/icgJdJQ.jpg",
"NumWidth": 4,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "d3dcdd",
"Name": "Card",
"Transform": {
"posX": -19.3001,
"posY": 1.31449115,
"posZ": -61.2332,
"rotX": 0.02080864,
"rotY": 270.0001,
"rotZ": 0.0167711955,
"scaleX": 0.6,
"scaleY": 1.0,
"scaleZ": 0.6
},
"Nickname": "Liu Bei",
"Description": "Mini Card",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 592001,
"SidewaysCard": false,
"CustomDeck": {
"5920": {
"FaceURL": "https://i.imgur.com/cxcVPn9.jpg",
"BackURL": "https://i.imgur.com/MkXqO5J.jpg",
"NumWidth": 5,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "5bbf47",
"Name": "Custom_Model",
"Transform": {
"posX": -16.6233177,
"posY": 1.36222386,
"posZ": -59.9842148,
"rotX": 0.0208136421,
"rotY": 270.0109,
"rotZ": 0.016772056,
"scaleX": 0.45,
"scaleY": 0.6,
"scaleZ": 0.45
},
"Nickname": "Survivor turn token",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": false,
"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": ""
},
{
"GUID": "52e670",
"Name": "Custom_Model",
"Transform": {
"posX": -16.6233177,
"posY": 1.361864,
"posZ": -61.21422,
"rotX": 0.0208137967,
"rotY": 270.0109,
"rotZ": 0.0167718567,
"scaleX": 0.45,
"scaleY": 0.6,
"scaleZ": 0.45
},
"Nickname": "Survivor turn token",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": false,
"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": ""
},
{
"GUID": "909fa7",
"Name": "Custom_Model",
"Transform": {
"posX": -16.6232128,
"posY": 1.36150384,
"posZ": -62.4441223,
"rotX": 0.02081284,
"rotY": 270.0107,
"rotZ": 0.0167718548,
"scaleX": 0.45,
"scaleY": 0.6,
"scaleZ": 0.45
},
"Nickname": "Survivor turn token",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": false,
"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": ""
},
{
"GUID": "9725e1",
"Name": "Custom_Model",
"Transform": {
"posX": -16.6233158,
"posY": 1.359935,
"posZ": -67.80382,
"rotX": 0.0208168775,
"rotY": 269.999146,
"rotZ": 0.0167676471,
"scaleX": 0.45,
"scaleY": 0.6,
"scaleZ": 0.45
},
"Nickname": "Turn token",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": false,
"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": ""
},
{
"GUID": "e7550c",
"Name": "Custom_Model",
"Transform": {
"posX": -16.6235237,
"posY": 1.359572,
"posZ": -69.04351,
"rotX": 0.0208166745,
"rotY": 269.9992,
"rotZ": 0.0167681538,
"scaleX": 0.45,
"scaleY": 0.6,
"scaleZ": 0.45
},
"Nickname": "Turn token",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": false,
"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": ""
},
{
"GUID": "5de79f",
"Name": "Custom_Model",
"Transform": {
"posX": -16.6233177,
"posY": 1.359212,
"posZ": -70.27382,
"rotX": 0.0208167285,
"rotY": 269.999146,
"rotZ": 0.0167677458,
"scaleX": 0.45,
"scaleY": 0.6,
"scaleZ": 0.45
},
"Nickname": "Turn token",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": false,
"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": ""
},
{
"GUID": "bccf2a",
"Name": "Card",
"Transform": {
"posX": -19.2959,
"posY": 1.31220138,
"posZ": -69.0607,
"rotX": 0.0208086129,
"rotY": 270.0,
"rotZ": 0.01677086,
"scaleX": 0.6,
"scaleY": 1.0,
"scaleZ": 0.6
},
"Nickname": "Sun Quan",
"Description": "Mini Card",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 591902,
"SidewaysCard": false,
"CustomDeck": {
"5919": {
"FaceURL": "https://i.imgur.com/cxcVPn9.jpg",
"BackURL": "https://i.imgur.com/MkXqO5J.jpg",
"NumWidth": 5,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "2f9839",
"Name": "Card",
"Transform": {
"posX": -22.615675,
"posY": 1.31099141,
"posZ": -69.0756,
"rotX": 0.01676883,
"rotY": 179.992981,
"rotZ": 359.9792,
"scaleX": 1.1,
"scaleY": 1.0,
"scaleZ": 1.1
},
"Nickname": "Sun Quan",
"Description": "The Young Monarch",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 592502,
"SidewaysCard": true,
"CustomDeck": {
"5925": {
"FaceURL": "https://i.imgur.com/VnGUaFg.jpg",
"BackURL": "https://i.imgur.com/icgJdJQ.jpg",
"NumWidth": 4,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "024a88",
"Name": "Custom_Model_Bag",
"Transform": {
"posX": -26.3007851,
"posY": 1.27108884,
"posZ": -69.06113,
"rotX": 359.979156,
"rotY": 89.98672,
"rotZ": 359.983246,
"scaleX": 2.0,
"scaleY": 2.0,
"scaleZ": 2.0
},
"Nickname": "starter deck & cards",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "5d2d7e",
"Name": "Deck",
"Transform": {
"posX": -26.3001881,
"posY": 3.46372366,
"posZ": -69.060585,
"rotX": 0.0208539721,
"rotY": 270.000031,
"rotZ": 180.016937,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "A \"Battle Goes On\" deck",
"Description": "Everyone in play shares the same \"BGO\" deck. When a card from the \"BGO\" deck enters a play area, it's considered a part of that player's deck during this game. It will go into the player's discard pile once you discard it.",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": false,
"SidewaysCard": false,
"DeckIDs": [
592400,
592401,
592402,
592403,
592404,
592405,
592406,
592407,
592408,
592409,
592410,
592411,
592412,
592413,
592414,
592415,
592416,
592417
],
"CustomDeck": {
"5924": {
"FaceURL": "https://i.imgur.com/566aMnO.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "8a775d",
"Name": "Card",
"Transform": {
"posX": 32.985302,
"posY": 1.29232764,
"posZ": -77.30829,
"rotX": 0.0208061524,
"rotY": 270.008545,
"rotZ": 0.0167743545,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Seven Stars",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 592400,
"SidewaysCard": false,
"CustomDeck": {
"5924": {
"FaceURL": "https://i.imgur.com/566aMnO.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "8f85af",
"Name": "Card",
"Transform": {
"posX": 32.9665146,
"posY": 1.32576036,
"posZ": -77.27228,
"rotX": 0.020806523,
"rotY": 270.008545,
"rotZ": 0.0167748854,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Ancient Compass",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 592401,
"SidewaysCard": false,
"CustomDeck": {
"5924": {
"FaceURL": "https://i.imgur.com/566aMnO.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "6223c5",
"Name": "Card",
"Transform": {
"posX": 33.03376,
"posY": 1.35986257,
"posZ": -77.92008,
"rotX": 0.0208064932,
"rotY": 270.008545,
"rotZ": 0.0167746544,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Fulu",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 592402,
"SidewaysCard": false,
"CustomDeck": {
"5924": {
"FaceURL": "https://i.imgur.com/566aMnO.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "f60e82",
"Name": "Card",
"Transform": {
"posX": 33.5135078,
"posY": 1.36986566,
"posZ": -76.51876,
"rotX": 0.0208062325,
"rotY": 270.008545,
"rotZ": 0.01677456,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Escaping Tong Pass",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 592403,
"SidewaysCard": false,
"CustomDeck": {
"5924": {
"FaceURL": "https://i.imgur.com/566aMnO.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "d71d31",
"Name": "Card",
"Transform": {
"posX": 32.930748,
"posY": 1.37883461,
"posZ": -77.75735,
"rotX": 0.020806063,
"rotY": 270.008545,
"rotZ": 0.016774809,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Prodigy Healing",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 592404,
"SidewaysCard": false,
"CustomDeck": {
"5924": {
"FaceURL": "https://i.imgur.com/566aMnO.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "72e480",
"Name": "Card",
"Transform": {
"posX": 33.07592,
"posY": 1.38860857,
"posZ": -77.05106,
"rotX": 0.0208064876,
"rotY": 270.008545,
"rotZ": 0.0167748984,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Canonical Texts",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 592405,
"SidewaysCard": false,
"CustomDeck": {
"5924": {
"FaceURL": "https://i.imgur.com/566aMnO.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "840b9f",
"Name": "Card",
"Transform": {
"posX": 33.2717323,
"posY": 1.39860189,
"posZ": -77.83151,
"rotX": 0.020806564,
"rotY": 270.008545,
"rotZ": 0.0167747661,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "On a Streak",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 592406,
"SidewaysCard": false,
"CustomDeck": {
"5924": {
"FaceURL": "https://i.imgur.com/566aMnO.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "17ecf7",
"Name": "Card",
"Transform": {
"posX": 32.6919022,
"posY": 1.4088378,
"posZ": -77.93121,
"rotX": 0.0208065063,
"rotY": 270.008545,
"rotZ": 0.0167749133,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Sky Lantern",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 592407,
"SidewaysCard": false,
"CustomDeck": {
"5924": {
"FaceURL": "https://i.imgur.com/566aMnO.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "ba93cc",
"Name": "Card",
"Transform": {
"posX": 32.6176147,
"posY": 1.41838038,
"posZ": -78.0556946,
"rotX": 0.0208064448,
"rotY": 270.008545,
"rotZ": 0.01677476,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Treasure Bowl",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 592408,
"SidewaysCard": false,
"CustomDeck": {
"5924": {
"FaceURL": "https://i.imgur.com/566aMnO.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "eaa1bc",
"Name": "Card",
"Transform": {
"posX": 33.167,
"posY": 1.42713022,
"posZ": -77.08057,
"rotX": 0.02080646,
"rotY": 270.008545,
"rotZ": 0.0167749077,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Changban Recog",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 592409,
"SidewaysCard": false,
"CustomDeck": {
"5924": {
"FaceURL": "https://i.imgur.com/566aMnO.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "4b3ed6",
"Name": "Card",
"Transform": {
"posX": 32.67992,
"posY": 1.43674386,
"posZ": -77.177124,
"rotX": 0.02080631,
"rotY": 270.008545,
"rotZ": 0.0167748556,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Infant Care",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 592410,
"SidewaysCard": false,
"CustomDeck": {
"5924": {
"FaceURL": "https://i.imgur.com/566aMnO.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "d60bb0",
"Name": "Card",
"Transform": {
"posX": 32.5731354,
"posY": 1.44770479,
"posZ": -76.9989548,
"rotX": 0.0208059344,
"rotY": 270.008545,
"rotZ": 0.0167736337,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Monumental History",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 592411,
"SidewaysCard": false,
"CustomDeck": {
"5924": {
"FaceURL": "https://i.imgur.com/566aMnO.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "0d98cd",
"Name": "Card",
"Transform": {
"posX": 32.292202,
"posY": 1.45130634,
"posZ": -77.37188,
"rotX": 0.008660985,
"rotY": 270.047455,
"rotZ": 0.0138463965,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Empty Fort",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 592412,
"SidewaysCard": false,
"CustomDeck": {
"5924": {
"FaceURL": "https://i.imgur.com/566aMnO.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "d776e7",
"Name": "Card",
"Transform": {
"posX": 32.89086,
"posY": 1.46551156,
"posZ": -77.67901,
"rotX": 0.020806551,
"rotY": 270.008545,
"rotZ": 0.0167746115,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Mysterious Suspense",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 592413,
"SidewaysCard": false,
"CustomDeck": {
"5924": {
"FaceURL": "https://i.imgur.com/566aMnO.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "bcf3b0",
"Name": "Card",
"Transform": {
"posX": 32.54368,
"posY": 1.4751339,
"posZ": -77.33252,
"rotX": 0.020806592,
"rotY": 270.008545,
"rotZ": 0.0167746376,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Straw Shoes",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 592414,
"SidewaysCard": false,
"CustomDeck": {
"5924": {
"FaceURL": "https://i.imgur.com/566aMnO.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "5bd99d",
"Name": "Card",
"Transform": {
"posX": 32.6979866,
"posY": 1.48481083,
"posZ": -77.11732,
"rotX": 0.02080632,
"rotY": 270.008545,
"rotZ": 0.0167744532,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Butcher's Hatchet",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 592415,
"SidewaysCard": false,
"CustomDeck": {
"5924": {
"FaceURL": "https://i.imgur.com/566aMnO.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "0b3db4",
"Name": "Card",
"Transform": {
"posX": 32.5693169,
"posY": 1.49432123,
"posZ": -77.63921,
"rotX": 0.0208065361,
"rotY": 270.008545,
"rotZ": 0.0167747047,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Spiked Mace",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 592416,
"SidewaysCard": false,
"CustomDeck": {
"5924": {
"FaceURL": "https://i.imgur.com/566aMnO.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "b9ec5e",
"Name": "Card",
"Transform": {
"posX": 33.03647,
"posY": 1.50409186,
"posZ": -77.3271942,
"rotX": 0.0208064523,
"rotY": 270.008545,
"rotZ": 0.0167748816,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Historical Novel",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 592417,
"SidewaysCard": false,
"CustomDeck": {
"5924": {
"FaceURL": "https://i.imgur.com/566aMnO.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "889fc6",
"Name": "Card",
"Transform": {
"posX": -25.837513,
"posY": 3.371754,
"posZ": -69.6031952,
"rotX": 0.020806307,
"rotY": 270.009827,
"rotZ": 0.0167752374,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "River of No Return",
"Description": "A Sun Quan Weakness",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 592424,
"SidewaysCard": false,
"CustomDeck": {
"5924": {
"FaceURL": "https://i.imgur.com/566aMnO.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "0d6929",
"Name": "Card",
"Transform": {
"posX": -25.4909649,
"posY": 3.37185669,
"posZ": -69.4097,
"rotX": 0.02080643,
"rotY": 270.0097,
"rotZ": 0.0167751126,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Seamless Planning",
"Description": "A Sun Quan Signature",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 592423,
"SidewaysCard": false,
"CustomDeck": {
"5924": {
"FaceURL": "https://i.imgur.com/566aMnO.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "b2b405",
"Name": "Custom_Model_Bag",
"Transform": {
"posX": -26.3053379,
"posY": 1.268779,
"posZ": -76.94566,
"rotX": 359.979156,
"rotY": 89.92257,
"rotZ": 359.983246,
"scaleX": 2.0,
"scaleY": 2.0,
"scaleZ": 2.0
},
"Nickname": "starter deck & cards",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "907f2f",
"Name": "Deck",
"Transform": {
"posX": -26.3001842,
"posY": 3.46136951,
"posZ": -76.94564,
"rotX": 0.02085752,
"rotY": 270.000031,
"rotZ": 180.016953,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "A \"Battle Goes On\" deck",
"Description": "Everyone in play shares the same \"BGO\" deck. When a card from the \"BGO\" deck enters a play area, it's considered a part of that player's deck during this game. It will go into the player's discard pile once you discard it.",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": false,
"SidewaysCard": false,
"DeckIDs": [
592400,
592401,
592402,
592403,
592404,
592405,
592406,
592407,
592408,
592409,
592410,
592411,
592412,
592413,
592414,
592415,
592416,
592417
],
"CustomDeck": {
"5924": {
"FaceURL": "https://i.imgur.com/566aMnO.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "8a775d",
"Name": "Card",
"Transform": {
"posX": 32.985302,
"posY": 1.29232764,
"posZ": -77.30829,
"rotX": 0.0208061524,
"rotY": 270.008545,
"rotZ": 0.0167743545,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Seven Stars",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 592400,
"SidewaysCard": false,
"CustomDeck": {
"5924": {
"FaceURL": "https://i.imgur.com/566aMnO.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "8f85af",
"Name": "Card",
"Transform": {
"posX": 32.9665146,
"posY": 1.32576036,
"posZ": -77.27228,
"rotX": 0.020806523,
"rotY": 270.008545,
"rotZ": 0.0167748854,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Ancient Compass",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 592401,
"SidewaysCard": false,
"CustomDeck": {
"5924": {
"FaceURL": "https://i.imgur.com/566aMnO.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "6223c5",
"Name": "Card",
"Transform": {
"posX": 33.03376,
"posY": 1.35986257,
"posZ": -77.92008,
"rotX": 0.0208064932,
"rotY": 270.008545,
"rotZ": 0.0167746544,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Fulu",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 592402,
"SidewaysCard": false,
"CustomDeck": {
"5924": {
"FaceURL": "https://i.imgur.com/566aMnO.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "f60e82",
"Name": "Card",
"Transform": {
"posX": 33.5135078,
"posY": 1.36986566,
"posZ": -76.51876,
"rotX": 0.0208062325,
"rotY": 270.008545,
"rotZ": 0.01677456,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Escaping Tong Pass",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 592403,
"SidewaysCard": false,
"CustomDeck": {
"5924": {
"FaceURL": "https://i.imgur.com/566aMnO.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "d71d31",
"Name": "Card",
"Transform": {
"posX": 32.930748,
"posY": 1.37883461,
"posZ": -77.75735,
"rotX": 0.020806063,
"rotY": 270.008545,
"rotZ": 0.016774809,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Prodigy Healing",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 592404,
"SidewaysCard": false,
"CustomDeck": {
"5924": {
"FaceURL": "https://i.imgur.com/566aMnO.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "72e480",
"Name": "Card",
"Transform": {
"posX": 33.07592,
"posY": 1.38860857,
"posZ": -77.05106,
"rotX": 0.0208064876,
"rotY": 270.008545,
"rotZ": 0.0167748984,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Canonical Texts",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 592405,
"SidewaysCard": false,
"CustomDeck": {
"5924": {
"FaceURL": "https://i.imgur.com/566aMnO.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "840b9f",
"Name": "Card",
"Transform": {
"posX": 33.2717323,
"posY": 1.39860189,
"posZ": -77.83151,
"rotX": 0.020806564,
"rotY": 270.008545,
"rotZ": 0.0167747661,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "On a Streak",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 592406,
"SidewaysCard": false,
"CustomDeck": {
"5924": {
"FaceURL": "https://i.imgur.com/566aMnO.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "17ecf7",
"Name": "Card",
"Transform": {
"posX": 32.6919022,
"posY": 1.4088378,
"posZ": -77.93121,
"rotX": 0.0208065063,
"rotY": 270.008545,
"rotZ": 0.0167749133,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Sky Lantern",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 592407,
"SidewaysCard": false,
"CustomDeck": {
"5924": {
"FaceURL": "https://i.imgur.com/566aMnO.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "ba93cc",
"Name": "Card",
"Transform": {
"posX": 32.6176147,
"posY": 1.41838038,
"posZ": -78.0556946,
"rotX": 0.0208064448,
"rotY": 270.008545,
"rotZ": 0.01677476,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Treasure Bowl",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 592408,
"SidewaysCard": false,
"CustomDeck": {
"5924": {
"FaceURL": "https://i.imgur.com/566aMnO.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "eaa1bc",
"Name": "Card",
"Transform": {
"posX": 33.167,
"posY": 1.42713022,
"posZ": -77.08057,
"rotX": 0.02080646,
"rotY": 270.008545,
"rotZ": 0.0167749077,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Changban Recog",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 592409,
"SidewaysCard": false,
"CustomDeck": {
"5924": {
"FaceURL": "https://i.imgur.com/566aMnO.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "4b3ed6",
"Name": "Card",
"Transform": {
"posX": 32.67992,
"posY": 1.43674386,
"posZ": -77.177124,
"rotX": 0.02080631,
"rotY": 270.008545,
"rotZ": 0.0167748556,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Infant Care",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 592410,
"SidewaysCard": false,
"CustomDeck": {
"5924": {
"FaceURL": "https://i.imgur.com/566aMnO.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "d60bb0",
"Name": "Card",
"Transform": {
"posX": 32.5731354,
"posY": 1.44770479,
"posZ": -76.9989548,
"rotX": 0.0208059344,
"rotY": 270.008545,
"rotZ": 0.0167736337,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Monumental History",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 592411,
"SidewaysCard": false,
"CustomDeck": {
"5924": {
"FaceURL": "https://i.imgur.com/566aMnO.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "0d98cd",
"Name": "Card",
"Transform": {
"posX": 32.292202,
"posY": 1.45130634,
"posZ": -77.37188,
"rotX": 0.008660985,
"rotY": 270.047455,
"rotZ": 0.0138463965,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Empty Fort",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 592412,
"SidewaysCard": false,
"CustomDeck": {
"5924": {
"FaceURL": "https://i.imgur.com/566aMnO.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "d776e7",
"Name": "Card",
"Transform": {
"posX": 32.89086,
"posY": 1.46551156,
"posZ": -77.67901,
"rotX": 0.020806551,
"rotY": 270.008545,
"rotZ": 0.0167746115,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Mysterious Suspense",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 592413,
"SidewaysCard": false,
"CustomDeck": {
"5924": {
"FaceURL": "https://i.imgur.com/566aMnO.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "bcf3b0",
"Name": "Card",
"Transform": {
"posX": 32.54368,
"posY": 1.4751339,
"posZ": -77.33252,
"rotX": 0.020806592,
"rotY": 270.008545,
"rotZ": 0.0167746376,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Straw Shoes",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 592414,
"SidewaysCard": false,
"CustomDeck": {
"5924": {
"FaceURL": "https://i.imgur.com/566aMnO.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "5bd99d",
"Name": "Card",
"Transform": {
"posX": 32.6979866,
"posY": 1.48481083,
"posZ": -77.11732,
"rotX": 0.02080632,
"rotY": 270.008545,
"rotZ": 0.0167744532,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Butcher's Hatchet",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 592415,
"SidewaysCard": false,
"CustomDeck": {
"5924": {
"FaceURL": "https://i.imgur.com/566aMnO.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "0b3db4",
"Name": "Card",
"Transform": {
"posX": 32.5693169,
"posY": 1.49432123,
"posZ": -77.63921,
"rotX": 0.0208065361,
"rotY": 270.008545,
"rotZ": 0.0167747047,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Spiked Mace",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 592416,
"SidewaysCard": false,
"CustomDeck": {
"5924": {
"FaceURL": "https://i.imgur.com/566aMnO.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "b9ec5e",
"Name": "Card",
"Transform": {
"posX": 33.03647,
"posY": 1.50409186,
"posZ": -77.3271942,
"rotX": 0.0208064523,
"rotY": 270.008545,
"rotZ": 0.0167748816,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Historical Novel",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 592417,
"SidewaysCard": false,
"CustomDeck": {
"5924": {
"FaceURL": "https://i.imgur.com/566aMnO.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "c86631",
"Name": "Card",
"Transform": {
"posX": -25.1376286,
"posY": 3.36959887,
"posZ": -77.34479,
"rotX": 0.02080582,
"rotY": 270.009827,
"rotZ": 0.01677482,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Battle Goes On",
"Description": "A Nan Hua Weakness",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 592426,
"SidewaysCard": false,
"CustomDeck": {
"5924": {
"FaceURL": "https://i.imgur.com/566aMnO.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "4dc7fa",
"Name": "Card",
"Transform": {
"posX": -25.7399826,
"posY": 3.36972284,
"posZ": -76.26269,
"rotX": 0.0208062716,
"rotY": 270.009766,
"rotZ": 0.0167752169,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Essential Arts of Peace",
"Description": "A Nan Hua Signature",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 592425,
"SidewaysCard": false,
"CustomDeck": {
"5924": {
"FaceURL": "https://i.imgur.com/566aMnO.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "3bdb8f",
"Name": "Card",
"Transform": {
"posX": -22.6157455,
"posY": 1.30868757,
"posZ": -76.94603,
"rotX": 0.0167611931,
"rotY": 179.971786,
"rotZ": 359.9792,
"scaleX": 1.1,
"scaleY": 1.0,
"scaleZ": 1.1
},
"Nickname": "Nan Hua",
"Description": "Saint Hermit of the Southern Land",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 592503,
"SidewaysCard": true,
"CustomDeck": {
"5925": {
"FaceURL": "https://i.imgur.com/VnGUaFg.jpg",
"BackURL": "https://i.imgur.com/icgJdJQ.jpg",
"NumWidth": 4,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "93d0b4",
"Name": "Card",
"Transform": {
"posX": -19.2936,
"posY": 1.30989552,
"posZ": -76.9415,
"rotX": 0.0208088588,
"rotY": 269.999939,
"rotZ": 0.0167713,
"scaleX": 0.6,
"scaleY": 1.0,
"scaleZ": 0.6
},
"Nickname": "Nan Hua",
"Description": "Mini Card",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 591703,
"SidewaysCard": false,
"CustomDeck": {
"5917": {
"FaceURL": "https://i.imgur.com/cxcVPn9.jpg",
"BackURL": "https://i.imgur.com/MkXqO5J.jpg",
"NumWidth": 5,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "585744",
"Name": "Custom_Model",
"Transform": {
"posX": -16.623518,
"posY": 1.3576268,
"posZ": -75.68862,
"rotX": 0.0208205655,
"rotY": 269.9872,
"rotZ": 0.0167632829,
"scaleX": 0.45,
"scaleY": 0.6,
"scaleZ": 0.45
},
"Nickname": "Survivor turn token",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": false,
"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": "197103",
"Name": "Custom_Model",
"Transform": {
"posX": -16.622818,
"posY": 1.35726428,
"posZ": -76.92882,
"rotX": 0.020820288,
"rotY": 269.9872,
"rotZ": 0.01676295,
"scaleX": 0.45,
"scaleY": 0.6,
"scaleZ": 0.45
},
"Nickname": "Survivor turn token",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": false,
"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": "f9f51a",
"Name": "Custom_Model",
"Transform": {
"posX": -16.6233177,
"posY": 1.35690391,
"posZ": -78.15882,
"rotX": 0.0208197255,
"rotY": 269.9872,
"rotZ": 0.0167634618,
"scaleX": 0.45,
"scaleY": 0.6,
"scaleZ": 0.45
},
"Nickname": "Survivor turn token",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": false,
"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": "104c1e",
"Name": "Custom_Model",
"Transform": {
"posX": -16.6218147,
"posY": 1.35533381,
"posZ": -83.52472,
"rotX": 0.0208185278,
"rotY": 269.9935,
"rotZ": 0.01676567,
"scaleX": 0.45,
"scaleY": 0.6,
"scaleZ": 0.45
},
"Nickname": "Turn token",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": false,
"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": "080508",
"Name": "Custom_Model",
"Transform": {
"posX": -16.6234169,
"posY": 1.35495937,
"posZ": -84.80142,
"rotX": 0.020818606,
"rotY": 269.9935,
"rotZ": 0.0167653412,
"scaleX": 0.45,
"scaleY": 0.6,
"scaleZ": 0.45
},
"Nickname": "Turn token",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": false,
"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": "68e686",
"Name": "Custom_Model",
"Transform": {
"posX": -16.6226177,
"posY": 1.35460842,
"posZ": -86.0018158,
"rotX": 0.020818511,
"rotY": 269.9935,
"rotZ": 0.0167655665,
"scaleX": 0.45,
"scaleY": 0.6,
"scaleZ": 0.45
},
"Nickname": "Turn token",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": false,
"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": "763a27",
"Name": "Card",
"Transform": {
"posX": -19.2998,
"posY": 1.30758762,
"posZ": -84.8182,
"rotX": 0.0208088271,
"rotY": 269.999939,
"rotZ": 0.01677089,
"scaleX": 0.6,
"scaleY": 1.0,
"scaleZ": 0.6
},
"Nickname": "Chen Shou",
"Description": "Mini Card",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 591604,
"SidewaysCard": false,
"CustomDeck": {
"5916": {
"FaceURL": "https://i.imgur.com/cxcVPn9.jpg",
"BackURL": "https://i.imgur.com/MkXqO5J.jpg",
"NumWidth": 5,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "d4c471",
"Name": "Deck",
"Transform": {
"posX": -22.6168976,
"posY": 1.32815063,
"posZ": -84.8185,
"rotX": 0.0167611986,
"rotY": 179.96965,
"rotZ": 359.9792,
"scaleX": 1.1,
"scaleY": 1.0,
"scaleZ": 1.1
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"SidewaysCard": true,
"DeckIDs": [
592506,
592505,
592504
],
"CustomDeck": {
"5925": {
"FaceURL": "https://i.imgur.com/VnGUaFg.jpg",
"BackURL": "https://i.imgur.com/icgJdJQ.jpg",
"NumWidth": 4,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "01b1e1",
"Name": "Card",
"Transform": {
"posX": -22.6168957,
"posY": 1.30638278,
"posZ": -84.81849,
"rotX": 0.0167603921,
"rotY": 179.969711,
"rotZ": 359.9792,
"scaleX": 1.1,
"scaleY": 1.0,
"scaleZ": 1.1
},
"Nickname": "Chen Shou - Rogue / Seeker",
"Description": "The Historian",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 592506,
"SidewaysCard": true,
"CustomDeck": {
"5925": {
"FaceURL": "https://i.imgur.com/VnGUaFg.jpg",
"BackURL": "https://i.imgur.com/icgJdJQ.jpg",
"NumWidth": 4,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "571676",
"Name": "Card",
"Transform": {
"posX": -22.7244835,
"posY": 1.33982444,
"posZ": -85.02744,
"rotX": 0.0167624373,
"rotY": 179.975357,
"rotZ": 359.9792,
"scaleX": 1.1,
"scaleY": 1.0,
"scaleZ": 1.1
},
"Nickname": "Chen Shou - Guardian / Mythic",
"Description": "The Historian",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 592505,
"SidewaysCard": true,
"CustomDeck": {
"5925": {
"FaceURL": "https://i.imgur.com/VnGUaFg.jpg",
"BackURL": "https://i.imgur.com/icgJdJQ.jpg",
"NumWidth": 4,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "9dd0d1",
"Name": "Card",
"Transform": {
"posX": -23.48657,
"posY": 1.37356687,
"posZ": -84.96272,
"rotX": 0.0165218785,
"rotY": 180.005463,
"rotZ": 359.978882,
"scaleX": 1.1,
"scaleY": 1.0,
"scaleZ": 1.1
},
"Nickname": "Chen Shou",
"Description": "Skill Value Card",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 592504,
"SidewaysCard": true,
"CustomDeck": {
"5925": {
"FaceURL": "https://i.imgur.com/VnGUaFg.jpg",
"BackURL": "https://i.imgur.com/icgJdJQ.jpg",
"NumWidth": 4,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "fd8d58",
"Name": "Custom_Model_Bag",
"Transform": {
"posX": 29.8056717,
"posY": 1.88600659,
"posZ": -5.80558,
"rotX": 359.981262,
"rotY": 89.9761,
"rotZ": 359.984924,
"scaleX": 2.0,
"scaleY": 2.0,
"scaleZ": 2.0
},
"Nickname": "starter deck & cards",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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": "6fb32b",
"Name": "Deck",
"Transform": {
"posX": -26.299593,
"posY": 3.45914435,
"posZ": -84.81799,
"rotX": 0.0208557434,
"rotY": 270.000031,
"rotZ": 180.016937,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "A \"Battle Goes On\" deck",
"Description": "Everyone in play shares the same \"BGO\" deck. When a card from the \"BGO\" deck enters a play area, it's considered a part of that player's deck during this game. It will go into the player's discard pile once you discard it.",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": false,
"SidewaysCard": false,
"DeckIDs": [
592400,
592401,
592402,
592403,
592404,
592405,
592406,
592407,
592408,
592409,
592410,
592411,
592412,
592413,
592414,
592415,
592416,
592417
],
"CustomDeck": {
"5924": {
"FaceURL": "https://i.imgur.com/566aMnO.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "8a775d",
"Name": "Card",
"Transform": {
"posX": 32.985302,
"posY": 1.29232764,
"posZ": -77.30829,
"rotX": 0.0208061524,
"rotY": 270.008545,
"rotZ": 0.0167743545,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Seven Stars",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 592400,
"SidewaysCard": false,
"CustomDeck": {
"5924": {
"FaceURL": "https://i.imgur.com/566aMnO.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "8f85af",
"Name": "Card",
"Transform": {
"posX": 32.9665146,
"posY": 1.32576036,
"posZ": -77.27228,
"rotX": 0.020806523,
"rotY": 270.008545,
"rotZ": 0.0167748854,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Ancient Compass",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 592401,
"SidewaysCard": false,
"CustomDeck": {
"5924": {
"FaceURL": "https://i.imgur.com/566aMnO.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "6223c5",
"Name": "Card",
"Transform": {
"posX": 33.03376,
"posY": 1.35986257,
"posZ": -77.92008,
"rotX": 0.0208064932,
"rotY": 270.008545,
"rotZ": 0.0167746544,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Fulu",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 592402,
"SidewaysCard": false,
"CustomDeck": {
"5924": {
"FaceURL": "https://i.imgur.com/566aMnO.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "f60e82",
"Name": "Card",
"Transform": {
"posX": 33.5135078,
"posY": 1.36986566,
"posZ": -76.51876,
"rotX": 0.0208062325,
"rotY": 270.008545,
"rotZ": 0.01677456,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Escaping Tong Pass",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 592403,
"SidewaysCard": false,
"CustomDeck": {
"5924": {
"FaceURL": "https://i.imgur.com/566aMnO.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "d71d31",
"Name": "Card",
"Transform": {
"posX": 32.930748,
"posY": 1.37883461,
"posZ": -77.75735,
"rotX": 0.020806063,
"rotY": 270.008545,
"rotZ": 0.016774809,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Prodigy Healing",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 592404,
"SidewaysCard": false,
"CustomDeck": {
"5924": {
"FaceURL": "https://i.imgur.com/566aMnO.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "72e480",
"Name": "Card",
"Transform": {
"posX": 33.07592,
"posY": 1.38860857,
"posZ": -77.05106,
"rotX": 0.0208064876,
"rotY": 270.008545,
"rotZ": 0.0167748984,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Canonical Texts",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 592405,
"SidewaysCard": false,
"CustomDeck": {
"5924": {
"FaceURL": "https://i.imgur.com/566aMnO.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "840b9f",
"Name": "Card",
"Transform": {
"posX": 33.2717323,
"posY": 1.39860189,
"posZ": -77.83151,
"rotX": 0.020806564,
"rotY": 270.008545,
"rotZ": 0.0167747661,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "On a Streak",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 592406,
"SidewaysCard": false,
"CustomDeck": {
"5924": {
"FaceURL": "https://i.imgur.com/566aMnO.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "17ecf7",
"Name": "Card",
"Transform": {
"posX": 32.6919022,
"posY": 1.4088378,
"posZ": -77.93121,
"rotX": 0.0208065063,
"rotY": 270.008545,
"rotZ": 0.0167749133,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Sky Lantern",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 592407,
"SidewaysCard": false,
"CustomDeck": {
"5924": {
"FaceURL": "https://i.imgur.com/566aMnO.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "ba93cc",
"Name": "Card",
"Transform": {
"posX": 32.6176147,
"posY": 1.41838038,
"posZ": -78.0556946,
"rotX": 0.0208064448,
"rotY": 270.008545,
"rotZ": 0.01677476,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Treasure Bowl",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 592408,
"SidewaysCard": false,
"CustomDeck": {
"5924": {
"FaceURL": "https://i.imgur.com/566aMnO.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "eaa1bc",
"Name": "Card",
"Transform": {
"posX": 33.167,
"posY": 1.42713022,
"posZ": -77.08057,
"rotX": 0.02080646,
"rotY": 270.008545,
"rotZ": 0.0167749077,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Changban Recog",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 592409,
"SidewaysCard": false,
"CustomDeck": {
"5924": {
"FaceURL": "https://i.imgur.com/566aMnO.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "4b3ed6",
"Name": "Card",
"Transform": {
"posX": 32.67992,
"posY": 1.43674386,
"posZ": -77.177124,
"rotX": 0.02080631,
"rotY": 270.008545,
"rotZ": 0.0167748556,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Infant Care",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 592410,
"SidewaysCard": false,
"CustomDeck": {
"5924": {
"FaceURL": "https://i.imgur.com/566aMnO.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "d60bb0",
"Name": "Card",
"Transform": {
"posX": 32.5731354,
"posY": 1.44770479,
"posZ": -76.9989548,
"rotX": 0.0208059344,
"rotY": 270.008545,
"rotZ": 0.0167736337,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Monumental History",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 592411,
"SidewaysCard": false,
"CustomDeck": {
"5924": {
"FaceURL": "https://i.imgur.com/566aMnO.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "0d98cd",
"Name": "Card",
"Transform": {
"posX": 32.292202,
"posY": 1.45130634,
"posZ": -77.37188,
"rotX": 0.008660985,
"rotY": 270.047455,
"rotZ": 0.0138463965,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Empty Fort",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 592412,
"SidewaysCard": false,
"CustomDeck": {
"5924": {
"FaceURL": "https://i.imgur.com/566aMnO.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "d776e7",
"Name": "Card",
"Transform": {
"posX": 32.89086,
"posY": 1.46551156,
"posZ": -77.67901,
"rotX": 0.020806551,
"rotY": 270.008545,
"rotZ": 0.0167746115,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Mysterious Suspense",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 592413,
"SidewaysCard": false,
"CustomDeck": {
"5924": {
"FaceURL": "https://i.imgur.com/566aMnO.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "bcf3b0",
"Name": "Card",
"Transform": {
"posX": 32.54368,
"posY": 1.4751339,
"posZ": -77.33252,
"rotX": 0.020806592,
"rotY": 270.008545,
"rotZ": 0.0167746376,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Straw Shoes",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 592414,
"SidewaysCard": false,
"CustomDeck": {
"5924": {
"FaceURL": "https://i.imgur.com/566aMnO.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "5bd99d",
"Name": "Card",
"Transform": {
"posX": 32.6979866,
"posY": 1.48481083,
"posZ": -77.11732,
"rotX": 0.02080632,
"rotY": 270.008545,
"rotZ": 0.0167744532,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Butcher's Hatchet",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 592415,
"SidewaysCard": false,
"CustomDeck": {
"5924": {
"FaceURL": "https://i.imgur.com/566aMnO.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "0b3db4",
"Name": "Card",
"Transform": {
"posX": 32.5693169,
"posY": 1.49432123,
"posZ": -77.63921,
"rotX": 0.0208065361,
"rotY": 270.008545,
"rotZ": 0.0167747047,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Spiked Mace",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 592416,
"SidewaysCard": false,
"CustomDeck": {
"5924": {
"FaceURL": "https://i.imgur.com/566aMnO.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "b9ec5e",
"Name": "Card",
"Transform": {
"posX": 33.03647,
"posY": 1.50409186,
"posZ": -77.3271942,
"rotX": 0.0208064523,
"rotY": 270.008545,
"rotZ": 0.0167748816,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Historical Novel",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 592417,
"SidewaysCard": false,
"CustomDeck": {
"5924": {
"FaceURL": "https://i.imgur.com/566aMnO.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "9ee779",
"Name": "Card",
"Transform": {
"posX": -25.7080727,
"posY": 3.36733723,
"posZ": -84.5630341,
"rotX": 0.02080482,
"rotY": 270.0126,
"rotZ": 0.016775813,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Just a Dream?",
"Description": "A Chen Shou Weakness",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 592428,
"SidewaysCard": false,
"CustomDeck": {
"5924": {
"FaceURL": "https://i.imgur.com/566aMnO.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "c6ffb1",
"Name": "Card",
"Transform": {
"posX": -25.3253441,
"posY": 3.36740041,
"posZ": -84.59088,
"rotX": 0.0208063889,
"rotY": 270.009827,
"rotZ": 0.0167752765,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Through It All",
"Description": "A Chen Shou Signature",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 592427,
"SidewaysCard": false,
"CustomDeck": {
"5924": {
"FaceURL": "https://i.imgur.com/566aMnO.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
}
],
"AttachedDecals": [
{
"Transform": {
"posX": -0.0021877822,
"posY": -0.08963572,
"posZ": -0.00288731651,
"rotX": 270.0,
"rotY": 359.869568,
"rotZ": 0.0,
"scaleX": 2.00000215,
"scaleY": 2.00000238,
"scaleZ": 2.00000262
},
"CustomDecal": {
"Name": "dunwich_back",
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/959719855119695911/931B9829687A20F4DEADB36DA57B7E6D76792231/",
"Size": 7.4
}
}
]
},
{
"GUID": "d0c8fa",
"Name": "Custom_Tile",
"Transform": {
"posX": -59.6620827,
"posY": 1.56468439,
"posZ": -3.25322617E-07,
"rotX": 359.920135,
"rotY": 269.990173,
"rotZ": 0.0168871712,
"scaleX": 1.5,
"scaleY": 1.0,
"scaleZ": 1.5
},
"Nickname": "Phase Tracker",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.106233381,
"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": -59.6620827,
"posY": 1.56468439,
"posZ": -3.25322617E-07,
"rotX": 359.920135,
"rotY": 269.990173,
"rotZ": 0.0168871619,
"scaleX": 1.5,
"scaleY": 1.0,
"scaleZ": 1.5
},
"Nickname": "Phase Tracker",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.0414623022,
"g": 0.1132373,
"b": 0.0009864086
},
"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/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": -59.6620827,
"posY": 1.56468439,
"posZ": -3.25322617E-07,
"rotX": 359.920135,
"rotY": 269.990173,
"rotZ": 0.0168871712,
"scaleX": 1.5,
"scaleY": 1.0,
"scaleZ": 1.5
},
"Nickname": "Phase Tracker",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.235188574,
"g": 0.0,
"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/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": -59.6620827,
"posY": 1.56468439,
"posZ": -3.25322617E-07,
"rotX": 359.920135,
"rotY": 269.990173,
"rotZ": 0.0168871712,
"scaleX": 1.5,
"scaleY": 1.0,
"scaleZ": 1.5
},
"Nickname": "Phase Tracker",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.5313587,
"g": 0.3496273,
"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/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": "15bb07",
"Name": "Bag",
"Transform": {
"posX": 77.88647,
"posY": 1.04336834,
"posZ": 27.0312119,
"rotX": 0.0154684028,
"rotY": 9.77012751E-05,
"rotZ": 359.98996,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "All Player Cards",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"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\n-- Position to check for weaknesses. Everything with X and Z less\r\n-- than these values (down and right on the table) will be checked\r\nlocal WEAKNESS_CHECK_X = 15\r\nlocal WEAKNESS_CHECK_Z = 37\r\n\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 -- If the ID key and the metadata ID don't match this is a duplicate card created by an\r\n -- alternate_id, and we should skip it\r\n if (cardId == cardMetadata.id) then\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 -- Excludes signature cards (which have no class or level) and alternate\r\n -- ID entries\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 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\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-- Searches the bag for cards which match the given name and returns a list. Note that this is\r\n-- an O(n) search without index support. It may be slow.\r\n-- Parameter array must contain these fields to define the search:\r\n-- name String or string fragment to search for names\r\n-- exact Whether the name match should be exact\r\nfunction getCardsByName(params)\r\n local name = params.name\r\n local exact = params.exact\r\n local results = { }\r\n -- Track cards (by ID) that we've added to avoid duplicates that may come from alternate IDs\r\n local addedCards = { }\r\n for _, cardData in pairs(cardIdIndex) do\r\n if (not addedCards[cardData.metadata.id]) then\r\n if (exact and (string.lower(cardData.data.Nickname) == string.lower(name)))\r\n or (not exact and string.find(string.lower(cardData.data.Nickname), string.lower(name), 1, true)) then\r\n table.insert(results, cardData)\r\n addedCards[cardData.metadata.id] = true\r\n end\r\n end\r\n end\r\n return results\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 availableWeaknesses = buildAvailableWeaknesses()\r\n if (#availableWeaknesses > 0) then\r\n return availableWeaknesses[math.random(#availableWeaknesses)]\r\n end\r\nend\r\n\r\n-- Constructs a list of available basic weaknesses by starting with the full pool of basic\r\n-- weaknesses then removing any which are currently in the play or deck construction areas\r\n-- Return: Table array of weakness IDs which are valid to choose from\r\nfunction buildAvailableWeaknesses()\r\n local weaknessesInPlay = { }\r\n local allObjects = getAllObjects()\r\n for _, object in ipairs(allObjects) do\r\n if (object.name == \"Deck\" and isInPlayArea(object)) then\r\n for _, cardData in ipairs(object.getData().ContainedObjects) do\r\n local cardMetadata = JSON.decode(cardData.GMNotes)\r\n incrementWeaknessCount(weaknessesInPlay, cardMetadata)\r\n end\r\n elseif (object.name == \"Card\" and isInPlayArea(object)) then\r\n local cardMetadata = JSON.decode(object.getGMNotes())\r\n incrementWeaknessCount(weaknessesInPlay, cardMetadata)\r\n end\r\n end\r\n\r\n local availableWeaknesses = { }\r\n for _, weaknessId in ipairs(basicWeaknessList) do\r\n if (weaknessesInPlay[weaknessId] ~= nil and weaknessesInPlay[weaknessId] > 0) then\r\n weaknessesInPlay[weaknessId] = weaknessesInPlay[weaknessId] - 1\r\n else\r\n table.insert(availableWeaknesses, weaknessId)\r\n end\r\n end\r\n return availableWeaknesses\r\nend\r\n\r\n-- Helper function that adds one to the table entry for the number of weaknesses in play\r\nfunction incrementWeaknessCount(table, cardMetadata)\r\n if (isBasicWeakness(cardMetadata)) then\r\n if (table[cardMetadata.id] == nil) then\r\n table[cardMetadata.id] = 1\r\n else\r\n table[cardMetadata.id] = table[cardMetadata.id] + 1\r\n end\r\n end\r\nend\r\n\r\nfunction isInPlayArea(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 < WEAKNESS_CHECK_X\r\n and position.z < WEAKNESS_CHECK_Z\r\nend\r\nfunction isBasicWeakness(cardMetadata)\r\n return cardMetadata ~= nil\r\n and cardMetadata.weakness\r\n and cardMetadata.basicWeaknessCount ~= nil\r\n and cardMetadata.basicWeaknessCount > 0\r\nend",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "4deeff",
"Name": "Card",
"Transform": {
"posX": 14.4992533,
"posY": 2.20887542,
"posZ": 57.17955,
"rotX": 0.0208083,
"rotY": 270.000366,
"rotZ": 0.01677121,
"scaleX": 0.6,
"scaleY": 1.0,
"scaleZ": 0.6
},
"Nickname": "Charlie Kane",
"Description": "",
"GMNotes": "{\n \"id\": \"09018-m\",\n \"type\": \"Treachery\",\n \"traits\": \"\",\n \"permanent\": false,\n \"weakness\": false\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 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": 846105,
"SidewaysCard": false,
"CustomDeck": {
"8461": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1814412497119653462/E5CB5A50E22021314BB8963E47516DBE8092D8EF/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1814412497119653683/60799F36ADCEBB9027393DBB518B4025D1953FA0/",
"NumWidth": 4,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "dd40c0",
"Name": "Card",
"Transform": {
"posX": 50.4194679,
"posY": 2.49492455,
"posZ": 23.8193741,
"rotX": 1.81400931,
"rotY": 179.9915,
"rotZ": -0.0002584993,
"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 \"willpowerIcons\": 1,\n \"intellectIcons\": 4,\n \"combatIcons\": 3,\n \"agilityIcons\": 4,\n \"cycle\": \"The Forgotten Age\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 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": "46b145",
"Name": "Card",
"Transform": {
"posX": 53.27427,
"posY": 3.1367805,
"posZ": 22.0807228,
"rotX": 0.01686617,
"rotY": 180.003479,
"rotZ": 0.07987825,
"scaleX": 1.1,
"scaleY": 1.0,
"scaleZ": 1.1
},
"Nickname": "Monterey Jack",
"Description": "The Archeologist",
"GMNotes": "{\n \"id\": \"08007\",\n \"type\": \"Investigator\",\n \"class\": \"Rogue\",\n \"traits\": \"Wayfarer.\",\n \"willpowerIcons\": 1,\n \"intellectIcons\": 4,\n \"combatIcons\": 2,\n \"agilityIcons\": 5,\n \"cycle\": \"Edge of the Earth\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 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": "acf2b0",
"Name": "Card",
"Transform": {
"posX": 96.32317,
"posY": 1.98530221,
"posZ": 18.1813488,
"rotX": 359.99,
"rotY": 270.0187,
"rotZ": 359.984558,
"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 \"cost\": 1,\n \"level\": 0,\n \"traits\": \"\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"combatIcons\": 1,\n \"cycle\": \"The Dunwich Legacy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "7001be",
"Name": "Card",
"Transform": {
"posX": 81.46393,
"posY": 2.31949186,
"posZ": 6.07354736,
"rotX": -0.002291315,
"rotY": 270.009155,
"rotZ": 3.20335817,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Beat Cop (2)",
"Description": "",
"GMNotes": "{\n \"id\": \"01028\",\n \"alternate_ids\": [\n \"01528\"\n ],\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"cost\": 4,\n \"level\": 2,\n \"traits\": \"Ally. Police.\",\n \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"agilityIcons\": 1,\n \"cycle\": \"Core\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "5b2e10",
"Name": "CardCustom",
"Transform": {
"posX": 30.1216755,
"posY": 2.30485535,
"posZ": -68.59466,
"rotX": 0.02086813,
"rotY": 269.9871,
"rotZ": 0.0166969374,
"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 \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "4edb91",
"Name": "Card",
"Transform": {
"posX": 28.4949551,
"posY": 2.303895,
"posZ": -68.82478,
"rotX": 0.0208679587,
"rotY": 269.982727,
"rotZ": 0.01669655,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Roland's .38 Special",
"Description": "",
"GMNotes": "{\n \"id\": \"01006\",\n \"alternate_ids\": [\n \"01506\"\n ],\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"cost\": 3,\n \"traits\": \"Item. Weapon. Firearm.\",\n \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"agilityIcons\": 1,\n \"wildIcons\": 1,\n \"uses\": [\n {\n \"count\": 4,\n \"type\": \"Ammo\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"Core\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "4ea68b",
"Name": "Card",
"Transform": {
"posX": 32.1883621,
"posY": 2.302962,
"posZ": -77.71751,
"rotX": 0.0208682213,
"rotY": 269.9871,
"rotZ": 0.0166968647,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Stubborn Detective",
"Description": "Enemy",
"GMNotes": "{\n \"id\": \"01103\",\n \"alternate_ids\": [\n \"01603\"\n ],\n \"type\": \"Enemy\",\n \"class\": \"Neutral\",\n \"traits\": \"Humanoid. Detective.\",\n \"permanent\": false,\n \"weakness\": true,\n \"basicWeaknessCount\": 1,\n \"cycle\": \"Core\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "8948c4",
"Name": "Card",
"Transform": {
"posX": 33.2783852,
"posY": 2.30260468,
"posZ": -79.21553,
"rotX": 0.02081566,
"rotY": 269.976044,
"rotZ": 0.0167625174,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Emergency Cache (2)",
"Description": "",
"GMNotes": "{\n \"id\": \"02194\",\n \"alternate_ids\": [\n \"01693\"\n ],\n \"type\": \"Event\",\n \"class\": \"Neutral\",\n \"cost\": 0,\n \"level\": 2,\n \"traits\": \"Supply.\",\n \"permanent\": false,\n \"weakness\": false,\n \"cycle\": \"The Dunwich Legacy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "9e6c55",
"Name": "Card",
"Transform": {
"posX": 32.8935242,
"posY": 2.30259562,
"posZ": -77.65012,
"rotX": 0.0208113343,
"rotY": 269.990662,
"rotZ": 0.0167677365,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Charisma (3)",
"Description": "",
"GMNotes": "{\n \"id\": \"02158\",\n \"alternate_ids\": [\n \"01694\"\n ],\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"level\": 3,\n \"traits\": \"Talent.\",\n \"permanent\": true,\n \"weakness\": false,\n \"cycle\": \"The Dunwich Legacy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "3c959c",
"Name": "Card",
"Transform": {
"posX": 30.4962387,
"posY": 2.30081987,
"posZ": -81.42783,
"rotX": 0.0208679084,
"rotY": 269.982666,
"rotZ": 0.0166956466,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Relic Hunter (3)",
"Description": "",
"GMNotes": "{\n \"id\": \"02157\",\n \"alternate_ids\": [\n \"01695\"\n ],\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"level\": 3,\n \"traits\": \"Talent.\",\n \"permanent\": true,\n \"weakness\": false,\n \"cycle\": \"The Dunwich Legacy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "b265c4",
"Name": "Card",
"Transform": {
"posX": 20.513937,
"posY": 1.98507226,
"posZ": -102.604019,
"rotX": 0.02080447,
"rotY": 270.013245,
"rotZ": 0.0167750977,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Deduction",
"Description": "",
"GMNotes": "{\n \"id\": \"01039\",\n \"alternate_ids\": [\n \"60219\"\n ],\n \"type\": \"Skill\",\n \"class\": \"Seeker\",\n \"level\": 0,\n \"traits\": \"Practiced.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"cycle\": \"Core\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "08bdf1",
"Name": "Card",
"Transform": {
"posX": 83.38367,
"posY": 1.98530233,
"posZ": -10.3935976,
"rotX": 359.99,
"rotY": 270.012543,
"rotZ": 359.984558,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Guard Dog",
"Description": "",
"GMNotes": "{\n \"id\": \"01021\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"cost\": 3,\n \"level\": 0,\n \"traits\": \"Ally. Creature.\",\n \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"cycle\": \"Core\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "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 \"cycle\": \"Return to The Dunwich Legacy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 1,\n \"level\": 3,\n \"traits\": \"Spirit. Blessed.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 2,\n \"cycle\": \"The Innsmouth Conspiracy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Insight.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 2,\n \"cycle\": \"The Forgotten Age\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Item. Relic. Weapon. Melee.\",\n \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"cycle\": \"The Innsmouth Conspiracy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Item. Tome.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"uses\": [\n {\n \"count\": 3,\n \"type\": \"Secret\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Circle Undone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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-t\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"cost\": 4,\n \"level\": 5,\n \"traits\": \"Item. Weapon. Firearm.\",\n \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 2,\n \"wildIcons\": 1,\n \"uses\": [\n {\n \"count\": 4,\n \"type\": \"Ammo\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Forgotten Age\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "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 \"cost\": 3,\n \"traits\": \"Ally. Dunwich.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"wildIcons\": 1,\n \"cycle\": \"The Dunwich Legacy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 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 \"cost\": 1,\n \"level\": 2,\n \"traits\": \"Item. Weapon. Melee. Illicit.\",\n \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"agilityIcons\": 1,\n \"cycle\": \"The Dunwich Legacy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"level\": 4,\n \"traits\": \"Item. Instrument. Relic. Cursed.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"combatIcons\": 1,\n \"agilityIcons\": 1,\n \"cycle\": \"The Innsmouth Conspiracy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Insight. Spirit.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"intellectIcons\": 1,\n \"cycle\": \"Edge of the Earth\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 2,\n \"traits\": \"Item. Relic.\",\n \"permanent\": false,\n \"weakness\": false,\n \"wildIcons\": 3,\n \"cycle\": \"The Forgotten Age\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 2,\n \"traits\": \"Item. Relic.\",\n \"permanent\": false,\n \"weakness\": false,\n \"wildIcons\": 3,\n \"cycle\": \"The Forgotten Age\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 1,\n \"level\": 2,\n \"traits\": \"Favor. Synergy.\",\n \"permanent\": false,\n \"weakness\": false,\n \"wildIcons\": 1,\n \"cycle\": \"Edge of the Earth\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 2,\n \"level\": 4,\n \"traits\": \"Spell.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"agilityIcons\": 1,\n \"uses\": [\n {\n \"count\": 4,\n \"type\": \"Charge\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"Edge of the Earth\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 3,\n \"level\": 3,\n \"traits\": \"Spell.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"combatIcons\": 1,\n \"uses\": [\n {\n \"count\": 3,\n \"type\": \"Charge\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Forgotten Age\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 2,\n \"level\": 2,\n \"traits\": \"Item. Weapon. Firearm. Illicit.\",\n \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"agilityIcons\": 1,\n \"uses\": [\n {\n \"count\": 5,\n \"type\": \"Ammo\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"Return to the Forgotten Age\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 1,\n \"level\": 2,\n \"traits\": \"Spirit.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"combatIcons\": 1,\n \"agilityIcons\": 1,\n \"cycle\": \"The Innsmouth Conspiracy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Spell.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"combatIcons\": 1,\n \"cycle\": \"The Dream-Eaters\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 3,\n \"traits\": \"Talent.\",\n \"permanent\": false,\n \"weakness\": false,\n \"wildIcons\": 2,\n \"cycle\": \"The Path to Carcosa\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 1,\n \"level\": 3,\n \"traits\": \"Item. Tome.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"intellectIcons\": 1,\n \"uses\": [\n {\n \"count\": 4,\n \"type\": \"Secret\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Circle Undone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 4,\n \"level\": 3,\n \"traits\": \"Item. Relic. Weapon. Ranged.\",\n \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"agilityIcons\": 1,\n \"uses\": [\n {\n \"count\": 1,\n \"type\": \"Ammo\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Forgotten Age\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cycle\": \"The Dream-Eaters\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 4,\n \"level\": 2,\n \"traits\": \"Item. Armor.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"agilityIcons\": 1,\n \"cycle\": \"Edge of the Earth\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 3,\n \"level\": 0,\n \"traits\": \"Item. Clothing.\",\n \"permanent\": false,\n \"weakness\": false,\n \"agilityIcons\": 1,\n \"cycle\": \"The Forgotten Age\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 2,\n \"traits\": \"Item. Relic.\",\n \"permanent\": false,\n \"weakness\": false,\n \"wildIcons\": 2,\n \"cycle\": \"Core\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 0,\n \"level\": 2,\n \"traits\": \"Talent.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 2,\n \"agilityIcons\": 2,\n \"cycle\": \"Return to the Night of the Zealot\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 3,\n \"level\": 0,\n \"traits\": \"Item. Weapon. Firearm. Illicit.\",\n \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"uses\": [\n {\n \"count\": 2,\n \"type\": \"Ammo\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"Investigator Packs\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"level\": 5,\n \"traits\": \"Spell. Expert.\",\n \"permanent\": false,\n \"weakness\": false,\n \"wildIcons\": 1,\n \"cycle\": \"The Path to Carcosa\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 2,\n \"level\": 2,\n \"traits\": \"Item. Weapon. Melee.\",\n \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 2,\n \"cycle\": \"Return to the Forgotten Age\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 2,\n \"traits\": \"Ritual. Blessed.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"combatIcons\": 1,\n \"wildIcons\": 1,\n \"cycle\": \"The Innsmouth Conspiracy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 1,\n \"level\": 5,\n \"traits\": \"Trick. Fated.\",\n \"permanent\": false,\n \"weakness\": false,\n \"wildIcons\": 1,\n \"cycle\": \"The Path to Carcosa\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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\": [\n \"60212\"\n ],\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Ally. Miskatonic. Science.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"cycle\": \"The Dunwich Legacy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"weakness\": true,\n \"wildIcons\": 2,\n \"negativeIcons\": true,\n \"cycle\": \"The Dream-Eaters\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Insight.\",\n \"permanent\": false,\n \"weakness\": false,\n \"victory\": 1,\n \"cycle\": \"The Dunwich Legacy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 2,\n \"level\": 2,\n \"traits\": \"Item. Charm. Blessed.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"agilityIcons\": 1,\n \"cycle\": \"The Innsmouth Conspiracy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "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 \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Trick.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"agilityIcons\": 1,\n \"cycle\": \"The Dunwich Legacy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "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 \"level\": 0,\n \"traits\": \"Practiced. Augury.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"cycle\": \"Investigator Packs\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Item. Clothing.\",\n \"permanent\": false,\n \"weakness\": false,\n \"agilityIcons\": 1,\n \"cycle\": \"The Dunwich Legacy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 0,\n \"level\": 2,\n \"traits\": \"Spirit. Bold.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"combatIcons\": 1,\n \"cycle\": \"Investigator Packs\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"level\": 3,\n \"traits\": \"Talent.\",\n \"permanent\": true,\n \"weakness\": false,\n \"cycle\": \"The Circle Undone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"level\": 0,\n \"traits\": \"Innate.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"intellectIcons\": 1,\n \"combatIcons\": 1,\n \"cycle\": \"The Path to Carcosa\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "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 \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Item. Tome.\",\n \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"cycle\": \"Core\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 2,\n \"level\": 3,\n \"traits\": \"Ritual. Blessed.\",\n \"permanent\": false,\n \"weakness\": false,\n \"wildIcons\": 1,\n \"cycle\": \"The Innsmouth Conspiracy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 3,\n \"level\": 0,\n \"traits\": \"Insight. Tactic.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"combatIcons\": 1,\n \"cycle\": \"The Dunwich Legacy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 3,\n \"level\": 1,\n \"traits\": \"Tarot.\",\n \"permanent\": false,\n \"weakness\": false,\n \"cycle\": \"The Circle Undone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 3,\n \"level\": 3,\n \"traits\": \"Upgrade. Supply. Blessed.\",\n \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"agilityIcons\": 1,\n \"cycle\": \"The Forgotten Age\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"level\": 0,\n \"traits\": \"Desperate.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 4,\n \"cycle\": \"The Path to Carcosa\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 5,\n \"level\": 4,\n \"traits\": \"Spell. Cursed.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"intellectIcons\": 1,\n \"uses\": [\n {\n \"count\": 3,\n \"type\": \"Charge\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Innsmouth Conspiracy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 0,\n \"level\": 0,\n \"traits\": \"Fortune. Blessed. Cursed.\",\n \"permanent\": false,\n \"weakness\": false,\n \"wildIcons\": 1,\n \"cycle\": \"The Innsmouth Conspiracy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Spirit.\",\n \"permanent\": false,\n \"weakness\": false,\n \"wildIcons\": 1,\n \"cycle\": \"Investigator Packs\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"level\": 0,\n \"traits\": \"Gambit.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"combatIcons\": 1,\n \"agilityIcons\": 1,\n \"cycle\": \"The Path to Carcosa\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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\": [\n \"60308\"\n ],\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Item. Charm.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"cycle\": \"The Forgotten Age\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 6,\n \"level\": 0,\n \"traits\": \"Item. Weapon. Firearm. Illicit.\",\n \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"uses\": [\n {\n \"count\": 5,\n \"type\": \"Ammo\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Circle Undone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 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 \"cost\": 4,\n \"level\": 0,\n \"traits\": \"Trick.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"agilityIcons\": 1,\n \"cycle\": \"Investigator Packs\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 4,\n \"traits\": \"Ally. Believer.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"intellectIcons\": 1,\n \"wildIcons\": 1,\n \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 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 \"cost\": 3,\n \"level\": 2,\n \"traits\": \"Ritual.\",\n \"permanent\": false,\n \"weakness\": false,\n \"agilityIcons\": 1,\n \"cycle\": \"The Dream-Eaters\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "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 \"cost\": 2,\n \"traits\": \"Ally. Socialite.\",\n \"permanent\": false,\n \"weakness\": false,\n \"agilityIcons\": 1,\n \"wildIcons\": 1,\n \"cycle\": \"The Circle Undone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 3,\n \"level\": 2,\n \"traits\": \"Ritual.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 2,\n \"cycle\": \"The Dream-Eaters\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"level\": 0,\n \"traits\": \"Talent.\",\n \"permanent\": true,\n \"weakness\": false,\n \"cycle\": \"The Forgotten Age\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 2,\n \"level\": 2,\n \"traits\": \"Item. Tome.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"cycle\": \"The Circle Undone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 0,\n \"level\": 0,\n \"traits\": \"Trick. Spirit.\",\n \"permanent\": false,\n \"weakness\": false,\n \"agilityIcons\": 2,\n \"cycle\": \"The Dunwich Legacy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cycle\": \"The Forgotten Age\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 2,\n \"level\": 2,\n \"traits\": \"Item. Clothing.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"agilityIcons\": 1,\n \"cycle\": \"Investigator Packs\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 1,\n \"traits\": \"Ally. Creature. Dreamlands.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"combatIcons\": 1,\n \"cycle\": \"The Dream-Eaters\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 1,\n \"traits\": \"Item. Weapon. Melee. Cursed.\",\n \"permanent\": false,\n \"weakness\": false,\n \"wildIcons\": 1,\n \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Talent.\",\n \"permanent\": false,\n \"weakness\": false,\n \"agilityIcons\": 1,\n \"cycle\": \"The Path to Carcosa\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 3,\n \"traits\": \"Item. Weapon. Melee.\",\n \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"wildIcons\": 1,\n \"cycle\": \"The Innsmouth Conspiracy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "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 \"level\": 1,\n \"traits\": \"Item. Relic.\",\n \"permanent\": true,\n \"weakness\": false,\n \"cycle\": \"The Path to Carcosa\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 3,\n \"level\": 0,\n \"traits\": \"Spell. Cursed.\",\n \"permanent\": false,\n \"weakness\": false,\n \"agilityIcons\": 1,\n \"uses\": [\n {\n \"count\": 3,\n \"type\": \"Charge\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Innsmouth Conspiracy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 5,\n \"level\": 4,\n \"traits\": \"Item. Weapon. Firearm.\",\n \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 2,\n \"uses\": [\n {\n \"count\": 8,\n \"type\": \"Ammo\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Forgotten Age\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 3,\n \"level\": 0,\n \"traits\": \"Spirit.\",\n \"permanent\": false,\n \"weakness\": false,\n \"wildIcons\": 1,\n \"cycle\": \"The Circle Undone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"level\": 2,\n \"traits\": \"Talent.\",\n \"permanent\": true,\n \"weakness\": false,\n \"cycle\": \"The Dream-Eaters\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 0,\n \"traits\": \"Supply. Illicit.\",\n \"permanent\": false,\n \"weakness\": false,\n \"wildIcons\": 1,\n \"cycle\": \"The Forgotten Age\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"level\": 5,\n \"traits\": \"Fortune.\",\n \"permanent\": false,\n \"weakness\": false,\n \"wildIcons\": 2,\n \"cycle\": \"The Forgotten Age\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"level\": 3,\n \"traits\": \"Innate.\",\n \"permanent\": false,\n \"weakness\": false,\n \"wildIcons\": 2,\n \"cycle\": \"Return to The Dunwich Legacy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "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 \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Item. Relic. Occult. Blessed.\",\n \"permanent\": false,\n \"weakness\": false,\n \"bonded\": [\n {\n \"count\": 3,\n \"id\": \"05314\"\n }\n ],\n \"willpowerIcons\": 1,\n \"cycle\": \"The Circle Undone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 3,\n \"level\": 1,\n \"traits\": \"Ally. Creature. Dreamlands.\",\n \"permanent\": false,\n \"weakness\": false,\n \"bonded\": [\n {\n \"count\": 1,\n \"id\": \"06031\"\n },\n {\n \"count\": 1,\n \"id\": \"06032\"\n },\n {\n \"count\": 1,\n \"id\": \"06033\"\n }\n ],\n \"wildIcons\": 1,\n \"cycle\": \"The Dream-Eaters\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 4,\n \"level\": 3,\n \"traits\": \"Spirit.\",\n \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"wildIcons\": 1,\n \"cycle\": \"Core\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"level\": 3,\n \"traits\": \"Talent.\",\n \"permanent\": true,\n \"weakness\": false,\n \"cycle\": \"The Dunwich Legacy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "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 \"cycle\": \"Promo\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 0,\n \"level\": 0,\n \"traits\": \"Spirit.\",\n \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 2,\n \"cycle\": \"The Path to Carcosa\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "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 \"cost\": 2,\n \"level\": 3,\n \"traits\": \"Item. Tome. Occult.\",\n \"permanent\": false,\n \"weakness\": false,\n \"bonded\": [\n {\n \"count\": 3,\n \"id\": \"05317\"\n }\n ],\n \"intellectIcons\": 2,\n \"cycle\": \"Return to the Circle Undone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "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 \"cost\": 3,\n \"level\": 0,\n \"traits\": \"Item. Weapon. Firearm.\",\n \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"uses\": [\n {\n \"count\": 6,\n \"type\": \"Ammo\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Path to Carcosa\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 3,\n \"level\": 1,\n \"traits\": \"Item.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"uses\": [\n {\n \"count\": 3,\n \"type\": \"Supply\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Forgotten Age\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"weakness\": true,\n \"cycle\": \"The Dream-Eaters\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Talent. Science.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"uses\": [\n {\n \"count\": 3,\n \"type\": \"Supply\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"Core\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 4,\n \"level\": 0,\n \"traits\": \"Ally. Criminal.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"agilityIcons\": 1,\n \"cycle\": \"The Dunwich Legacy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Tactic.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"combatIcons\": 1,\n \"cycle\": \"The Dunwich Legacy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 3,\n \"level\": 4,\n \"traits\": \"Item. Weapon. Ranged.\",\n \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"uses\": [\n {\n \"count\": 3,\n \"type\": \"Supply\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Circle Undone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "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 \"cost\": 3,\n \"traits\": \"Talent.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"agilityIcons\": 1,\n \"wildIcons\": 1,\n \"cycle\": \"Investigator Packs\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 4,\n \"level\": 0,\n \"traits\": \"Insight.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 2,\n \"cycle\": \"The Circle Undone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Insight.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 2,\n \"cycle\": \"Core\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 5,\n \"level\": 0,\n \"traits\": \"Ally. Hunter.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"combatIcons\": 1,\n \"cycle\": \"Investigator Packs\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 2,\n \"level\": 4,\n \"traits\": \"Item. Relic.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 2,\n \"cycle\": \"The Forgotten Age\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 0,\n \"level\": 1,\n \"traits\": \"Spell. Spirit.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"intellectIcons\": 2,\n \"cycle\": \"Investigator Packs\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 1,\n \"level\": 1,\n \"traits\": \"Item. Relic.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"cycle\": \"The Forgotten Age\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cycle\": \"Return to the Forgotten Age\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 2,\n \"level\": 2,\n \"traits\": \"Spell. Cursed.\",\n \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"agilityIcons\": 1,\n \"cycle\": \"The Innsmouth Conspiracy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Insight.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 2,\n \"uses\": [\n {\n \"count\": 2,\n \"type\": \"Secret\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Forgotten Age\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Item. Police.\",\n \"permanent\": false,\n \"weakness\": false,\n \"agilityIcons\": 1,\n \"cycle\": \"The Forgotten Age\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 7,\n \"level\": 5,\n \"traits\": \"Ally. Agency.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"intellectIcons\": 1,\n \"combatIcons\": 1,\n \"cycle\": \"The Circle Undone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 1,\n \"traits\": \"Ally. Creature. Dreamlands.\",\n \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"agilityIcons\": 1,\n \"cycle\": \"The Dream-Eaters\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 2,\n \"level\": 4,\n \"traits\": \"Spell.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"agilityIcons\": 1,\n \"uses\": [\n {\n \"count\": 5,\n \"type\": \"Charge\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Forgotten Age\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Insight.\",\n \"permanent\": false,\n \"weakness\": false,\n \"victory\": 1,\n \"cycle\": \"The Dunwich Legacy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cycle\": \"The Forgotten Age\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"level\": 3,\n \"traits\": \"Talent.\",\n \"permanent\": true,\n \"weakness\": false,\n \"cycle\": \"Return to the Forgotten Age\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "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 \"cost\": 1,\n \"traits\": \"Item. Charm.\",\n \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 2,\n \"wildIcons\": 1,\n \"cycle\": \"The Dunwich Legacy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"weakness\": false,\n \"uses\": [\n {\n \"count\": 3,\n \"type\": \"Charge\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Dream-Eaters\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 2,\n \"level\": 4,\n \"traits\": \"Talent.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 2,\n \"agilityIcons\": 2,\n \"uses\": [\n {\n \"count\": 2,\n \"type\": \"Resource\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Innsmouth Conspiracy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 3,\n \"level\": 0,\n \"traits\": \"Item. Science.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"cycle\": \"The Dream-Eaters\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 2,\n \"level\": 4,\n \"traits\": \"Item. Relic.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"wildIcons\": 1,\n \"cycle\": \"The Dunwich Legacy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 0,\n \"traits\": \"Insight.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"combatIcons\": 1,\n \"wildIcons\": 1,\n \"cycle\": \"Promo\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "25e2db",
"Name": "Card",
"Transform": {
"posX": 77.89703,
"posY": 2.273461,
"posZ": -53.077076,
"rotX": -6.16870238E-05,
"rotY": 179.999939,
"rotZ": 4.003964E-05,
"scaleX": 1.1,
"scaleY": 1.0,
"scaleZ": 1.1
},
"Nickname": "Agnes Baker",
"Description": "The Waitress",
"GMNotes": "{\n \"id\": \"01004\",\n \"alternate_ids\": [\n \"01504\"\n ],\n \"type\": \"Investigator\",\n \"class\": \"Mystic\",\n \"traits\": \"Sorcerer.\",\n \"willpowerIcons\": 5,\n \"intellectIcons\": 2,\n \"combatIcons\": 2,\n \"agilityIcons\": 3,\n \"cycle\": \"Core\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 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": "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 \"level\": 2,\n \"traits\": \"Practiced. Expert.\",\n \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 3,\n \"cycle\": \"Investigator Packs\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 5,\n \"level\": 3,\n \"traits\": \"Ally. Hunter.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"combatIcons\": 1,\n \"wildIcons\": 1,\n \"cycle\": \"Investigator Packs\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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\": [\n \"60414\"\n ],\n \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"cost\": 3,\n \"level\": 0,\n \"traits\": \"Spell.\",\n \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"agilityIcons\": 1,\n \"cycle\": \"The Dunwich Legacy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"alternate_ids\": [\n \"01533-t\"\n ],\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"cost\": 4,\n \"level\": 0,\n \"traits\": \"Ally. Miskatonic.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"cycle\": \"Core\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 3,\n \"level\": 3,\n \"traits\": \"Item. Relic. Blessed.\",\n \"permanent\": false,\n \"weakness\": false,\n \"wildIcons\": 1,\n \"cycle\": \"The Forgotten Age\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"level\": 0,\n \"traits\": \"Innate.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"agilityIcons\": 1,\n \"cycle\": \"The Circle Undone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 3,\n \"level\": 1,\n \"traits\": \"Talent.\",\n \"permanent\": false,\n \"weakness\": false,\n \"agilityIcons\": 1,\n \"cycle\": \"The Dunwich Legacy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 4,\n \"level\": 0,\n \"traits\": \"Spell.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"uses\": [\n {\n \"count\": 3,\n \"type\": \"Charge\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"Investigator Packs\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 2,\n \"level\": 2,\n \"traits\": \"Fortune.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"agilityIcons\": 2,\n \"cycle\": \"Investigator Packs\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 0,\n \"level\": 0,\n \"traits\": \"Spirit.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 2,\n \"cycle\": \"The Circle Undone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "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 \"cost\": 3,\n \"level\": 1,\n \"traits\": \"Tarot.\",\n \"permanent\": false,\n \"weakness\": false,\n \"cycle\": \"The Circle Undone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"level\": 3,\n \"traits\": \"Talent.\",\n \"permanent\": true,\n \"weakness\": false,\n \"cycle\": \"The Dunwich Legacy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"traits\": \"\",\n \"permanent\": true,\n \"weakness\": false,\n \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Condition.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"cycle\": \"The Circle Undone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 0,\n \"level\": 5,\n \"traits\": \"Spell. Paradox.\",\n \"permanent\": false,\n \"weakness\": false,\n \"wildIcons\": 1,\n \"cycle\": \"The Circle Undone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 1,\n \"level\": 1,\n \"traits\": \"Item. Illicit.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 2,\n \"uses\": [\n {\n \"count\": 4,\n \"type\": \"Supply\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"Investigator Packs\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 2,\n \"traits\": \"Spell.\",\n \"permanent\": false,\n \"weakness\": false,\n \"wildIcons\": 2,\n \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"weakness\": false,\n \"cycle\": \"The Dream-Eaters\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 1,\n \"traits\": \"Talent.\",\n \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"agilityIcons\": 1,\n \"wildIcons\": 1,\n \"cycle\": \"The Innsmouth Conspiracy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Ally. Creature. Summon.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"cycle\": \"Investigator Packs\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 3,\n \"level\": 1,\n \"traits\": \"Tarot.\",\n \"permanent\": false,\n \"weakness\": false,\n \"cycle\": \"The Circle Undone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 0,\n \"level\": 2,\n \"traits\": \"Insight.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"intellectIcons\": 1,\n \"cycle\": \"Return to The Dunwich Legacy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 1,\n \"traits\": \"Item. Relic.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 2,\n \"wildIcons\": 1,\n \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 2,\n \"level\": 3,\n \"traits\": \"Item. Tome. Charm.\",\n \"permanent\": false,\n \"weakness\": false,\n \"bonded\": [\n {\n \"count\": 1,\n \"id\": \"06113\"\n }\n ],\n \"willpowerIcons\": 1,\n \"intellectIcons\": 1,\n \"cycle\": \"The Dream-Eaters\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Item. Weapon. Melee.\",\n \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"cycle\": \"The Path to Carcosa\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Insight. Bold.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"combatIcons\": 1,\n \"cycle\": \"The Forgotten Age\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Item.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"cycle\": \"The Dunwich Legacy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"level\": 2,\n \"traits\": \"Covenant. Cursed.\",\n \"permanent\": true,\n \"weakness\": false,\n \"cycle\": \"The Innsmouth Conspiracy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "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 \"cost\": 1,\n \"level\": 5,\n \"traits\": \"Spell. Spirit.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"wildIcons\": 1,\n \"cycle\": \"The Dunwich Legacy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"level\": 2,\n \"traits\": \"Innate. Developed.\",\n \"permanent\": false,\n \"weakness\": false,\n \"agilityIcons\": 2,\n \"cycle\": \"The Dunwich Legacy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"level\": 1,\n \"traits\": \"Innate. Developed.\",\n \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"cycle\": \"The Dream-Eaters\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"alternate_ids\": [\n \"01550-t\"\n ],\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Tactic.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"agilityIcons\": 1,\n \"cycle\": \"Core\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 1,\n \"traits\": \"Item. Relic.\",\n \"permanent\": false,\n \"weakness\": true,\n \"cycle\": \"The Path to Carcosa\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 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 \"cost\": 4,\n \"traits\": \"Ally. Agency. Veteran.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"combatIcons\": 1,\n \"wildIcons\": 1,\n \"cycle\": \"The Innsmouth Conspiracy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"level\": 0,\n \"traits\": \"Practiced.\",\n \"permanent\": false,\n \"weakness\": false,\n \"wildIcons\": 1,\n \"cycle\": \"The Dunwich Legacy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "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\": [\n \"60218\"\n ],\n \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Insight.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"intellectIcons\": 1,\n \"cycle\": \"The Dunwich Legacy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 0,\n \"level\": 0,\n \"traits\": \"Item. Relic. Cursed.\",\n \"permanent\": false,\n \"weakness\": false,\n \"agilityIcons\": 1,\n \"uses\": [\n {\n \"count\": 0,\n \"type\": \"Charge\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Forgotten Age\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 0,\n \"level\": 0,\n \"traits\": \"Spell. Spirit.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"intellectIcons\": 1,\n \"cycle\": \"The Circle Undone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 2,\n \"traits\": \"Ally. Wayfarer.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"intellectIcons\": 1,\n \"wildIcons\": 1,\n \"cycle\": \"The Forgotten Age\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 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": "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 \"cost\": 0,\n \"level\": 5,\n \"traits\": \"Spell. Blessed. Cursed.\",\n \"permanent\": false,\n \"weakness\": false,\n \"wildIcons\": 1,\n \"cycle\": \"The Innsmouth Conspiracy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Trick.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"agilityIcons\": 1,\n \"cycle\": \"The Path to Carcosa\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 1,\n \"level\": 4,\n \"traits\": \"Item. Relic.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"intellectIcons\": 1,\n \"agilityIcons\": 1,\n \"cycle\": \"The Dream-Eaters\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 0,\n \"level\": 0,\n \"traits\": \"Spirit. Tactic.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"combatIcons\": 1,\n \"cycle\": \"Investigator Packs\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 2,\n \"level\": 3,\n \"traits\": \"Spell.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"uses\": [\n {\n \"count\": 3,\n \"type\": \"Secret\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Forgotten Age\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 0,\n \"level\": 0,\n \"traits\": \"Insight.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"intellectIcons\": 1,\n \"cycle\": \"The Circle Undone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 3,\n \"level\": 2,\n \"traits\": \"Ritual.\",\n \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 2,\n \"cycle\": \"The Dream-Eaters\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 0,\n \"level\": 3,\n \"traits\": \"Supply.\",\n \"permanent\": false,\n \"weakness\": false,\n \"cycle\": \"The Path to Carcosa\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 3,\n \"level\": 3,\n \"traits\": \"Tactic.\",\n \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"agilityIcons\": 1,\n \"cycle\": \"Investigator Packs\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 1,\n \"traits\": \"Item. Relic.\",\n \"permanent\": false,\n \"weakness\": false,\n \"wildIcons\": 2,\n \"cycle\": \"Promo\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"level\": 2,\n \"traits\": \"Fortune. Practiced.\",\n \"permanent\": false,\n \"weakness\": false,\n \"wildIcons\": 1,\n \"cycle\": \"The Dream-Eaters\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cycle\": \"Investigator Packs\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 3,\n \"level\": 0,\n \"traits\": \"Item. Tool.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"uses\": [\n {\n \"count\": 3,\n \"type\": \"Secret\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Innsmouth Conspiracy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 1,\n \"level\": 4,\n \"traits\": \"Item. Science.\",\n \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 2,\n \"uses\": [\n {\n \"count\": 3,\n \"type\": \"Supply\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Dunwich Legacy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Insight. Spirit. Tactic.\",\n \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"agilityIcons\": 1,\n \"cycle\": \"The Circle Undone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 2,\n \"level\": 2,\n \"traits\": \"Trap. Improvised.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"agilityIcons\": 1,\n \"cycle\": \"The Path to Carcosa\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 5,\n \"level\": 5,\n \"traits\": \"Item. Relic. Weapon. Melee.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"combatIcons\": 1,\n \"cycle\": \"The Forgotten Age\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Insight.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 2,\n \"cycle\": \"The Path to Carcosa\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 3,\n \"level\": 3,\n \"traits\": \"Ritual. Talent.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"intellectIcons\": 1,\n \"cycle\": \"Return to the Circle Undone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Item. Tool.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"uses\": [\n {\n \"count\": 2,\n \"type\": \"Key\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"Investigator Packs\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"level\": 0,\n \"traits\": \"Practiced.\",\n \"permanent\": false,\n \"weakness\": false,\n \"wildIcons\": 1,\n \"cycle\": \"The Path to Carcosa\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 3,\n \"level\": 0,\n \"traits\": \"Talent.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"cycle\": \"The Path to Carcosa\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 4,\n \"level\": 4,\n \"traits\": \"Ritual. Blessed. Cursed.\",\n \"permanent\": false,\n \"weakness\": false,\n \"wildIcons\": 1,\n \"cycle\": \"The Innsmouth Conspiracy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 0,\n \"level\": 0,\n \"traits\": \"Talent.\",\n \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"agilityIcons\": 1,\n \"cycle\": \"Investigator Packs\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cycle\": \"Return to the Path to Carcosa\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cycle\": \"Promo\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 4,\n \"level\": 0,\n \"traits\": \"Ally. Miskatonic.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"cycle\": \"Investigator Packs\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 3,\n \"level\": 0,\n \"traits\": \"Item. Relic. Weapon. Melee.\",\n \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"uses\": [\n {\n \"count\": 3,\n \"type\": \"Charge\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Circle Undone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"wildIcons\": 6,\n \"cycle\": \"Investigator Packs\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 3,\n \"level\": 3,\n \"traits\": \"Tarot.\",\n \"permanent\": false,\n \"weakness\": false,\n \"cycle\": \"Return to the Circle Undone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Item. Tool.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"cycle\": \"The Circle Undone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 2,\n \"level\": 2,\n \"traits\": \"Item. Relic.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 2,\n \"cycle\": \"The Forgotten Age\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Spell. Blessed.\",\n \"permanent\": false,\n \"weakness\": false,\n \"wildIcons\": 1,\n \"cycle\": \"The Innsmouth Conspiracy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cycle\": \"Promo\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 3,\n \"level\": 2,\n \"traits\": \"Ritual.\",\n \"permanent\": false,\n \"weakness\": false,\n \"agilityIcons\": 2,\n \"cycle\": \"The Dream-Eaters\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 3,\n \"level\": 0,\n \"traits\": \"Spell.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"combatIcons\": 1,\n \"cycle\": \"The Path to Carcosa\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Item. Weapon. Melee.\",\n \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"cycle\": \"The Dunwich Legacy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 0,\n \"level\": 3,\n \"traits\": \"Fortune.\",\n \"permanent\": false,\n \"weakness\": false,\n \"cycle\": \"Investigator Packs\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 3,\n \"level\": 0,\n \"traits\": \"Item. Charm.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"uses\": [\n {\n \"count\": 4,\n \"type\": \"Secret\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"Investigator Packs\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 2,\n \"level\": 2,\n \"traits\": \"Item. Relic. Blessed. Cursed.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 2,\n \"cycle\": \"The Innsmouth Conspiracy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cycle\": \"The Dream-Eaters\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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\": [\n \"60417\"\n ],\n \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Augury.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"agilityIcons\": 1,\n \"cycle\": \"The Forgotten Age\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 2,\n \"level\": 2,\n \"traits\": \"Spell. Blessed.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 2,\n \"cycle\": \"The Innsmouth Conspiracy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Favor. Service.\",\n \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 2,\n \"cycle\": \"The Circle Undone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"level\": 0,\n \"traits\": \"Innate. Blessed.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"agilityIcons\": 1,\n \"wildIcons\": 1,\n \"cycle\": \"The Innsmouth Conspiracy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 2,\n \"traits\": \"Ally. Agency. Veteran.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"wildIcons\": 1,\n \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cycle\": \"Investigator Packs\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cycle\": \"The Path to Carcosa\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 0,\n \"level\": 2,\n \"traits\": \"Trick.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"agilityIcons\": 2,\n \"cycle\": \"Return to The Dunwich Legacy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Favor. Service.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 2,\n \"cycle\": \"The Circle Undone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Spirit. Tactic.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"combatIcons\": 1,\n \"cycle\": \"The Path to Carcosa\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "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 \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Ally. Patron.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"cycle\": \"The Path to Carcosa\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"level\": 0,\n \"traits\": \"Practiced. Bold.\",\n \"permanent\": false,\n \"weakness\": false,\n \"wildIcons\": 3,\n \"cycle\": \"The Forgotten Age\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Upgrade.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"cycle\": \"The Forgotten Age\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cycle\": \"Investigator Packs\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"uses\": [\n {\n \"count\": 4,\n \"type\": \"Clue\",\n \"token\": \"clue\"\n }\n ],\n \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 2,\n \"level\": 2,\n \"traits\": \"Tactic.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"combatIcons\": 2,\n \"cycle\": \"The Path to Carcosa\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "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 \"level\": 0,\n \"traits\": \"Practiced.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"cycle\": \"The Forgotten Age\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"traits\": \"\",\n \"permanent\": true,\n \"weakness\": false,\n \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Tactic.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"combatIcons\": 1,\n \"cycle\": \"The Dunwich Legacy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Insight.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"agilityIcons\": 1,\n \"cycle\": \"The Innsmouth Conspiracy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 0,\n \"level\": 0,\n \"traits\": \"Insight.\",\n \"permanent\": false,\n \"weakness\": false,\n \"wildIcons\": 1,\n \"cycle\": \"The Path to Carcosa\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cycle\": \"The Dream-Eaters\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"level\": 0,\n \"traits\": \"Practiced. Cursed.\",\n \"permanent\": false,\n \"weakness\": false,\n \"wildIcons\": 4,\n \"cycle\": \"The Innsmouth Conspiracy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 2,\n \"traits\": \"Item. Tool.\",\n \"permanent\": false,\n \"weakness\": false,\n \"agilityIcons\": 1,\n \"wildIcons\": 1,\n \"cycle\": \"The Innsmouth Conspiracy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Tactic. Improvised.\",\n \"permanent\": false,\n \"weakness\": false,\n \"cycle\": \"The Forgotten Age\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 4,\n \"level\": 4,\n \"traits\": \"Item. Weapon. Firearm. Illicit.\",\n \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 2,\n \"agilityIcons\": 1,\n \"uses\": [\n {\n \"count\": 4,\n \"type\": \"Ammo\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"Investigator Packs\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 0,\n \"level\": 3,\n \"traits\": \"Spirit.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 2,\n \"cycle\": \"The Dunwich Legacy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Ally. Patron.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"cycle\": \"The Path to Carcosa\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 3,\n \"level\": 0,\n \"traits\": \"Item. Clothing.\",\n \"permanent\": false,\n \"weakness\": false,\n \"agilityIcons\": 1,\n \"cycle\": \"Investigator Packs\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 4,\n \"level\": 4,\n \"traits\": \"Spell. Cursed.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"combatIcons\": 1,\n \"uses\": [\n {\n \"count\": 3,\n \"type\": \"Charge\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Innsmouth Conspiracy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 4,\n \"level\": 0,\n \"traits\": \"Item. Tool.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"uses\": [\n {\n \"count\": 3,\n \"type\": \"Supply\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Circle Undone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 4,\n \"traits\": \"Spell.\",\n \"permanent\": false,\n \"weakness\": true,\n \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"level\": 0,\n \"traits\": \"Practiced.\",\n \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 2,\n \"cycle\": \"Core\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 1,\n \"level\": 2,\n \"traits\": \"Trick.\",\n \"permanent\": false,\n \"weakness\": false,\n \"agilityIcons\": 2,\n \"cycle\": \"The Circle Undone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 0,\n \"level\": 2,\n \"traits\": \"Spirit. Tactic.\",\n \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 2,\n \"agilityIcons\": 1,\n \"cycle\": \"Investigator Packs\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 1,\n \"level\": 2,\n \"traits\": \"Talent. Illicit.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 2,\n \"cycle\": \"The Dream-Eaters\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Spirit. Tactic.\",\n \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"cycle\": \"Investigator Packs\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"wildIcons\": 1,\n \"negativeIcons\": true,\n \"cycle\": \"Investigator Packs\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 2,\n \"level\": 2,\n \"traits\": \"Spell. Blessed.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"intellectIcons\": 1,\n \"cycle\": \"The Forgotten Age\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 3,\n \"level\": 4,\n \"traits\": \"Ally. Clairvoyant.\",\n \"permanent\": false,\n \"weakness\": false,\n \"wildIcons\": 1,\n \"cycle\": \"The Circle Undone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 1,\n \"level\": 3,\n \"traits\": \"Item. Tome.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 2,\n \"uses\": [\n {\n \"count\": 3,\n \"type\": \"Secret\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Circle Undone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "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 \"cost\": 4,\n \"level\": 3,\n \"traits\": \"Trick.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"agilityIcons\": 1,\n \"cycle\": \"Investigator Packs\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 0,\n \"level\": 0,\n \"traits\": \"Insight. Cursed.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"intellectIcons\": 1,\n \"cycle\": \"The Innsmouth Conspiracy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 2,\n \"level\": 2,\n \"traits\": \"Ritual. Blessed. Cursed.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"cycle\": \"The Innsmouth Conspiracy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 1,\n \"level\": 1,\n \"traits\": \"Talent. Composure.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"agilityIcons\": 1,\n \"cycle\": \"The Path to Carcosa\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cycle\": \"The Path to Carcosa\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "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 \"cost\": 0,\n \"level\": 0,\n \"traits\": \"Tactic. Fated.\",\n \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"cycle\": \"The Dream-Eaters\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "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 \"cost\": 3,\n \"traits\": \"Item. Weapon. Firearm.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"combatIcons\": 1,\n \"wildIcons\": 1,\n \"uses\": [\n {\n \"count\": 3,\n \"type\": \"Ammo\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Dream-Eaters\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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\": [\n \"60405\"\n ],\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Item.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"cycle\": \"The Dunwich Legacy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 2,\n \"level\": 1,\n \"traits\": \"Tactic.\",\n \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"agilityIcons\": 1,\n \"cycle\": \"The Forgotten Age\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 0,\n \"level\": 0,\n \"traits\": \"Fortune.\",\n \"permanent\": false,\n \"weakness\": false,\n \"cycle\": \"The Dream-Eaters\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 3,\n \"level\": 3,\n \"traits\": \"Item. Relic.\",\n \"permanent\": false,\n \"weakness\": false,\n \"wildIcons\": 1,\n \"cycle\": \"The Dunwich Legacy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 3,\n \"level\": 1,\n \"traits\": \"Ally. Summon.\",\n \"permanent\": false,\n \"weakness\": false,\n \"bonded\": [\n {\n \"count\": 1,\n \"id\": \"06283\"\n }\n ],\n \"intellectIcons\": 1,\n \"combatIcons\": 1,\n \"cycle\": \"The Dream-Eaters\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 3,\n \"level\": 3,\n \"traits\": \"Item. Upgrade.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"combatIcons\": 1,\n \"agilityIcons\": 1,\n \"cycle\": \"The Circle Undone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 2,\n \"level\": 2,\n \"traits\": \"Spell.\",\n \"permanent\": false,\n \"weakness\": false,\n \"agilityIcons\": 1,\n \"uses\": [\n {\n \"count\": 5,\n \"type\": \"Charge\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"Return to the Forgotten Age\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Favor. Service.\",\n \"permanent\": false,\n \"weakness\": false,\n \"agilityIcons\": 2,\n \"cycle\": \"The Circle Undone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Trick.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"agilityIcons\": 1,\n \"cycle\": \"The Dunwich Legacy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Insight. Science.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"agilityIcons\": 1,\n \"cycle\": \"The Dunwich Legacy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Talent.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"cycle\": \"Investigator Packs\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 2,\n \"level\": 3,\n \"traits\": \"Talent.\",\n \"permanent\": false,\n \"weakness\": false,\n \"agilityIcons\": 2,\n \"cycle\": \"Return to the Path to Carcosa\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cycle\": \"Investigator Packs\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"level\": 2,\n \"traits\": \"Covenant. Cursed.\",\n \"permanent\": true,\n \"weakness\": false,\n \"cycle\": \"The Innsmouth Conspiracy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 2,\n \"level\": 2,\n \"traits\": \"Item. Weapon. Melee.\",\n \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"agilityIcons\": 1,\n \"cycle\": \"Return to The Dunwich Legacy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 2,\n \"level\": 2,\n \"traits\": \"Item. Weapon.\",\n \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"cycle\": \"The Dream-Eaters\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "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 \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Spell.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"agilityIcons\": 1,\n \"cycle\": \"The Dream-Eaters\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 3,\n \"level\": 4,\n \"traits\": \"Spell. Cursed.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"agilityIcons\": 1,\n \"uses\": [\n {\n \"count\": 3,\n \"type\": \"Charge\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Innsmouth Conspiracy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 0,\n \"level\": 3,\n \"traits\": \"Ally. Sorcerer.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"combatIcons\": 1,\n \"uses\": [\n {\n \"count\": 1,\n \"type\": \"Doom\",\n \"token\": \"doom\"\n },\n {\n \"count\": 2,\n \"type\": \"Horror\",\n \"token\": \"horror\"\n }\n ],\n \"cycle\": \"The Path to Carcosa\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 3,\n \"level\": 3,\n \"traits\": \"Spirit.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 2,\n \"cycle\": \"The Dunwich Legacy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Ally. Creature.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"cycle\": \"Investigator Packs\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"level\": 2,\n \"traits\": \"Practiced.\",\n \"permanent\": false,\n \"weakness\": false,\n \"wildIcons\": 1,\n \"cycle\": \"The Dream-Eaters\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 1,\n \"traits\": \"Item. Mask.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"wildIcons\": 1,\n \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Item.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"uses\": [\n {\n \"count\": 3,\n \"type\": \"Supply\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Dunwich Legacy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 3,\n \"level\": 3,\n \"traits\": \"Spell. Blessed.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"wildIcons\": 1,\n \"cycle\": \"The Innsmouth Conspiracy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "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 \"cycle\": \"Core\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 0,\n \"level\": 2,\n \"traits\": \"Talent.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 2,\n \"agilityIcons\": 2,\n \"cycle\": \"Return to the Night of the Zealot\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 0,\n \"level\": 0,\n \"traits\": \"Ritual. Blessed.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"cycle\": \"The Innsmouth Conspiracy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"wildIcons\": 2,\n \"negativeIcons\": true,\n \"cycle\": \"Promo\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"level\": 0,\n \"traits\": \"Innate.\",\n \"permanent\": false,\n \"weakness\": false,\n \"wildIcons\": 1,\n \"cycle\": \"The Forgotten Age\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 2,\n \"traits\": \"Item. Instrument. Relic.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 2,\n \"wildIcons\": 1,\n \"cycle\": \"The Dunwich Legacy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 3,\n \"level\": 2,\n \"traits\": \"Ally. Miskatonic.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"cycle\": \"The Dunwich Legacy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 1,\n \"level\": 4,\n \"traits\": \"Item. Science.\",\n \"permanent\": false,\n \"weakness\": false,\n \"agilityIcons\": 2,\n \"uses\": [\n {\n \"count\": 4,\n \"type\": \"Supply\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Dunwich Legacy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Item. Tool.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"cycle\": \"The Innsmouth Conspiracy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 2,\n \"traits\": \"Spell.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"intellectIcons\": 1,\n \"wildIcons\": 1,\n \"cycle\": \"Promo\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 0,\n \"traits\": \"Item.\",\n \"permanent\": false,\n \"weakness\": false,\n \"cycle\": \"The Dunwich Legacy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 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 \"cycle\": \"The Dream-Eaters\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 2,\n \"traits\": \"Item. Relic. Tome. Blessed.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"wildIcons\": 1,\n \"cycle\": \"The Forgotten Age\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Insight.\",\n \"permanent\": false,\n \"weakness\": false,\n \"wildIcons\": 1,\n \"cycle\": \"Edge of the Earth\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "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 \"cost\": 2,\n \"traits\": \"Item. Relic. Tome.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 2,\n \"wildIcons\": 1,\n \"cycle\": \"Edge of the Earth\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 2,\n \"level\": 2,\n \"traits\": \"Item. Charm. Cursed.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"agilityIcons\": 1,\n \"cycle\": \"The Innsmouth Conspiracy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "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 \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Ally. Miskatonic. Science.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"cycle\": \"Edge of the Earth\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 3,\n \"level\": 0,\n \"traits\": \"Item. Weapon. Melee.\",\n \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"cycle\": \"Edge of the Earth\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cycle\": \"Edge of the Earth\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"level\": 1,\n \"traits\": \"Innate. Synergy.\",\n \"permanent\": false,\n \"weakness\": false,\n \"wildIcons\": 1,\n \"dynamicIcons\": true,\n \"cycle\": \"Edge of the Earth\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 4,\n \"level\": 5,\n \"traits\": \"Ally. Detective.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"combatIcons\": 1,\n \"wildIcons\": 1,\n \"cycle\": \"Edge of the Earth\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 2,\n \"level\": 1,\n \"traits\": \"Spell.\",\n \"permanent\": false,\n \"weakness\": false,\n \"agilityIcons\": 1,\n \"uses\": [\n {\n \"count\": 3,\n \"type\": \"Charge\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"Edge of the Earth\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 3,\n \"level\": 1,\n \"traits\": \"Spell. Augury.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"uses\": [\n {\n \"count\": 4,\n \"type\": \"Charge\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"Edge of the Earth\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 3,\n \"level\": 2,\n \"traits\": \"Item. Weapon. Melee.\",\n \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"agilityIcons\": 1,\n \"cycle\": \"Edge of the Earth\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 3,\n \"level\": 0,\n \"traits\": \"Ally. Criminal.\",\n \"permanent\": false,\n \"weakness\": false,\n \"agilityIcons\": 1,\n \"cycle\": \"The Circle Undone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cycle\": \"Promo\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Item. Charm.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"cycle\": \"Investigator Packs\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"willpowerIcons\": 1,\n \"intellectIcons\": 1,\n \"wildIcons\": 1,\n \"cycle\": \"Promo\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 1,\n \"level\": 1,\n \"traits\": \"Ritual. Blessed.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"cycle\": \"The Forgotten Age\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "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 \"cost\": 2,\n \"traits\": \"Item. Science.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"wildIcons\": 1,\n \"uses\": [\n {\n \"count\": 4,\n \"type\": \"Supply\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "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 \"cost\": 3,\n \"level\": 0,\n \"traits\": \"Ally.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"uses\": [\n {\n \"count\": 3,\n \"type\": \"Secret\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Circle Undone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"level\": 2,\n \"traits\": \"Fortune.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"intellectIcons\": 1,\n \"cycle\": \"The Path to Carcosa\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cycle\": \"The Forgotten Age\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cycle\": \"The Dream-Eaters\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 3,\n \"level\": 3,\n \"traits\": \"Spell.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"combatIcons\": 2,\n \"cycle\": \"Return to the Path to Carcosa\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Talent.\",\n \"permanent\": false,\n \"weakness\": false,\n \"agilityIcons\": 1,\n \"cycle\": \"The Path to Carcosa\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 4,\n \"level\": 2,\n \"traits\": \"Ally. Miskatonic.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"intellectIcons\": 1,\n \"cycle\": \"Investigator Packs\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 2,\n \"level\": 3,\n \"traits\": \"Item. Charm.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 2,\n \"cycle\": \"Investigator Packs\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 1,\n \"level\": 1,\n \"traits\": \"Pact. Cursed.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"combatIcons\": 1,\n \"cycle\": \"The Innsmouth Conspiracy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Spell. Pact.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"combatIcons\": 1,\n \"cycle\": \"The Innsmouth Conspiracy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"level\": 3,\n \"traits\": \"Spirit.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"agilityIcons\": 1,\n \"cycle\": \"The Path to Carcosa\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 4,\n \"level\": 3,\n \"traits\": \"Tactic.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 2,\n \"combatIcons\": 2,\n \"cycle\": \"Investigator Packs\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 4,\n \"traits\": \"Ally. Agency. Detective.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"agilityIcons\": 1,\n \"wildIcons\": 1,\n \"cycle\": \"The Innsmouth Conspiracy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Insight.\",\n \"permanent\": false,\n \"weakness\": false,\n \"wildIcons\": 1,\n \"cycle\": \"The Path to Carcosa\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cycle\": \"Investigator Packs\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 3,\n \"level\": 0,\n \"traits\": \"Item. Weapon. Melee.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"cycle\": \"The Circle Undone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Talent.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"combatIcons\": 1,\n \"cycle\": \"The Innsmouth Conspiracy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cycle\": \"Investigator Packs\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 2,\n \"traits\": \"Ritual.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"intellectIcons\": 1,\n \"wildIcons\": 1,\n \"cycle\": \"The Path to Carcosa\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 2,\n \"level\": 2,\n \"traits\": \"Item. Weapon. Firearm. Illicit.\",\n \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"agilityIcons\": 1,\n \"uses\": [\n {\n \"count\": 3,\n \"type\": \"Ammo\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"Investigator Packs\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cycle\": \"The Path to Carcosa\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 3,\n \"traits\": \"Ally. Artist.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 2,\n \"wildIcons\": 1,\n \"cycle\": \"Promo\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 2,\n \"level\": 4,\n \"traits\": \"Talent.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 2,\n \"agilityIcons\": 2,\n \"uses\": [\n {\n \"count\": 2,\n \"type\": \"Resource\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Innsmouth Conspiracy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"traits\": \"\",\n \"permanent\": true,\n \"weakness\": false,\n \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Item. Tome.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"uses\": [\n {\n \"count\": 3,\n \"type\": \"Secret\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Circle Undone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 3,\n \"level\": 4,\n \"traits\": \"Ally. Blessed.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"combatIcons\": 2,\n \"cycle\": \"The Innsmouth Conspiracy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Tactic. Trick.\",\n \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"agilityIcons\": 1,\n \"cycle\": \"The Circle Undone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"combatIcons\": 4,\n \"cycle\": \"The Path to Carcosa\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"agilityIcons\": 2,\n \"wildIcons\": 1,\n \"cycle\": \"The Dunwich Legacy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Item. Charm.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"cycle\": \"The Innsmouth Conspiracy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Spell.\",\n \"permanent\": false,\n \"weakness\": false,\n \"agilityIcons\": 1,\n \"uses\": [\n {\n \"count\": 4,\n \"type\": \"Charge\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Forgotten Age\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 0,\n \"level\": 0,\n \"traits\": \"Insight. Tactic.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"agilityIcons\": 1,\n \"cycle\": \"The Dunwich Legacy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 3,\n \"traits\": \"Ally. Dreamer.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"intellectIcons\": 1,\n \"wildIcons\": 1,\n \"cycle\": \"The Dream-Eaters\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 0,\n \"traits\": \"Spell.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"intellectIcons\": 1,\n \"agilityIcons\": 1,\n \"cycle\": \"The Circle Undone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 3,\n \"level\": 5,\n \"traits\": \"Item. Tome.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 5,\n \"uses\": [\n {\n \"count\": 6,\n \"type\": \"Secret\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"Investigator Packs\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"level\": 4,\n \"traits\": \"Condition.\",\n \"permanent\": true,\n \"weakness\": false,\n \"cycle\": \"Investigator Packs\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "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 \"cycle\": \"The Innsmouth Conspiracy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 3,\n \"level\": 0,\n \"traits\": \"Ritual. Talent.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"cycle\": \"The Circle Undone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 5,\n \"level\": 0,\n \"traits\": \"Spell. Cursed.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"uses\": [\n {\n \"count\": 3,\n \"type\": \"Charge\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Innsmouth Conspiracy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 3,\n \"traits\": \"Item. Relic.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"combatIcons\": 1,\n \"wildIcons\": 2,\n \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"level\": 1,\n \"traits\": \"Practiced.\",\n \"permanent\": false,\n \"weakness\": false,\n \"wildIcons\": 1,\n \"cycle\": \"The Innsmouth Conspiracy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 3,\n \"level\": 1,\n \"traits\": \"Spell. Blessed.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"agilityIcons\": 1,\n \"cycle\": \"Return to the Forgotten Age\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 1,\n \"traits\": \"Item. Mask.\",\n \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"wildIcons\": 1,\n \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Fortune.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"intellectIcons\": 1,\n \"cycle\": \"The Dunwich Legacy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "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 \"cost\": 2,\n \"level\": 2,\n \"traits\": \"Fortune. Blessed.\",\n \"permanent\": false,\n \"weakness\": false,\n \"wildIcons\": 1,\n \"cycle\": \"The Circle Undone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"level\": 2,\n \"traits\": \"Practiced. Expert.\",\n \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 2,\n \"cycle\": \"The Dunwich Legacy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 3,\n \"level\": 4,\n \"traits\": \"Item. Tome. Blessed.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"intellectIcons\": 1,\n \"cycle\": \"The Innsmouth Conspiracy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Insight.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"combatIcons\": 1,\n \"cycle\": \"The Path to Carcosa\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"weakness\": true,\n \"cycle\": \"The Dream-Eaters\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 0,\n \"level\": 0,\n \"traits\": \"Augury.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"agilityIcons\": 1,\n \"cycle\": \"The Forgotten Age\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 4,\n \"level\": 0,\n \"traits\": \"Ally. Patron.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"cycle\": \"The Path to Carcosa\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Spell.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"agilityIcons\": 1,\n \"cycle\": \"The Dream-Eaters\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Item. Tome. Charm.\",\n \"permanent\": false,\n \"weakness\": false,\n \"bonded\": [\n {\n \"count\": 1,\n \"id\": \"06113\"\n }\n ],\n \"willpowerIcons\": 1,\n \"cycle\": \"The Dream-Eaters\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"level\": 3,\n \"traits\": \"Talent.\",\n \"permanent\": true,\n \"weakness\": false,\n \"cycle\": \"The Dunwich Legacy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 2,\n \"level\": 1,\n \"traits\": \"Talent.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"uses\": [\n {\n \"count\": 3,\n \"type\": \"Try\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Forgotten Age\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "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 \"cycle\": \"The Dunwich Legacy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 1,\n \"level\": 2,\n \"traits\": \"Item. Tool. Weapon. Melee.\",\n \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 2,\n \"cycle\": \"Return to the Path to Carcosa\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cycle\": \"Return to the Forgotten Age\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 0,\n \"level\": 0,\n \"traits\": \"Spell.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"cycle\": \"Investigator Packs\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "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 \"cost\": 3,\n \"level\": 3,\n \"traits\": \"Spell. Upgrade.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 2,\n \"combatIcons\": 1,\n \"cycle\": \"The Innsmouth Conspiracy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 2,\n \"level\": 2,\n \"traits\": \"Talent. Illicit.\",\n \"permanent\": false,\n \"weakness\": false,\n \"agilityIcons\": 2,\n \"cycle\": \"The Path to Carcosa\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 3,\n \"level\": 5,\n \"traits\": \"Item. Weapon. Firearm. Illicit.\",\n \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"agilityIcons\": 1,\n \"uses\": [\n {\n \"count\": 2,\n \"type\": \"Ammo\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Dream-Eaters\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 3,\n \"level\": 3,\n \"traits\": \"Spell.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"combatIcons\": 1,\n \"uses\": [\n {\n \"count\": 4,\n \"type\": \"Charge\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Dunwich Legacy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cycle\": \"The Dunwich Legacy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 1,\n \"level\": 2,\n \"traits\": \"Spell. Spirit.\",\n \"permanent\": false,\n \"weakness\": false,\n \"wildIcons\": 1,\n \"cycle\": \"The Path to Carcosa\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 3,\n \"traits\": \"Ally. Dunwich.\",\n \"permanent\": false,\n \"weakness\": false,\n \"agilityIcons\": 1,\n \"wildIcons\": 1,\n \"cycle\": \"The Dunwich Legacy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 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 \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Item. Tome.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"cycle\": \"Investigator Packs\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 2,\n \"level\": 2,\n \"traits\": \"Trick.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"agilityIcons\": 1,\n \"cycle\": \"Investigator Packs\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cycle\": \"The Forgotten Age\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 0,\n \"level\": 0,\n \"traits\": \"Tactic. Gambit.\",\n \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 2,\n \"cycle\": \"The Circle Undone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"level\": 0,\n \"traits\": \"Fortune. Blessed.\",\n \"permanent\": false,\n \"weakness\": false,\n \"cycle\": \"The Innsmouth Conspiracy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 1,\n \"level\": 1,\n \"traits\": \"Ally. Criminal.\",\n \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"cycle\": \"The Dunwich Legacy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 1,\n \"level\": 3,\n \"traits\": \"Fortune. Blessed. Cursed.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"intellectIcons\": 1,\n \"agilityIcons\": 1,\n \"uses\": [\n {\n \"count\": 3,\n \"type\": \"Offering\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Innsmouth Conspiracy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Item. Tome.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"uses\": [\n {\n \"count\": 4,\n \"type\": \"Secret\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"Investigator Packs\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Item.\",\n \"permanent\": false,\n \"weakness\": false,\n \"agilityIcons\": 1,\n \"cycle\": \"The Forgotten Age\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cycle\": \"Investigator Packs\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 3,\n \"level\": 0,\n \"traits\": \"Ally. Criminal. Dreamer.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"uses\": [\n {\n \"count\": 9,\n \"type\": \"Resource\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Dream-Eaters\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"level\": 0,\n \"traits\": \"Innate.\",\n \"permanent\": false,\n \"weakness\": false,\n \"wildIcons\": 1,\n \"cycle\": \"The Dunwich Legacy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"level\": 5,\n \"traits\": \"Spell. Practiced.\",\n \"permanent\": false,\n \"weakness\": false,\n \"wildIcons\": 4,\n \"cycle\": \"The Dream-Eaters\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 3,\n \"level\": 3,\n \"traits\": \"Item. Charm. Cursed.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"agilityIcons\": 1,\n \"cycle\": \"The Circle Undone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 3,\n \"level\": 5,\n \"traits\": \"Ritual.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"cycle\": \"The Dream-Eaters\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 1,\n \"level\": 2,\n \"traits\": \"Insight.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 3,\n \"uses\": [\n {\n \"count\": 2,\n \"type\": \"Secret\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"Return to the Forgotten Age\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 10,\n \"level\": 1,\n \"traits\": \"Insight.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 2,\n \"cycle\": \"The Dream-Eaters\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 1,\n \"level\": 4,\n \"traits\": \"Item. Relic. Blessed.\",\n \"permanent\": false,\n \"weakness\": false,\n \"bonded\": [\n {\n \"count\": 1,\n \"id\": \"06277\"\n }\n ],\n \"willpowerIcons\": 1,\n \"wildIcons\": 1,\n \"uses\": [\n {\n \"count\": 0,\n \"type\": \"Charge\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Dream-Eaters\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 3,\n \"level\": 1,\n \"traits\": \"Connection. Illicit.\",\n \"permanent\": false,\n \"weakness\": false,\n \"agilityIcons\": 1,\n \"cycle\": \"The Forgotten Age\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Spell.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"intellectIcons\": 1,\n \"cycle\": \"The Dream-Eaters\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 1,\n \"level\": 2,\n \"traits\": \"Spell.\",\n \"permanent\": false,\n \"weakness\": false,\n \"wildIcons\": 1,\n \"cycle\": \"The Innsmouth Conspiracy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 3,\n \"traits\": \"Talent.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"agilityIcons\": 1,\n \"wildIcons\": 1,\n \"cycle\": \"Investigator Packs\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "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 \"level\": 0,\n \"traits\": \"Research.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"cycle\": \"The Dream-Eaters\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 4,\n \"level\": 0,\n \"traits\": \"Ally. Sorcerer.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"cycle\": \"The Dunwich Legacy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 5,\n \"level\": 3,\n \"traits\": \"Item. Weapon. Firearm. Illicit.\",\n \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"agilityIcons\": 1,\n \"uses\": [\n {\n \"count\": 5,\n \"type\": \"Ammo\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Circle Undone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 2,\n \"level\": 3,\n \"traits\": \"Item. Relic. Cursed.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"intellectIcons\": 1,\n \"uses\": [\n {\n \"count\": 3,\n \"type\": \"Charge\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"Return to the Forgotten Age\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 0,\n \"traits\": \"Tactic.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"agilityIcons\": 1,\n \"wildIcons\": 2,\n \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cycle\": \"Return to the Forgotten Age\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Tactic.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"combatIcons\": 1,\n \"cycle\": \"The Path to Carcosa\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "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 \"cost\": 2,\n \"traits\": \"Item.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"intellectIcons\": 1,\n \"wildIcons\": 1,\n \"cycle\": \"Core\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 0,\n \"level\": 0,\n \"traits\": \"Pact. Cursed.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"intellectIcons\": 1,\n \"cycle\": \"The Innsmouth Conspiracy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 3,\n \"level\": 1,\n \"traits\": \"Item. Relic. Weapon. Melee.\",\n \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"cycle\": \"The Path to Carcosa\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "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 \"cost\": 3,\n \"traits\": \"Ally. Miskatonic.\",\n \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"wildIcons\": 1,\n \"cycle\": \"The Dunwich Legacy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 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 \"cost\": 0,\n \"traits\": \"Talent.\",\n \"permanent\": false,\n \"weakness\": false,\n \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 3,\n \"level\": 1,\n \"traits\": \"Item. Tome.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"cycle\": \"The Path to Carcosa\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 2,\n \"level\": 4,\n \"traits\": \"Talent.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 2,\n \"combatIcons\": 2,\n \"uses\": [\n {\n \"count\": 2,\n \"type\": \"Resource\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"Investigator Packs\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 3,\n \"level\": 1,\n \"traits\": \"Talent.\",\n \"permanent\": false,\n \"weakness\": false,\n \"agilityIcons\": 1,\n \"cycle\": \"The Dunwich Legacy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 2,\n \"level\": 1,\n \"traits\": \"Item. Tool. Melee.\",\n \"permanent\": false,\n \"weakness\": false,\n \"agilityIcons\": 1,\n \"cycle\": \"The Dunwich Legacy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 2,\n \"level\": 1,\n \"traits\": \"Tactic.\",\n \"permanent\": false,\n \"weakness\": false,\n \"wildIcons\": 1,\n \"cycle\": \"The Dunwich Legacy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 3,\n \"level\": 4,\n \"traits\": \"Spell.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 2,\n \"cycle\": \"The Circle Undone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Connection.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"uses\": [\n {\n \"count\": 0,\n \"type\": \"Supply\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Circle Undone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "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 \"cost\": 1,\n \"level\": 2,\n \"traits\": \"Ritual. Armor.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"agilityIcons\": 1,\n \"cycle\": \"The Innsmouth Conspiracy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "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 \"cost\": 0,\n \"level\": 1,\n \"traits\": \"Paradox. Blessed. Cursed.\",\n \"permanent\": false,\n \"weakness\": false,\n \"wildIcons\": 1,\n \"cycle\": \"The Innsmouth Conspiracy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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\": [\n \"60418\"\n ],\n \"type\": \"Skill\",\n \"class\": \"Mystic\",\n \"level\": 0,\n \"traits\": \"Innate.\",\n \"permanent\": false,\n \"weakness\": false,\n \"wildIcons\": 1,\n \"cycle\": \"The Dunwich Legacy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 1,\n \"level\": 2,\n \"traits\": \"Insight.\",\n \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"agilityIcons\": 1,\n \"wildIcons\": 1,\n \"cycle\": \"Investigator Packs\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 3,\n \"level\": 0,\n \"traits\": \"Item. Tool.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"cycle\": \"The Innsmouth Conspiracy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "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 \"cycle\": \"The Forgotten Age\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 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 \"cost\": 2,\n \"level\": 3,\n \"traits\": \"Talent.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 2,\n \"cycle\": \"The Dunwich Legacy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 0,\n \"level\": 2,\n \"traits\": \"Spirit. Tactic.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"combatIcons\": 1,\n \"agilityIcons\": 1,\n \"cycle\": \"The Dream-Eaters\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Spell.\",\n \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"uses\": [\n {\n \"count\": 3,\n \"type\": \"Charge\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Innsmouth Conspiracy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Insight. Trick.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"agilityIcons\": 1,\n \"cycle\": \"The Forgotten Age\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "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 \"cost\": 1,\n \"level\": 1,\n \"traits\": \"Talent. Composure.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"cycle\": \"The Path to Carcosa\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 3,\n \"level\": 1,\n \"traits\": \"Ally. Wayfarer. Cursed.\",\n \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"cycle\": \"The Dream-Eaters\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 1,\n \"level\": 3,\n \"traits\": \"Trick.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 2,\n \"agilityIcons\": 2,\n \"cycle\": \"The Path to Carcosa\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 2,\n \"traits\": \"Item. Weapon. Firearm.\",\n \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"agilityIcons\": 1,\n \"wildIcons\": 1,\n \"uses\": [\n {\n \"count\": 2,\n \"type\": \"Ammo\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Dream-Eaters\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Tactic. Improvised.\",\n \"permanent\": false,\n \"weakness\": false,\n \"cycle\": \"The Forgotten Age\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 0,\n \"level\": 1,\n \"traits\": \"Trick.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"agilityIcons\": 1,\n \"cycle\": \"The Dream-Eaters\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 2,\n \"level\": 3,\n \"traits\": \"Spell.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 2,\n \"uses\": [\n {\n \"count\": 4,\n \"type\": \"Charge\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"Return to The Dunwich Legacy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 3,\n \"level\": 0,\n \"traits\": \"Item. Weapon. Melee. Blessed.\",\n \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"cycle\": \"The Innsmouth Conspiracy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 3,\n \"level\": 0,\n \"traits\": \"Spell.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"uses\": [\n {\n \"count\": 3,\n \"type\": \"Secret\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"Investigator Packs\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"startsInPlay\": true,\n \"traits\": \"Job.\",\n \"permanent\": true,\n \"weakness\": false,\n \"uses\": [\n {\n \"count\": 6,\n \"type\": \"Bounty\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Dream-Eaters\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 4,\n \"level\": 0,\n \"traits\": \"Item. Weapon. Firearm. Illicit.\",\n \"permanent\": false,\n \"weakness\": false,\n \"agilityIcons\": 1,\n \"uses\": [\n {\n \"count\": 4,\n \"type\": \"Ammo\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Innsmouth Conspiracy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Item. Weapon. Melee.\",\n \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"cycle\": \"Core\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 4,\n \"level\": 5,\n \"traits\": \"Item. Armor. Relic.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 2,\n \"combatIcons\": 2,\n \"cycle\": \"The Path to Carcosa\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 3,\n \"level\": 3,\n \"traits\": \"Item. Upgrade.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"combatIcons\": 1,\n \"agilityIcons\": 1,\n \"cycle\": \"The Circle Undone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"level\": 3,\n \"traits\": \"Gambit.\",\n \"permanent\": false,\n \"weakness\": false,\n \"wildIcons\": 1,\n \"cycle\": \"Investigator Packs\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 0,\n \"level\": 1,\n \"traits\": \"Insight.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 2,\n \"cycle\": \"Investigator Packs\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 0,\n \"level\": 0,\n \"traits\": \"Talent.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"cycle\": \"The Circle Undone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 0,\n \"traits\": \"Madness.\",\n \"permanent\": false,\n \"weakness\": true,\n \"cycle\": \"The Dunwich Legacy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 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 \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Blessed. Fortune.\",\n \"permanent\": false,\n \"weakness\": false,\n \"wildIcons\": 1,\n \"cycle\": \"The Dream-Eaters\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cycle\": \"The Circle Undone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Spirit.\",\n \"permanent\": false,\n \"weakness\": false,\n \"cycle\": \"The Path to Carcosa\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 4,\n \"level\": 5,\n \"traits\": \"Spell.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"intellectIcons\": 2,\n \"uses\": [\n {\n \"count\": 3,\n \"type\": \"Charge\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"Investigator Packs\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cycle\": \"Investigator Packs\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Item. Tome. Occult.\",\n \"permanent\": false,\n \"weakness\": false,\n \"bonded\": [\n {\n \"count\": 3,\n \"id\": \"05317\"\n }\n ],\n \"intellectIcons\": 1,\n \"cycle\": \"The Circle Undone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "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 \"cost\": 5,\n \"traits\": \"Ally. Criminal. Syndicate.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 2,\n \"combatIcons\": 2,\n \"cycle\": \"Return to The Dunwich Legacy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 2,\n \"level\": 2,\n \"traits\": \"Spirit. Tactic.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 2,\n \"combatIcons\": 1,\n \"cycle\": \"Investigator Packs\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 4,\n \"level\": 0,\n \"traits\": \"Ally.\",\n \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"cycle\": \"Investigator Packs\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 2,\n \"level\": 2,\n \"traits\": \"Talent.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"combatIcons\": 1,\n \"cycle\": \"The Forgotten Age\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Tactic. Insight.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"combatIcons\": 1,\n \"cycle\": \"The Circle Undone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 3,\n \"level\": 0,\n \"traits\": \"Item. Relic. Dreamlands.\",\n \"permanent\": false,\n \"weakness\": false,\n \"cycle\": \"The Dream-Eaters\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 2,\n \"level\": 2,\n \"traits\": \"Fortune.\",\n \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 2,\n \"agilityIcons\": 1,\n \"cycle\": \"Return to The Dunwich Legacy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 2,\n \"level\": 3,\n \"traits\": \"Ritual. Cursed.\",\n \"permanent\": false,\n \"weakness\": false,\n \"wildIcons\": 1,\n \"cycle\": \"The Innsmouth Conspiracy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Talent.\",\n \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"agilityIcons\": 1,\n \"cycle\": \"Investigator Packs\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"level\": 0,\n \"traits\": \"Gambit.\",\n \"permanent\": false,\n \"weakness\": false,\n \"wildIcons\": 5,\n \"cycle\": \"The Forgotten Age\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "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 \"cycle\": \"The Innsmouth Conspiracy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Insight.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"agilityIcons\": 1,\n \"cycle\": \"The Dunwich Legacy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Spell.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"uses\": [\n {\n \"count\": 3,\n \"type\": \"Charge\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Path to Carcosa\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "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 \"cost\": 2,\n \"level\": 3,\n \"traits\": \"Item. Relic. Occult. Blessed.\",\n \"permanent\": false,\n \"weakness\": false,\n \"bonded\": [\n {\n \"count\": 3,\n \"id\": \"05314\"\n }\n ],\n \"willpowerIcons\": 2,\n \"cycle\": \"Return to the Circle Undone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cycle\": \"The Path to Carcosa\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Tactic.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"agilityIcons\": 1,\n \"cycle\": \"The Dream-Eaters\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 0,\n \"level\": 2,\n \"traits\": \"Insight.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"wildIcons\": 1,\n \"cycle\": \"Investigator Packs\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cycle\": \"The Innsmouth Conspiracy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 2,\n \"traits\": \"Item.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"intellectIcons\": 1,\n \"wildIcons\": 2,\n \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Item. Tome.\",\n \"permanent\": false,\n \"weakness\": false,\n \"wildIcons\": 1,\n \"uses\": [\n {\n \"count\": 5,\n \"type\": \"Secret\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"Investigator Packs\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 3,\n \"level\": 0,\n \"traits\": \"Talent.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"cycle\": \"The Circle Undone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"level\": 0,\n \"traits\": \"Innate.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"combatIcons\": 1,\n \"agilityIcons\": 1,\n \"cycle\": \"The Path to Carcosa\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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\": [\n \"60113\",\n \"01523\"\n ],\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Tactic.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"agilityIcons\": 1,\n \"cycle\": \"Core\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 4,\n \"traits\": \"Insight. Mystery.\",\n \"permanent\": false,\n \"weakness\": true,\n \"cycle\": \"The Circle Undone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 3,\n \"traits\": \"Ally. Assistant.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"agilityIcons\": 1,\n \"wildIcons\": 1,\n \"cycle\": \"Promo\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 3,\n \"traits\": \"Ally. Wayfarer.\",\n \"permanent\": false,\n \"weakness\": false,\n \"wildIcons\": 2,\n \"cycle\": \"The Forgotten Age\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cycle\": \"The Circle Undone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 0,\n \"traits\": \"Spell.\",\n \"permanent\": false,\n \"weakness\": false,\n \"cycle\": \"The Circle Undone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 2,\n \"traits\": \"Ally. Assistant.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"wildIcons\": 1,\n \"cycle\": \"The Circle Undone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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-t\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"cost\": 4,\n \"level\": 4,\n \"traits\": \"Item. Weapon. Firearm.\",\n \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"agilityIcons\": 1,\n \"uses\": [\n {\n \"count\": 3,\n \"type\": \"Ammo\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Dunwich Legacy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 4,\n \"level\": 0,\n \"traits\": \"Spirit.\",\n \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"agilityIcons\": 1,\n \"cycle\": \"Investigator Packs\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "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 \"cost\": 1,\n \"level\": 1,\n \"traits\": \"Spell. Spirit.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"combatIcons\": 1,\n \"cycle\": \"Return to the Forgotten Age\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cycle\": \"The Dream-Eaters\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 2,\n \"level\": 4,\n \"traits\": \"Talent.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 2,\n \"intellectIcons\": 2,\n \"uses\": [\n {\n \"count\": 2,\n \"type\": \"Resource\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"Investigator Packs\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 0,\n \"level\": 2,\n \"traits\": \"Item. Relic.\",\n \"permanent\": false,\n \"weakness\": false,\n \"wildIcons\": 1,\n \"uses\": [\n {\n \"countPerInvestigator\": 1,\n \"type\": \"Lock\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Circle Undone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 10,\n \"level\": 3,\n \"traits\": \"Insight. Cursed.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 3,\n \"cycle\": \"The Innsmouth Conspiracy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"level\": 1,\n \"traits\": \"Fortune. Practiced.\",\n \"permanent\": false,\n \"weakness\": false,\n \"wildIcons\": 1,\n \"cycle\": \"The Dream-Eaters\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cycle\": \"The Path to Carcosa\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 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 \"cost\": 0,\n \"level\": 0,\n \"traits\": \"Insight.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 2,\n \"cycle\": \"Investigator Packs\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 0,\n \"level\": 0,\n \"traits\": \"Insight.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"intellectIcons\": 1,\n \"cycle\": \"The Circle Undone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cycle\": \"The Dream-Eaters\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 3,\n \"level\": 3,\n \"traits\": \"Spell.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"combatIcons\": 1,\n \"uses\": [\n {\n \"count\": 4,\n \"type\": \"Charge\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"Investigator Packs\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cycle\": \"Return to the Circle Undone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"level\": 2,\n \"traits\": \"Covenant. Blessed. Cursed.\",\n \"permanent\": true,\n \"weakness\": false,\n \"cycle\": \"The Innsmouth Conspiracy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 0,\n \"level\": 1,\n \"traits\": \"Spirit. Bold.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"combatIcons\": 1,\n \"cycle\": \"The Path to Carcosa\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 3,\n \"level\": 5,\n \"traits\": \"Item. Relic.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"wildIcons\": 1,\n \"cycle\": \"The Path to Carcosa\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 4,\n \"traits\": \"Item. Weapon. Relic. Melee.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"combatIcons\": 1,\n \"wildIcons\": 1,\n \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 5,\n \"level\": 5,\n \"traits\": \"Item. Relic. Tome.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"wildIcons\": 1,\n \"uses\": [\n {\n \"count\": 3,\n \"type\": \"Secret\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Forgotten Age\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 4,\n \"level\": 2,\n \"traits\": \"Tactic.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"combatIcons\": 1,\n \"cycle\": \"Return to the Night of the Zealot\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 2,\n \"level\": 2,\n \"traits\": \"Item. Charm.\",\n \"permanent\": false,\n \"weakness\": false,\n \"cycle\": \"Return to the Circle Undone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 3,\n \"level\": 0,\n \"traits\": \"Item. Tome.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"uses\": [\n {\n \"count\": 4,\n \"type\": \"Secret\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Dream-Eaters\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 5,\n \"level\": 1,\n \"traits\": \"Ally. \",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"cycle\": \"The Dunwich Legacy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 3,\n \"level\": 2,\n \"traits\": \"Tactic. Trick.\",\n \"permanent\": false,\n \"weakness\": false,\n \"agilityIcons\": 1,\n \"cycle\": \"The Dream-Eaters\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 3,\n \"level\": 3,\n \"traits\": \"Ally. Criminal. Syndicate.\",\n \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"agilityIcons\": 1,\n \"cycle\": \"The Dream-Eaters\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 3,\n \"level\": 3,\n \"traits\": \"Item. Illicit.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"combatIcons\": 1,\n \"uses\": [\n {\n \"count\": 2,\n \"type\": \"Supply\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Circle Undone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cycle\": \"The Forgotten Age\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cycle\": \"The Dunwich Legacy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"level\": 0,\n \"traits\": \"Practiced.\",\n \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"cycle\": \"The Forgotten Age\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"level\": 1,\n \"traits\": \"Innate. Developed.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"cycle\": \"The Dream-Eaters\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 0,\n \"level\": 0,\n \"traits\": \"Spirit.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"combatIcons\": 1,\n \"cycle\": \"The Path to Carcosa\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Item.\",\n \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"cycle\": \"The Dunwich Legacy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 4,\n \"level\": 0,\n \"traits\": \"Item. Weapon. Firearm. Illicit.\",\n \"permanent\": false,\n \"weakness\": false,\n \"agilityIcons\": 1,\n \"uses\": [\n {\n \"count\": 5,\n \"type\": \"Ammo\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"Investigator Packs\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Talent.\",\n \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"agilityIcons\": 1,\n \"cycle\": \"Core\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 4,\n \"level\": 0,\n \"traits\": \"Ally.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"cycle\": \"Investigator Packs\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Item. Weapon. Melee.\",\n \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"cycle\": \"The Dunwich Legacy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 2,\n \"level\": 2,\n \"traits\": \"Item. Relic.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"agilityIcons\": 1,\n \"cycle\": \"The Dunwich Legacy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"level\": 4,\n \"traits\": \"Grant.\",\n \"permanent\": true,\n \"weakness\": false,\n \"cycle\": \"Investigator Packs\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 0,\n \"traits\": \"Insight.\",\n \"permanent\": false,\n \"weakness\": false,\n \"wildIcons\": 3,\n \"cycle\": \"The Innsmouth Conspiracy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 0,\n \"level\": 0,\n \"traits\": \"Favor. Gambit.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"combatIcons\": 1,\n \"agilityIcons\": 1,\n \"cycle\": \"The Circle Undone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 0,\n \"level\": 1,\n \"traits\": \"Item. Charm.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"cycle\": \"Investigator Packs\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"level\": 0,\n \"traits\": \"Practiced.\",\n \"permanent\": false,\n \"weakness\": false,\n \"wildIcons\": 1,\n \"cycle\": \"The Innsmouth Conspiracy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cycle\": \"Investigator Packs\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"level\": 0,\n \"traits\": \"Practiced.\",\n \"permanent\": false,\n \"weakness\": false,\n \"wildIcons\": 1,\n \"cycle\": \"The Circle Undone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "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 \"cost\": 0,\n \"level\": 0,\n \"traits\": \"Talent.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"cycle\": \"The Circle Undone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 3,\n \"level\": 3,\n \"traits\": \"Ally. Wayfarer.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 2,\n \"cycle\": \"The Forgotten Age\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 4,\n \"traits\": \"Ally. Eztli. Wayfarer.\",\n \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"agilityIcons\": 1,\n \"wildIcons\": 1,\n \"cycle\": \"The Forgotten Age\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 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 \"cycle\": \"The Circle Undone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 2,\n \"traits\": \"Spell.\",\n \"permanent\": false,\n \"weakness\": true,\n \"cycle\": \"Core\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 2,\n \"level\": 3,\n \"traits\": \"Spell.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"agilityIcons\": 1,\n \"uses\": [\n {\n \"count\": 3,\n \"type\": \"Charge\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Path to Carcosa\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"startsInPlay\": true,\n \"cost\": 3,\n \"traits\": \"Item. Relic.\",\n \"permanent\": false,\n \"weakness\": false,\n \"bonded\": [\n {\n \"count\": 1,\n \"id\": \"06015a\"\n }\n ],\n \"uses\": [\n {\n \"count\": 3,\n \"type\": \"Charge\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Dream-Eaters\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "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 \"cycle\": \"The Dunwich Legacy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 2,\n \"level\": 3,\n \"traits\": \"Item. Illicit.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"agilityIcons\": 1,\n \"uses\": [\n {\n \"count\": 3,\n \"type\": \"Supply\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Circle Undone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 2,\n \"level\": 2,\n \"traits\": \"Insight. Tactic.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 2,\n \"combatIcons\": 1,\n \"cycle\": \"Investigator Packs\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 1,\n \"level\": 3,\n \"traits\": \"Item. Relic. Tome.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"combatIcons\": 1,\n \"wildIcons\": 1,\n \"cycle\": \"Investigator Packs\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Insight.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"agilityIcons\": 1,\n \"cycle\": \"The Forgotten Age\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"level\": 2,\n \"traits\": \"Innate. Developed.\",\n \"permanent\": false,\n \"weakness\": false,\n \"wildIcons\": 2,\n \"cycle\": \"Investigator Packs\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 0,\n \"level\": 1,\n \"traits\": \"Item. Armor.\",\n \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"cycle\": \"Investigator Packs\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "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 \"cost\": 2,\n \"level\": 2,\n \"traits\": \"Talent.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"agilityIcons\": 1,\n \"cycle\": \"The Forgotten Age\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 1,\n \"level\": 1,\n \"traits\": \"Ally. Geist.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"cycle\": \"The Circle Undone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 2,\n \"level\": 4,\n \"traits\": \"Item. Relic.\",\n \"permanent\": false,\n \"weakness\": false,\n \"agilityIcons\": 2,\n \"cycle\": \"Return to the Forgotten Age\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "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 \"cost\": 2,\n \"level\": 2,\n \"traits\": \"Pact.\",\n \"permanent\": false,\n \"weakness\": false,\n \"cycle\": \"The Innsmouth Conspiracy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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\": [\n \"60413\"\n ],\n \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"cost\": 3,\n \"level\": 0,\n \"traits\": \"Spell.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"agilityIcons\": 1,\n \"cycle\": \"The Path to Carcosa\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 3,\n \"level\": 0,\n \"traits\": \"Ally. Assistant.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"cycle\": \"The Forgotten Age\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"level\": 1,\n \"traits\": \"Fortune. Practiced.\",\n \"permanent\": false,\n \"weakness\": false,\n \"wildIcons\": 1,\n \"cycle\": \"The Dream-Eaters\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "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 \"cost\": 2,\n \"level\": 3,\n \"traits\": \"Item. Tome. Charm.\",\n \"permanent\": false,\n \"weakness\": false,\n \"bonded\": [\n {\n \"count\": 1,\n \"id\": \"06113\"\n }\n ],\n \"willpowerIcons\": 1,\n \"agilityIcons\": 1,\n \"cycle\": \"The Dream-Eaters\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 0,\n \"level\": 0,\n \"traits\": \"Insight. Blessed.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"agilityIcons\": 1,\n \"cycle\": \"The Innsmouth Conspiracy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "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 \"cycle\": \"The Dunwich Legacy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 5,\n \"traits\": \"Ally. Police.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"combatIcons\": 1,\n \"wildIcons\": 1,\n \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 2,\n \"level\": 2,\n \"traits\": \"Item. Tome.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"combatIcons\": 1,\n \"cycle\": \"The Innsmouth Conspiracy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Spell.\",\n \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"cycle\": \"The Circle Undone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 1,\n \"level\": 2,\n \"traits\": \"Item.\",\n \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"agilityIcons\": 1,\n \"cycle\": \"Return to the Forgotten Age\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 3,\n \"traits\": \"Item. Relic. Weapon.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"combatIcons\": 1,\n \"wildIcons\": 1,\n \"cycle\": \"The Circle Undone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 1,\n \"level\": 2,\n \"traits\": \"Item. Weapon. Melee. Illicit.\",\n \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"agilityIcons\": 1,\n \"cycle\": \"The Dunwich Legacy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 3,\n \"level\": 5,\n \"traits\": \"Spell.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"agilityIcons\": 2,\n \"uses\": [\n {\n \"count\": 3,\n \"type\": \"Charge\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"Investigator Packs\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Talent.\",\n \"permanent\": false,\n \"weakness\": false,\n \"agilityIcons\": 1,\n \"cycle\": \"The Dunwich Legacy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 1,\n \"traits\": \"Insight.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 2,\n \"wildIcons\": 1,\n \"cycle\": \"The Dunwich Legacy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Trick.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"agilityIcons\": 1,\n \"cycle\": \"The Path to Carcosa\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "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\": [\n \"60516\"\n ],\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"cost\": 0,\n \"level\": 0,\n \"traits\": \"Spirit.\",\n \"permanent\": false,\n \"weakness\": false,\n \"wildIcons\": 1,\n \"cycle\": \"The Forgotten Age\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 3,\n \"level\": 0,\n \"traits\": \"Item. Relic.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"cycle\": \"Investigator Packs\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 4,\n \"traits\": \"Item. Weapon. Firearm.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"combatIcons\": 1,\n \"wildIcons\": 1,\n \"uses\": [\n {\n \"count\": 4,\n \"type\": \"Ammo\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Circle Undone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 0,\n \"level\": 2,\n \"traits\": \"Talent.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 2,\n \"intellectIcons\": 2,\n \"cycle\": \"Return to the Night of the Zealot\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 0,\n \"level\": 1,\n \"traits\": \"Insight. Augury.\",\n \"permanent\": false,\n \"weakness\": false,\n \"bonded\": [\n {\n \"count\": 1,\n \"id\": \"06028\"\n }\n ],\n \"wildIcons\": 1,\n \"cycle\": \"The Dream-Eaters\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cycle\": \"The Forgotten Age\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 2,\n \"level\": 3,\n \"traits\": \"Spell.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"combatIcons\": 1,\n \"uses\": [\n {\n \"count\": 3,\n \"type\": \"Charge\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"Return to the Path to Carcosa\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "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 \"cost\": 0,\n \"level\": 1,\n \"traits\": \"Insight. Cursed.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"combatIcons\": 1,\n \"cycle\": \"The Innsmouth Conspiracy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Gambit.\",\n \"permanent\": false,\n \"weakness\": false,\n \"agilityIcons\": 2,\n \"cycle\": \"The Circle Undone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 2,\n \"level\": 3,\n \"traits\": \"Spirit.\",\n \"permanent\": false,\n \"weakness\": false,\n \"wildIcons\": 2,\n \"cycle\": \"Return to the Circle Undone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 3,\n \"level\": 2,\n \"traits\": \"Item. Tome.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"intellectIcons\": 1,\n \"uses\": [\n {\n \"count\": 3,\n \"type\": \"Secret\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Dream-Eaters\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 4,\n \"traits\": \"Ally. Government.\",\n \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"agilityIcons\": 1,\n \"wildIcons\": 1,\n \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 0,\n \"traits\": \"Task.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"combatIcons\": 1,\n \"wildIcons\": 1,\n \"victory\": 1,\n \"cycle\": \"The Path to Carcosa\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 4,\n \"level\": 3,\n \"traits\": \"Spell.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"intellectIcons\": 1,\n \"uses\": [\n {\n \"count\": 3,\n \"type\": \"Charge\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"Investigator Packs\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 0,\n \"level\": 0,\n \"traits\": \"Spell. Paradox.\",\n \"permanent\": false,\n \"weakness\": false,\n \"wildIcons\": 1,\n \"cycle\": \"The Circle Undone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cycle\": \"The Path to Carcosa\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 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 \"cost\": 1,\n \"level\": 5,\n \"traits\": \"Insight.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 3,\n \"cycle\": \"The Circle Undone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 3,\n \"level\": 0,\n \"traits\": \"Item. Tome. Blessed.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"uses\": [\n {\n \"count\": 4,\n \"type\": \"Secret\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Innsmouth Conspiracy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 0,\n \"level\": 3,\n \"traits\": \"Item. Relic. Cursed.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"combatIcons\": 1,\n \"uses\": [\n {\n \"count\": 0,\n \"type\": \"Charge\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"Return to the Forgotten Age\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "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 \"level\": 1,\n \"traits\": \"Practiced.\",\n \"permanent\": false,\n \"weakness\": false,\n \"wildIcons\": 1,\n \"cycle\": \"The Dream-Eaters\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 3,\n \"level\": 0,\n \"traits\": \"Item. Illicit.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"uses\": [\n {\n \"count\": 2,\n \"type\": \"Supply\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Circle Undone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cycle\": \"The Path to Carcosa\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 4,\n \"level\": 4,\n \"traits\": \"Ritual.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"intellectIcons\": 1,\n \"cycle\": \"The Circle Undone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "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 \"cycle\": \"Promo\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 0,\n \"traits\": \"Tactic.\",\n \"permanent\": false,\n \"weakness\": false,\n \"agilityIcons\": 2,\n \"wildIcons\": 2,\n \"cycle\": \"The Innsmouth Conspiracy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 1,\n \"level\": 1,\n \"traits\": \"Ally. Miskatonic.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"agilityIcons\": 1,\n \"cycle\": \"Investigator Packs\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 0,\n \"level\": 1,\n \"traits\": \"Illicit. Fated.\",\n \"permanent\": false,\n \"weakness\": false,\n \"cycle\": \"The Forgotten Age\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"level\": 0,\n \"traits\": \"Practiced.\",\n \"permanent\": false,\n \"weakness\": false,\n \"agilityIcons\": 1,\n \"cycle\": \"The Forgotten Age\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "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 \"cost\": 3,\n \"level\": 0,\n \"traits\": \"Item. Weapon.\",\n \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"cycle\": \"Investigator Packs\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 2,\n \"level\": 1,\n \"traits\": \"Tactic.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"combatIcons\": 1,\n \"cycle\": \"The Path to Carcosa\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 2,\n \"level\": 2,\n \"traits\": \"Trick.\",\n \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"agilityIcons\": 1,\n \"cycle\": \"Investigator Packs\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 2,\n \"level\": 1,\n \"traits\": \"Pact. Blessed.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"agilityIcons\": 1,\n \"cycle\": \"The Innsmouth Conspiracy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 2,\n \"level\": 5,\n \"traits\": \"Ally. Avatar. Dreamlands.\",\n \"permanent\": false,\n \"weakness\": false,\n \"wildIcons\": 2,\n \"cycle\": \"The Dream-Eaters\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"level\": 5,\n \"traits\": \"Fortune.\",\n \"permanent\": false,\n \"weakness\": false,\n \"wildIcons\": 2,\n \"cycle\": \"The Forgotten Age\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Item. Tool.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"cycle\": \"The Path to Carcosa\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 2,\n \"traits\": \"Item. Relic.\",\n \"permanent\": false,\n \"weakness\": false,\n \"wildIcons\": 3,\n \"cycle\": \"The Forgotten Age\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "e27a30",
"Name": "Card",
"Transform": {
"posX": 101.078712,
"posY": 1.98530233,
"posZ": -13.6230507,
"rotX": 359.99,
"rotY": 270.012177,
"rotZ": 359.984558,
"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 \"cost\": 2,\n \"traits\": \"Item. Relic.\",\n \"permanent\": false,\n \"weakness\": false,\n \"wildIcons\": 3,\n \"cycle\": \"The Forgotten Age\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "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 \"cost\": 2,\n \"traits\": \"Item. Instrument.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"agilityIcons\": 1,\n \"wildIcons\": 1,\n \"cycle\": \"The Dream-Eaters\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"level\": 0,\n \"traits\": \"Innate.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"combatIcons\": 1,\n \"agilityIcons\": 1,\n \"cycle\": \"The Path to Carcosa\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 2,\n \"level\": 2,\n \"traits\": \"Talent.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"combatIcons\": 1,\n \"cycle\": \"The Forgotten Age\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Spell.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"uses\": [\n {\n \"count\": 3,\n \"type\": \"Charge\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Dunwich Legacy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 2,\n \"traits\": \"Item. Tome.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"cycle\": \"The Dunwich Legacy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 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 \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Item.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"uses\": [\n {\n \"count\": 3,\n \"type\": \"Supply\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Dunwich Legacy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 0,\n \"level\": 1,\n \"traits\": \"Ritual.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"cycle\": \"The Forgotten Age\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 2,\n \"level\": 3,\n \"traits\": \"Condition.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"agilityIcons\": 1,\n \"cycle\": \"Return to the Circle Undone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 1,\n \"level\": 3,\n \"traits\": \"Spirit. Blessed.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 2,\n \"cycle\": \"The Innsmouth Conspiracy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 0,\n \"level\": 3,\n \"traits\": \"Trick.\",\n \"permanent\": false,\n \"weakness\": false,\n \"cycle\": \"The Dunwich Legacy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 3,\n \"level\": 0,\n \"traits\": \"Spell. Blessed.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"combatIcons\": 1,\n \"cycle\": \"The Innsmouth Conspiracy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 0,\n \"level\": 0,\n \"traits\": \"Augury.\",\n \"permanent\": false,\n \"weakness\": false,\n \"wildIcons\": 1,\n \"cycle\": \"Investigator Packs\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 3,\n \"level\": 3,\n \"traits\": \"Ally. Sorcerer.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"intellectIcons\": 1,\n \"cycle\": \"The Innsmouth Conspiracy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cycle\": \"Return to the Forgotten Age\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 3,\n \"level\": 3,\n \"traits\": \"Item. Relic. Weapon. Melee.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"combatIcons\": 1,\n \"uses\": [\n {\n \"count\": 3,\n \"type\": \"Charge\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Circle Undone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Item. Tool. Weapon. Melee.\",\n \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"cycle\": \"The Path to Carcosa\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 2,\n \"traits\": \"Pact.\",\n \"permanent\": false,\n \"weakness\": true,\n \"basicWeaknessCount\": 1,\n \"cycle\": \"The Forgotten Age\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 3,\n \"level\": 0,\n \"traits\": \"Item. Charm.\",\n \"permanent\": false,\n \"weakness\": false,\n \"agilityIcons\": 1,\n \"cycle\": \"The Circle Undone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Tactic. Trick.\",\n \"permanent\": false,\n \"weakness\": false,\n \"agilityIcons\": 2,\n \"cycle\": \"The Path to Carcosa\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 2,\n \"traits\": \"Weapon. Science.\",\n \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"wildIcons\": 1,\n \"uses\": [\n {\n \"count\": 3,\n \"type\": \"Ammo\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 2,\n \"traits\": \"Ally. Witch.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 2,\n \"uses\": [\n {\n \"count\": 3,\n \"type\": \"Secret\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"Return to the Circle Undone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cycle\": \"Return to the Path to Carcosa\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 3,\n \"level\": 0,\n \"traits\": \"Item. Relic. Cursed.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"cycle\": \"The Forgotten Age\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 1,\n \"level\": 2,\n \"traits\": \"Talent.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 2,\n \"cycle\": \"The Dream-Eaters\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 3,\n \"level\": 0,\n \"traits\": \"Item. Tool. Illicit.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"cycle\": \"Investigator Packs\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Trick.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"agilityIcons\": 1,\n \"cycle\": \"The Innsmouth Conspiracy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 2,\n \"traits\": \"Ally. Assistant.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"wildIcons\": 1,\n \"cycle\": \"The Circle Undone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 0,\n \"level\": 3,\n \"traits\": \"Trick.\",\n \"permanent\": false,\n \"weakness\": false,\n \"cycle\": \"The Dunwich Legacy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 2,\n \"level\": 3,\n \"traits\": \"Item. Relic.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"agilityIcons\": 1,\n \"cycle\": \"The Innsmouth Conspiracy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "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 \"cost\": 0,\n \"level\": 0,\n \"traits\": \"Spirit.\",\n \"permanent\": false,\n \"weakness\": false,\n \"wildIcons\": 1,\n \"cycle\": \"Investigator Packs\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 3,\n \"level\": 0,\n \"traits\": \"Spell.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"cycle\": \"The Circle Undone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"level\": 1,\n \"traits\": \"Innate. Developed.\",\n \"permanent\": false,\n \"weakness\": false,\n \"agilityIcons\": 1,\n \"cycle\": \"The Dream-Eaters\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 0,\n \"level\": 1,\n \"traits\": \"Insight.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"combatIcons\": 2,\n \"cycle\": \"The Dunwich Legacy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 1,\n \"traits\": \"Talent.\",\n \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"wildIcons\": 1,\n \"cycle\": \"The Forgotten Age\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cycle\": \"The Dunwich Legacy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 1,\n \"level\": 3,\n \"traits\": \"Spell. Spirit.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"combatIcons\": 1,\n \"cycle\": \"The Forgotten Age\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"level\": 2,\n \"traits\": \"Practiced. Blessed.\",\n \"permanent\": false,\n \"weakness\": false,\n \"wildIcons\": 1,\n \"cycle\": \"The Innsmouth Conspiracy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 0,\n \"level\": 0,\n \"traits\": \"Insight.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"agilityIcons\": 1,\n \"cycle\": \"Investigator Packs\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 2,\n \"level\": 4,\n \"traits\": \"Item. Relic.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 2,\n \"cycle\": \"The Forgotten Age\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 1,\n \"level\": 1,\n \"traits\": \"Ally. Blessed. Cursed.\",\n \"permanent\": false,\n \"weakness\": false,\n \"agilityIcons\": 1,\n \"cycle\": \"The Innsmouth Conspiracy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 1,\n \"traits\": \"Item. Relic. Clothing.\",\n \"permanent\": false,\n \"weakness\": false,\n \"agilityIcons\": 2,\n \"wildIcons\": 1,\n \"uses\": [\n {\n \"count\": 4,\n \"type\": \"Charge\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 0,\n \"traits\": \"Ally.\",\n \"permanent\": false,\n \"weakness\": false,\n \"cycle\": \"Core\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 4,\n \"level\": 0,\n \"traits\": \"Ally. Miskatonic\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"uses\": [\n {\n \"count\": 3,\n \"type\": \"Secret\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Innsmouth Conspiracy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 3,\n \"level\": 2,\n \"traits\": \"Item. Relic. Cursed.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 2,\n \"cycle\": \"The Forgotten Age\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Item. Weapon. Melee.\",\n \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"cycle\": \"The Dunwich Legacy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 3,\n \"level\": 0,\n \"traits\": \"Item. Clothing. Footwear.\",\n \"permanent\": false,\n \"weakness\": false,\n \"agilityIcons\": 1,\n \"cycle\": \"The Circle Undone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 1,\n \"traits\": \"Item. Mask.\",\n \"permanent\": false,\n \"weakness\": false,\n \"agilityIcons\": 1,\n \"wildIcons\": 1,\n \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 3,\n \"traits\": \"Ally. Miskatonic.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"wildIcons\": 1,\n \"cycle\": \"The Dunwich Legacy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 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": "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 \"cost\": 2,\n \"traits\": \"Item. Tome.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 2,\n \"cycle\": \"The Forgotten Age\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 0,\n \"level\": 0,\n \"traits\": \"Tactic.\",\n \"permanent\": false,\n \"weakness\": false,\n \"wildIcons\": 1,\n \"cycle\": \"The Dunwich Legacy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 3,\n \"level\": 0,\n \"traits\": \"Ally. Police.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"cycle\": \"The Dream-Eaters\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 3,\n \"level\": 4,\n \"traits\": \"Spell.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"intellectIcons\": 1,\n \"uses\": [\n {\n \"count\": 3,\n \"type\": \"Charge\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Path to Carcosa\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "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 \"cost\": 1,\n \"level\": 2,\n \"traits\": \"Item.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 2,\n \"cycle\": \"The Path to Carcosa\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 2,\n \"level\": 2,\n \"traits\": \"Spell. Song.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"uses\": [\n {\n \"count\": 5,\n \"type\": \"Charge\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Dunwich Legacy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 2,\n \"traits\": \"Item. Clothing.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"combatIcons\": 1,\n \"agilityIcons\": 1,\n \"cycle\": \"The Path to Carcosa\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 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 \"level\": 0,\n \"traits\": \"Talent.\",\n \"permanent\": true,\n \"weakness\": false,\n \"cycle\": \"The Forgotten Age\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 1,\n \"level\": 3,\n \"traits\": \"Tactic.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 2,\n \"combatIcons\": 1,\n \"agilityIcons\": 1,\n \"cycle\": \"Investigator Packs\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Insight.\",\n \"permanent\": false,\n \"weakness\": false,\n \"wildIcons\": 1,\n \"cycle\": \"The Path to Carcosa\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"level\": 0,\n \"traits\": \"Innate.\",\n \"permanent\": false,\n \"weakness\": false,\n \"wildIcons\": 1,\n \"cycle\": \"The Dunwich Legacy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 2,\n \"traits\": \"Insight.\",\n \"permanent\": false,\n \"weakness\": false,\n \"cycle\": \"The Circle Undone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"level\": 2,\n \"traits\": \"Innate. Developed.\",\n \"permanent\": false,\n \"weakness\": false,\n \"wildIcons\": 1,\n \"cycle\": \"The Forgotten Age\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 4,\n \"level\": 0,\n \"traits\": \"Item. Weapon. Firearm.\",\n \"permanent\": false,\n \"weakness\": false,\n \"agilityIcons\": 1,\n \"uses\": [\n {\n \"count\": 5,\n \"type\": \"Ammo\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Dream-Eaters\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 3,\n \"level\": 5,\n \"traits\": \"Ally. Criminal.\",\n \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"agilityIcons\": 1,\n \"wildIcons\": 1,\n \"cycle\": \"Investigator Packs\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 0,\n \"level\": 2,\n \"traits\": \"Talent.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 2,\n \"combatIcons\": 2,\n \"cycle\": \"Return to the Night of the Zealot\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "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 \"cost\": 0,\n \"traits\": \"Insight. Research.\",\n \"permanent\": false,\n \"weakness\": false,\n \"wildIcons\": 1,\n \"cycle\": \"The Dream-Eaters\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 3,\n \"level\": 4,\n \"traits\": \"Item. Tome. Cursed.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"agilityIcons\": 1,\n \"cycle\": \"The Innsmouth Conspiracy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"level\": 0,\n \"traits\": \"Innate.\",\n \"permanent\": false,\n \"weakness\": false,\n \"wildIcons\": 3,\n \"cycle\": \"The Dunwich Legacy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"level\": 0,\n \"traits\": \"Innate.\",\n \"permanent\": false,\n \"weakness\": false,\n \"wildIcons\": 3,\n \"cycle\": \"The Dream-Eaters\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 1,\n \"level\": 3,\n \"traits\": \"Item. Charm.\",\n \"permanent\": false,\n \"weakness\": false,\n \"wildIcons\": 1,\n \"cycle\": \"Return to the Night of the Zealot\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 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 \"wildIcons\": 3,\n \"cycle\": \"Investigator Packs\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Tactic. Improvised.\",\n \"permanent\": false,\n \"weakness\": false,\n \"cycle\": \"The Forgotten Age\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 3,\n \"level\": 1,\n \"traits\": \"Item. Tome.\",\n \"permanent\": false,\n \"weakness\": false,\n \"agilityIcons\": 1,\n \"uses\": [\n {\n \"count\": 4,\n \"type\": \"Secret\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Circle Undone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 4,\n \"traits\": \"Ally. Sorcerer.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"intellectIcons\": 1,\n \"wildIcons\": 1,\n \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 1,\n \"level\": 3,\n \"traits\": \"Item. Relic. Tome.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"agilityIcons\": 1,\n \"wildIcons\": 1,\n \"cycle\": \"Investigator Packs\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 3,\n \"traits\": \"Ally. Dreamer.\",\n \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"agilityIcons\": 1,\n \"wildIcons\": 1,\n \"cycle\": \"The Dream-Eaters\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 0,\n \"level\": 0,\n \"traits\": \"Favor. Gambit.\",\n \"permanent\": false,\n \"weakness\": false,\n \"cycle\": \"The Circle Undone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 1,\n \"traits\": \"Item. Relic.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"wildIcons\": 1,\n \"cycle\": \"The Innsmouth Conspiracy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cycle\": \"The Dunwich Legacy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "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 \"cost\": 3,\n \"level\": 2,\n \"traits\": \"Item. Weapon. Firearm. Illicit.\",\n \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"agilityIcons\": 1,\n \"uses\": [\n {\n \"count\": 5,\n \"type\": \"Ammo\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"Investigator Packs\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "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 \"cost\": 3,\n \"level\": 4,\n \"traits\": \"Ally. Miskatonic.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"agilityIcons\": 1,\n \"cycle\": \"The Dream-Eaters\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 2,\n \"traits\": \"Item. Weapon. Firearm. Illicit.\",\n \"permanent\": false,\n \"weakness\": false,\n \"agilityIcons\": 1,\n \"wildIcons\": 1,\n \"uses\": [\n {\n \"count\": 3,\n \"type\": \"Ammo\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Forgotten Age\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 3,\n \"level\": 3,\n \"traits\": \"Tarot.\",\n \"permanent\": false,\n \"weakness\": false,\n \"cycle\": \"Return to the Circle Undone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 2,\n \"level\": 2,\n \"traits\": \"Spell.\",\n \"permanent\": false,\n \"weakness\": false,\n \"cycle\": \"The Dream-Eaters\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"level\": 4,\n \"traits\": \"Blessed.\",\n \"permanent\": true,\n \"weakness\": false,\n \"cycle\": \"Return to the Circle Undone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Ally. Patron.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"cycle\": \"The Path to Carcosa\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 3,\n \"level\": 1,\n \"traits\": \"Talent.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"uses\": [\n {\n \"count\": 3,\n \"type\": \"Secret\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Path to Carcosa\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Spell.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"combatIcons\": 1,\n \"cycle\": \"Investigator Packs\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 3,\n \"level\": 5,\n \"traits\": \"Item. Tome.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 5,\n \"uses\": [\n {\n \"count\": 6,\n \"type\": \"Secret\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"Investigator Packs\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 4,\n \"level\": 2,\n \"traits\": \"Item. Weapon. Firearm. Illicit.\",\n \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"agilityIcons\": 1,\n \"uses\": [\n {\n \"count\": 4,\n \"type\": \"Ammo\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Innsmouth Conspiracy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 3,\n \"level\": 0,\n \"traits\": \"Ally. Miskatonic.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"cycle\": \"The Dunwich Legacy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 3,\n \"level\": 2,\n \"traits\": \"Item. Relic.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"agilityIcons\": 1,\n \"uses\": [\n {\n \"count\": 3,\n \"type\": \"Charge\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"Investigator Packs\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 3,\n \"level\": 0,\n \"traits\": \"Item. Tome. Occult.\",\n \"permanent\": false,\n \"weakness\": false,\n \"wildIcons\": 1,\n \"cycle\": \"The Innsmouth Conspiracy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 2,\n \"level\": 5,\n \"traits\": \"Insight.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"wildIcons\": 1,\n \"cycle\": \"The Path to Carcosa\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cycle\": \"The Forgotten Age\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 3,\n \"level\": 4,\n \"traits\": \"Spell.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"agilityIcons\": 1,\n \"uses\": [\n {\n \"count\": 3,\n \"type\": \"Charge\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Path to Carcosa\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 2,\n \"level\": 4,\n \"traits\": \"Insight.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 3,\n \"cycle\": \"Return to the Path to Carcosa\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cycle\": \"Promo\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 0,\n \"level\": 3,\n \"traits\": \"Ritual.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 2,\n \"uses\": [\n {\n \"count\": 0,\n \"type\": \"Secret\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Innsmouth Conspiracy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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\": [\n \"60313\"\n ],\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"cost\": 0,\n \"level\": 0,\n \"traits\": \"Gambit.\",\n \"permanent\": false,\n \"weakness\": false,\n \"wildIcons\": 1,\n \"cycle\": \"The Path to Carcosa\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "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 \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Item. Illicit.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"uses\": [\n {\n \"count\": 4,\n \"type\": \"Supply\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Dunwich Legacy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"weakness\": false,\n \"wildIcons\": 2,\n \"cycle\": \"The Dream-Eaters\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 4,\n \"level\": 5,\n \"traits\": \"Insight.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"intellectIcons\": 2,\n \"cycle\": \"The Dunwich Legacy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 0,\n \"traits\": \"Item.\",\n \"permanent\": false,\n \"weakness\": true,\n \"cycle\": \"The Innsmouth Conspiracy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "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 \"cost\": 10,\n \"traits\": \"Pact.\",\n \"permanent\": false,\n \"weakness\": true,\n \"cycle\": \"The Circle Undone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "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 \"cost\": 2,\n \"traits\": \"Item. Charm. Relic.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"wildIcons\": 2,\n \"cycle\": \"The Dream-Eaters\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 3,\n \"level\": 2,\n \"traits\": \"Spell.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"intellectIcons\": 1,\n \"cycle\": \"The Dunwich Legacy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "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 \"level\": 0,\n \"traits\": \"Fortune.\",\n \"permanent\": false,\n \"weakness\": false,\n \"wildIcons\": 1,\n \"cycle\": \"The Dunwich Legacy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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\": [\n \"60312\"\n ],\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Trick.\",\n \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"agilityIcons\": 1,\n \"cycle\": \"The Path to Carcosa\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 3,\n \"level\": 2,\n \"traits\": \"Supply. Illicit.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"intellectIcons\": 2,\n \"cycle\": \"Return to The Dunwich Legacy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 2,\n \"level\": 3,\n \"traits\": \"Spell.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"intellectIcons\": 1,\n \"uses\": [\n {\n \"count\": 3,\n \"type\": \"Charge\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Path to Carcosa\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 1,\n \"level\": 1,\n \"traits\": \"Ally. Wayfarer.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"cycle\": \"The Forgotten Age\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Ally. Miskatonic.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"cycle\": \"The Dunwich Legacy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 0,\n \"level\": 0,\n \"traits\": \"Fortune.\",\n \"permanent\": false,\n \"weakness\": false,\n \"agilityIcons\": 2,\n \"cycle\": \"The Path to Carcosa\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 2,\n \"level\": 2,\n \"traits\": \"Augury. Ritual.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"agilityIcons\": 1,\n \"cycle\": \"The Forgotten Age\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Spirit. Bold.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"cycle\": \"The Forgotten Age\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "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 \"cost\": 4,\n \"level\": 5,\n \"traits\": \"Item. Weapon. Melee. Blessed.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"combatIcons\": 2,\n \"cycle\": \"The Innsmouth Conspiracy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "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 \"cost\": 0,\n \"level\": 0,\n \"traits\": \"Talent.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"agilityIcons\": 1,\n \"cycle\": \"Investigator Packs\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 1,\n \"level\": 2,\n \"traits\": \"Tactic.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"combatIcons\": 1,\n \"agilityIcons\": 1,\n \"cycle\": \"The Dunwich Legacy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cycle\": \"The Innsmouth Conspiracy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 1,\n \"level\": 2,\n \"traits\": \"Item. Tool.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 2,\n \"cycle\": \"Return to the Path to Carcosa\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 0,\n \"level\": 2,\n \"traits\": \"Gambit.\",\n \"permanent\": false,\n \"weakness\": false,\n \"wildIcons\": 1,\n \"cycle\": \"Investigator Packs\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Insight. Trick.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"intellectIcons\": 1,\n \"cycle\": \"The Forgotten Age\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 4,\n \"level\": 0,\n \"traits\": \"Ally. Detective. Police.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"cycle\": \"The Circle Undone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 3,\n \"level\": 0,\n \"traits\": \"Condition.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"cycle\": \"The Dunwich Legacy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "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 \"cost\": 3,\n \"level\": 2,\n \"traits\": \"Item. Tome.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"agilityIcons\": 1,\n \"uses\": [\n {\n \"count\": 4,\n \"type\": \"Secret\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"Investigator Packs\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Item. Weapon. Melee. Illicit.\",\n \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"cycle\": \"The Path to Carcosa\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Ally. Miskatonic.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"cycle\": \"The Dunwich Legacy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 0,\n \"level\": 0,\n \"traits\": \"Trick.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"agilityIcons\": 1,\n \"cycle\": \"The Forgotten Age\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Tactic.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"agilityIcons\": 1,\n \"cycle\": \"The Dream-Eaters\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 4,\n \"level\": 0,\n \"traits\": \"Item.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"uses\": [\n {\n \"count\": 3,\n \"type\": \"Supply\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Forgotten Age\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 2,\n \"traits\": \"Ally. Veteran.\",\n \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"wildIcons\": 1,\n \"cycle\": \"The Circle Undone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "2c76d9",
"Name": "Card",
"Transform": {
"posX": 101.21093,
"posY": 1.985303,
"posZ": -15.6491117,
"rotX": 359.989929,
"rotY": 269.9828,
"rotZ": 359.9846,
"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 \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "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 \"cost\": 2,\n \"level\": 4,\n \"traits\": \"Spell.\",\n \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 2,\n \"cycle\": \"The Circle Undone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "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 \"cost\": 3,\n \"level\": 1,\n \"traits\": \"Item. Weapon. Melee. Relic. Cursed.\",\n \"permanent\": false,\n \"weakness\": false,\n \"bonded\": [\n {\n \"count\": 3,\n \"id\": \"06019\"\n }\n ],\n \"combatIcons\": 1,\n \"cycle\": \"The Dream-Eaters\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 2,\n \"level\": 2,\n \"traits\": \"Spell.\",\n \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"agilityIcons\": 2,\n \"cycle\": \"Investigator Packs\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"level\": 3,\n \"traits\": \"Talent.\",\n \"permanent\": true,\n \"weakness\": false,\n \"cycle\": \"The Dunwich Legacy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 5,\n \"level\": 2,\n \"traits\": \"Fortune.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"cycle\": \"Return to the Night of the Zealot\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "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 \"level\": 0,\n \"traits\": \"Fortune.\",\n \"permanent\": false,\n \"weakness\": false,\n \"wildIcons\": 1,\n \"cycle\": \"The Dunwich Legacy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 1,\n \"level\": 5,\n \"traits\": \"Spirit.\",\n \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"wildIcons\": 1,\n \"cycle\": \"The Dunwich Legacy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"level\": 3,\n \"traits\": \"Practiced. Cursed.\",\n \"permanent\": false,\n \"weakness\": false,\n \"cycle\": \"The Innsmouth Conspiracy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 1,\n \"traits\": \"Item. Relic.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"wildIcons\": 1,\n \"cycle\": \"The Innsmouth Conspiracy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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\": [\n \"60519\"\n ],\n \"type\": \"Skill\",\n \"class\": \"Survivor\",\n \"level\": 0,\n \"traits\": \"Innate.\",\n \"permanent\": false,\n \"weakness\": false,\n \"cycle\": \"The Forgotten Age\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Ally. Witch.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"cycle\": \"The Forgotten Age\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "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 \"cost\": 0,\n \"level\": 0,\n \"traits\": \"Spirit. Tactic.\",\n \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"agilityIcons\": 1,\n \"cycle\": \"Investigator Packs\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 3,\n \"level\": 2,\n \"traits\": \"Fortune. Blessed.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 2,\n \"cycle\": \"The Innsmouth Conspiracy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Spirit.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 2,\n \"cycle\": \"Investigator Packs\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "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 \"level\": 0,\n \"traits\": \"Innate.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"cycle\": \"The Forgotten Age\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 2,\n \"level\": 5,\n \"traits\": \"Ally. Conspirator.\",\n \"permanent\": false,\n \"weakness\": false,\n \"wildIcons\": 1,\n \"cycle\": \"The Dunwich Legacy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"level\": 0,\n \"traits\": \"Innate.\",\n \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"agilityIcons\": 1,\n \"cycle\": \"The Circle Undone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 3,\n \"level\": 3,\n \"traits\": \"Item. Weapon. Firearm.\",\n \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"agilityIcons\": 1,\n \"uses\": [\n {\n \"count\": 3,\n \"type\": \"Ammo\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Forgotten Age\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"wildIcons\": 1,\n \"negativeIcons\": true,\n \"cycle\": \"The Innsmouth Conspiracy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 0,\n \"level\": 0,\n \"traits\": \"Item. Occult. Tome.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"cycle\": \"The Path to Carcosa\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"level\": 0,\n \"traits\": \"Spirit.\",\n \"permanent\": false,\n \"weakness\": false,\n \"cycle\": \"The Dream-Eaters\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"level\": 3,\n \"traits\": \"Talent.\",\n \"permanent\": true,\n \"weakness\": false,\n \"cycle\": \"The Circle Undone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 12,\n \"level\": 0,\n \"traits\": \"Insight.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 2,\n \"cycle\": \"Investigator Packs\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cycle\": \"The Path to Carcosa\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 3,\n \"level\": 1,\n \"traits\": \"Ally. Wayfarer.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"cycle\": \"The Forgotten Age\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Talent. Illicit.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"cycle\": \"Core\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 4,\n \"traits\": \"Omen. Tarot.\",\n \"permanent\": false,\n \"weakness\": true,\n \"basicWeaknessCount\": 2,\n \"cycle\": \"The Circle Undone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 2,\n \"level\": 3,\n \"traits\": \"Talent.\",\n \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"agilityIcons\": 1,\n \"cycle\": \"Investigator Packs\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 1,\n \"level\": 1,\n \"traits\": \"Item. Relic. Occult.\",\n \"permanent\": false,\n \"weakness\": false,\n \"bonded\": [\n {\n \"count\": 1,\n \"id\": \"06022\"\n }\n ],\n \"wildIcons\": 1,\n \"cycle\": \"The Dream-Eaters\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "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 \"level\": 0,\n \"traits\": \"Desperate.\",\n \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 4,\n \"cycle\": \"The Path to Carcosa\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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\": [\n \"99002\"\n ],\n \"type\": \"Event\",\n \"class\": \"Neutral\",\n \"cost\": 3,\n \"traits\": \"Spell. Song.\",\n \"permanent\": false,\n \"weakness\": false,\n \"wildIcons\": 2,\n \"cycle\": \"The Circle Undone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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\": [\n \"99003\"\n ],\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Avatar.\",\n \"permanent\": false,\n \"weakness\": true,\n \"cycle\": \"The Circle Undone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 0,\n \"level\": 0,\n \"traits\": \"Spirit.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"cycle\": \"Investigator Packs\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cycle\": \"The Dunwich Legacy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 3,\n \"level\": 3,\n \"traits\": \"Tarot.\",\n \"permanent\": false,\n \"weakness\": false,\n \"cycle\": \"Return to the Circle Undone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 3,\n \"level\": 3,\n \"traits\": \"Tarot.\",\n \"permanent\": false,\n \"weakness\": false,\n \"cycle\": \"Return to the Circle Undone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 0,\n \"level\": 1,\n \"traits\": \"Spell. Spirit. Cursed.\",\n \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 2,\n \"cycle\": \"The Innsmouth Conspiracy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Tactic. Fated.\",\n \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 2,\n \"cycle\": \"The Forgotten Age\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "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 \"cost\": 0,\n \"level\": 2,\n \"traits\": \"Spirit.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"agilityIcons\": 1,\n \"cycle\": \"The Circle Undone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"level\": 5,\n \"traits\": \"Talent. Cursed.\",\n \"permanent\": true,\n \"weakness\": false,\n \"cycle\": \"Investigator Packs\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 4,\n \"level\": 4,\n \"traits\": \"Item. Tool. Weapon. Melee.\",\n \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 3,\n \"uses\": [\n {\n \"count\": 3,\n \"type\": \"Supply\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"Investigator Packs\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 2,\n \"level\": 4,\n \"traits\": \"Ritual.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"wildIcons\": 1,\n \"cycle\": \"Investigator Packs\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 3,\n \"level\": 3,\n \"traits\": \"Tarot.\",\n \"permanent\": false,\n \"weakness\": false,\n \"cycle\": \"Return to the Circle Undone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "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 \"level\": 0,\n \"traits\": \"Innate.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"intellectIcons\": 1,\n \"cycle\": \"The Circle Undone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 1,\n \"level\": 2,\n \"traits\": \"Insight. Tactic.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"intellectIcons\": 1,\n \"agilityIcons\": 1,\n \"cycle\": \"The Path to Carcosa\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"level\": 3,\n \"traits\": \"Spell. Pact.\",\n \"permanent\": true,\n \"weakness\": false,\n \"cycle\": \"The Dunwich Legacy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "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 \"cost\": 3,\n \"level\": 3,\n \"traits\": \"Ally. Artist. Dreamer.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"agilityIcons\": 1,\n \"cycle\": \"The Dream-Eaters\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 3,\n \"level\": 3,\n \"traits\": \"Tarot.\",\n \"permanent\": false,\n \"weakness\": false,\n \"cycle\": \"Return to the Circle Undone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 0,\n \"level\": 4,\n \"traits\": \"Spell.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 3,\n \"cycle\": \"Investigator Packs\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 3,\n \"level\": 1,\n \"traits\": \"Tarot.\",\n \"permanent\": false,\n \"weakness\": false,\n \"cycle\": \"The Circle Undone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 0,\n \"level\": 0,\n \"traits\": \"Trick.\",\n \"permanent\": false,\n \"weakness\": false,\n \"agilityIcons\": 2,\n \"cycle\": \"Investigator Packs\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 3,\n \"level\": 1,\n \"traits\": \"Tarot.\",\n \"permanent\": false,\n \"weakness\": false,\n \"cycle\": \"The Circle Undone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 3,\n \"traits\": \"Omen. Tarot.\",\n \"permanent\": false,\n \"weakness\": true,\n \"basicWeaknessCount\": 2,\n \"cycle\": \"Return to the Circle Undone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 1,\n \"level\": 1,\n \"traits\": \"Talent. Composure.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"intellectIcons\": 1,\n \"cycle\": \"The Path to Carcosa\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 2,\n \"level\": 5,\n \"traits\": \"Spirit. Tactic.\",\n \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 4,\n \"cycle\": \"Investigator Packs\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 6,\n \"level\": 5,\n \"traits\": \"Item. Weapon. Firearm.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"combatIcons\": 1,\n \"uses\": [\n {\n \"count\": 3,\n \"type\": \"Ammo\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Dunwich Legacy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 2,\n \"level\": 2,\n \"traits\": \"Spirit.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"combatIcons\": 1,\n \"agilityIcons\": 1,\n \"cycle\": \"The Forgotten Age\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"level\": 2,\n \"traits\": \"Covenant. Blessed.\",\n \"permanent\": true,\n \"weakness\": false,\n \"cycle\": \"The Innsmouth Conspiracy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "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 \"cost\": 4,\n \"level\": 3,\n \"traits\": \"Ally.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"intellectIcons\": 1,\n \"cycle\": \"Investigator Packs\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Item. Science.\",\n \"permanent\": false,\n \"weakness\": false,\n \"wildIcons\": 1,\n \"cycle\": \"The Dunwich Legacy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Item. Weapon. Firearm. Illicit.\",\n \"permanent\": false,\n \"weakness\": false,\n \"agilityIcons\": 1,\n \"uses\": [\n {\n \"count\": 5,\n \"type\": \"Ammo\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Forgotten Age\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 2,\n \"traits\": \"Ally. Miskatonic.\",\n \"permanent\": false,\n \"weakness\": false,\n \"wildIcons\": 2,\n \"cycle\": \"The Dunwich Legacy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 2,\n \"level\": 2,\n \"traits\": \"Item. Weapon. Firearm.\",\n \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 2,\n \"uses\": [\n {\n \"count\": 6,\n \"type\": \"Ammo\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"Return to the Path to Carcosa\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Item. Armor.\",\n \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"cycle\": \"Investigator Packs\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 1,\n \"level\": 4,\n \"traits\": \"Item. Science.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 2,\n \"uses\": [\n {\n \"count\": 4,\n \"type\": \"Supply\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Dunwich Legacy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 3,\n \"level\": 3,\n \"traits\": \"Item. Relic. Weapon. Melee.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"combatIcons\": 1,\n \"uses\": [\n {\n \"count\": 4,\n \"type\": \"Charge\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Circle Undone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"level\": 0,\n \"traits\": \"Desperate.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 4,\n \"cycle\": \"The Path to Carcosa\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "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 \"level\": 1,\n \"traits\": \"Talent.\",\n \"permanent\": true,\n \"weakness\": false,\n \"cycle\": \"The Dunwich Legacy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Item. Weapon. Melee.\",\n \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"cycle\": \"The Forgotten Age\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 3,\n \"level\": 0,\n \"traits\": \"Spell.\",\n \"permanent\": false,\n \"weakness\": false,\n \"agilityIcons\": 1,\n \"uses\": [\n {\n \"count\": 3,\n \"type\": \"Charge\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"Investigator Packs\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 4,\n \"level\": 2,\n \"traits\": \"Item. Weapon. Firearm.\",\n \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"agilityIcons\": 1,\n \"uses\": [\n {\n \"count\": 4,\n \"type\": \"Ammo\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Path to Carcosa\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"level\": 2,\n \"traits\": \"Innate. Developed.\",\n \"permanent\": false,\n \"weakness\": false,\n \"wildIcons\": 1,\n \"cycle\": \"The Dunwich Legacy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "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 \"cost\": 0,\n \"level\": 0,\n \"traits\": \"Spell. Insight.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"agilityIcons\": 1,\n \"cycle\": \"The Dunwich Legacy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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\": [\n \"60514\"\n ],\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Fortune.\",\n \"permanent\": false,\n \"weakness\": false,\n \"agilityIcons\": 2,\n \"cycle\": \"The Forgotten Age\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"level\": 2,\n \"traits\": \"Practiced. Expert.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 3,\n \"cycle\": \"Investigator Packs\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 0,\n \"level\": 0,\n \"traits\": \"Spirit.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 2,\n \"cycle\": \"The Path to Carcosa\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cycle\": \"The Path to Carcosa\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "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 \"cost\": 0,\n \"traits\": \"Item. Relic.\",\n \"permanent\": false,\n \"weakness\": false,\n \"cycle\": \"The Circle Undone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 3,\n \"traits\": \"Ally. Wayfarer.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"wildIcons\": 1,\n \"cycle\": \"The Forgotten Age\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "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 \"weakness\": false,\n \"cycle\": \"The Dream-Eaters\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 1,\n \"level\": 1,\n \"traits\": \"Insight.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 2,\n \"cycle\": \"Investigator Packs\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"level\": 0,\n \"traits\": \"Innate.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"combatIcons\": 1,\n \"cycle\": \"The Circle Undone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "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 \"cost\": 3,\n \"level\": 0,\n \"traits\": \"Spell.\",\n \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"uses\": [\n {\n \"count\": 4,\n \"type\": \"Charge\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"Investigator Packs\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"level\": 0,\n \"traits\": \"Fortune. Practiced.\",\n \"permanent\": false,\n \"weakness\": false,\n \"wildIcons\": 1,\n \"cycle\": \"Investigator Packs\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 1,\n \"traits\": \"Item. Relic. Weapon. Melee.\",\n \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 2,\n \"wildIcons\": 1,\n \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Item. Relic. Tome.\",\n \"permanent\": false,\n \"weakness\": false,\n \"wildIcons\": 1,\n \"uses\": [\n {\n \"count\": 5,\n \"type\": \"Secret\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"Investigator Packs\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 4,\n \"level\": 3,\n \"traits\": \"Ally. Witch.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 2,\n \"uses\": [\n {\n \"count\": 3,\n \"type\": \"Secret\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Circle Undone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 1,\n \"traits\": \"Item. Relic. Clothing.\",\n \"permanent\": false,\n \"weakness\": false,\n \"agilityIcons\": 1,\n \"wildIcons\": 1,\n \"cycle\": \"The Innsmouth Conspiracy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cycle\": \"The Circle Undone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 4,\n \"traits\": \"Ally. Creature. Dreamlands.\",\n \"permanent\": false,\n \"weakness\": false,\n \"wildIcons\": 2,\n \"cycle\": \"Promo\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"weakness\": false,\n \"uses\": [\n {\n \"count\": 3,\n \"type\": \"Charge\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Dream-Eaters\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 3,\n \"level\": 1,\n \"traits\": \"Tactic. Trap.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"agilityIcons\": 1,\n \"cycle\": \"The Innsmouth Conspiracy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "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 \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Ritual.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 2,\n \"cycle\": \"Investigator Packs\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 2,\n \"traits\": \"Talent.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"intellectIcons\": 1,\n \"wildIcons\": 1,\n \"cycle\": \"The Circle Undone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "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 \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Gambit. Tactic.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"intellectIcons\": 1,\n \"cycle\": \"The Dream-Eaters\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 1,\n \"level\": 2,\n \"traits\": \"Insight. Spirit.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"intellectIcons\": 2,\n \"cycle\": \"Investigator Packs\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 3,\n \"level\": 3,\n \"traits\": \"Spell. Blessed.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"wildIcons\": 1,\n \"cycle\": \"The Innsmouth Conspiracy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"level\": 1,\n \"traits\": \"Fortune. Research.\",\n \"permanent\": false,\n \"weakness\": false,\n \"wildIcons\": 1,\n \"cycle\": \"The Dream-Eaters\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 5,\n \"level\": 2,\n \"traits\": \"Ally. Criminal. Cursed.\",\n \"permanent\": false,\n \"weakness\": false,\n \"wildIcons\": 1,\n \"cycle\": \"The Innsmouth Conspiracy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cycle\": \"The Forgotten Age\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 3,\n \"traits\": \"Item. Weapon. Firearm.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"combatIcons\": 1,\n \"agilityIcons\": 1,\n \"wildIcons\": 1,\n \"uses\": [\n {\n \"count\": 4,\n \"type\": \"Ammo\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 5,\n \"level\": 4,\n \"traits\": \"Item. Weapon. Firearm. Illicit.\",\n \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 2,\n \"uses\": [\n {\n \"count\": 4,\n \"type\": \"Ammo\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Dunwich Legacy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Spell.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"uses\": [\n {\n \"count\": 3,\n \"type\": \"Charge\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Dream-Eaters\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cycle\": \"The Innsmouth Conspiracy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 0,\n \"level\": 0,\n \"traits\": \"Insight.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"cycle\": \"The Circle Undone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cycle\": \"The Path to Carcosa\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"level\": 1,\n \"traits\": \"Innate. Cursed.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"wildIcons\": 2,\n \"cycle\": \"The Innsmouth Conspiracy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 4,\n \"level\": 5,\n \"traits\": \"Spell. Ritual.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"wildIcons\": 1,\n \"uses\": [\n {\n \"count\": 7,\n \"type\": \"Charge\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Forgotten Age\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "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 \"cost\": 4,\n \"level\": 0,\n \"traits\": \"Spell.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"uses\": [\n {\n \"count\": 3,\n \"type\": \"Charge\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Dunwich Legacy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 4,\n \"level\": 0,\n \"traits\": \"Ally. Wayfarer.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"uses\": [\n {\n \"count\": 3,\n \"type\": \"Supply\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Forgotten Age\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "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 \"level\": 1,\n \"traits\": \"Practiced.\",\n \"permanent\": false,\n \"weakness\": false,\n \"wildIcons\": 1,\n \"cycle\": \"The Innsmouth Conspiracy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 1,\n \"level\": 1,\n \"traits\": \"Fortune.\",\n \"permanent\": false,\n \"weakness\": false,\n \"agilityIcons\": 1,\n \"cycle\": \"The Path to Carcosa\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 4,\n \"level\": 0,\n \"traits\": \"Item. Charm.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"cycle\": \"The Path to Carcosa\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cycle\": \"The Circle Undone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"level\": 0,\n \"traits\": \"Fortune. Insight.\",\n \"permanent\": false,\n \"weakness\": false,\n \"cycle\": \"The Dream-Eaters\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"level\": 2,\n \"traits\": \"Innate. Developed.\",\n \"permanent\": false,\n \"weakness\": false,\n \"agilityIcons\": 3,\n \"cycle\": \"Investigator Packs\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"weakness\": true,\n \"cycle\": \"The Dream-Eaters\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 3,\n \"traits\": \"Item. Relic.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"intellectIcons\": 1,\n \"wildIcons\": 1,\n \"uses\": [\n {\n \"count\": 4,\n \"type\": \"Charge\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 2,\n \"traits\": \"Ally. Medic.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"intellectIcons\": 1,\n \"wildIcons\": 1,\n \"cycle\": \"Investigator Packs\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 0,\n \"level\": 1,\n \"traits\": \"Upgrade.\",\n \"permanent\": false,\n \"weakness\": false,\n \"agilityIcons\": 1,\n \"cycle\": \"The Circle Undone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 2,\n \"level\": 3,\n \"traits\": \"Ally. Criminal.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"agilityIcons\": 1,\n \"cycle\": \"The Dream-Eaters\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 1,\n \"level\": 1,\n \"traits\": \"Trick.\",\n \"permanent\": false,\n \"weakness\": false,\n \"agilityIcons\": 2,\n \"cycle\": \"The Dunwich Legacy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 1,\n \"level\": 1,\n \"traits\": \"Spell. Spirit. Blessed.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"combatIcons\": 1,\n \"cycle\": \"The Innsmouth Conspiracy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 2,\n \"level\": 3,\n \"traits\": \"Talent.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"cycle\": \"The Forgotten Age\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 1,\n \"level\": 1,\n \"traits\": \"Tactic. Blessed.\",\n \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"agilityIcons\": 1,\n \"cycle\": \"The Innsmouth Conspiracy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "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 \"level\": 2,\n \"traits\": \"Innate. Fortune.\",\n \"permanent\": false,\n \"weakness\": false,\n \"wildIcons\": 1,\n \"cycle\": \"The Dunwich Legacy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 0,\n \"traits\": \"Spell.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"intellectIcons\": 1,\n \"combatIcons\": 1,\n \"cycle\": \"The Circle Undone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 0,\n \"traits\": \"Spirit.\",\n \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"agilityIcons\": 1,\n \"wildIcons\": 1,\n \"cycle\": \"The Circle Undone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Favor.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"agilityIcons\": 1,\n \"cycle\": \"The Path to Carcosa\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "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 \"level\": 3,\n \"traits\": \"Talent.\",\n \"permanent\": true,\n \"weakness\": false,\n \"cycle\": \"The Dunwich Legacy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 3,\n \"level\": 0,\n \"traits\": \"Item. Relic.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"cycle\": \"The Forgotten Age\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "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-t\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"cost\": 4,\n \"level\": 0,\n \"traits\": \"Item. Weapon. Firearm.\",\n \"permanent\": false,\n \"weakness\": false,\n \"agilityIcons\": 1,\n \"uses\": [\n {\n \"count\": 5,\n \"type\": \"Ammo\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Dream-Eaters\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 4,\n \"traits\": \"Monster. Nightgaunt. Power.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"agilityIcons\": 1,\n \"wildIcons\": 1,\n \"uses\": [\n {\n \"count\": 3,\n \"type\": \"\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cycle\": \"The Dream-Eaters\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 3,\n \"level\": 3,\n \"traits\": \"Item. Weapon. Firearm. Illicit.\",\n \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"uses\": [\n {\n \"count\": 2,\n \"type\": \"Ammo\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Path to Carcosa\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 1,\n \"level\": 1,\n \"traits\": \"Insight. Tactic.\",\n \"permanent\": false,\n \"weakness\": false,\n \"wildIcons\": 1,\n \"cycle\": \"The Dream-Eaters\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 3,\n \"level\": 0,\n \"traits\": \"Ritual.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"uses\": [\n {\n \"count\": 4,\n \"type\": \"Charge\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"Investigator Packs\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 2,\n \"level\": 3,\n \"traits\": \"Item. Relic.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"intellectIcons\": 1,\n \"cycle\": \"The Forgotten Age\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 1,\n \"level\": 2,\n \"traits\": \"Spell.\",\n \"permanent\": false,\n \"weakness\": false,\n \"cycle\": \"The Dream-Eaters\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "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 \"cost\": 1,\n \"level\": 1,\n \"traits\": \"Talent. Composure.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"combatIcons\": 1,\n \"cycle\": \"The Path to Carcosa\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"level\": 0,\n \"traits\": \"Desperate.\",\n \"permanent\": false,\n \"weakness\": false,\n \"agilityIcons\": 4,\n \"cycle\": \"The Path to Carcosa\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"level\": 2,\n \"traits\": \"Covenant. Blessed.\",\n \"permanent\": true,\n \"weakness\": false,\n \"cycle\": \"The Innsmouth Conspiracy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 2,\n \"level\": 3,\n \"traits\": \"Item. Tome. Charm.\",\n \"permanent\": false,\n \"weakness\": false,\n \"bonded\": [\n {\n \"count\": 1,\n \"id\": \"06113\"\n }\n ],\n \"willpowerIcons\": 1,\n \"combatIcons\": 1,\n \"cycle\": \"The Dream-Eaters\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cycle\": \"Return to the Path to Carcosa\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "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 \"alternate_ids\": [\n \"01683\"\n ],\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"cost\": 2,\n \"level\": 3,\n \"traits\": \"Talent. Science.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 2,\n \"uses\": [\n {\n \"count\": 4,\n \"type\": \"Supply\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Path to Carcosa\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 (Taboo)",
"Description": "Seeker",
"GMNotes": "{\n \"id\": \"05116-t\",\n \"type\": \"Asset\",\n \"class\": \"Seeker|Mystic\",\n \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Item. Tome.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"uses\": [\n {\n \"count\": 3,\n \"type\": \"Secret\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Circle Undone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "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 \"intellectIcons\": 2,\n \"uses\": [\n {\n \"count\": 3,\n \"type\": \"Secret\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Circle Undone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 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 \"cost\": 0,\n \"level\": 2,\n \"traits\": \"Talent.\",\n \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 2,\n \"agilityIcons\": 2,\n \"cycle\": \"Return to the Night of the Zealot\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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\": [\n \"60314\"\n ],\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Trick.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"agilityIcons\": 1,\n \"cycle\": \"The Forgotten Age\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "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\": [\n \"60518\"\n ],\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Fortune.\",\n \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 2,\n \"cycle\": \"The Dunwich Legacy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cycle\": \"The Innsmouth Conspiracy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"level\": 3,\n \"traits\": \"Talent.\",\n \"permanent\": true,\n \"weakness\": false,\n \"cycle\": \"The Dunwich Legacy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 2,\n \"level\": 1,\n \"traits\": \"Spirit.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 2,\n \"cycle\": \"Investigator Packs\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "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 \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Item. Relic.\",\n \"permanent\": false,\n \"weakness\": false,\n \"bonded\": [\n {\n \"count\": 1,\n \"id\": \"06025\"\n }\n ],\n \"willpowerIcons\": 1,\n \"cycle\": \"The Dream-Eaters\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 0,\n \"level\": 2,\n \"traits\": \"Spell.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"intellectIcons\": 1,\n \"uses\": [\n {\n \"count\": 4,\n \"type\": \"Charge\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"Return to the Path to Carcosa\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 2,\n \"level\": 2,\n \"traits\": \"Item.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"combatIcons\": 1,\n \"cycle\": \"Return to The Dunwich Legacy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cycle\": \"The Innsmouth Conspiracy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"level\": 0,\n \"traits\": \"Innate.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"intellectIcons\": 1,\n \"agilityIcons\": 1,\n \"cycle\": \"The Path to Carcosa\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 3,\n \"level\": 5,\n \"traits\": \"Spell.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"combatIcons\": 2,\n \"uses\": [\n {\n \"count\": 4,\n \"type\": \"Charge\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"Investigator Packs\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 6,\n \"level\": 3,\n \"traits\": \"Item. Weapon. Firearm. Illicit.\",\n \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 2,\n \"uses\": [\n {\n \"count\": 5,\n \"type\": \"Ammo\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Circle Undone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 3,\n \"level\": 3,\n \"traits\": \"Spirit.\",\n \"permanent\": false,\n \"weakness\": false,\n \"cycle\": \"The Path to Carcosa\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Gambit. Trick.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"agilityIcons\": 1,\n \"cycle\": \"The Circle Undone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 1,\n \"level\": 3,\n \"traits\": \"Trick.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"agilityIcons\": 2,\n \"cycle\": \"The Circle Undone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 2,\n \"level\": 4,\n \"traits\": \"Talent.\",\n \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 2,\n \"agilityIcons\": 2,\n \"uses\": [\n {\n \"count\": 2,\n \"type\": \"Resource\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Innsmouth Conspiracy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Talent.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"cycle\": \"Core\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 4,\n \"level\": 4,\n \"traits\": \"Item. Weapon. Firearm.\",\n \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"agilityIcons\": 1,\n \"uses\": [\n {\n \"count\": 3,\n \"type\": \"Ammo\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Dunwich Legacy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 1,\n \"level\": 3,\n \"traits\": \"Item. Tome.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"intellectIcons\": 1,\n \"uses\": [\n {\n \"count\": 4,\n \"type\": \"Secret\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Circle Undone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "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 \"cost\": 0,\n \"level\": 0,\n \"traits\": \"Spirit.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 2,\n \"cycle\": \"The Dream-Eaters\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"level\": 3,\n \"traits\": \"Talent.\",\n \"permanent\": true,\n \"weakness\": false,\n \"cycle\": \"The Dunwich Legacy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 3,\n \"level\": 5,\n \"traits\": \"Spell.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"combatIcons\": 2,\n \"uses\": [\n {\n \"count\": 4,\n \"type\": \"Charge\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Dunwich Legacy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 1,\n \"traits\": \"Spell.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 2,\n \"wildIcons\": 1,\n \"uses\": [\n {\n \"count\": 3,\n \"type\": \"Charge\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "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 \"cost\": 3,\n \"level\": 5,\n \"traits\": \"Item. Relic.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"wildIcons\": 1,\n \"cycle\": \"The Path to Carcosa\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 1,\n \"level\": 3,\n \"traits\": \"Item. Charm. Cursed.\",\n \"permanent\": false,\n \"weakness\": false,\n \"bonded\": [\n {\n \"count\": 3,\n \"id\": \"06331\"\n }\n ],\n \"willpowerIcons\": 1,\n \"wildIcons\": 1,\n \"cycle\": \"The Dream-Eaters\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "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 \"cost\": 0,\n \"level\": 1,\n \"traits\": \"Insight.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"cycle\": \"The Path to Carcosa\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 2,\n \"level\": 1,\n \"traits\": \"Spell.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"agilityIcons\": 1,\n \"cycle\": \"The Circle Undone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 3,\n \"level\": 1,\n \"traits\": \"Tarot.\",\n \"permanent\": false,\n \"weakness\": false,\n \"cycle\": \"The Circle Undone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cycle\": \"The Path to Carcosa\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 2,\n \"traits\": \"Ally. Monster. Ooze.\",\n \"permanent\": false,\n \"weakness\": false,\n \"agilityIcons\": 1,\n \"wildIcons\": 1,\n \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 4,\n \"level\": 0,\n \"traits\": \"Spell. Cursed.\",\n \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"uses\": [\n {\n \"count\": 3,\n \"type\": \"Charge\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Innsmouth Conspiracy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 1,\n \"level\": 4,\n \"traits\": \"Item. Science.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 2,\n \"uses\": [\n {\n \"count\": 3,\n \"type\": \"Supply\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"Return to The Dunwich Legacy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"alternate_ids\": [\n \"01692-t\",\n \"01692\"\n ],\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"cost\": 2,\n \"level\": 3,\n \"traits\": \"Fortune. Blessed.\",\n \"permanent\": false,\n \"weakness\": false,\n \"wildIcons\": 2,\n \"cycle\": \"The Circle Undone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 3,\n \"level\": 1,\n \"traits\": \"Spell.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"uses\": [\n {\n \"count\": 3,\n \"type\": \"Charge\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"Return to the Path to Carcosa\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "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 \"level\": 0,\n \"traits\": \"Innate.\",\n \"permanent\": false,\n \"weakness\": false,\n \"wildIcons\": 2,\n \"cycle\": \"Core\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Spirit.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 2,\n \"cycle\": \"The Forgotten Age\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 1,\n \"level\": 2,\n \"traits\": \"Spell. Paradox.\",\n \"permanent\": false,\n \"weakness\": false,\n \"cycle\": \"The Path to Carcosa\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"traits\": \"\",\n \"permanent\": true,\n \"weakness\": false,\n \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 0,\n \"level\": 3,\n \"traits\": \"Spirit.\",\n \"permanent\": false,\n \"weakness\": false,\n \"wildIcons\": 1,\n \"cycle\": \"The Dream-Eaters\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Tactic.\",\n \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"agilityIcons\": 1,\n \"cycle\": \"Return to the Path to Carcosa\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 1,\n \"traits\": \"Ally. Creature. Dreamlands.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"agilityIcons\": 1,\n \"cycle\": \"The Dream-Eaters\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 4,\n \"level\": 5,\n \"traits\": \"Item. Weapon. Firearm.\",\n \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 2,\n \"wildIcons\": 1,\n \"uses\": [\n {\n \"count\": 4,\n \"type\": \"Ammo\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Forgotten Age\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 0,\n \"level\": 2,\n \"traits\": \"Spell.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 2,\n \"cycle\": \"The Path to Carcosa\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 1,\n \"level\": 1,\n \"traits\": \"Talent. Composure.\",\n \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"agilityIcons\": 1,\n \"cycle\": \"The Path to Carcosa\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"traits\": \"\",\n \"permanent\": true,\n \"weakness\": false,\n \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cycle\": \"The Forgotten Age\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 0,\n \"level\": 0,\n \"traits\": \"Talent.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"intellectIcons\": 1,\n \"cycle\": \"Investigator Packs\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 2,\n \"level\": 3,\n \"traits\": \"Ritual.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"intellectIcons\": 1,\n \"uses\": [\n {\n \"count\": 4,\n \"type\": \"Secret\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Innsmouth Conspiracy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Spirit. Tactic.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"combatIcons\": 1,\n \"cycle\": \"Investigator Packs\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 3,\n \"level\": 2,\n \"traits\": \"Ritual.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"uses\": [\n {\n \"count\": 3,\n \"type\": \"Secret\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Dream-Eaters\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 0,\n \"level\": 2,\n \"traits\": \"Tactic.\",\n \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"agilityIcons\": 1,\n \"cycle\": \"The Path to Carcosa\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"level\": 2,\n \"traits\": \"Innate. Developed.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 3,\n \"cycle\": \"Investigator Packs\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 1,\n \"level\": 3,\n \"traits\": \"Ritual.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"agilityIcons\": 1,\n \"cycle\": \"The Forgotten Age\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cycle\": \"The Forgotten Age\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "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 \"level\": 0,\n \"traits\": \"Innate.\",\n \"permanent\": false,\n \"weakness\": false,\n \"agilityIcons\": 1,\n \"cycle\": \"Investigator Packs\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 3,\n \"level\": 3,\n \"traits\": \"Spell.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"agilityIcons\": 1,\n \"uses\": [\n {\n \"count\": 3,\n \"type\": \"Charge\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"Investigator Packs\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 0,\n \"level\": 0,\n \"traits\": \"Item. Charm.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"cycle\": \"The Path to Carcosa\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 2,\n \"level\": 2,\n \"traits\": \"Talent.\",\n \"permanent\": false,\n \"weakness\": false,\n \"cycle\": \"The Forgotten Age\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Ritual. Cursed.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"cycle\": \"The Innsmouth Conspiracy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "98c8d8",
"Name": "Card",
"Transform": {
"posX": 49.07656,
"posY": 2.32548165,
"posZ": -96.09033,
"rotX": 359.1739,
"rotY": 269.995117,
"rotZ": 0.0169263538,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Dark Memory",
"Description": "",
"GMNotes": "{\n \"id\": \"01513\",\n \"type\": \"Event\",\n \"class\": \"Neutral\",\n \"cost\": 2,\n \"traits\": \"Spell.\",\n \"permanent\": false,\n \"weakness\": false,\n \"cycle\": \"Core\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 587209,
"SidewaysCard": false,
"CustomDeck": {
"5872": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1856052392800079019/C6B0ADB01750372B73B2281CFFDFA5F6F87C2C9E/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 7,
"NumHeight": 3,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"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 \"cost\": 3,\n \"level\": 0,\n \"traits\": \"Tactic.\",\n \"permanent\": false,\n \"weakness\": false,\n \"agilityIcons\": 2,\n \"cycle\": \"The Path to Carcosa\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Fortune. Blessed.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"cycle\": \"The Innsmouth Conspiracy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cycle\": \"The Circle Undone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 1,\n \"level\": 1,\n \"traits\": \"Upgrade.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"cycle\": \"The Forgotten Age\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 4,\n \"level\": 0,\n \"traits\": \"Supply. Illicit.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"intellectIcons\": 1,\n \"cycle\": \"The Dunwich Legacy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "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 \"cost\": 2,\n \"level\": 3,\n \"traits\": \"Item. Charm. Blessed.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"agilityIcons\": 1,\n \"cycle\": \"The Circle Undone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 3,\n \"traits\": \"Item. Tome. Relic.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"intellectIcons\": 1,\n \"wildIcons\": 1,\n \"cycle\": \"The Circle Undone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Item. Armor.\",\n \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"cycle\": \"Edge of the Earth\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 2,\n \"level\": 1,\n \"traits\": \"Item. Relic.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"cycle\": \"Edge of the Earth\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"level\": 3,\n \"traits\": \"Talent.\",\n \"permanent\": true,\n \"weakness\": false,\n \"cycle\": \"The Path to Carcosa\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 1,\n \"level\": 3,\n \"traits\": \"Spell.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"combatIcons\": 1,\n \"cycle\": \"Return to the Night of the Zealot\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"level\": 1,\n \"traits\": \"Innate. Developed.\",\n \"permanent\": false,\n \"weakness\": false,\n \"dynamicIcons\": true,\n \"cycle\": \"Edge of the Earth\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"level\": 0,\n \"traits\": \"Innate.\",\n \"permanent\": false,\n \"weakness\": false,\n \"wildIcons\": 3,\n \"cycle\": \"The Dunwich Legacy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"level\": 0,\n \"traits\": \"Curse.\",\n \"permanent\": true,\n \"weakness\": false,\n \"cycle\": \"Edge of the Earth\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 0,\n \"level\": 3,\n \"traits\": \"Talent. Composure.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 2,\n \"intellectIcons\": 2,\n \"cycle\": \"Edge of the Earth\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 3,\n \"level\": 0,\n \"traits\": \"Ally. Creature.\",\n \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"cycle\": \"Edge of the Earth\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 1,\n \"level\": 2,\n \"traits\": \"Pact. Cursed.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"combatIcons\": 1,\n \"cycle\": \"Edge of the Earth\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 3,\n \"level\": 3,\n \"traits\": \"Talent.\",\n \"permanent\": false,\n \"weakness\": false,\n \"agilityIcons\": 2,\n \"uses\": [\n {\n \"count\": 2,\n \"type\": \"Resource\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"Edge of the Earth\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 2,\n \"level\": 1,\n \"traits\": \"Item. Charm. Cursed.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"uses\": [\n {\n \"count\": 1,\n \"type\": \"Charge\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"Edge of the Earth\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 2,\n \"level\": 3,\n \"traits\": \"Item. Tool. Melee.\",\n \"permanent\": false,\n \"weakness\": false,\n \"agilityIcons\": 2,\n \"cycle\": \"Edge of the Earth\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 3,\n \"level\": 3,\n \"traits\": \"Talent.\",\n \"permanent\": false,\n \"weakness\": false,\n \"wildIcons\": 1,\n \"uses\": [\n {\n \"count\": 2,\n \"type\": \"Resource\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"Edge of the Earth\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 0,\n \"level\": 0,\n \"traits\": \"Upgrade.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"combatIcons\": 1,\n \"uses\": [\n {\n \"count\": 3,\n \"type\": \"Durability\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"Edge of the Earth\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 1,\n \"level\": 1,\n \"traits\": \"Insight.\",\n \"permanent\": false,\n \"weakness\": false,\n \"wildIcons\": 1,\n \"cycle\": \"Edge of the Earth\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Item. Tome.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"uses\": [\n {\n \"count\": 5,\n \"type\": \"Secret\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"Edge of the Earth\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 3,\n \"level\": 3,\n \"traits\": \"Talent.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 2,\n \"uses\": [\n {\n \"count\": 2,\n \"type\": \"Resource\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"Edge of the Earth\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Item.\",\n \"permanent\": false,\n \"weakness\": false,\n \"agilityIcons\": 1,\n \"uses\": [\n {\n \"count\": 3,\n \"type\": \"Supply\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"Edge of the Earth\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 3,\n \"level\": 2,\n \"traits\": \"Spell. Blessed. Weapon. Ranged.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"agilityIcons\": 1,\n \"uses\": [\n {\n \"count\": 3,\n \"type\": \"Charge\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"Edge of the Earth\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 3,\n \"level\": 3,\n \"traits\": \"Talent.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 2,\n \"uses\": [\n {\n \"count\": 2,\n \"type\": \"Resource\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"Edge of the Earth\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 3,\n \"level\": 3,\n \"traits\": \"Talent.\",\n \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 2,\n \"uses\": [\n {\n \"count\": 2,\n \"type\": \"Resource\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"Edge of the Earth\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 2,\n \"level\": 1,\n \"traits\": \"Spell.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"uses\": [\n {\n \"count\": 4,\n \"type\": \"Charge\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"Edge of the Earth\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"level\": 0,\n \"traits\": \"Talent.\",\n \"permanent\": true,\n \"weakness\": false,\n \"cycle\": \"Edge of the Earth\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 2,\n \"level\": 4,\n \"traits\": \"Spell.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 2,\n \"uses\": [\n {\n \"count\": 6,\n \"type\": \"Charge\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"Edge of the Earth\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 1,\n \"level\": 3,\n \"traits\": \"Item. Tool. Melee.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"combatIcons\": 1,\n \"cycle\": \"Edge of the Earth\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 3,\n \"level\": 4,\n \"traits\": \"Item. Charm. Cursed.\",\n \"permanent\": false,\n \"weakness\": false,\n \"wildIcons\": 2,\n \"cycle\": \"Edge of the Earth\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Item. Charm.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"cycle\": \"Edge of the Earth\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 0,\n \"level\": 3,\n \"traits\": \"Pact.\",\n \"permanent\": false,\n \"weakness\": false,\n \"cycle\": \"Edge of the Earth\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 3,\n \"level\": 2,\n \"traits\": \"Ally. Miskatonic.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"wildIcons\": 1,\n \"uses\": [\n {\n \"count\": 3,\n \"type\": \"Secret\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"Edge of the Earth\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 4,\n \"level\": 3,\n \"traits\": \"Ally. Sorcerer.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 2,\n \"cycle\": \"Edge of the Earth\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 3,\n \"level\": 4,\n \"traits\": \"Item. Tool. Weapon. Melee.\",\n \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 3,\n \"cycle\": \"Edge of the Earth\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 2,\n \"level\": 1,\n \"traits\": \"Item. Relic.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"agilityIcons\": 1,\n \"uses\": [\n {\n \"count\": 3,\n \"type\": \"Secret\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"Edge of the Earth\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 1,\n \"level\": 2,\n \"traits\": \"Spell. Trick.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"agilityIcons\": 2,\n \"cycle\": \"Edge of the Earth\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 3,\n \"level\": 4,\n \"traits\": \"Item. Charm. Blessed.\",\n \"permanent\": false,\n \"weakness\": false,\n \"wildIcons\": 2,\n \"cycle\": \"Edge of the Earth\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 3,\n \"level\": 4,\n \"traits\": \"Spell. Augury.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"intellectIcons\": 1,\n \"uses\": [\n {\n \"count\": 6,\n \"type\": \"Charge\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"Edge of the Earth\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 1,\n \"level\": 1,\n \"traits\": \"Item. Tool. Melee.\",\n \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"cycle\": \"Edge of the Earth\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 3,\n \"level\": 0,\n \"traits\": \"Ally. Miskatonic.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"uses\": [\n {\n \"count\": 3,\n \"type\": \"Secret\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"Edge of the Earth\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Spell. Trick.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"agilityIcons\": 1,\n \"cycle\": \"Edge of the Earth\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 5,\n \"level\": 3,\n \"traits\": \"Ally. Wayfarer.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"agilityIcons\": 1,\n \"cycle\": \"Edge of the Earth\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 1,\n \"level\": 2,\n \"traits\": \"Ritual.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"agilityIcons\": 1,\n \"cycle\": \"Edge of the Earth\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 2,\n \"level\": 4,\n \"traits\": \"Item. Relic.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"agilityIcons\": 1,\n \"wildIcons\": 1,\n \"uses\": [\n {\n \"count\": 3,\n \"type\": \"Secret\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"Edge of the Earth\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Item. Tool.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"cycle\": \"Edge of the Earth\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 0,\n \"level\": 1,\n \"traits\": \"Tactic.\",\n \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"agilityIcons\": 1,\n \"cycle\": \"Edge of the Earth\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 1,\n \"level\": 3,\n \"traits\": \"Insight. Tactic.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 2,\n \"combatIcons\": 1,\n \"agilityIcons\": 1,\n \"cycle\": \"Edge of the Earth\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 2,\n \"level\": 1,\n \"traits\": \"Spell.\",\n \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"uses\": [\n {\n \"count\": 6,\n \"type\": \"Charge\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"Edge of the Earth\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 5,\n \"level\": 5,\n \"traits\": \"Item. Relic. Weapon. Melee.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 2,\n \"combatIcons\": 2,\n \"cycle\": \"Edge of the Earth\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 2,\n \"level\": 4,\n \"traits\": \"Spell.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"combatIcons\": 1,\n \"uses\": [\n {\n \"count\": 9,\n \"type\": \"Charge\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"Edge of the Earth\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 4,\n \"level\": 4,\n \"traits\": \"Item. Tool. Illicit.\",\n \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"agilityIcons\": 2,\n \"cycle\": \"Edge of the Earth\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 3,\n \"level\": 0,\n \"traits\": \"Item. Tool. Weapon. Melee.\",\n \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"cycle\": \"Edge of the Earth\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 0,\n \"level\": 2,\n \"traits\": \"Item. Weapon. Firearm.\",\n \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"uses\": [\n {\n \"count\": 0,\n \"type\": \"Ammo\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"Edge of the Earth\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 1,\n \"level\": 1,\n \"traits\": \"Insight. Tactic.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"agilityIcons\": 1,\n \"cycle\": \"Edge of the Earth\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cycle\": \"Edge of the Earth\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cycle\": \"Edge of the Earth\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 0,\n \"level\": 3,\n \"traits\": \"Talent. Composure.\",\n \"permanent\": false,\n \"weakness\": false,\n \"wildIcons\": 2,\n \"cycle\": \"Edge of the Earth\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cycle\": \"Edge of the Earth\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 2,\n \"level\": 3,\n \"traits\": \"Spell.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 2,\n \"uses\": [\n {\n \"count\": 4,\n \"type\": \"Charge\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"Edge of the Earth\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 4,\n \"level\": 5,\n \"traits\": \"Item. Relic. Tome.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 2,\n \"wildIcons\": 1,\n \"uses\": [\n {\n \"count\": 1,\n \"type\": \"Charge\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"Edge of the Earth\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cycle\": \"Edge of the Earth\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"level\": 1,\n \"traits\": \"Practiced. Expert.\",\n \"permanent\": false,\n \"weakness\": false,\n \"dynamicIcons\": true,\n \"cycle\": \"Edge of the Earth\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 2,\n \"level\": 1,\n \"traits\": \"Ritual. Synergy.\",\n \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"agilityIcons\": 1,\n \"uses\": [\n {\n \"count\": 1,\n \"type\": \"Charge\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"Edge of the Earth\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Insight. Trick.\",\n \"permanent\": false,\n \"weakness\": false,\n \"agilityIcons\": 2,\n \"cycle\": \"Edge of the Earth\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 0,\n \"level\": 1,\n \"traits\": \"Trick. Synergy.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"agilityIcons\": 1,\n \"cycle\": \"Edge of the Earth\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 0,\n \"level\": 1,\n \"traits\": \"Augury.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 2,\n \"cycle\": \"Edge of the Earth\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 0,\n \"level\": 2,\n \"traits\": \"Augury.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"wildIcons\": 1,\n \"cycle\": \"Edge of the Earth\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 0,\n \"level\": 3,\n \"traits\": \"Talent. Composure.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 2,\n \"agilityIcons\": 2,\n \"cycle\": \"Edge of the Earth\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 0,\n \"level\": 2,\n \"traits\": \"Favor. Gambit.\",\n \"permanent\": false,\n \"weakness\": false,\n \"wildIcons\": 1,\n \"cycle\": \"Edge of the Earth\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 1,\n \"level\": 2,\n \"traits\": \"Favor.\",\n \"permanent\": false,\n \"weakness\": false,\n \"cycle\": \"Edge of the Earth\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 2,\n \"level\": 2,\n \"traits\": \"Item. Relic.\",\n \"permanent\": false,\n \"weakness\": false,\n \"wildIcons\": 1,\n \"uses\": [\n {\n \"count\": 0,\n \"type\": \"Charge\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"Edge of the Earth\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 2,\n \"level\": 1,\n \"traits\": \"Spirit.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 2,\n \"cycle\": \"Edge of the Earth\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"level\": 1,\n \"traits\": \"Innate. Developed.\",\n \"permanent\": false,\n \"weakness\": false,\n \"wildIcons\": 1,\n \"dynamicIcons\": true,\n \"cycle\": \"Edge of the Earth\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 2,\n \"level\": 5,\n \"traits\": \"Item. Relic.\",\n \"permanent\": false,\n \"weakness\": false,\n \"wildIcons\": 2,\n \"uses\": [\n {\n \"count\": 0,\n \"type\": \"Charge\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"Edge of the Earth\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 2,\n \"level\": 1,\n \"traits\": \"Item. Clothing. Footwear.\",\n \"permanent\": false,\n \"weakness\": false,\n \"agilityIcons\": 1,\n \"cycle\": \"Edge of the Earth\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"level\": 0,\n \"traits\": \"Talent.\",\n \"permanent\": true,\n \"weakness\": false,\n \"cycle\": \"Edge of the Earth\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"level\": 1,\n \"traits\": \"Practiced. Expert.\",\n \"permanent\": false,\n \"weakness\": false,\n \"dynamicIcons\": true,\n \"cycle\": \"Edge of the Earth\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"level\": 0,\n \"traits\": \"Talent. Ritual.\",\n \"permanent\": true,\n \"weakness\": false,\n \"cycle\": \"Edge of the Earth\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 3,\n \"level\": 3,\n \"traits\": \"Item. Relic.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"agilityIcons\": 1,\n \"wildIcons\": 1,\n \"cycle\": \"Edge of the Earth\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 0,\n \"level\": 1,\n \"traits\": \"Favor.\",\n \"permanent\": false,\n \"weakness\": false,\n \"wildIcons\": 1,\n \"cycle\": \"Edge of the Earth\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 4,\n \"level\": 4,\n \"traits\": \"Ritual.\",\n \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 2,\n \"wildIcons\": 1,\n \"uses\": [\n {\n \"count\": 4,\n \"type\": \"Leyline\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"Edge of the Earth\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 2,\n \"level\": 1,\n \"traits\": \"Favor. Service.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 2,\n \"cycle\": \"Edge of the Earth\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 0,\n \"level\": 3,\n \"traits\": \"Tactic.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"intellectIcons\": 1,\n \"combatIcons\": 1,\n \"cycle\": \"Edge of the Earth\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"level\": 0,\n \"traits\": \"Favor. Illicit.\",\n \"permanent\": true,\n \"weakness\": false,\n \"cycle\": \"Edge of the Earth\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Item. Tome. Occult.\",\n \"permanent\": false,\n \"weakness\": false,\n \"wildIcons\": 1,\n \"cycle\": \"Edge of the Earth\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 4,\n \"level\": 4,\n \"traits\": \"Ritual.\",\n \"permanent\": false,\n \"weakness\": false,\n \"agilityIcons\": 2,\n \"wildIcons\": 1,\n \"uses\": [\n {\n \"count\": 4,\n \"type\": \"Leyline\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"Edge of the Earth\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Fortune. Gambit.\",\n \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"agilityIcons\": 1,\n \"cycle\": \"Edge of the Earth\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 4,\n \"level\": 4,\n \"traits\": \"Ritual.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 2,\n \"wildIcons\": 1,\n \"uses\": [\n {\n \"count\": 4,\n \"type\": \"Leyline\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"Edge of the Earth\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 4,\n \"level\": 5,\n \"traits\": \"Item. Relic. Tome.\",\n \"permanent\": false,\n \"weakness\": false,\n \"wildIcons\": 2,\n \"cycle\": \"Edge of the Earth\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 4,\n \"level\": 4,\n \"traits\": \"Ritual.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 2,\n \"wildIcons\": 1,\n \"uses\": [\n {\n \"count\": 4,\n \"type\": \"Leyline\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"Edge of the Earth\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 4,\n \"level\": 0,\n \"traits\": \"Ally. Miskatonic. Wayfarer.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"cycle\": \"Edge of the Earth\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 2,\n \"level\": 2,\n \"traits\": \"Item. Tome.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"combatIcons\": 1,\n \"cycle\": \"Edge of the Earth\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 0,\n \"level\": 2,\n \"traits\": \"Tactic.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"agilityIcons\": 2,\n \"cycle\": \"Edge of the Earth\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 0,\n \"level\": 3,\n \"traits\": \"Talent. Composure.\",\n \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 2,\n \"agilityIcons\": 2,\n \"cycle\": \"Edge of the Earth\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 0,\n \"level\": 2,\n \"traits\": \"Insight.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 2,\n \"agilityIcons\": 1,\n \"cycle\": \"Edge of the Earth\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 3,\n \"level\": 5,\n \"traits\": \"Item. Weapon. Melee.\",\n \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"agilityIcons\": 1,\n \"wildIcons\": 1,\n \"cycle\": \"Edge of the Earth\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"level\": 1,\n \"traits\": \"Practiced. Expert.\",\n \"permanent\": false,\n \"weakness\": false,\n \"dynamicIcons\": true,\n \"cycle\": \"Edge of the Earth\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 3,\n \"level\": 1,\n \"traits\": \"Spirit. Synergy.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"combatIcons\": 1,\n \"cycle\": \"Edge of the Earth\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 0,\n \"level\": 0,\n \"traits\": \"Spirit. Tactic.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"combatIcons\": 1,\n \"cycle\": \"Edge of the Earth\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 0,\n \"level\": 0,\n \"traits\": \"Spirit. Tactic.\",\n \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"agilityIcons\": 1,\n \"cycle\": \"Edge of the Earth\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cycle\": \"Edge of the Earth\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 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 \"cycle\": \"Edge of the Earth\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cycle\": \"Edge of the Earth\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 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": "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 \"cycle\": \"Edge of the Earth\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 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 \"cycle\": \"Edge of the Earth\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cycle\": \"Edge of the Earth\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 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 \"cost\": 2,\n \"traits\": \"Talent.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 2,\n \"wildIcons\": 1,\n \"cycle\": \"Edge of the Earth\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cycle\": \"Edge of the Earth\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 2,\n \"traits\": \"Item. Tool. Melee.\",\n \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 2,\n \"wildIcons\": 1,\n \"cycle\": \"Edge of the Earth\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 2,\n \"level\": 3,\n \"traits\": \"Gambit. Trick.\",\n \"permanent\": false,\n \"weakness\": false,\n \"agilityIcons\": 2,\n \"cycle\": \"Edge of the Earth\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 5,\n \"level\": 1,\n \"traits\": \"Insight. Synergy.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"agilityIcons\": 1,\n \"cycle\": \"Edge of the Earth\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 3,\n \"level\": 4,\n \"traits\": \"Spell.\",\n \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 2,\n \"agilityIcons\": 2,\n \"cycle\": \"Edge of the Earth\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "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 \"cost\": 1,\n \"level\": 3,\n \"traits\": \"Spell. Blessed.\",\n \"permanent\": false,\n \"weakness\": false,\n \"wildIcons\": 1,\n \"cycle\": \"The Forgotten Age\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 1,\n \"traits\": \"Item. Mask.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"wildIcons\": 1,\n \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"level\": 2,\n \"traits\": \"Innate. Developed.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 2,\n \"cycle\": \"The Dunwich Legacy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "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 \"cost\": 1,\n \"traits\": \"Ally. Wayfarer.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"agilityIcons\": 1,\n \"wildIcons\": 2,\n \"cycle\": \"Return to the Forgotten Age\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 0,\n \"level\": 1,\n \"traits\": \"Tactic.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 2,\n \"cycle\": \"The Path to Carcosa\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 1,\n \"level\": 1,\n \"traits\": \"Spirit. Tactic. Trick.\",\n \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"agilityIcons\": 1,\n \"cycle\": \"Edge of the Earth\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 2,\n \"level\": 3,\n \"traits\": \"Item. Weapon.\",\n \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 2,\n \"cycle\": \"Investigator Packs\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 0,\n \"level\": 3,\n \"traits\": \"Insight.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"combatIcons\": 1,\n \"wildIcons\": 1,\n \"cycle\": \"The Forgotten Age\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"level\": 0,\n \"traits\": \"Talent.\",\n \"permanent\": true,\n \"weakness\": false,\n \"cycle\": \"Edge of the Earth\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Fortune. Gambit.\",\n \"permanent\": false,\n \"weakness\": false,\n \"agilityIcons\": 1,\n \"cycle\": \"Edge of the Earth\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 0,\n \"level\": 3,\n \"traits\": \"Talent. Composure.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 2,\n \"combatIcons\": 2,\n \"cycle\": \"Edge of the Earth\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"willpowerIcons\": 1,\n \"agilityIcons\": 1,\n \"wildIcons\": 1,\n \"cycle\": \"The Path to Carcosa\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cycle\": \"The Dream-Eaters\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 0,\n \"traits\": \"Insight.\",\n \"permanent\": false,\n \"weakness\": false,\n \"wildIcons\": 2,\n \"cycle\": \"The Path to Carcosa\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "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 \"bonded\": [\n {\n \"count\": 1,\n \"id\": \"06015b\"\n }\n ],\n \"cycle\": \"The Dream-Eaters\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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\": [\n \"06015b\"\n ],\n \"type\": \"Location\",\n \"class\": \"Neutral\",\n \"traits\": \"Dreamlands.\",\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": [\n {\n \"countPerInvestigator\": 0,\n \"type\": \"Clue\",\n \"token\": \"clue\"\n }\n ],\n \"cycle\": \"The Dream-Eaters\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard",
"Location"
],
"LayoutGroupSortIndex": 0,
"Value": 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 \"cost\": 2,\n \"level\": 2,\n \"traits\": \"Talent.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"agilityIcons\": 1,\n \"cycle\": \"The Dream-Eaters\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 2,\n \"level\": 2,\n \"traits\": \"Fortune.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 2,\n \"agilityIcons\": 1,\n \"cycle\": \"Investigator Packs\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"level\": 2,\n \"traits\": \"Practiced. Expert.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 2,\n \"cycle\": \"The Dunwich Legacy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 \"cost\": 5,\n \"level\": 4,\n \"traits\": \"Spell.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 2,\n \"uses\": [\n {\n \"count\": 3,\n \"type\": \"Charge\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Dunwich Legacy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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\": [\n \"99001\"\n ],\n \"type\": \"Investigator\",\n \"class\": \"Mystic\",\n \"traits\": \"Performer. Sorcerer.\",\n \"willpowerIcons\": 4,\n \"intellectIcons\": 4,\n \"combatIcons\": 1,\n \"agilityIcons\": 3,\n \"cycle\": \"The Circle Undone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 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 \"alternate_ids\": [\n \"98004\"\n ],\n \"type\": \"Investigator\",\n \"class\": \"Guardian\",\n \"traits\": \"Agency. Detective.\",\n \"willpowerIcons\": 3,\n \"intellectIcons\": 3,\n \"combatIcons\": 4,\n \"agilityIcons\": 2,\n \"cycle\": \"Core\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 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 \"willpowerIcons\": 3,\n \"intellectIcons\": 3,\n \"combatIcons\": 4,\n \"agilityIcons\": 2,\n \"cycle\": \"Core\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 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 \"willpowerIcons\": 2,\n \"intellectIcons\": 3,\n \"combatIcons\": 3,\n \"agilityIcons\": 4,\n \"cycle\": \"Core\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 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\": [\n \"98013\"\n ],\n \"type\": \"Investigator\",\n \"class\": \"Survivor\",\n \"traits\": \"Drifter.\",\n \"willpowerIcons\": 2,\n \"intellectIcons\": 2,\n \"combatIcons\": 4,\n \"agilityIcons\": 4,\n \"cycle\": \"The Innsmouth Conspiracy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 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 \"alternate_ids\": [\n \"98013\"\n ],\n \"type\": \"Investigator\",\n \"class\": \"Survivor\",\n \"traits\": \"Drifter.\",\n \"willpowerIcons\": 2,\n \"intellectIcons\": 2,\n \"combatIcons\": 4,\n \"agilityIcons\": 4,\n \"cycle\": \"The Innsmouth Conspiracy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 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 \"willpowerIcons\": 3,\n \"intellectIcons\": 2,\n \"combatIcons\": 3,\n \"agilityIcons\": 5,\n \"cycle\": \"The Circle Undone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 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": "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 \"willpowerIcons\": 5,\n \"intellectIcons\": 4,\n \"combatIcons\": 2,\n \"agilityIcons\": 1,\n \"cycle\": \"Promo\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 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 \"willpowerIcons\": 2,\n \"intellectIcons\": 3,\n \"combatIcons\": 5,\n \"agilityIcons\": 2,\n \"cycle\": \"The Dream-Eaters\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 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": "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 \"alternate_ids\": [\n \"98010\"\n ],\n \"type\": \"Investigator\",\n \"class\": \"Guardian\",\n \"traits\": \"Medic.\",\n \"willpowerIcons\": 3,\n \"intellectIcons\": 4,\n \"combatIcons\": 2,\n \"agilityIcons\": 2,\n \"cycle\": \"The Circle Undone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 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 \"willpowerIcons\": 2,\n \"intellectIcons\": 4,\n \"combatIcons\": 2,\n \"agilityIcons\": 4,\n \"cycle\": \"The Innsmouth Conspiracy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 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 \"willpowerIcons\": 4,\n \"intellectIcons\": 3,\n \"combatIcons\": 2,\n \"agilityIcons\": 3,\n \"cycle\": \"The Dream-Eaters\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 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 \"willpowerIcons\": 4,\n \"intellectIcons\": 3,\n \"combatIcons\": 2,\n \"agilityIcons\": 3,\n \"cycle\": \"The Forgotten Age\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 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 \"willpowerIcons\": 2,\n \"intellectIcons\": 4,\n \"combatIcons\": 3,\n \"agilityIcons\": 3,\n \"cycle\": \"Edge of the Earth\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 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 \"willpowerIcons\": 3,\n \"intellectIcons\": 2,\n \"combatIcons\": 4,\n \"agilityIcons\": 3,\n \"cycle\": \"The Path to Carcosa\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 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": "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 \"cycle\": \"The Forgotten Age\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 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 \"willpowerIcons\": 4,\n \"intellectIcons\": 2,\n \"combatIcons\": 2,\n \"agilityIcons\": 2,\n \"cycle\": \"The Dream-Eaters\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 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 \"willpowerIcons\": 3,\n \"intellectIcons\": 2,\n \"combatIcons\": 4,\n \"agilityIcons\": 3,\n \"cycle\": \"Edge of the Earth\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 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 \"willpowerIcons\": 5,\n \"intellectIcons\": 2,\n \"combatIcons\": 3,\n \"agilityIcons\": 3,\n \"cycle\": \"The Path to Carcosa\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 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 \"willpowerIcons\": 2,\n \"intellectIcons\": 2,\n \"combatIcons\": 2,\n \"agilityIcons\": 2,\n \"cycle\": \"The Innsmouth Conspiracy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 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\": [\n \"98010\"\n ],\n \"type\": \"Investigator\",\n \"class\": \"Guardian\",\n \"traits\": \"Medic.\",\n \"willpowerIcons\": 3,\n \"intellectIcons\": 4,\n \"combatIcons\": 2,\n \"agilityIcons\": 2,\n \"cycle\": \"The Circle Undone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 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 \"willpowerIcons\": 4,\n \"intellectIcons\": 4,\n \"combatIcons\": 2,\n \"agilityIcons\": 2,\n \"cycle\": \"The Path to Carcosa\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 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 \"willpowerIcons\": 3,\n \"intellectIcons\": 5,\n \"combatIcons\": 1,\n \"agilityIcons\": 3,\n \"cycle\": \"The Dream-Eaters\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 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 \"willpowerIcons\": 3,\n \"intellectIcons\": 4,\n \"combatIcons\": 1,\n \"agilityIcons\": 4,\n \"cycle\": \"The Forgotten Age\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 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 \"willpowerIcons\": 3,\n \"intellectIcons\": 2,\n \"combatIcons\": 3,\n \"agilityIcons\": 4,\n \"cycle\": \"Investigator Packs\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 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 \"willpowerIcons\": 4,\n \"intellectIcons\": 2,\n \"combatIcons\": 3,\n \"agilityIcons\": 3,\n \"cycle\": \"The Innsmouth Conspiracy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 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 \"willpowerIcons\": 4,\n \"intellectIcons\": 2,\n \"combatIcons\": 2,\n \"agilityIcons\": 3,\n \"cycle\": \"The Dunwich Legacy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 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 \"willpowerIcons\": 3,\n \"intellectIcons\": 2,\n \"combatIcons\": 5,\n \"agilityIcons\": 3,\n \"cycle\": \"The Path to Carcosa\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 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 \"willpowerIcons\": 3,\n \"intellectIcons\": 3,\n \"combatIcons\": 4,\n \"agilityIcons\": 2,\n \"cycle\": \"The Dream-Eaters\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 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 \"willpowerIcons\": 4,\n \"intellectIcons\": 1,\n \"combatIcons\": 5,\n \"agilityIcons\": 2,\n \"cycle\": \"Edge of the Earth\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 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 \"willpowerIcons\": 4,\n \"intellectIcons\": 3,\n \"combatIcons\": 4,\n \"agilityIcons\": 1,\n \"cycle\": \"The Forgotten Age\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 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 \"willpowerIcons\": 5,\n \"intellectIcons\": 3,\n \"combatIcons\": 2,\n \"agilityIcons\": 2,\n \"cycle\": \"Investigator Packs\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 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 \"willpowerIcons\": 2,\n \"intellectIcons\": 3,\n \"combatIcons\": 3,\n \"agilityIcons\": 4,\n \"cycle\": \"Core\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 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 \"willpowerIcons\": 2,\n \"intellectIcons\": 3,\n \"combatIcons\": 3,\n \"agilityIcons\": 4,\n \"cycle\": \"Core\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 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 \"alternate_ids\": [\n \"01503\"\n ],\n \"type\": \"Investigator\",\n \"class\": \"Rogue\",\n \"traits\": \"Criminal.\",\n \"willpowerIcons\": 2,\n \"intellectIcons\": 3,\n \"combatIcons\": 3,\n \"agilityIcons\": 4,\n \"cycle\": \"Core\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 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": "a41f81",
"Name": "Card",
"Transform": {
"posX": 45.6439362,
"posY": 2.011057,
"posZ": -116.0584,
"rotX": 0.01680511,
"rotY": 179.992828,
"rotZ": 1.35540533,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "\"Skids\" O'Toole",
"Description": "The Ex-Con",
"GMNotes": "{\n \"id\": \"01003-r\",\n \"type\": \"Investigator\",\n \"class\": \"Rogue\",\n \"traits\": \"Criminal.\",\n \"willpowerIcons\": 2,\n \"intellectIcons\": 3,\n \"combatIcons\": 3,\n \"agilityIcons\": 4,\n \"cycle\": \"Core\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 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": 587402,
"SidewaysCard": true,
"CustomDeck": {
"5874": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1856052392800108004/768BB33829A836E2AB5E6775A22271BE77585D4A/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1856052392800108622/9BA9D571CE81D39DDED8F6F7573E8676964E7723/",
"NumWidth": 3,
"NumHeight": 3,
"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 \"willpowerIcons\": 1,\n \"intellectIcons\": 5,\n \"combatIcons\": 2,\n \"agilityIcons\": 2,\n \"cycle\": \"Core\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 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 \"willpowerIcons\": 1,\n \"intellectIcons\": 5,\n \"combatIcons\": 2,\n \"agilityIcons\": 2,\n \"cycle\": \"Core\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 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 \"alternate_ids\": [\n \"01502\"\n ],\n \"type\": \"Investigator\",\n \"class\": \"Seeker\",\n \"traits\": \"Miskatonic.\",\n \"willpowerIcons\": 3,\n \"intellectIcons\": 5,\n \"combatIcons\": 2,\n \"agilityIcons\": 2,\n \"cycle\": \"Core\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 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 \"willpowerIcons\": 3,\n \"intellectIcons\": 5,\n \"combatIcons\": 2,\n \"agilityIcons\": 2,\n \"cycle\": \"Core\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 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 \"willpowerIcons\": 3,\n \"intellectIcons\": 3,\n \"combatIcons\": 4,\n \"agilityIcons\": 2,\n \"cycle\": \"Core\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 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 \"willpowerIcons\": 3,\n \"intellectIcons\": 3,\n \"combatIcons\": 4,\n \"agilityIcons\": 2,\n \"cycle\": \"Core\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 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\": [\n \"98004\",\n \"01501\"\n ],\n \"type\": \"Investigator\",\n \"class\": \"Guardian\",\n \"traits\": \"Agency. Detective.\",\n \"willpowerIcons\": 3,\n \"intellectIcons\": 3,\n \"combatIcons\": 4,\n \"agilityIcons\": 2,\n \"cycle\": \"Core\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 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": "ed1557",
"Name": "Card",
"Transform": {
"posX": 48.54487,
"posY": 1.98558521,
"posZ": -125.911079,
"rotX": 0.0167696755,
"rotY": 179.999039,
"rotZ": 359.9792,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Roland Banks",
"Description": "The Fed",
"GMNotes": "{\n \"id\": \"01001-r\",\n \"alternate_ids\": [\n \"98004\"\n ],\n \"type\": \"Investigator\",\n \"class\": \"Guardian\",\n \"traits\": \"Agency. Detective.\",\n \"willpowerIcons\": 3,\n \"intellectIcons\": 3,\n \"combatIcons\": 4,\n \"agilityIcons\": 2,\n \"cycle\": \"Core\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 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": 587400,
"SidewaysCard": true,
"CustomDeck": {
"5874": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1856052392800108004/768BB33829A836E2AB5E6775A22271BE77585D4A/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1856052392800108622/9BA9D571CE81D39DDED8F6F7573E8676964E7723/",
"NumWidth": 3,
"NumHeight": 3,
"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 \"alternate_ids\": [\n \"98001\"\n ],\n \"type\": \"Investigator\",\n \"class\": \"Rogue\",\n \"traits\": \"Drifter.\",\n \"willpowerIcons\": 3,\n \"intellectIcons\": 3,\n \"combatIcons\": 3,\n \"agilityIcons\": 3,\n \"cycle\": \"The Dunwich Legacy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 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\": [\n \"98001\"\n ],\n \"type\": \"Investigator\",\n \"class\": \"Rogue\",\n \"traits\": \"Drifter.\",\n \"willpowerIcons\": 3,\n \"intellectIcons\": 3,\n \"combatIcons\": 3,\n \"agilityIcons\": 3,\n \"cycle\": \"The Dunwich Legacy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 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 \"willpowerIcons\": 1,\n \"intellectIcons\": 3,\n \"combatIcons\": 3,\n \"agilityIcons\": 5,\n \"cycle\": \"Investigator Packs\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 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 \"willpowerIcons\": 4,\n \"intellectIcons\": 5,\n \"combatIcons\": 1,\n \"agilityIcons\": 2,\n \"cycle\": \"Investigator Packs\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 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 \"willpowerIcons\": 3,\n \"intellectIcons\": 2,\n \"combatIcons\": 5,\n \"agilityIcons\": 2,\n \"cycle\": \"Investigator Packs\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 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 \"willpowerIcons\": 1,\n \"intellectIcons\": 1,\n \"combatIcons\": 1,\n \"agilityIcons\": 1,\n \"cycle\": \"The Circle Undone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 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": "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 \"willpowerIcons\": 1,\n \"intellectIcons\": 3,\n \"combatIcons\": 3,\n \"agilityIcons\": 3,\n \"cycle\": \"The Circle Undone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 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 \"willpowerIcons\": 4,\n \"intellectIcons\": 2,\n \"combatIcons\": 4,\n \"agilityIcons\": 2,\n \"cycle\": \"The Dunwich Legacy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 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\": [\n \"98016\"\n ],\n \"type\": \"Investigator\",\n \"class\": \"Mystic\",\n \"traits\": \"Sorcerer. Veteran.\",\n \"willpowerIcons\": 5,\n \"intellectIcons\": 2,\n \"combatIcons\": 3,\n \"agilityIcons\": 2,\n \"cycle\": \"The Innsmouth Conspiracy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 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 \"willpowerIcons\": 4,\n \"intellectIcons\": 3,\n \"combatIcons\": 3,\n \"agilityIcons\": 2,\n \"cycle\": \"The Dunwich Legacy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 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 \"willpowerIcons\": 2,\n \"intellectIcons\": 4,\n \"combatIcons\": 4,\n \"agilityIcons\": 2,\n \"cycle\": \"The Circle Undone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 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 \"alternate_ids\": [\n \"98016\"\n ],\n \"type\": \"Investigator\",\n \"class\": \"Mystic\",\n \"traits\": \"Sorcerer. Veteran.\",\n \"willpowerIcons\": 5,\n \"intellectIcons\": 2,\n \"combatIcons\": 3,\n \"agilityIcons\": 2,\n \"cycle\": \"The Innsmouth Conspiracy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 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 \"willpowerIcons\": 4,\n \"intellectIcons\": 5,\n \"combatIcons\": 2,\n \"agilityIcons\": 1,\n \"cycle\": \"Edge of the Earth\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 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 \"willpowerIcons\": 5,\n \"intellectIcons\": 2,\n \"combatIcons\": 2,\n \"agilityIcons\": 3,\n \"cycle\": \"Core\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 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 \"willpowerIcons\": 4,\n \"intellectIcons\": 5,\n \"combatIcons\": 2,\n \"agilityIcons\": 1,\n \"cycle\": \"Edge of the Earth\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 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": "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 \"willpowerIcons\": 3,\n \"intellectIcons\": 3,\n \"combatIcons\": 3,\n \"agilityIcons\": 3,\n \"cycle\": \"The Path to Carcosa\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 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": "02db0a",
"Name": "Card",
"Transform": {
"posX": 87.05169,
"posY": 2.11896634,
"posZ": -78.5057144,
"rotX": 355.42807,
"rotY": 179.997482,
"rotZ": -0.0004028655,
"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 \"willpowerIcons\": 5,\n \"intellectIcons\": 2,\n \"combatIcons\": 2,\n \"agilityIcons\": 3,\n \"cycle\": \"Core\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 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": "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 \"alternate_ids\": [\n \"01505\"\n ],\n \"type\": \"Investigator\",\n \"class\": \"Survivor\",\n \"traits\": \"Drifter.\",\n \"willpowerIcons\": 4,\n \"intellectIcons\": 3,\n \"combatIcons\": 1,\n \"agilityIcons\": 4,\n \"cycle\": \"Core\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 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": "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 \"willpowerIcons\": 5,\n \"intellectIcons\": 2,\n \"combatIcons\": 2,\n \"agilityIcons\": 3,\n \"cycle\": \"Core\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 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": "6797bb",
"Name": "Card",
"Transform": {
"posX": 45.7542152,
"posY": 1.98558486,
"posZ": -116.878326,
"rotX": 0.0167561024,
"rotY": 179.957626,
"rotZ": 359.9792,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Agnes Baker",
"Description": "The Waitress",
"GMNotes": "{\n \"id\": \"01004-r\",\n \"type\": \"Investigator\",\n \"class\": \"Mystic\",\n \"traits\": \"Sorcerer.\",\n \"willpowerIcons\": 5,\n \"intellectIcons\": 2,\n \"combatIcons\": 2,\n \"agilityIcons\": 3,\n \"cycle\": \"Core\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 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": 587403,
"SidewaysCard": true,
"CustomDeck": {
"5874": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1856052392800108004/768BB33829A836E2AB5E6775A22271BE77585D4A/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1856052392800108622/9BA9D571CE81D39DDED8F6F7573E8676964E7723/",
"NumWidth": 3,
"NumHeight": 3,
"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 \"type\": \"Minicard\",\n \"traits\": \"\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"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 \"traits\": \"\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"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 \"traits\": \"\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"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 \"traits\": \"\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"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 \"traits\": \"\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"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": "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 \"traits\": \"\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"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 \"alternate_ids\": [\n \"98013-m\"\n ],\n \"type\": \"Minicard\",\n \"traits\": \"\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"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 \"traits\": \"\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"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 \"traits\": \"\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"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 \"traits\": \"\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"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 \"traits\": \"\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"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 \"traits\": \"\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"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 \"traits\": \"\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"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 \"traits\": \"\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"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 \"traits\": \"\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"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 \"traits\": \"\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"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\": [\n \"98001-m\"\n ],\n \"type\": \"Minicard\",\n \"traits\": \"\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"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 \"traits\": \"\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"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 \"alternate_ids\": [\n \"98001-m\"\n ],\n \"type\": \"Minicard\",\n \"traits\": \"\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"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 \"traits\": \"\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"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 \"traits\": \"\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"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 \"traits\": \"\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"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 \"traits\": \"\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"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 \"traits\": \"\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"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 \"traits\": \"\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"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 \"traits\": \"\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"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 \"traits\": \"\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"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": "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 \"traits\": \"\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"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 \"traits\": \"\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"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 \"traits\": \"\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"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 \"traits\": \"\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"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": "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 \"traits\": \"\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"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 \"traits\": \"\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"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": "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 \"alternate_ids\": [\n \"98016-m\"\n ],\n \"type\": \"Minicard\",\n \"traits\": \"\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"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\": [\n \"99001-m\"\n ],\n \"type\": \"Minicard\",\n \"traits\": \"\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"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 \"traits\": \"\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"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": "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 \"traits\": \"\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"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 \"traits\": \"\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"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 \"traits\": \"\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"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 \"traits\": \"\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"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": "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 \"traits\": \"\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"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\": [\n \"98016-m\"\n ],\n \"type\": \"Minicard\",\n \"traits\": \"\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"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 \"traits\": \"\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"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\": [\n \"98013-m\"\n ],\n \"type\": \"Minicard\",\n \"traits\": \"\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"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 \"traits\": \"\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"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": "9e136f",
"Name": "Card",
"Transform": {
"posX": 79.23192,
"posY": 3.32584238,
"posZ": 7.794513,
"rotX": 359.381256,
"rotY": 269.9912,
"rotZ": 359.9901,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Spare Parts",
"Description": "",
"GMNotes": "{\n \"id\": \"08620\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"cost\": 0,\n \"traits\": \"Item. Expedition.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 2,\n \"wildIcons\": 1,\n \"uses\": [\n {\n \"count\": 3,\n \"type\": \"Supply\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"Edge of the Earth\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 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": 450312,
"SidewaysCard": false,
"CustomDeck": {
"4503": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1858293462587822801/5E2DBBF49FB9A74CE0F4A953D8F4FECCBA479D11/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "c9feda",
"Name": "Card",
"Transform": {
"posX": 79.12717,
"posY": 3.32675457,
"posZ": 7.832538,
"rotX": 359.386353,
"rotY": 269.9886,
"rotZ": 359.914276,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Small Radio",
"Description": "",
"GMNotes": "{\n \"id\": \"08619\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"cost\": 0,\n \"traits\": \"Item. Expedition.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 2,\n \"wildIcons\": 1,\n \"uses\": [\n {\n \"count\": 3,\n \"type\": \"Supply\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"Edge of the Earth\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 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": 450311,
"SidewaysCard": false,
"CustomDeck": {
"4503": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1858293462587822801/5E2DBBF49FB9A74CE0F4A953D8F4FECCBA479D11/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "08dd86",
"Name": "Card",
"Transform": {
"posX": 79.27085,
"posY": 3.32249165,
"posZ": 8.263745,
"rotX": 359.5262,
"rotY": 269.99054,
"rotZ": 359.409851,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Mineral Specimen",
"Description": "",
"GMNotes": "{\n \"id\": \"08618\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"cost\": 0,\n \"traits\": \"Item. Relic. Expedition.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 2,\n \"wildIcons\": 1,\n \"uses\": [\n {\n \"count\": 3,\n \"type\": \"Charge\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"Edge of the Earth\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 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": 450310,
"SidewaysCard": false,
"CustomDeck": {
"4503": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1858293462587822801/5E2DBBF49FB9A74CE0F4A953D8F4FECCBA479D11/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "bad631",
"Name": "Card",
"Transform": {
"posX": 79.3905258,
"posY": 3.32369065,
"posZ": 7.894187,
"rotX": 359.370667,
"rotY": 269.989044,
"rotZ": 359.846741,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Miasmic Crystal",
"Description": "Strange Evidence",
"GMNotes": "{\n \"id\": \"08617\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"cost\": 0,\n \"traits\": \"Item. Relic. Expedition.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 2,\n \"wildIcons\": 1,\n \"uses\": [\n {\n \"count\": 3,\n \"type\": \"Charge\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"Edge of the Earth\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 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": 450309,
"SidewaysCard": false,
"CustomDeck": {
"4503": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1858293462587822801/5E2DBBF49FB9A74CE0F4A953D8F4FECCBA479D11/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "793df5",
"Name": "Card",
"Transform": {
"posX": 79.46795,
"posY": 3.31887579,
"posZ": 8.622781,
"rotX": 359.64682,
"rotY": 269.990021,
"rotZ": 359.39093,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Dynamite",
"Description": "",
"GMNotes": "{\n \"id\": \"08616\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"cost\": 0,\n \"traits\": \"Item. Expedition.\",\n \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 2,\n \"wildIcons\": 1,\n \"uses\": [\n {\n \"count\": 2,\n \"type\": \"Supply\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"Edge of the Earth\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 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": 450308,
"SidewaysCard": false,
"CustomDeck": {
"4503": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1858293462587822801/5E2DBBF49FB9A74CE0F4A953D8F4FECCBA479D11/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "991640",
"Name": "Card",
"Transform": {
"posX": 79.36421,
"posY": 3.323265,
"posZ": 8.084469,
"rotX": 359.434235,
"rotY": 269.990173,
"rotZ": 359.607971,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Wooden Sledge",
"Description": "",
"GMNotes": "{\n \"id\": \"08615\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"cost\": 0,\n \"traits\": \"Item. Expedition.\",\n \"permanent\": false,\n \"weakness\": false,\n \"agilityIcons\": 1,\n \"wildIcons\": 2,\n \"cycle\": \"Edge of the Earth\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 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": 450307,
"SidewaysCard": false,
"CustomDeck": {
"4503": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1858293462587822801/5E2DBBF49FB9A74CE0F4A953D8F4FECCBA479D11/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "d36d80",
"Name": "Card",
"Transform": {
"posX": 79.37144,
"posY": 3.32605648,
"posZ": 7.63085032,
"rotX": 359.482849,
"rotY": 269.9875,
"rotZ": 0.17950657,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Green Soapstone",
"Description": "Jinxed Idol",
"GMNotes": "{\n \"id\": \"08614\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"cost\": 0,\n \"traits\": \"Item. Expedition.\",\n \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 2,\n \"wildIcons\": 1,\n \"uses\": [\n {\n \"count\": 4,\n \"type\": \"Charge\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"Edge of the Earth\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 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": 450306,
"SidewaysCard": false,
"CustomDeck": {
"4503": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1858293462587822801/5E2DBBF49FB9A74CE0F4A953D8F4FECCBA479D11/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "0ef2ba",
"Name": "Card",
"Transform": {
"posX": 76.46293,
"posY": 29.7779636,
"posZ": 14.4681644,
"rotX": 359.99,
"rotY": 269.987549,
"rotZ": 359.984558,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Tekeli-li",
"Description": "Weakness",
"GMNotes": "{\n \"id\": \"08729\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Madness.\",\n \"permanent\": false,\n \"weakness\": true,\n \"cycle\": \"Edge of the Earth\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 449751,
"SidewaysCard": false,
"CustomDeck": {
"4497": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1858293462583844492/A3CE36420BC4AE8D863014F3F8B84C1A6047EBEB/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "05e697",
"Name": "Card",
"Transform": {
"posX": 76.74135,
"posY": 9.163395,
"posZ": 17.49687,
"rotX": 359.99,
"rotY": 269.988617,
"rotZ": 359.984558,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Tekeli-li",
"Description": "Weakness",
"GMNotes": "{\n \"id\": \"08728\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Madness.\",\n \"permanent\": false,\n \"weakness\": true,\n \"cycle\": \"Edge of the Earth\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 449750,
"SidewaysCard": false,
"CustomDeck": {
"4497": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1858293462583844492/A3CE36420BC4AE8D863014F3F8B84C1A6047EBEB/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "361f15",
"Name": "Card",
"Transform": {
"posX": 70.80526,
"posY": 2.538859,
"posZ": 35.5780449,
"rotX": 359.989838,
"rotY": 269.9847,
"rotZ": 359.218781,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Tekeli-li",
"Description": "Weakness",
"GMNotes": "{\n \"id\": \"08727\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Madness.\",\n \"permanent\": false,\n \"weakness\": true,\n \"cycle\": \"Edge of the Earth\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 449749,
"SidewaysCard": false,
"CustomDeck": {
"4497": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1858293462583844492/A3CE36420BC4AE8D863014F3F8B84C1A6047EBEB/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "f5bd65",
"Name": "Card",
"Transform": {
"posX": 72.29276,
"posY": 2.53788853,
"posZ": 30.830864,
"rotX": 359.990051,
"rotY": 269.9854,
"rotZ": 359.2657,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Tekeli-li",
"Description": "Weakness",
"GMNotes": "{\n \"id\": \"08726\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Madness.\",\n \"permanent\": false,\n \"weakness\": true,\n \"cycle\": \"Edge of the Earth\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 449748,
"SidewaysCard": false,
"CustomDeck": {
"4497": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1858293462583844492/A3CE36420BC4AE8D863014F3F8B84C1A6047EBEB/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "0ba293",
"Name": "Card",
"Transform": {
"posX": 76.29063,
"posY": 15.1602859,
"posZ": 23.9106464,
"rotX": 359.99,
"rotY": 269.987732,
"rotZ": 359.984558,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Tekeli-li",
"Description": "Weakness",
"GMNotes": "{\n \"id\": \"08725\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Madness.\",\n \"permanent\": false,\n \"weakness\": true,\n \"cycle\": \"Edge of the Earth\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 449747,
"SidewaysCard": false,
"CustomDeck": {
"4497": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1858293462583844492/A3CE36420BC4AE8D863014F3F8B84C1A6047EBEB/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "76409f",
"Name": "Card",
"Transform": {
"posX": 76.719635,
"posY": 9.163373,
"posZ": 19.039093,
"rotX": 359.99,
"rotY": 269.987732,
"rotZ": 359.984558,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Tekeli-li",
"Description": "Weakness",
"GMNotes": "{\n \"id\": \"08724\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Madness.\",\n \"permanent\": false,\n \"weakness\": true,\n \"cycle\": \"Edge of the Earth\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 449746,
"SidewaysCard": false,
"CustomDeck": {
"4497": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1858293462583844492/A3CE36420BC4AE8D863014F3F8B84C1A6047EBEB/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "519e41",
"Name": "Card",
"Transform": {
"posX": 76.20888,
"posY": 9.163395,
"posZ": 18.2136,
"rotX": 359.99,
"rotY": 269.98764,
"rotZ": 359.984558,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Tekeli-li",
"Description": "Weakness",
"GMNotes": "{\n \"id\": \"08723\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Madness.\",\n \"permanent\": false,\n \"weakness\": true,\n \"cycle\": \"Edge of the Earth\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 449745,
"SidewaysCard": false,
"CustomDeck": {
"4497": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1858293462583844492/A3CE36420BC4AE8D863014F3F8B84C1A6047EBEB/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "8abd77",
"Name": "Card",
"Transform": {
"posX": 79.1157455,
"posY": 3.32956862,
"posZ": 7.26459837,
"rotX": 359.7708,
"rotY": 269.987671,
"rotZ": 0.3799585,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Frostbitten",
"Description": "Weakness.",
"GMNotes": "{\n \"id\": \"08646\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Injury.\",\n \"permanent\": false,\n \"weakness\": true,\n \"cycle\": \"Edge of the Earth\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 450318,
"SidewaysCard": false,
"CustomDeck": {
"4503": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1858293462587822801/5E2DBBF49FB9A74CE0F4A953D8F4FECCBA479D11/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "04b3a9",
"Name": "Card",
"Transform": {
"posX": 79.4214,
"posY": 3.323264,
"posZ": 7.652251,
"rotX": 359.377838,
"rotY": 269.987518,
"rotZ": 0.179557264,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Possessed",
"Description": "Weakness.",
"GMNotes": "{\n \"id\": \"08647\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Madness.\",\n \"permanent\": false,\n \"weakness\": true,\n \"cycle\": \"Edge of the Earth\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 450319,
"SidewaysCard": false,
"CustomDeck": {
"4503": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1858293462587822801/5E2DBBF49FB9A74CE0F4A953D8F4FECCBA479D11/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "8d6475",
"Name": "Card",
"Transform": {
"posX": 79.1668854,
"posY": 3.32408237,
"posZ": 7.398873,
"rotX": 359.5188,
"rotY": 269.9862,
"rotZ": 0.5694948,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Sinha's Medical Kit",
"Description": "",
"GMNotes": "{\n \"id\": \"08736\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"cost\": 1,\n \"traits\": \"Item. Science.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"wildIcons\": 1,\n \"uses\": [\n {\n \"count\": 3,\n \"type\": \"Supply\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"Edge of the Earth\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 452306,
"SidewaysCard": false,
"CustomDeck": {
"4523": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1858293462583875023/F146A60AEF1FBC9B5FC96189BC1894C468C1E811/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 5,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "8d5c12",
"Name": "Card",
"Transform": {
"posX": 79.272316,
"posY": 3.32305312,
"posZ": 7.384703,
"rotX": 359.494446,
"rotY": 269.986267,
"rotZ": 0.5253805,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Kensler's Log",
"Description": "",
"GMNotes": "{\n \"id\": \"08735\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"cost\": 2,\n \"traits\": \"Item. Tome.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"wildIcons\": 1,\n \"uses\": [\n {\n \"count\": 2,\n \"type\": \"Secret\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"Edge of the Earth\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 452305,
"SidewaysCard": false,
"CustomDeck": {
"4523": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1858293462583875023/F146A60AEF1FBC9B5FC96189BC1894C468C1E811/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 5,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "e627e8",
"Name": "Card",
"Transform": {
"posX": 79.17594,
"posY": 3.32366157,
"posZ": 8.22749,
"rotX": 359.537567,
"rotY": 269.991,
"rotZ": 359.3912,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Takada's Cache",
"Description": "",
"GMNotes": "{\n \"id\": \"08737\",\n \"type\": \"Event\",\n \"class\": \"Neutral\",\n \"cost\": 0,\n \"traits\": \"Supply.\",\n \"permanent\": false,\n \"weakness\": false,\n \"wildIcons\": 1,\n \"cycle\": \"Edge of the Earth\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 452307,
"SidewaysCard": false,
"CustomDeck": {
"4523": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1858293462583875023/F146A60AEF1FBC9B5FC96189BC1894C468C1E811/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 5,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "b12d89",
"Name": "Card",
"Transform": {
"posX": 79.18811,
"posY": 3.32607746,
"posZ": 7.940527,
"rotX": 359.415436,
"rotY": 269.989929,
"rotZ": 359.737122,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Dyer's Sketches",
"Description": "",
"GMNotes": "{\n \"id\": \"08733\",\n \"type\": \"Event\",\n \"class\": \"Neutral\",\n \"cost\": 2,\n \"traits\": \"Insight.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"wildIcons\": 1,\n \"cycle\": \"Edge of the Earth\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 452303,
"SidewaysCard": false,
"CustomDeck": {
"4523": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1858293462583875023/F146A60AEF1FBC9B5FC96189BC1894C468C1E811/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 5,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "1c751d",
"Name": "Card",
"Transform": {
"posX": 78.96204,
"posY": 3.32914948,
"posZ": 7.67067957,
"rotX": 359.512024,
"rotY": 269.987549,
"rotZ": 0.2587492,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Ellsworth's Boots",
"Description": "",
"GMNotes": "{\n \"id\": \"08734\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"cost\": 2,\n \"traits\": \"Item. Clothing. Footwear.\",\n \"permanent\": false,\n \"weakness\": false,\n \"agilityIcons\": 1,\n \"wildIcons\": 1,\n \"cycle\": \"Edge of the Earth\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 452304,
"SidewaysCard": false,
"CustomDeck": {
"4523": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1858293462583875023/F146A60AEF1FBC9B5FC96189BC1894C468C1E811/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 5,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "d6f719",
"Name": "Card",
"Transform": {
"posX": 78.9415054,
"posY": 3.32385945,
"posZ": 8.213192,
"rotX": 359.589,
"rotY": 269.9915,
"rotZ": 359.185883,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Collected Works of Poe",
"Description": "",
"GMNotes": "{\n \"id\": \"08731\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"cost\": 1,\n \"traits\": \"Item. Tome.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"wildIcons\": 1,\n \"uses\": [\n {\n \"count\": 3,\n \"type\": \"Charge\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"Edge of the Earth\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 452301,
"SidewaysCard": false,
"CustomDeck": {
"4523": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1858293462583875023/F146A60AEF1FBC9B5FC96189BC1894C468C1E811/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 5,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "c1f999",
"Name": "Card",
"Transform": {
"posX": 79.14109,
"posY": 3.32535124,
"posZ": 8.168661,
"rotX": 359.544769,
"rotY": 269.990784,
"rotZ": 359.453552,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Claypool's Furs",
"Description": "",
"GMNotes": "{\n \"id\": \"08730\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"cost\": 2,\n \"traits\": \"Item. Clothing.\",\n \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"wildIcons\": 1,\n \"cycle\": \"Edge of the Earth\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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/1858293462583875023/F146A60AEF1FBC9B5FC96189BC1894C468C1E811/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 5,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "34e723",
"Name": "Card",
"Transform": {
"posX": 79.14728,
"posY": 3.328748,
"posZ": 7.70422935,
"rotX": 359.510254,
"rotY": 269.988129,
"rotZ": 0.126796469,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Cookie's Custom .32",
"Description": "",
"GMNotes": "{\n \"id\": \"08732\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"cost\": 2,\n \"traits\": \"Item. Weapon. Firearm.\",\n \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"wildIcons\": 1,\n \"uses\": [\n {\n \"count\": 2,\n \"type\": \"Ammo\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"Edge of the Earth\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 452302,
"SidewaysCard": false,
"CustomDeck": {
"4523": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1858293462583875023/F146A60AEF1FBC9B5FC96189BC1894C468C1E811/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 5,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "1bf025",
"Name": "Card",
"Transform": {
"posX": 78.58734,
"posY": 3.33044648,
"posZ": 7.553613,
"rotX": 359.918671,
"rotY": 269.999664,
"rotZ": 0.603583932,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Anyu",
"Description": "Faithful Companion",
"GMNotes": "{\n \"id\": \"08738\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"cost\": 3,\n \"traits\": \"Ally. Creature.\",\n \"permanent\": false,\n \"weakness\": false,\n \"agilityIcons\": 1,\n \"wildIcons\": 1,\n \"cycle\": \"Edge of the Earth\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 452308,
"SidewaysCard": false,
"CustomDeck": {
"4523": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1858293462583875023/F146A60AEF1FBC9B5FC96189BC1894C468C1E811/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 5,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "fb4fff",
"Name": "Card",
"Transform": {
"posX": 78.50171,
"posY": 3.35295582,
"posZ": 6.87972736,
"rotX": 0.0005704275,
"rotY": 269.972168,
"rotZ": 358.83316,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Dimensional Beam Machine",
"Description": "",
"GMNotes": "{\n \"id\": \"87032\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"cost\": 1,\n \"traits\": \"Item. Science. Tool. Future.\",\n \"permanent\": false,\n \"weakness\": false,\n \"wildIcons\": 2,\n \"uses\": [\n {\n \"count\": 2,\n \"type\": \"Charge\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 558008,
"SidewaysCard": false,
"CustomDeck": {
"5580": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609761078/E05F39D952FE0C4E6473E744D64221DD1150F00A/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 7,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "efe0dd",
"Name": "Card",
"Transform": {
"posX": 78.6214142,
"posY": 3.3243742,
"posZ": 8.372947,
"rotX": 359.921783,
"rotY": 270.000671,
"rotZ": 359.120026,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Ezra Graves",
"Description": "Professor of the Arcane",
"GMNotes": "{\n \"id\": \"87023\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"cost\": 3,\n \"traits\": \"Scientist. Ally. Present.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 2,\n \"wildIcons\": 1,\n \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 558005,
"SidewaysCard": false,
"CustomDeck": {
"5580": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609761078/E05F39D952FE0C4E6473E744D64221DD1150F00A/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 7,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "03695f",
"Name": "Card",
"Transform": {
"posX": 79.0634842,
"posY": 3.32526135,
"posZ": 8.087827,
"rotX": 359.4769,
"rotY": 270.002625,
"rotZ": 359.434174,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Nikola Tesla",
"Description": "Renowned Inventor",
"GMNotes": "{\n \"id\": \"87014\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"cost\": 1,\n \"traits\": \"Scientist. Ally. Past.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"intellectIcons\": 1,\n \"wildIcons\": 1,\n \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 558002,
"SidewaysCard": false,
"CustomDeck": {
"5580": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609761078/E05F39D952FE0C4E6473E744D64221DD1150F00A/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 7,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "4232d9",
"Name": "Card",
"Transform": {
"posX": 78.7977448,
"posY": 3.2988193,
"posZ": 7.305182,
"rotX": 2.016817,
"rotY": 179.984924,
"rotZ": 1.47954977,
"scaleX": 1.1,
"scaleY": 1.0,
"scaleZ": 1.1
},
"Nickname": "Wendy Adams (Parallel Back)",
"Description": "The Urchin",
"GMNotes": "{\n \"id\": \"01005-pb\",\n \"type\": \"Investigator\",\n \"class\": \"Survivor\",\n \"traits\": \"Drifter.\",\n \"willpowerIcons\": 4,\n \"intellectIcons\": 3,\n \"combatIcons\": 1,\n \"agilityIcons\": 4,\n \"cycle\": \"Core\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 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": 535802,
"SidewaysCard": true,
"CustomDeck": {
"5358": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1849293764610856838/D7BEC8CBBE4F692DC2033065B210E0C1B0869BB1/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1849293764610857202/7BDF70F6A11E1F9779ED6AB2BBD6C8C33A930CDE/",
"NumWidth": 3,
"NumHeight": 3,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "61503e",
"Name": "Card",
"Transform": {
"posX": 78.2203445,
"posY": 3.322121,
"posZ": 8.844479,
"rotX": 359.46817,
"rotY": 179.97789,
"rotZ": 359.716766,
"scaleX": 1.1,
"scaleY": 1.0,
"scaleZ": 1.1
},
"Nickname": "Wendy Adams (Parallel Front)",
"Description": "The Urchin",
"GMNotes": "{\n \"id\": \"01005-pf\",\n \"type\": \"Investigator\",\n \"class\": \"Survivor\",\n \"traits\": \"Drifter.\",\n \"willpowerIcons\": 4,\n \"intellectIcons\": 3,\n \"combatIcons\": 1,\n \"agilityIcons\": 4,\n \"cycle\": \"Core\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 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": 535801,
"SidewaysCard": true,
"CustomDeck": {
"5358": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1849293764610856838/D7BEC8CBBE4F692DC2033065B210E0C1B0869BB1/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1849293764610857202/7BDF70F6A11E1F9779ED6AB2BBD6C8C33A930CDE/",
"NumWidth": 3,
"NumHeight": 3,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "fd91ea",
"Name": "Card",
"Transform": {
"posX": 78.67185,
"posY": 3.33231616,
"posZ": 7.625913,
"rotX": 0.198933259,
"rotY": 180.000168,
"rotZ": 0.233950838,
"scaleX": 1.1,
"scaleY": 1.0,
"scaleZ": 1.1
},
"Nickname": "Wendy Adams (Parallel)",
"Description": "The Urchin",
"GMNotes": "{\n \"id\": \"01005-p\",\n \"type\": \"Investigator\",\n \"class\": \"Survivor\",\n \"traits\": \"Drifter.\",\n \"willpowerIcons\": 4,\n \"intellectIcons\": 3,\n \"combatIcons\": 1,\n \"agilityIcons\": 4,\n \"cycle\": \"Core\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 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": 535800,
"SidewaysCard": true,
"CustomDeck": {
"5358": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1849293764610856838/D7BEC8CBBE4F692DC2033065B210E0C1B0869BB1/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1849293764610857202/7BDF70F6A11E1F9779ED6AB2BBD6C8C33A930CDE/",
"NumWidth": 3,
"NumHeight": 3,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "664b70",
"Name": "Card",
"Transform": {
"posX": 79.37218,
"posY": 3.30165768,
"posZ": 6.698034,
"rotX": 359.584381,
"rotY": 269.992126,
"rotZ": 1.13918424,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Wendy's Amulet",
"Description": "Advanced",
"GMNotes": "{\n \"id\": \"90039\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"cost\": 2,\n \"traits\": \"Item. Relic.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"wildIcons\": 2,\n \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 536001,
"SidewaysCard": false,
"CustomDeck": {
"5360": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1849293764610861313/38FA9E4802C3B8E8FC2DB16E94E65A3FD60D92B9/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "89fe92",
"Name": "Card",
"Transform": {
"posX": 78.6916962,
"posY": 3.33147764,
"posZ": 7.64828348,
"rotX": 359.8052,
"rotY": 269.999176,
"rotZ": 0.426985323,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Abandoned and Alone",
"Description": "Advanced",
"GMNotes": "{\n \"id\": \"90040\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Madness.\",\n \"permanent\": false,\n \"weakness\": true,\n \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 536002,
"SidewaysCard": false,
"CustomDeck": {
"5360": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1849293764610861313/38FA9E4802C3B8E8FC2DB16E94E65A3FD60D92B9/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "35a7e9",
"Name": "Card",
"Transform": {
"posX": 47.52965,
"posY": 1.98562944,
"posZ": -99.22343,
"rotX": 0.0207999572,
"rotY": 269.9912,
"rotZ": 0.01677989,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Abandoned and Alone",
"Description": "Weakness",
"GMNotes": "{\n \"id\": \"01515\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Madness.\",\n \"permanent\": false,\n \"weakness\": true,\n \"cycle\": \"Core\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 587214,
"SidewaysCard": false,
"CustomDeck": {
"5872": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1856052392800079019/C6B0ADB01750372B73B2281CFFDFA5F6F87C2C9E/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 7,
"NumHeight": 3,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "b4f9ee",
"Name": "Card",
"Transform": {
"posX": 79.8504,
"posY": 3.31800556,
"posZ": 6.914708,
"rotX": 359.658478,
"rotY": 269.998535,
"rotZ": 0.489542067,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Tidal Memento",
"Description": "",
"GMNotes": "{\n \"id\": \"90038\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"\",\n \"permanent\": true,\n \"weakness\": false,\n \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 536000,
"SidewaysCard": false,
"CustomDeck": {
"5360": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1849293764610861313/38FA9E4802C3B8E8FC2DB16E94E65A3FD60D92B9/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "aa38d0",
"Name": "Card",
"Transform": {
"posX": 78.97926,
"posY": 3.321658,
"posZ": 8.447824,
"rotX": 359.71582,
"rotY": 270.002,
"rotZ": 359.187622,
"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 \"cost\": 3,\n \"level\": 3,\n \"traits\": \"Ally. Blessed.\",\n \"permanent\": false,\n \"weakness\": false,\n \"wildIcons\": 1,\n \"cycle\": \"The Innsmouth Conspiracy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "do_not_ready = true\n",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "ca9a60",
"Name": "Card",
"Transform": {
"posX": 78.56313,
"posY": 3.326999,
"posZ": 7.388828,
"rotX": 359.95697,
"rotY": 269.999817,
"rotZ": 0.83527863,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Trusty Bullwhip",
"Description": "",
"GMNotes": "{\n \"id\": \"08008\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"cost\": 2,\n \"traits\": \"Item. Weapon. Melee.\",\n \"permanent\": false,\n \"weakness\": false,\n \"agilityIcons\": 2,\n \"wildIcons\": 1,\n \"cycle\": \"Edge of the Earth\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "fc1506",
"Name": "Card",
"Transform": {
"posX": 78.78564,
"posY": 3.32820821,
"posZ": 8.1200285,
"rotX": 359.6996,
"rotY": 270.008972,
"rotZ": 359.332733,
"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 \"cycle\": \"Edge of the Earth\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "001ae8",
"Name": "Card",
"Transform": {
"posX": 78.91851,
"posY": 3.314761,
"posZ": 7.7586956,
"rotX": 358.785583,
"rotY": 269.996216,
"rotZ": 0.250035733,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Guard Dog",
"Description": "",
"GMNotes": "{\n \"id\": \"01521\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"cost\": 3,\n \"level\": 0,\n \"traits\": \"Ally. Creature.\",\n \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"cycle\": \"Core\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 587201,
"SidewaysCard": false,
"CustomDeck": {
"5872": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1856052392800079019/C6B0ADB01750372B73B2281CFFDFA5F6F87C2C9E/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 7,
"NumHeight": 3,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "3c7eb1",
"Name": "Card",
"Transform": {
"posX": 78.91589,
"posY": 3.318511,
"posZ": 7.63233757,
"rotX": 359.0704,
"rotY": 269.993,
"rotZ": 0.810536861,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "First Aid (3)",
"Description": "",
"GMNotes": "{\n \"id\": \"01683\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"cost\": 2,\n \"level\": 3,\n \"traits\": \"Talent. Science.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 2,\n \"uses\": [\n {\n \"count\": 4,\n \"type\": \"Supply\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"Core\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 587215,
"SidewaysCard": false,
"CustomDeck": {
"5872": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1856052392800079019/C6B0ADB01750372B73B2281CFFDFA5F6F87C2C9E/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 7,
"NumHeight": 3,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "b9e532",
"Name": "Card",
"Transform": {
"posX": 78.9154,
"posY": 3.320393,
"posZ": 7.59731627,
"rotX": 359.220062,
"rotY": 269.993958,
"rotZ": 0.829684138,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Scavenging",
"Description": "",
"GMNotes": "{\n \"id\": \"01573\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Talent.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"cycle\": \"Core\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 587210,
"SidewaysCard": false,
"CustomDeck": {
"5872": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1856052392800079019/C6B0ADB01750372B73B2281CFFDFA5F6F87C2C9E/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 7,
"NumHeight": 3,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "3959fa",
"Name": "Card",
"Transform": {
"posX": 78.75851,
"posY": 3.32011,
"posZ": 7.671716,
"rotX": 359.221466,
"rotY": 269.990662,
"rotZ": 0.871949553,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Will to Survive (3)",
"Description": "",
"GMNotes": "{\n \"id\": \"01585\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"cost\": 4,\n \"level\": 3,\n \"traits\": \"Spirit.\",\n \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"wildIcons\": 1,\n \"cycle\": \"Core\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 587216,
"SidewaysCard": false,
"CustomDeck": {
"5872": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1856052392800079019/C6B0ADB01750372B73B2281CFFDFA5F6F87C2C9E/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 7,
"NumHeight": 3,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "14d8ff",
"Name": "Card",
"Transform": {
"posX": 78.81089,
"posY": 3.33017445,
"posZ": 7.665364,
"rotX": 359.660156,
"rotY": 269.998718,
"rotZ": 0.347612739,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Baseball Bat",
"Description": "",
"GMNotes": "{\n \"id\": \"01574\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Item. Weapon. Melee.\",\n \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"cycle\": \"Core\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 587211,
"SidewaysCard": false,
"CustomDeck": {
"5872": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1856052392800079019/C6B0ADB01750372B73B2281CFFDFA5F6F87C2C9E/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 7,
"NumHeight": 3,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "85822c",
"Name": "Card",
"Transform": {
"posX": 78.81157,
"posY": 3.31814885,
"posZ": 7.66472626,
"rotX": 359.0511,
"rotY": 269.988342,
"rotZ": 0.9050896,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Medical Texts",
"Description": "",
"GMNotes": "{\n \"id\": \"01535\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Item. Tome.\",\n \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"cycle\": \"Core\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 587202,
"SidewaysCard": false,
"CustomDeck": {
"5872": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1856052392800079019/C6B0ADB01750372B73B2281CFFDFA5F6F87C2C9E/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 7,
"NumHeight": 3,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "07b7a1",
"Name": "Card",
"Transform": {
"posX": 78.8108,
"posY": 3.33427048,
"posZ": 7.665379,
"rotX": 359.820129,
"rotY": 269.999481,
"rotZ": 0.2009123,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Working a Hunch",
"Description": "",
"GMNotes": "{\n \"id\": \"01537\",\n \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Insight.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 2,\n \"cycle\": \"Core\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 587203,
"SidewaysCard": false,
"CustomDeck": {
"5872": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1856052392800079019/C6B0ADB01750372B73B2281CFFDFA5F6F87C2C9E/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 7,
"NumHeight": 3,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "bc4a4c",
"Name": "Card",
"Transform": {
"posX": 78.8108,
"posY": 3.33563638,
"posZ": 7.66538,
"rotX": 359.8854,
"rotY": 269.9997,
"rotZ": 0.141016364,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Deduction",
"Description": "",
"GMNotes": "{\n \"id\": \"01539\",\n \"type\": \"Skill\",\n \"class\": \"Seeker\",\n \"level\": 0,\n \"traits\": \"Practiced.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"cycle\": \"Core\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 587204,
"SidewaysCard": false,
"CustomDeck": {
"5872": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1856052392800079019/C6B0ADB01750372B73B2281CFFDFA5F6F87C2C9E/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 7,
"NumHeight": 3,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "56b8ad",
"Name": "Card",
"Transform": {
"posX": 78.81165,
"posY": 3.317464,
"posZ": 7.664652,
"rotX": 358.947021,
"rotY": 269.986176,
"rotZ": 1.0004493,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "First Aid",
"Description": "",
"GMNotes": "{\n \"id\": \"01519\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Talent. Science.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"uses\": [\n {\n \"count\": 3,\n \"type\": \"Supply\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"Core\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 587200,
"SidewaysCard": false,
"CustomDeck": {
"5872": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1856052392800079019/C6B0ADB01750372B73B2281CFFDFA5F6F87C2C9E/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 7,
"NumHeight": 3,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "e0881e",
"Name": "Card",
"Transform": {
"posX": 78.81079,
"posY": 3.32444,
"posZ": 7.665373,
"rotX": 359.386169,
"rotY": 269.99646,
"rotZ": 0.5991602,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Overpower",
"Description": "",
"GMNotes": "{\n \"id\": \"01591\",\n \"type\": \"Skill\",\n \"class\": \"Neutral\",\n \"level\": 0,\n \"traits\": \"Practiced.\",\n \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 2,\n \"cycle\": \"Core\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 587208,
"SidewaysCard": false,
"CustomDeck": {
"5872": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1856052392800079019/C6B0ADB01750372B73B2281CFFDFA5F6F87C2C9E/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 7,
"NumHeight": 3,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "853b6c",
"Name": "Card",
"Transform": {
"posX": 78.81156,
"posY": 3.318036,
"posZ": 7.66472769,
"rotX": 359.0457,
"rotY": 269.988281,
"rotZ": 0.9100732,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Unexpected Courage",
"Description": "",
"GMNotes": "{\n \"id\": \"01593\",\n \"type\": \"Skill\",\n \"class\": \"Neutral\",\n \"level\": 0,\n \"traits\": \"Innate.\",\n \"permanent\": false,\n \"weakness\": false,\n \"wildIcons\": 2,\n \"cycle\": \"Core\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 587212,
"SidewaysCard": false,
"CustomDeck": {
"5872": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1856052392800079019/C6B0ADB01750372B73B2281CFFDFA5F6F87C2C9E/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 7,
"NumHeight": 3,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "5d04a1",
"Name": "Card",
"Transform": {
"posX": 78.81155,
"posY": 3.32036781,
"posZ": 7.66474676,
"rotX": 359.193085,
"rotY": 269.99054,
"rotZ": 0.774553835,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Burglary",
"Description": "",
"GMNotes": "{\n \"id\": \"01545\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Talent. Illicit.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"cycle\": \"Core\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 587206,
"SidewaysCard": false,
"CustomDeck": {
"5872": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1856052392800079019/C6B0ADB01750372B73B2281CFFDFA5F6F87C2C9E/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 7,
"NumHeight": 3,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "d72b97",
"Name": "Card",
"Transform": {
"posX": 48.52699,
"posY": 2.01476264,
"posZ": -121.624062,
"rotX": 358.8883,
"rotY": 269.998383,
"rotZ": 0.0166083276,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Daisy's Tote Bag",
"Description": "",
"GMNotes": "{\n \"id\": \"01508\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"cost\": 2,\n \"traits\": \"Item.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"intellectIcons\": 1,\n \"wildIcons\": 1,\n \"cycle\": \"Core\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 587205,
"SidewaysCard": false,
"CustomDeck": {
"5872": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1856052392800079019/C6B0ADB01750372B73B2281CFFDFA5F6F87C2C9E/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 7,
"NumHeight": 3,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "132069",
"Name": "Card",
"Transform": {
"posX": 78.81078,
"posY": 3.32124376,
"posZ": 7.66537046,
"rotX": 359.233459,
"rotY": 269.9947,
"rotZ": 0.739355743,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Hard Knocks",
"Description": "",
"GMNotes": "{\n \"id\": \"01549\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Talent.\",\n \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"agilityIcons\": 1,\n \"cycle\": \"Core\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 587207,
"SidewaysCard": false,
"CustomDeck": {
"5872": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1856052392800079019/C6B0ADB01750372B73B2281CFFDFA5F6F87C2C9E/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 7,
"NumHeight": 3,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "ac7047",
"Name": "Card",
"Transform": {
"posX": 45.1273079,
"posY": 1.985585,
"posZ": -113.200745,
"rotX": 0.0167734791,
"rotY": 180.0,
"rotZ": 359.9792,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Daisy Walker",
"Description": "The Librarian",
"GMNotes": "{\n \"id\": \"01002-r\",\n \"type\": \"Investigator\",\n \"class\": \"Seeker\",\n \"traits\": \"Miskatonic.\",\n \"willpowerIcons\": 3,\n \"intellectIcons\": 5,\n \"combatIcons\": 2,\n \"agilityIcons\": 2,\n \"cycle\": \"Core\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 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": 587401,
"SidewaysCard": true,
"CustomDeck": {
"5874": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1856052392800108004/768BB33829A836E2AB5E6775A22271BE77585D4A/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1856052392800108622/9BA9D571CE81D39DDED8F6F7573E8676964E7723/",
"NumWidth": 3,
"NumHeight": 3,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "05d7d5",
"Name": "Card",
"Transform": {
"posX": 48.5590744,
"posY": 1.985616,
"posZ": -126.155769,
"rotX": 0.0208081845,
"rotY": 270.0006,
"rotZ": 0.0167716723,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Wendy's Amulet",
"Description": "",
"GMNotes": "{\n \"id\": \"01514\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"cost\": 2,\n \"traits\": \"Item. Relic.\",\n \"permanent\": false,\n \"weakness\": false,\n \"wildIcons\": 2,\n \"cycle\": \"Core\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 587213,
"SidewaysCard": false,
"CustomDeck": {
"5872": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1856052392800079019/C6B0ADB01750372B73B2281CFFDFA5F6F87C2C9E/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 7,
"NumHeight": 3,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "11bcb3",
"Name": "Card",
"Transform": {
"posX": 47.45854,
"posY": 1.98558533,
"posZ": -116.21994,
"rotX": 0.016775392,
"rotY": 179.999878,
"rotZ": 359.9792,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Wendy Adams",
"Description": "The Urchin",
"GMNotes": "{\n \"id\": \"01005-r\",\n \"type\": \"Investigator\",\n \"class\": \"Survivor\",\n \"traits\": \"Drifter.\",\n \"willpowerIcons\": 4,\n \"intellectIcons\": 3,\n \"combatIcons\": 1,\n \"agilityIcons\": 4,\n \"cycle\": \"Core\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 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": 587404,
"SidewaysCard": true,
"CustomDeck": {
"5874": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1856052392800108004/768BB33829A836E2AB5E6775A22271BE77585D4A/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1856052392800108622/9BA9D571CE81D39DDED8F6F7573E8676964E7723/",
"NumWidth": 3,
"NumHeight": 3,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "8c997c",
"Name": "Card",
"Transform": {
"posX": 45.3244743,
"posY": 1.9852438,
"posZ": -105.183014,
"rotX": 0.0208089836,
"rotY": 269.981567,
"rotZ": 0.0167721659,
"scaleX": 0.6,
"scaleY": 1.0,
"scaleZ": 0.6
},
"Nickname": "Agnes Baker",
"Description": "",
"GMNotes": "{\n \"id\": \"01004-revised-m\",\n \"type\": \"Minicard\",\n \"traits\": \"\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 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": 587103,
"SidewaysCard": false,
"CustomDeck": {
"5871": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1856052392800340918/16F5E89C36494A9A7D4C191DFF376E340BAABD00/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1856052392800341634/C8EF1EDA589007989C51031F8CD42B23956EA7CE/",
"NumWidth": 3,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "f60263",
"Name": "Card",
"Transform": {
"posX": 18.520977,
"posY": 3.37902236,
"posZ": -56.92342,
"rotX": 359.956818,
"rotY": 269.994843,
"rotZ": 0.302780569,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Extra Ammunition (1)",
"Description": "",
"GMNotes": "{\n \"id\": \"01026\",\n \"alternate_ids\": [\n \"01526\"\n ],\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"cost\": 2,\n \"level\": 1,\n \"traits\": \"Supply.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"uses\": [\n {\n \"count\": 3,\n \"type\": \"Ammo\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"Core\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "889121",
"Name": "Card",
"Transform": {
"posX": 18.9658051,
"posY": 3.3747,
"posZ": -56.94236,
"rotX": 359.506866,
"rotY": 270.005127,
"rotZ": 0.2838425,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Vicious Blow",
"Description": "",
"GMNotes": "{\n \"id\": \"01025\",\n \"alternate_ids\": [\n \"60119\",\n \"01525\"\n ],\n \"type\": \"Skill\",\n \"class\": \"Guardian\",\n \"level\": 0,\n \"traits\": \"Practiced.\",\n \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"cycle\": \"Core\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "da46e0",
"Name": "Card",
"Transform": {
"posX": 19.0658417,
"posY": 3.37383,
"posZ": -56.7921028,
"rotX": 359.443359,
"rotY": 270.0152,
"rotZ": 359.97818,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Police Badge (2)",
"Description": "",
"GMNotes": "{\n \"id\": \"01027\",\n \"alternate_ids\": [\n \"01527\"\n ],\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"cost\": 3,\n \"level\": 2,\n \"traits\": \"Item.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"wildIcons\": 1,\n \"cycle\": \"Core\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "3b6834",
"Name": "Card",
"Transform": {
"posX": 19.1017914,
"posY": 3.366094,
"posZ": -57.6841545,
"rotX": 359.7628,
"rotY": 270.002319,
"rotZ": 0.7176479,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "\"I've had worse��‚��\" (4)",
"Description": "",
"GMNotes": "{\n \"id\": \"02261\",\n \"alternate_ids\": [\n \"01684\"\n ],\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"cost\": 0,\n \"level\": 4,\n \"traits\": \"Spirit.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 2,\n \"agilityIcons\": 1,\n \"cycle\": \"The Dunwich Legacy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "86ee68",
"Name": "Card",
"Transform": {
"posX": 19.19142,
"posY": 3.37213278,
"posZ": -56.8479424,
"rotX": 359.405,
"rotY": 269.9841,
"rotZ": 0.07582742,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Machete",
"Description": "",
"GMNotes": "{\n \"id\": \"01020\",\n \"alternate_ids\": [\n \"01520\"\n ],\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"cost\": 3,\n \"level\": 0,\n \"traits\": \"Item. Weapon. Melee.\",\n \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"cycle\": \"Core\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "2db518",
"Name": "Card",
"Transform": {
"posX": 19.3732185,
"posY": 3.36635685,
"posZ": -57.515667,
"rotX": 359.634,
"rotY": 270.002258,
"rotZ": 0.608968556,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Evidence!",
"Description": "",
"GMNotes": "{\n \"id\": \"01022\",\n \"alternate_ids\": [\n \"01522\"\n ],\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Insight.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 2,\n \"cycle\": \"Core\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "97986a",
"Name": "Card",
"Transform": {
"posX": 19.39956,
"posY": 3.36772275,
"posZ": -57.2596169,
"rotX": 359.513275,
"rotY": 269.998474,
"rotZ": 0.4988616,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Dynamite Blast",
"Description": "",
"GMNotes": "{\n \"id\": \"01024\",\n \"alternate_ids\": [\n \"01524\"\n ],\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"cost\": 5,\n \"level\": 0,\n \"traits\": \"Tactic.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"cycle\": \"Core\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "1165db",
"Name": "Card",
"Transform": {
"posX": 18.9076786,
"posY": 3.37186337,
"posZ": -57.2388649,
"rotX": 359.6569,
"rotY": 270.016724,
"rotZ": 0.7027389,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Physical Training",
"Description": "",
"GMNotes": "{\n \"id\": \"01017\",\n \"alternate_ids\": [\n \"60108\",\n \"01517\"\n ],\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Talent.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"combatIcons\": 1,\n \"cycle\": \"Core\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "c92ea3",
"Name": "Card",
"Transform": {
"posX": 19.6669941,
"posY": 3.36653,
"posZ": -57.2136269,
"rotX": 359.49646,
"rotY": 270.013062,
"rotZ": 0.3623686,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Shotgun (4)",
"Description": "",
"GMNotes": "{\n \"id\": \"01029\",\n \"alternate_ids\": [\n \"01529\"\n ],\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"cost\": 5,\n \"level\": 4,\n \"traits\": \"Item. Weapon. Firearm.\",\n \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 2,\n \"uses\": [\n {\n \"count\": 2,\n \"type\": \"Ammo\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"Core\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "12660b",
"Name": "Card",
"Transform": {
"posX": 19.447401,
"posY": 3.36906743,
"posZ": -56.6233864,
"rotX": 359.4188,
"rotY": 270.026,
"rotZ": 359.774231,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": ".45 Automatic",
"Description": "",
"GMNotes": "{\n \"id\": \"01016\",\n \"alternate_ids\": [\n \"01516\"\n ],\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"cost\": 4,\n \"level\": 0,\n \"traits\": \"Item. Weapon. Firearm.\",\n \"permanent\": false,\n \"weakness\": false,\n \"agilityIcons\": 1,\n \"uses\": [\n {\n \"count\": 4,\n \"type\": \"Ammo\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"Core\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "8a0060",
"Name": "Card",
"Transform": {
"posX": 18.18131,
"posY": 3.380918,
"posZ": -57.0213776,
"rotX": 0.1253323,
"rotY": 270.0003,
"rotZ": 0.240238219,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Old Book of Lore (3)",
"Description": "",
"GMNotes": "{\n \"id\": \"06279\",\n \"alternate_ids\": [\n \"01686\"\n ],\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"cost\": 2,\n \"level\": 3,\n \"traits\": \"Item. Tome.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"intellectIcons\": 1,\n \"uses\": [\n {\n \"count\": 2,\n \"type\": \"Secret\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Dream-Eaters\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "719f7e",
"Name": "Card",
"Transform": {
"posX": 19.0092068,
"posY": 3.374551,
"posZ": -56.83485,
"rotX": 359.4648,
"rotY": 270.016418,
"rotZ": 0.05348859,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Seeking Answers (2)",
"Description": "",
"GMNotes": "{\n \"id\": \"60227\",\n \"alternate_ids\": [\n \"01685\"\n ],\n \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"cost\": 1,\n \"level\": 2,\n \"traits\": \"Insight.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"agilityIcons\": 2,\n \"cycle\": \"Investigator Packs\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 587110,
"SidewaysCard": false,
"CustomDeck": {
"5871": {
"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": "5d25b1",
"Name": "Card",
"Transform": {
"posX": 19.4374886,
"posY": 3.36928177,
"posZ": -56.6246834,
"rotX": 359.425079,
"rotY": 270.0178,
"rotZ": 359.790741,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Cryptic Research (4)",
"Description": "",
"GMNotes": "{\n \"id\": \"01043\",\n \"alternate_ids\": [\n \"01543\"\n ],\n \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"cost\": 0,\n \"level\": 4,\n \"traits\": \"Insight.\",\n \"permanent\": false,\n \"weakness\": false,\n \"cycle\": \"Core\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "f5bcec",
"Name": "Card",
"Transform": {
"posX": 19.4993782,
"posY": 3.36874437,
"posZ": -56.8624153,
"rotX": 359.398682,
"rotY": 270.016327,
"rotZ": 0.0724880844,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Encyclopedia (2)",
"Description": "",
"GMNotes": "{\n \"id\": \"01042\",\n \"alternate_ids\": [\n \"01542\"\n ],\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"cost\": 2,\n \"level\": 2,\n \"traits\": \"Item. Tome.\",\n \"permanent\": false,\n \"weakness\": false,\n \"wildIcons\": 1,\n \"cycle\": \"Core\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "b00b76",
"Name": "Card",
"Transform": {
"posX": 19.2810268,
"posY": 3.37016463,
"posZ": -57.0714951,
"rotX": 359.451721,
"rotY": 270.014832,
"rotZ": 0.37522456,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Disc of Itzamna (2)",
"Description": "Protective Amulet",
"GMNotes": "{\n \"id\": \"01041\",\n \"alternate_ids\": [\n \"01541\"\n ],\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"cost\": 3,\n \"level\": 2,\n \"traits\": \"Item. Relic.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"intellectIcons\": 1,\n \"combatIcons\": 1,\n \"cycle\": \"Core\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "378e84",
"Name": "Card",
"Transform": {
"posX": 19.3177242,
"posY": 3.36964,
"posZ": -57.54655,
"rotX": 359.705719,
"rotY": 269.998718,
"rotZ": 0.512432456,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Magnifying Glass (1)",
"Description": "",
"GMNotes": "{\n \"id\": \"01040\",\n \"alternate_ids\": [\n \"01540\"\n ],\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"cost\": 0,\n \"level\": 1,\n \"traits\": \"Item. Tool.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"cycle\": \"Core\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "3689dd",
"Name": "Card",
"Transform": {
"posX": 18.11099,
"posY": 3.67453218,
"posZ": -56.74816,
"rotX": 332.6732,
"rotY": 269.595367,
"rotZ": 1.16668618,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Barricade (3)",
"Description": "",
"GMNotes": "{\n \"id\": \"50004\",\n \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"cost\": 0,\n \"level\": 3,\n \"traits\": \"Insight. Tactic.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"intellectIcons\": 1,\n \"agilityIcons\": 1,\n \"cycle\": \"Return to the Night of the Zealot\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "edb554",
"Name": "Card",
"Transform": {
"posX": 18.66293,
"posY": 3.37896442,
"posZ": -57.02107,
"rotX": 359.849457,
"rotY": 269.987549,
"rotZ": 0.383791566,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Barricade",
"Description": "",
"GMNotes": "{\n \"id\": \"01038\",\n \"alternate_ids\": [\n \"01538\"\n ],\n \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"cost\": 0,\n \"level\": 0,\n \"traits\": \"Insight. Tactic.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"intellectIcons\": 1,\n \"agilityIcons\": 1,\n \"cycle\": \"Core\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "8cf335",
"Name": "Card",
"Transform": {
"posX": 19.0652351,
"posY": 3.37390637,
"posZ": -56.8167572,
"rotX": 359.445038,
"rotY": 270.016571,
"rotZ": 0.0266993381,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Mind over Matter",
"Description": "",
"GMNotes": "{\n \"id\": \"01036\",\n \"alternate_ids\": [\n \"01536\"\n ],\n \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Insight.\",\n \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"agilityIcons\": 1,\n \"cycle\": \"Core\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "e5dd39",
"Name": "Card",
"Transform": {
"posX": 18.9909172,
"posY": 3.37475038,
"posZ": -56.8861542,
"rotX": 359.485352,
"rotY": 270.0159,
"rotZ": 0.1666927,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Hyperawareness",
"Description": "",
"GMNotes": "{\n \"id\": \"01034\",\n \"alternate_ids\": [\n \"01534\"\n ],\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Talent.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"agilityIcons\": 1,\n \"cycle\": \"Core\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "9934d2",
"Name": "Card",
"Transform": {
"posX": 19.5231037,
"posY": 3.36933827,
"posZ": -56.76861,
"rotX": 359.430756,
"rotY": 270.0168,
"rotZ": 359.968323,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Dr. Milan Christopher",
"Description": "Professor of Entomology",
"GMNotes": "{\n \"id\": \"01033\",\n \"alternate_ids\": [\n \"01533\"\n ],\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"cost\": 4,\n \"level\": 0,\n \"traits\": \"Ally. Miskatonic.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"cycle\": \"Core\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "8f91ce",
"Name": "Card",
"Transform": {
"posX": 19.64747,
"posY": 3.36733437,
"posZ": -56.9088058,
"rotX": 359.4142,
"rotY": 270.0161,
"rotZ": 0.112492993,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Research Librarian",
"Description": "",
"GMNotes": "{\n \"id\": \"01032\",\n \"alternate_ids\": [\n \"01532\"\n ],\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Ally. Miskatonic.\",\n \"permanent\": false,\n \"weakness\": false,\n \"agilityIcons\": 1,\n \"cycle\": \"Core\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "063fd8",
"Name": "Card",
"Transform": {
"posX": 19.69264,
"posY": 3.37142015,
"posZ": -56.67316,
"rotX": 359.572784,
"rotY": 270.017029,
"rotZ": 359.915833,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Old Book of Lore",
"Description": "",
"GMNotes": "{\n \"id\": \"01031\",\n \"alternate_ids\": [\n \"01531\"\n ],\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"cost\": 3,\n \"level\": 0,\n \"traits\": \"Item. Tome.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"cycle\": \"Core\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "8cc0a6",
"Name": "Card",
"Transform": {
"posX": 19.4300289,
"posY": 3.36892986,
"posZ": -57.0326538,
"rotX": 359.429169,
"rotY": 270.015228,
"rotZ": 0.284121424,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Magnifying Glass",
"Description": "",
"GMNotes": "{\n \"id\": \"01030\",\n \"alternate_ids\": [\n \"01530\"\n ],\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Item. Tool.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"cycle\": \"Core\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "213853",
"Name": "Card",
"Transform": {
"posX": 29.3400459,
"posY": 3.373153,
"posZ": -54.3083954,
"rotX": 0.07555666,
"rotY": 270.0049,
"rotZ": 0.0117874872,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Switchblade",
"Description": "",
"GMNotes": "{\n \"id\": \"01044\",\n \"alternate_ids\": [\n \"60307\",\n \"01544\"\n ],\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Item. Weapon. Melee. Illicit.\",\n \"permanent\": false,\n \"weakness\": false,\n \"agilityIcons\": 1,\n \"cycle\": \"Core\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "da7c01",
"Name": "Card",
"Transform": {
"posX": 29.3400459,
"posY": 3.37315583,
"posZ": -54.3083954,
"rotX": 0.0756898746,
"rotY": 270.009369,
"rotZ": 0.0115649784,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Pickpocketing",
"Description": "",
"GMNotes": "{\n \"id\": \"01046\",\n \"alternate_ids\": [\n \"01546\"\n ],\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Talent. Illicit.\",\n \"permanent\": false,\n \"weakness\": false,\n \"agilityIcons\": 1,\n \"cycle\": \"Core\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "fe2db3",
"Name": "Card",
"Transform": {
"posX": 29.3400459,
"posY": 3.37315631,
"posZ": -54.3083954,
"rotX": 0.07568247,
"rotY": 269.997131,
"rotZ": 0.0115021029,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": ".41 Derringer",
"Description": "",
"GMNotes": "{\n \"id\": \"01047\",\n \"alternate_ids\": [\n \"01547\"\n ],\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"cost\": 3,\n \"level\": 0,\n \"traits\": \"Item. Weapon. Firearm. Illicit.\",\n \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"uses\": [\n {\n \"count\": 3,\n \"type\": \"Ammo\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"Core\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "eaa415",
"Name": "Card",
"Transform": {
"posX": 29.3400459,
"posY": 3.373153,
"posZ": -54.3083954,
"rotX": 0.07570364,
"rotY": 269.990356,
"rotZ": 0.0114862844,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Leo De Luca",
"Description": "The Louisiana Lion",
"GMNotes": "{\n \"id\": \"01048\",\n \"alternate_ids\": [\n \"01548\"\n ],\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"cost\": 6,\n \"level\": 0,\n \"traits\": \"Ally. Criminal.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"cycle\": \"Core\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "833305",
"Name": "Card",
"Transform": {
"posX": 29.3400459,
"posY": 3.37314415,
"posZ": -54.3083954,
"rotX": 0.07572795,
"rotY": 270.018372,
"rotZ": 0.0115815457,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Elusive",
"Description": "",
"GMNotes": "{\n \"id\": \"01050\",\n \"alternate_ids\": [\n \"01550\"\n ],\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Tactic.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"agilityIcons\": 1,\n \"cycle\": \"Core\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "cdfd9f",
"Name": "Card",
"Transform": {
"posX": 29.3400459,
"posY": 3.373154,
"posZ": -54.3083954,
"rotX": 0.0756828561,
"rotY": 270.014862,
"rotZ": 0.011602913,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Backstab",
"Description": "",
"GMNotes": "{\n \"id\": \"01051\",\n \"alternate_ids\": [\n \"01551\"\n ],\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"cost\": 3,\n \"level\": 0,\n \"traits\": \"Tactic.\",\n \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"agilityIcons\": 1,\n \"cycle\": \"Core\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "b18b33",
"Name": "Card",
"Transform": {
"posX": 29.3400459,
"posY": 3.37315321,
"posZ": -54.3083954,
"rotX": 0.07570033,
"rotY": 270.000183,
"rotZ": 0.0115077756,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Sneak Attack",
"Description": "",
"GMNotes": "{\n \"id\": \"01052\",\n \"alternate_ids\": [\n \"01552\"\n ],\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Tactic.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"combatIcons\": 1,\n \"cycle\": \"Core\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "a88392",
"Name": "Card",
"Transform": {
"posX": 29.3400459,
"posY": 3.37315369,
"posZ": -54.3083954,
"rotX": 0.07569761,
"rotY": 270.00528,
"rotZ": 0.011555545,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Opportunist",
"Description": "",
"GMNotes": "{\n \"id\": \"01053\",\n \"alternate_ids\": [\n \"60319\",\n \"01553\"\n ],\n \"type\": \"Skill\",\n \"class\": \"Rogue\",\n \"level\": 0,\n \"traits\": \"Innate.\",\n \"permanent\": false,\n \"weakness\": false,\n \"wildIcons\": 1,\n \"cycle\": \"Core\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "27446e",
"Name": "Card",
"Transform": {
"posX": 29.3400459,
"posY": 3.37315321,
"posZ": -54.3083954,
"rotX": 0.07569229,
"rotY": 270.033417,
"rotZ": 0.0116180489,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Leo De Luca (1)",
"Description": "The Louisiana Lion",
"GMNotes": "{\n \"id\": \"01054\",\n \"alternate_ids\": [\n \"01554\"\n ],\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"cost\": 5,\n \"level\": 1,\n \"traits\": \"Ally. Criminal.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"cycle\": \"Core\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "2fe723",
"Name": "Card",
"Transform": {
"posX": 29.3400459,
"posY": 3.373153,
"posZ": -54.3083954,
"rotX": 0.07568919,
"rotY": 270.010834,
"rotZ": 0.0115670487,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Cat Burglar (1)",
"Description": "",
"GMNotes": "{\n \"id\": \"01055\",\n \"alternate_ids\": [\n \"01555\"\n ],\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"cost\": 4,\n \"level\": 1,\n \"traits\": \"Ally. Criminal.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"agilityIcons\": 1,\n \"cycle\": \"Core\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "308be1",
"Name": "Card",
"Transform": {
"posX": 29.3400459,
"posY": 3.37314939,
"posZ": -54.3083954,
"rotX": 0.07570716,
"rotY": 269.991241,
"rotZ": 0.0114871943,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Sure Gamble (3)",
"Description": "",
"GMNotes": "{\n \"id\": \"01056\",\n \"alternate_ids\": [\n \"01556\"\n ],\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"cost\": 2,\n \"level\": 3,\n \"traits\": \"Fortune. Insight.\",\n \"permanent\": false,\n \"weakness\": false,\n \"cycle\": \"Core\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "4eb231",
"Name": "Card",
"Transform": {
"posX": 29.3400459,
"posY": 3.373153,
"posZ": -54.3083954,
"rotX": 0.07570296,
"rotY": 269.995178,
"rotZ": 0.011497125,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Hot Streak (4)",
"Description": "",
"GMNotes": "{\n \"id\": \"01057\",\n \"alternate_ids\": [\n \"01557\"\n ],\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"cost\": 3,\n \"level\": 4,\n \"traits\": \"Fortune.\",\n \"permanent\": false,\n \"weakness\": false,\n \"wildIcons\": 1,\n \"cycle\": \"Core\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "edd6c4",
"Name": "Card",
"Transform": {
"posX": 29.3400459,
"posY": 3.373143,
"posZ": -54.3083954,
"rotX": 0.07573295,
"rotY": 270.03302,
"rotZ": 0.0116181653,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Lockpicks (1)",
"Description": "",
"GMNotes": "{\n \"id\": \"03031\",\n \"alternate_ids\": [\n \"01687\"\n ],\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"cost\": 3,\n \"level\": 1,\n \"traits\": \"Item. Tool. Illicit.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"uses\": [\n {\n \"count\": 3,\n \"type\": \"Supply\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Path to Carcosa\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "f57af7",
"Name": "Card",
"Transform": {
"posX": 29.3400459,
"posY": 3.373154,
"posZ": -54.3083954,
"rotX": 0.0757573545,
"rotY": 269.9865,
"rotZ": 0.0115151946,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": ".41 Derringer (2)",
"Description": "",
"GMNotes": "{\n \"id\": \"03234\",\n \"alternate_ids\": [\n \"01688\"\n ],\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"cost\": 3,\n \"level\": 2,\n \"traits\": \"Item. Weapon. Firearm. Illicit.\",\n \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"agilityIcons\": 1,\n \"uses\": [\n {\n \"count\": 3,\n \"type\": \"Ammo\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Path to Carcosa\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "80acd2",
"Name": "Card",
"Transform": {
"posX": 32.984848,
"posY": 3.32455468,
"posZ": -47.4100037,
"rotX": 1.14736056,
"rotY": 270.02063,
"rotZ": 1.69495165,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Forbidden Knowledge",
"Description": "",
"GMNotes": "{\n \"id\": \"01058\",\n \"alternate_ids\": [\n \"01558\"\n ],\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"cost\": 0,\n \"level\": 0,\n \"traits\": \"Talent.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"uses\": [\n {\n \"count\": 4,\n \"type\": \"Secret\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"Core\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "fa1d67",
"Name": "Card",
"Transform": {
"posX": 32.9848442,
"posY": 3.32473445,
"posZ": -47.4100075,
"rotX": 1.1447984,
"rotY": 270.0058,
"rotZ": 1.690223,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Holy Rosary",
"Description": "",
"GMNotes": "{\n \"id\": \"01059\",\n \"alternate_ids\": [\n \"01559\"\n ],\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Item. Charm.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"cycle\": \"Core\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "914053",
"Name": "Card",
"Transform": {
"posX": 32.984848,
"posY": 3.32461119,
"posZ": -47.4100037,
"rotX": 1.14685214,
"rotY": 270.0055,
"rotZ": 1.69326723,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Shrivelling",
"Description": "",
"GMNotes": "{\n \"id\": \"01060\",\n \"alternate_ids\": [\n \"01560\"\n ],\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"cost\": 3,\n \"level\": 0,\n \"traits\": \"Spell.\",\n \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"uses\": [\n {\n \"count\": 4,\n \"type\": \"Charge\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"Core\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "8a927c",
"Name": "Card",
"Transform": {
"posX": 32.9848442,
"posY": 3.32474542,
"posZ": -47.4100075,
"rotX": 1.14454091,
"rotY": 270.0085,
"rotZ": 1.69000793,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Scrying",
"Description": "",
"GMNotes": "{\n \"id\": \"01061\",\n \"alternate_ids\": [\n \"01561\"\n ],\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Spell.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"uses\": [\n {\n \"count\": 3,\n \"type\": \"Charge\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"Core\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "9e4505",
"Name": "Card",
"Transform": {
"posX": 32.984848,
"posY": 3.32453156,
"posZ": -47.4100037,
"rotX": 1.14817619,
"rotY": 270.005035,
"rotZ": 1.69521046,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Arcane Studies",
"Description": "",
"GMNotes": "{\n \"id\": \"01062\",\n \"alternate_ids\": [\n \"01562\"\n ],\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Talent.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"intellectIcons\": 1,\n \"cycle\": \"Core\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "7307c4",
"Name": "Card",
"Transform": {
"posX": 32.9848442,
"posY": 3.32474661,
"posZ": -47.4100075,
"rotX": 1.14460361,
"rotY": 270.005737,
"rotZ": 1.689922,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Arcane Initiate",
"Description": "",
"GMNotes": "{\n \"id\": \"01063\",\n \"alternate_ids\": [\n \"01563\"\n ],\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Ally. Sorcerer.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"uses\": [\n {\n \"count\": 1,\n \"type\": \"Doom\",\n \"token\": \"doom\"\n }\n ],\n \"cycle\": \"Core\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "a8298f",
"Name": "Card",
"Transform": {
"posX": 32.984848,
"posY": 3.32456851,
"posZ": -47.4100037,
"rotX": 1.14752829,
"rotY": 270.006653,
"rotZ": 1.69433641,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Drawn to the Flame",
"Description": "",
"GMNotes": "{\n \"id\": \"01064\",\n \"alternate_ids\": [\n \"01564\"\n ],\n \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"cost\": 0,\n \"level\": 0,\n \"traits\": \"Insight.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"intellectIcons\": 1,\n \"cycle\": \"Core\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "6656ad",
"Name": "Card",
"Transform": {
"posX": 32.984848,
"posY": 3.32453227,
"posZ": -47.4100037,
"rotX": 1.14814246,
"rotY": 270.005859,
"rotZ": 1.695204,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Ward of Protection",
"Description": "",
"GMNotes": "{\n \"id\": \"01065\",\n \"alternate_ids\": [\n \"01565\"\n ],\n \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Spell. Spirit.\",\n \"permanent\": false,\n \"weakness\": false,\n \"wildIcons\": 1,\n \"cycle\": \"Core\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "30f860",
"Name": "Card",
"Transform": {
"posX": 33.82457,
"posY": 3.37792015,
"posZ": -45.8411179,
"rotX": 0.280538529,
"rotY": 269.98114,
"rotZ": 359.2253,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Blinding Light",
"Description": "",
"GMNotes": "{\n \"id\": \"01066\",\n \"alternate_ids\": [\n \"01566\"\n ],\n \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Spell.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"agilityIcons\": 1,\n \"cycle\": \"Core\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "cd0ac1",
"Name": "Card",
"Transform": {
"posX": 32.984848,
"posY": 3.32453918,
"posZ": -47.4100037,
"rotX": 1.14804018,
"rotY": 270.005463,
"rotZ": 1.6950357,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Fearless",
"Description": "",
"GMNotes": "{\n \"id\": \"01067\",\n \"alternate_ids\": [\n \"01567\"\n ],\n \"type\": \"Skill\",\n \"class\": \"Mystic\",\n \"level\": 0,\n \"traits\": \"Innate.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"cycle\": \"Core\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "5d6e57",
"Name": "Card",
"Transform": {
"posX": 32.984848,
"posY": 3.324635,
"posZ": -47.4100075,
"rotX": 1.14633393,
"rotY": 270.009521,
"rotZ": 1.69274318,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Mind Wipe (1)",
"Description": "",
"GMNotes": "{\n \"id\": \"01068\",\n \"alternate_ids\": [\n \"01568\"\n ],\n \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"cost\": 1,\n \"level\": 1,\n \"traits\": \"Spell.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"combatIcons\": 1,\n \"cycle\": \"Core\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "8254d4",
"Name": "Card",
"Transform": {
"posX": 34.1348648,
"posY": 3.37545848,
"posZ": -45.55117,
"rotX": 0.06352352,
"rotY": 269.986359,
"rotZ": 359.201019,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Blinding Light (2)",
"Description": "",
"GMNotes": "{\n \"id\": \"01069\",\n \"alternate_ids\": [\n \"01569\"\n ],\n \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"cost\": 1,\n \"level\": 2,\n \"traits\": \"Spell.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"agilityIcons\": 1,\n \"cycle\": \"Core\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "296dc8",
"Name": "Card",
"Transform": {
"posX": 32.98106,
"posY": 3.62608242,
"posZ": -47.4123,
"rotX": 348.718445,
"rotY": 269.8922,
"rotZ": 1.23638511,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Book of Shadows (3)",
"Description": "",
"GMNotes": "{\n \"id\": \"01070\",\n \"alternate_ids\": [\n \"01570\"\n ],\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"cost\": 4,\n \"level\": 3,\n \"traits\": \"Item. Tome.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"intellectIcons\": 1,\n \"cycle\": \"Core\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "07bc04",
"Name": "Card",
"Transform": {
"posX": 32.9848442,
"posY": 3.32474566,
"posZ": -47.4100075,
"rotX": 1.14471281,
"rotY": 270.0055,
"rotZ": 1.68991315,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Grotesque Statue (4)",
"Description": "",
"GMNotes": "{\n \"id\": \"01071\",\n \"alternate_ids\": [\n \"01571\"\n ],\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"cost\": 2,\n \"level\": 4,\n \"traits\": \"Item. Relic.\",\n \"permanent\": false,\n \"weakness\": false,\n \"wildIcons\": 1,\n \"uses\": [\n {\n \"count\": 4,\n \"type\": \"Charge\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"Core\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "4f2668",
"Name": "Card",
"Transform": {
"posX": 34.3235931,
"posY": 3.37581,
"posZ": -45.6022949,
"rotX": 359.975,
"rotY": 269.983734,
"rotZ": 359.175171,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Rite of Seeking (2)",
"Description": "",
"GMNotes": "{\n \"id\": \"51007\",\n \"alternate_ids\": [\n \"01689\"\n ],\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"cost\": 4,\n \"level\": 2,\n \"traits\": \"Spell.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"uses\": [\n {\n \"count\": 3,\n \"type\": \"Charge\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"Return to The Dunwich Legacy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "e58d2a",
"Name": "Card",
"Transform": {
"posX": 32.984848,
"posY": 3.32455516,
"posZ": -47.4100037,
"rotX": 1.14856112,
"rotY": 269.9804,
"rotZ": 1.694108,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Scrying (3)",
"Description": "",
"GMNotes": "{\n \"id\": \"03236\",\n \"alternate_ids\": [\n \"01690\"\n ],\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"cost\": 1,\n \"level\": 3,\n \"traits\": \"Spell.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 2,\n \"uses\": [\n {\n \"count\": 3,\n \"type\": \"Charge\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Path to Carcosa\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "593deb",
"Name": "Card",
"Transform": {
"posX": 32.9848442,
"posY": 3.324744,
"posZ": -47.4100075,
"rotX": 1.14449048,
"rotY": 270.014038,
"rotZ": 1.69012856,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Leather Coat",
"Description": "",
"GMNotes": "{\n \"id\": \"01072\",\n \"alternate_ids\": [\n \"01572\"\n ],\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"cost\": 0,\n \"level\": 0,\n \"traits\": \"Item. Armor.\",\n \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"cycle\": \"Core\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "f34090",
"Name": "Card",
"Transform": {
"posX": 34.72906,
"posY": 3.37755442,
"posZ": -45.8293343,
"rotX": 359.7144,
"rotY": 270.018829,
"rotZ": 359.25824,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Rabbit's Foot",
"Description": "",
"GMNotes": "{\n \"id\": \"01075\",\n \"alternate_ids\": [\n \"60510\",\n \"01575\"\n ],\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Item. Charm.\",\n \"permanent\": false,\n \"weakness\": false,\n \"wildIcons\": 1,\n \"cycle\": \"Core\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "f474b1",
"Name": "Card",
"Transform": {
"posX": 29.3400459,
"posY": 3.37180638,
"posZ": -58.9084,
"rotX": 0.07600881,
"rotY": 270.02475,
"rotZ": 0.0117700938,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Stray Cat",
"Description": "",
"GMNotes": "{\n \"id\": \"01076\",\n \"alternate_ids\": [\n \"01576\"\n ],\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Ally. Creature.\",\n \"permanent\": false,\n \"weakness\": false,\n \"agilityIcons\": 1,\n \"cycle\": \"Core\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "fc9e1b",
"Name": "Card",
"Transform": {
"posX": 29.3400459,
"posY": 3.37178445,
"posZ": -58.9084,
"rotX": 0.07610037,
"rotY": 270.0425,
"rotZ": 0.011774227,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Dig Deep",
"Description": "",
"GMNotes": "{\n \"id\": \"01077\",\n \"alternate_ids\": [\n \"01577\"\n ],\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Talent.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"agilityIcons\": 1,\n \"cycle\": \"Core\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "e8ea95",
"Name": "Card",
"Transform": {
"posX": 29.3400459,
"posY": 3.37177563,
"posZ": -58.9084,
"rotX": 0.07612857,
"rotY": 270.016846,
"rotZ": 0.01171347,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Cunning Distraction",
"Description": "",
"GMNotes": "{\n \"id\": \"01078\",\n \"alternate_ids\": [\n \"01578\"\n ],\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"cost\": 5,\n \"level\": 0,\n \"traits\": \"Tactic.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"wildIcons\": 1,\n \"cycle\": \"Core\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "88d3c0",
"Name": "Card",
"Transform": {
"posX": 29.3400459,
"posY": 3.37180614,
"posZ": -58.9084,
"rotX": 0.076029256,
"rotY": 269.991333,
"rotZ": 0.011665537,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "\"Look what I found!\"",
"Description": "",
"GMNotes": "{\n \"id\": \"01079\",\n \"alternate_ids\": [\n \"60517\",\n \"01579\"\n ],\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Fortune.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 2,\n \"cycle\": \"Core\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "ce0dd5",
"Name": "Card",
"Transform": {
"posX": 29.3400459,
"posY": 3.37180662,
"posZ": -58.9084,
"rotX": 0.07601963,
"rotY": 269.990723,
"rotZ": 0.0116641978,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Lucky!",
"Description": "",
"GMNotes": "{\n \"id\": \"01080\",\n \"alternate_ids\": [\n \"01580\"\n ],\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Fortune.\",\n \"permanent\": false,\n \"weakness\": false,\n \"cycle\": \"Core\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "078efb",
"Name": "Card",
"Transform": {
"posX": 29.3400459,
"posY": 3.37180662,
"posZ": -58.9084,
"rotX": 0.0760272145,
"rotY": 269.994629,
"rotZ": 0.0116378684,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Survival Instinct",
"Description": "",
"GMNotes": "{\n \"id\": \"01081\",\n \"alternate_ids\": [\n \"01581\"\n ],\n \"type\": \"Skill\",\n \"class\": \"Survivor\",\n \"level\": 0,\n \"traits\": \"Innate.\",\n \"permanent\": false,\n \"weakness\": false,\n \"agilityIcons\": 1,\n \"cycle\": \"Core\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "9393ec",
"Name": "Card",
"Transform": {
"posX": 29.3400459,
"posY": 3.37179565,
"posZ": -58.9084,
"rotX": 0.07606706,
"rotY": 269.991241,
"rotZ": 0.0116619905,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Aquinnah (1)",
"Description": "The Forgotten Daughter",
"GMNotes": "{\n \"id\": \"01082\",\n \"alternate_ids\": [\n \"01582\"\n ],\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"cost\": 5,\n \"level\": 1,\n \"traits\": \"Ally.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"cycle\": \"Core\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "6aae86",
"Name": "Card",
"Transform": {
"posX": 29.3400459,
"posY": 3.371806,
"posZ": -58.9084,
"rotX": 0.07603095,
"rotY": 269.988647,
"rotZ": 0.0116593773,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Close Call (2)",
"Description": "",
"GMNotes": "{\n \"id\": \"01083\",\n \"alternate_ids\": [\n \"01583\"\n ],\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"cost\": 2,\n \"level\": 2,\n \"traits\": \"Fortune.\",\n \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"agilityIcons\": 1,\n \"cycle\": \"Core\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "439af2",
"Name": "Card",
"Transform": {
"posX": 29.3400459,
"posY": 3.371807,
"posZ": -58.9084,
"rotX": 0.0760180652,
"rotY": 269.995,
"rotZ": 0.0116383219,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Lucky! (2)",
"Description": "",
"GMNotes": "{\n \"id\": \"01084\",\n \"alternate_ids\": [\n \"01584\"\n ],\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"cost\": 1,\n \"level\": 2,\n \"traits\": \"Fortune.\",\n \"permanent\": false,\n \"weakness\": false,\n \"cycle\": \"Core\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "fb9dbb",
"Name": "Card",
"Transform": {
"posX": 29.3400459,
"posY": 3.37175584,
"posZ": -58.9084,
"rotX": 0.07619958,
"rotY": 269.995422,
"rotZ": 0.0116584348,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Aquinnah (3)",
"Description": "The Forgotten Daughter",
"GMNotes": "{\n \"id\": \"02308\",\n \"alternate_ids\": [\n \"01691\"\n ],\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"cost\": 4,\n \"level\": 3,\n \"traits\": \"Ally.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"agilityIcons\": 1,\n \"cycle\": \"The Dunwich Legacy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "eaaee9",
"Name": "Card",
"Transform": {
"posX": 29.3400459,
"posY": 3.37180638,
"posZ": -58.9084,
"rotX": 0.07608619,
"rotY": 269.982727,
"rotZ": 0.0115424851,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Eucatastrophe (3)",
"Description": "",
"GMNotes": "{\n \"id\": \"05324\",\n \"alternate_ids\": [\n \"01692\"\n ],\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"cost\": 2,\n \"level\": 3,\n \"traits\": \"Fortune. Blessed.\",\n \"permanent\": false,\n \"weakness\": false,\n \"wildIcons\": 2,\n \"cycle\": \"The Circle Undone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "0ab3f1",
"Name": "Card",
"Transform": {
"posX": 29.3400459,
"posY": 3.37176681,
"posZ": -58.9084,
"rotX": 0.07616081,
"rotY": 270.0001,
"rotZ": 0.0116722528,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Knife",
"Description": "",
"GMNotes": "{\n \"id\": \"01086\",\n \"alternate_ids\": [\n \"01586\"\n ],\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Item. Weapon. Melee.\",\n \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"cycle\": \"Core\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "bb1cce",
"Name": "Card",
"Transform": {
"posX": 29.3400459,
"posY": 3.37196636,
"posZ": -58.9084,
"rotX": 0.07549487,
"rotY": 270.0067,
"rotZ": 0.01175066,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Flashlight",
"Description": "",
"GMNotes": "{\n \"id\": \"01087\",\n \"alternate_ids\": [\n \"01587\"\n ],\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Item. Tool.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"uses\": [\n {\n \"count\": 3,\n \"type\": \"Supply\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"Core\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "510c0d",
"Name": "Card",
"Transform": {
"posX": 29.3400459,
"posY": 3.371777,
"posZ": -58.9084,
"rotX": 0.0761378,
"rotY": 269.992859,
"rotZ": 0.0117304409,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Emergency Cache",
"Description": "",
"GMNotes": "{\n \"id\": \"01088\",\n \"alternate_ids\": [\n \"01588\"\n ],\n \"type\": \"Event\",\n \"class\": \"Neutral\",\n \"cost\": 0,\n \"level\": 0,\n \"traits\": \"Supply.\",\n \"permanent\": false,\n \"weakness\": false,\n \"cycle\": \"Core\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "8f7289",
"Name": "Card",
"Transform": {
"posX": 29.3400459,
"posY": 3.37180567,
"posZ": -58.9084,
"rotX": 0.07604852,
"rotY": 269.991241,
"rotZ": 0.0116645237,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Guts",
"Description": "",
"GMNotes": "{\n \"id\": \"01089\",\n \"alternate_ids\": [\n \"01589\"\n ],\n \"type\": \"Skill\",\n \"class\": \"Neutral\",\n \"level\": 0,\n \"traits\": \"Innate.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 2,\n \"cycle\": \"Core\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "c6ac19",
"Name": "Card",
"Transform": {
"posX": 29.3400459,
"posY": 3.37180614,
"posZ": -58.9084,
"rotX": 0.0760282949,
"rotY": 269.996155,
"rotZ": 0.0116755841,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Perception",
"Description": "",
"GMNotes": "{\n \"id\": \"01090\",\n \"alternate_ids\": [\n \"01590\"\n ],\n \"type\": \"Skill\",\n \"class\": \"Neutral\",\n \"level\": 0,\n \"traits\": \"Practiced.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 2,\n \"cycle\": \"Core\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "679b13",
"Name": "Card",
"Transform": {
"posX": 29.3400459,
"posY": 3.37180734,
"posZ": -58.9084,
"rotX": 0.07602556,
"rotY": 269.9876,
"rotZ": 0.0116217984,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Manual Dexterity",
"Description": "",
"GMNotes": "{\n \"id\": \"01092\",\n \"alternate_ids\": [\n \"01592\"\n ],\n \"type\": \"Skill\",\n \"class\": \"Neutral\",\n \"level\": 0,\n \"traits\": \"Innate.\",\n \"permanent\": false,\n \"weakness\": false,\n \"agilityIcons\": 2,\n \"cycle\": \"Core\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "c4cf62",
"Name": "Card",
"Transform": {
"posX": 29.3400459,
"posY": 3.37180614,
"posZ": -58.9084,
"rotX": 0.07602958,
"rotY": 269.990662,
"rotZ": 0.0116629917,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Bulletproof Vest (3)",
"Description": "",
"GMNotes": "{\n \"id\": \"01094\",\n \"alternate_ids\": [\n \"01594\"\n ],\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"cost\": 2,\n \"level\": 3,\n \"traits\": \"Item. Armor.\",\n \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"wildIcons\": 1,\n \"cycle\": \"Core\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "324e49",
"Name": "Card",
"Transform": {
"posX": 29.3400459,
"posY": 3.37180543,
"posZ": -58.9084,
"rotX": 0.0760309249,
"rotY": 269.988525,
"rotZ": 0.0116591007,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Elder Sign Amulet (3)",
"Description": "",
"GMNotes": "{\n \"id\": \"01095\",\n \"alternate_ids\": [\n \"01595\"\n ],\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"cost\": 2,\n \"level\": 3,\n \"traits\": \"Item. Relic.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"wildIcons\": 1,\n \"cycle\": \"Core\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "e929f9",
"Name": "Card",
"Transform": {
"posX": 29.3400459,
"posY": 3.371797,
"posZ": -58.9084,
"rotX": 0.0760551542,
"rotY": 270.012817,
"rotZ": 0.0117112165,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Heirloom of Hyperborea",
"Description": "Artifact from Another Life",
"GMNotes": "{\n \"id\": \"01012\",\n \"alternate_ids\": [\n \"01512\"\n ],\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"cost\": 3,\n \"traits\": \"Item. Relic.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"combatIcons\": 1,\n \"wildIcons\": 1,\n \"cycle\": \"Core\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "47d6c9",
"Name": "Card",
"Transform": {
"posX": 29.3400459,
"posY": 3.371769,
"posZ": -58.9084,
"rotX": 0.0761583745,
"rotY": 269.9881,
"rotZ": 0.0116466293,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Hospital Debts",
"Description": "Signature",
"GMNotes": "{\n \"id\": \"01011\",\n \"alternate_ids\": [\n \"01511\"\n ],\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Task.\",\n \"permanent\": false,\n \"weakness\": true,\n \"cycle\": \"Core\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "ea6d44",
"Name": "Card",
"Transform": {
"posX": 29.3400459,
"posY": 3.37185931,
"posZ": -58.9084,
"rotX": 0.07585662,
"rotY": 269.9881,
"rotZ": 0.0116756437,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "On the Lam",
"Description": "Signature",
"GMNotes": "{\n \"id\": \"01010\",\n \"alternate_ids\": [\n \"01510\"\n ],\n \"type\": \"Event\",\n \"class\": \"Neutral\",\n \"cost\": 1,\n \"traits\": \"Tactic.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"agilityIcons\": 1,\n \"wildIcons\": 2,\n \"cycle\": \"Core\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "6b2550",
"Name": "Card",
"Transform": {
"posX": 29.3400459,
"posY": 3.37175965,
"posZ": -58.9084,
"rotX": 0.0761748,
"rotY": 270.014343,
"rotZ": 0.0117024686,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "The Necronomicon",
"Description": "John Dee Translation",
"GMNotes": "{\n \"id\": \"01009\",\n \"alternate_ids\": [\n \"01509\"\n ],\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Tome.\",\n \"permanent\": false,\n \"weakness\": true,\n \"cycle\": \"Core\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "ca25bc",
"Name": "Card",
"Transform": {
"posX": 29.3400459,
"posY": 3.3718,
"posZ": -58.9084,
"rotX": 0.07605075,
"rotY": 269.987579,
"rotZ": 0.0116554312,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Cover Up",
"Description": "",
"GMNotes": "{\n \"id\": \"01007\",\n \"alternate_ids\": [\n \"01507\"\n ],\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Task.\",\n \"permanent\": false,\n \"weakness\": true,\n \"uses\": [\n {\n \"count\": 3,\n \"type\": \"Clue\",\n \"token\": \"clue\"\n }\n ],\n \"cycle\": \"Core\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "15e40d",
"Name": "Card",
"Transform": {
"posX": 28.7537727,
"posY": 3.37149382,
"posZ": -59.031498,
"rotX": 0.9981087,
"rotY": 269.985474,
"rotZ": 0.483633161,
"scaleX": 0.6,
"scaleY": 1.0,
"scaleZ": 0.6
},
"Nickname": "Wendy Adams",
"Description": "",
"GMNotes": "{\n \"id\": \"01005-m\",\n \"type\": \"Minicard\",\n \"traits\": \"\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"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": "9b1e1f",
"Name": "Card",
"Transform": {
"posX": 45.3034477,
"posY": 1.98524225,
"posZ": -99.98212,
"rotX": 0.0208158921,
"rotY": 269.981567,
"rotZ": 0.0167673323,
"scaleX": 0.6,
"scaleY": 1.0,
"scaleZ": 0.6
},
"Nickname": "Wendy Adams",
"Description": "",
"GMNotes": "{\n \"id\": \"01005-revised-m\",\n \"type\": \"Minicard\",\n \"traits\": \"\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 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": 587104,
"SidewaysCard": false,
"CustomDeck": {
"5871": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1856052392800340918/16F5E89C36494A9A7D4C191DFF376E340BAABD00/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1856052392800341634/C8EF1EDA589007989C51031F8CD42B23956EA7CE/",
"NumWidth": 3,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "30614e",
"Name": "Card",
"Transform": {
"posX": 29.0828857,
"posY": 3.37264347,
"posZ": -59.2257271,
"rotX": 0.5233238,
"rotY": 269.979645,
"rotZ": 1.4144516,
"scaleX": 0.6,
"scaleY": 1.0,
"scaleZ": 0.6
},
"Nickname": "Carolyn Fern",
"Description": "",
"GMNotes": "{\n \"id\": \"05001-m\",\n \"alternate_ids\": [\n \"98010-m\"\n ],\n \"type\": \"Minicard\",\n \"traits\": \"\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"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": "b57bab",
"Name": "Card",
"Transform": {
"posX": 29.2316723,
"posY": 3.370976,
"posZ": -59.33457,
"rotX": 0.205421954,
"rotY": 269.963684,
"rotZ": 1.54885173,
"scaleX": 0.6,
"scaleY": 1.0,
"scaleZ": 0.6
},
"Nickname": "Carolyn Fern",
"Description": "Promo version",
"GMNotes": "{\n \"id\": \"05001-promo-m\",\n \"alternate_ids\": [\n \"98010-m\"\n ],\n \"type\": \"Minicard\",\n \"traits\": \"\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"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": "e53693",
"Name": "Card",
"Transform": {
"posX": 29.1442051,
"posY": 3.37027264,
"posZ": -59.35262,
"rotX": 0.312069148,
"rotY": 269.9781,
"rotZ": 1.48642516,
"scaleX": 0.6,
"scaleY": 1.0,
"scaleZ": 0.6
},
"Nickname": "Agnes Baker",
"Description": "",
"GMNotes": "{\n \"id\": \"01004-m\",\n \"type\": \"Minicard\",\n \"traits\": \"\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"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": "6b00ec",
"Name": "Card",
"Transform": {
"posX": 28.51677,
"posY": 3.36739421,
"posZ": -59.3923569,
"rotX": 0.6050132,
"rotY": 269.9848,
"rotZ": 0.8145058,
"scaleX": 0.6,
"scaleY": 1.0,
"scaleZ": 0.6
},
"Nickname": "\"Skids\" O'Toole",
"Description": "",
"GMNotes": "{\n \"id\": \"01003-m\",\n \"type\": \"Minicard\",\n \"traits\": \"\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"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": "02463b",
"Name": "Card",
"Transform": {
"posX": 47.41713,
"posY": 2.00385833,
"posZ": -100.51387,
"rotX": 358.817932,
"rotY": 269.9802,
"rotZ": 0.0165843461,
"scaleX": 0.6,
"scaleY": 1.0,
"scaleZ": 0.6
},
"Nickname": "\"Skids\" O'Toole",
"Description": "",
"GMNotes": "{\n \"id\": \"01003-revised-m\",\n \"type\": \"Minicard\",\n \"traits\": \"\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 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": 587102,
"SidewaysCard": false,
"CustomDeck": {
"5871": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1856052392800340918/16F5E89C36494A9A7D4C191DFF376E340BAABD00/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1856052392800341634/C8EF1EDA589007989C51031F8CD42B23956EA7CE/",
"NumWidth": 3,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "bce6a5",
"Name": "Card",
"Transform": {
"posX": 29.0225086,
"posY": 3.37075067,
"posZ": -59.3104744,
"rotX": 0.48522082,
"rotY": 269.971,
"rotZ": 1.35272288,
"scaleX": 0.6,
"scaleY": 1.0,
"scaleZ": 0.6
},
"Nickname": "Daisy Walker",
"Description": "",
"GMNotes": "{\n \"id\": \"01002-m\",\n \"type\": \"Minicard\",\n \"traits\": \"\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"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": "5fa10d",
"Name": "Card",
"Transform": {
"posX": 47.1795578,
"posY": 1.98455417,
"posZ": -96.7654,
"rotX": 0.0208143853,
"rotY": 269.98172,
"rotZ": 0.0167656876,
"scaleX": 0.6,
"scaleY": 1.0,
"scaleZ": 0.6
},
"Nickname": "Daisy Walker",
"Description": "",
"GMNotes": "{\n \"id\": \"01002-revised-m\",\n \"type\": \"Minicard\",\n \"traits\": \"\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 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": 587101,
"SidewaysCard": false,
"CustomDeck": {
"5871": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1856052392800340918/16F5E89C36494A9A7D4C191DFF376E340BAABD00/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1856052392800341634/C8EF1EDA589007989C51031F8CD42B23956EA7CE/",
"NumWidth": 3,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "1b8e88",
"Name": "Card",
"Transform": {
"posX": 29.0270977,
"posY": 3.36912,
"posZ": -59.4013252,
"rotX": 0.399567962,
"rotY": 269.965332,
"rotZ": 1.3472755,
"scaleX": 0.6,
"scaleY": 1.0,
"scaleZ": 0.6
},
"Nickname": "Roland Banks",
"Description": "Promo version",
"GMNotes": "{\n \"id\": \"01001-promo-m\",\n \"alternate_ids\": [\n \"98004-m\"\n ],\n \"type\": \"Minicard\",\n \"traits\": \"\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"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": "5bde90",
"Name": "Card",
"Transform": {
"posX": 78.1562653,
"posY": 3.31358528,
"posZ": 27.2822285,
"rotX": 359.99115,
"rotY": 270.000427,
"rotZ": 358.90686,
"scaleX": 0.6,
"scaleY": 1.0,
"scaleZ": 0.6
},
"Nickname": "Roland Banks",
"Description": "",
"GMNotes": "{\n \"id\": \"01001-m\",\n \"alternate_ids\": [\n \"98004-m\"\n ],\n \"type\": \"Minicard\",\n \"traits\": \"\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"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": "f8cea5",
"Name": "Card",
"Transform": {
"posX": 82.36097,
"posY": 1.9850564,
"posZ": 1.45799482,
"rotX": 359.99,
"rotY": 270.001434,
"rotZ": 359.984558,
"scaleX": 0.6,
"scaleY": 1.0,
"scaleZ": 0.6
},
"Nickname": "Roland Banks",
"Description": "",
"GMNotes": "{\n \"id\": \"01001-revised-m\",\n \"alternate_ids\": [\n \"98004-m\"\n ],\n \"type\": \"Minicard\",\n \"traits\": \"\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 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": 587100,
"SidewaysCard": false,
"CustomDeck": {
"5871": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1856052392800340918/16F5E89C36494A9A7D4C191DFF376E340BAABD00/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1856052392800341634/C8EF1EDA589007989C51031F8CD42B23956EA7CE/",
"NumWidth": 3,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "7d4749",
"Name": "Card",
"Transform": {
"posX": 77.84639,
"posY": 4.468951,
"posZ": 27.0625515,
"rotX": 302.337952,
"rotY": 270.261719,
"rotZ": 358.985,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Beat Cop",
"Description": "",
"GMNotes": "{\n \"id\": \"01018\",\n \"alternate_ids\": [\n \"01518\"\n ],\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"cost\": 4,\n \"level\": 0,\n \"traits\": \"Ally. Police.\",\n \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"cycle\": \"Core\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"Asset"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "249d83",
"Name": "Card",
"Transform": {
"posX": 78.79548,
"posY": 3.31971359,
"posZ": 26.9519825,
"rotX": 359.517578,
"rotY": 270.003632,
"rotZ": 359.47345,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Haunted",
"Description": "Basic Weakness",
"GMNotes": "{\n \"id\": \"01098\",\n \"alternate_ids\": [\n \"01598\"\n ],\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Curse.\",\n \"permanent\": false,\n \"weakness\": true,\n \"basicWeaknessCount\": 1,\n \"cycle\": \"Core\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "2210c1",
"Name": "Card",
"Transform": {
"posX": 78.7771,
"posY": 3.31994033,
"posZ": 26.9670048,
"rotX": 359.538544,
"rotY": 269.9949,
"rotZ": 359.458679,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Amnesia",
"Description": "Basic Weakness",
"GMNotes": "{\n \"id\": \"01096\",\n \"alternate_ids\": [\n \"01596\"\n ],\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Madness.\",\n \"permanent\": false,\n \"weakness\": true,\n \"basicWeaknessCount\": 2,\n \"cycle\": \"Core\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "d83baf",
"Name": "Card",
"Transform": {
"posX": 79.24211,
"posY": 3.31582618,
"posZ": 26.1401424,
"rotX": 359.512115,
"rotY": 269.987244,
"rotZ": 0.429697067,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Psychosis",
"Description": "Basic Weakness",
"GMNotes": "{\n \"id\": \"01099\",\n \"alternate_ids\": [\n \"01599\"\n ],\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Madness.\",\n \"permanent\": false,\n \"weakness\": true,\n \"basicWeaknessCount\": 1,\n \"cycle\": \"Core\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "88ee43",
"Name": "Card",
"Transform": {
"posX": 79.05428,
"posY": 3.31597519,
"posZ": 27.226963,
"rotX": 359.598053,
"rotY": 269.989471,
"rotZ": 359.4398,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Hypochondria",
"Description": "Basic Weakness",
"GMNotes": "{\n \"id\": \"01100\",\n \"alternate_ids\": [\n \"01600\"\n ],\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Madness.\",\n \"permanent\": false,\n \"weakness\": true,\n \"basicWeaknessCount\": 1,\n \"cycle\": \"Core\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "b239d7",
"Name": "Card",
"Transform": {
"posX": 78.68185,
"posY": 3.32351255,
"posZ": 26.5319843,
"rotX": 359.473145,
"rotY": 269.9902,
"rotZ": 0.140751317,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Mob Enforcer",
"Description": "Enemy",
"GMNotes": "{\n \"id\": \"01101\",\n \"alternate_ids\": [\n \"01601\"\n ],\n \"type\": \"Enemy\",\n \"class\": \"Neutral\",\n \"traits\": \"Humanoid. Criminal.\",\n \"permanent\": false,\n \"weakness\": true,\n \"basicWeaknessCount\": 1,\n \"cycle\": \"Core\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "16a89d",
"Name": "Card",
"Transform": {
"posX": 78.45642,
"posY": 3.32302046,
"posZ": 26.9514866,
"rotX": 359.7209,
"rotY": 269.990234,
"rotZ": 359.3413,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Silver Twilight Acolyte",
"Description": "Enemy",
"GMNotes": "{\n \"id\": \"01102\",\n \"alternate_ids\": [\n \"01602\"\n ],\n \"type\": \"Enemy\",\n \"class\": \"Neutral\",\n \"traits\": \"Humanoid. Cultist. Silver Twilight.\",\n \"permanent\": false,\n \"weakness\": true,\n \"basicWeaknessCount\": 1,\n \"cycle\": \"Core\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "c17498",
"Name": "Card",
"Transform": {
"posX": 78.87589,
"posY": 3.28730965,
"posZ": 26.8403053,
"rotX": 358.060944,
"rotY": 270.051453,
"rotZ": 358.721161,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Paranoia",
"Description": "Basic Weakness",
"GMNotes": "{\n \"id\": \"01097\",\n \"alternate_ids\": [\n \"01597\"\n ],\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Madness.\",\n \"permanent\": false,\n \"weakness\": true,\n \"basicWeaknessCount\": 2,\n \"cycle\": \"Core\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "8e4d23",
"Name": "Card",
"Transform": {
"posX": 21.608223,
"posY": 4.322396,
"posZ": -54.3117752,
"rotX": 0.167766556,
"rotY": 269.8175,
"rotZ": 2.90158677,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Black Market (2) (Taboo)",
"Description": "",
"GMNotes": "{\n \"id\": \"08055-t\",\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"cost\": 1,\n \"level\": 2,\n \"traits\": \"Favor.\",\n \"permanent\": false,\n \"weakness\": false,\n \"cycle\": \"Edge of the Earth\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 558215,
"SidewaysCard": false,
"CustomDeck": {
"5582": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1802024937476547660/8E52B0347047884A4B88B0A66190525BEF985337/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 5,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "e95ddb",
"Name": "Card",
"Transform": {
"posX": 21.82584,
"posY": 4.27629,
"posZ": -44.4587936,
"rotX": 359.99,
"rotY": 269.85437,
"rotZ": 0.203490466,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Strange Solution (4) (Taboo)",
"Description": "Acidic Ichor",
"GMNotes": "{\n \"id\": \"02263-t\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"cost\": 1,\n \"level\": 4,\n \"traits\": \"Item. Science.\",\n \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 2,\n \"uses\": [\n {\n \"count\": 3,\n \"type\": \"Supply\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Dunwich Legacy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"Asset",
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 558208,
"SidewaysCard": false,
"CustomDeck": {
"5582": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1802024937476547660/8E52B0347047884A4B88B0A66190525BEF985337/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 5,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "119880",
"Name": "Card",
"Transform": {
"posX": 21.82836,
"posY": 4.32278442,
"posZ": -45.44595,
"rotX": 359.99,
"rotY": 269.85437,
"rotZ": 0.20349054,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Signum Crucis (2) (Taboo)",
"Description": "",
"GMNotes": "{\n \"id\": \"07197-t\",\n \"type\": \"Skill\",\n \"class\": \"Survivor\",\n \"level\": 2,\n \"traits\": \"Practiced. Blessed.\",\n \"permanent\": false,\n \"weakness\": false,\n \"wildIcons\": 1,\n \"cycle\": \"The Innsmouth Conspiracy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 558201,
"SidewaysCard": false,
"CustomDeck": {
"5582": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1802024937476547660/8E52B0347047884A4B88B0A66190525BEF985337/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 5,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "d45a81",
"Name": "Card",
"Transform": {
"posX": 21.8308773,
"posY": 4.36927652,
"posZ": -46.4331055,
"rotX": 359.99,
"rotY": 269.8544,
"rotZ": 0.2051479,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Rite of Equilibrium (5) (Taboo)",
"Description": "",
"GMNotes": "{\n \"id\": \"07308-t\",\n \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"cost\": 0,\n \"level\": 5,\n \"traits\": \"Spell. Blessed. Cursed.\",\n \"permanent\": false,\n \"weakness\": false,\n \"wildIcons\": 1,\n \"cycle\": \"The Innsmouth Conspiracy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 558202,
"SidewaysCard": false,
"CustomDeck": {
"5582": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1802024937476547660/8E52B0347047884A4B88B0A66190525BEF985337/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 5,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "213e21",
"Name": "Card",
"Transform": {
"posX": 21.8333931,
"posY": 4.4157424,
"posZ": -47.42026,
"rotX": 359.99,
"rotY": 269.8544,
"rotZ": 0.205148324,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Jewel of Aureolus (3) (Taboo)",
"Description": "Gift of the Homunculi",
"GMNotes": "{\n \"id\": \"02269-t\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"cost\": 3,\n \"level\": 3,\n \"traits\": \"Item. Relic.\",\n \"permanent\": false,\n \"weakness\": false,\n \"wildIcons\": 1,\n \"cycle\": \"The Dunwich Legacy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"Asset",
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 558206,
"SidewaysCard": false,
"CustomDeck": {
"5582": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1802024937476547660/8E52B0347047884A4B88B0A66190525BEF985337/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 5,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "669c4e",
"Name": "Card",
"Transform": {
"posX": 21.83591,
"posY": 4.462183,
"posZ": -48.4074173,
"rotX": 359.990021,
"rotY": 269.854462,
"rotZ": 0.208868742,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Flute of the Outer Gods (4) (Taboo)",
"Description": "",
"GMNotes": "{\n \"id\": \"07268-t\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"level\": 4,\n \"traits\": \"Item. Instrument. Relic. Cursed.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"combatIcons\": 1,\n \"agilityIcons\": 1,\n \"cycle\": \"The Innsmouth Conspiracy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"Asset",
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 558213,
"SidewaysCard": false,
"CustomDeck": {
"5582": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1802024937476547660/8E52B0347047884A4B88B0A66190525BEF985337/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 5,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "a39c3b",
"Name": "Card",
"Transform": {
"posX": 21.8384266,
"posY": 4.5085845,
"posZ": -49.394577,
"rotX": 359.990021,
"rotY": 269.854462,
"rotZ": 0.208868936,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Cyclopean Hammer (5) (Taboo)",
"Description": "",
"GMNotes": "{\n \"id\": \"08093-t\",\n \"type\": \"Asset\",\n \"class\": \"Guardian|Mystic\",\n \"cost\": 5,\n \"level\": 5,\n \"traits\": \"Item. Relic. Weapon. Melee.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 2,\n \"combatIcons\": 2,\n \"cycle\": \"Edge of the Earth\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"Asset",
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 558218,
"SidewaysCard": false,
"CustomDeck": {
"5582": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1802024937476547660/8E52B0347047884A4B88B0A66190525BEF985337/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 5,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "118264",
"Name": "Card",
"Transform": {
"posX": 21.84094,
"posY": 4.55494738,
"posZ": -50.3817368,
"rotX": 359.990021,
"rotY": 269.8545,
"rotZ": 0.212588847,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Counterspell (2) (Taboo)",
"Description": "",
"GMNotes": "{\n \"id\": \"04110-t\",\n \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"cost\": 2,\n \"level\": 2,\n \"traits\": \"Spell. Blessed.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"intellectIcons\": 1,\n \"cycle\": \"The Forgotten Age\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 558211,
"SidewaysCard": false,
"CustomDeck": {
"5582": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1802024937476547660/8E52B0347047884A4B88B0A66190525BEF985337/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 5,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "4d4ffb",
"Name": "Card",
"Transform": {
"posX": 21.8434563,
"posY": 4.601285,
"posZ": -51.3689,
"rotX": 359.990021,
"rotY": 269.8545,
"rotZ": 0.212588832,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Eon Chart (1) (Taboo)",
"Description": "",
"GMNotes": "{\n \"id\": \"08098-t\",\n \"type\": \"Asset\",\n \"class\": \"Seeker|Rogue\",\n \"cost\": 2,\n \"level\": 1,\n \"traits\": \"Item. Relic.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"agilityIcons\": 1,\n \"uses\": [\n {\n \"count\": 3,\n \"type\": \"Secret\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"Edge of the Earth\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"Asset",
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 558216,
"SidewaysCard": false,
"CustomDeck": {
"5582": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1802024937476547660/8E52B0347047884A4B88B0A66190525BEF985337/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 5,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "ab32db",
"Name": "Card",
"Transform": {
"posX": 21.84597,
"posY": 4.647596,
"posZ": -52.3560638,
"rotX": 359.990021,
"rotY": 269.854523,
"rotZ": 0.214245781,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Gené Beauregard (3) (Taboo)",
"Description": "Intrepid Explorer",
"GMNotes": "{\n \"id\": \"08099-t\",\n \"type\": \"Asset\",\n \"class\": \"Seeker|Rogue\",\n \"cost\": 5,\n \"level\": 3,\n \"traits\": \"Ally. Wayfarer.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"agilityIcons\": 1,\n \"cycle\": \"Edge of the Earth\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"Asset",
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 558204,
"SidewaysCard": false,
"CustomDeck": {
"5582": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1802024937476547660/8E52B0347047884A4B88B0A66190525BEF985337/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 5,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "b925cf",
"Name": "Card",
"Transform": {
"posX": 21.848484,
"posY": 4.6939044,
"posZ": -53.3432274,
"rotX": 359.990021,
"rotY": 269.854523,
"rotZ": 0.214245781,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Eon Chart (4) (Taboo)",
"Description": "",
"GMNotes": "{\n \"id\": \"08100-t\",\n \"type\": \"Asset\",\n \"class\": \"Seeker|Rogue\",\n \"cost\": 2,\n \"level\": 4,\n \"traits\": \"Item. Relic.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"agilityIcons\": 1,\n \"wildIcons\": 1,\n \"uses\": [\n {\n \"count\": 3,\n \"type\": \"Secret\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"Edge of the Earth\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"Asset",
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 558217,
"SidewaysCard": false,
"CustomDeck": {
"5582": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1802024937476547660/8E52B0347047884A4B88B0A66190525BEF985337/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 5,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "71e4a0",
"Name": "Card",
"Transform": {
"posX": 21.61138,
"posY": 4.322267,
"posZ": -55.3,
"rotX": 0.131709754,
"rotY": 269.815643,
"rotZ": 2.84077382,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Jeremiah Kirby (Taboo)",
"Description": "Arctic Archaeologist",
"GMNotes": "{\n \"id\": \"08032-t\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"cost\": 4,\n \"level\": 0,\n \"traits\": \"Ally. Miskatonic. Wayfarer.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"cycle\": \"Edge of the Earth\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"Asset",
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 558203,
"SidewaysCard": false,
"CustomDeck": {
"5582": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1802024937476547660/8E52B0347047884A4B88B0A66190525BEF985337/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 5,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "e99e75",
"Name": "Card",
"Transform": {
"posX": 21.630621,
"posY": 4.33970737,
"posZ": -61.2293968,
"rotX": 0.0501297526,
"rotY": 269.813049,
"rotZ": 2.67516375,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Ritual Candles (Taboo)",
"Description": "",
"GMNotes": "{\n \"id\": \"02029-t\",\n \"alternate_ids\": [\n \"60405\"\n ],\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Item.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"cycle\": \"The Dunwich Legacy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"Asset",
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 558205,
"SidewaysCard": false,
"CustomDeck": {
"5582": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1802024937476547660/8E52B0347047884A4B88B0A66190525BEF985337/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 5,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "77f7f3",
"Name": "Card",
"Transform": {
"posX": 21.633997,
"posY": 4.276418,
"posZ": -62.2503662,
"rotX": 0.0411660857,
"rotY": 269.813141,
"rotZ": 2.67672563,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Voice of Ra (Taboo)",
"Description": "",
"GMNotes": "{\n \"id\": \"60416-t\",\n \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"cost\": 0,\n \"level\": 0,\n \"traits\": \"Spell.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"cycle\": \"Investigator Packs\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 558207,
"SidewaysCard": false,
"CustomDeck": {
"5582": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1802024937476547660/8E52B0347047884A4B88B0A66190525BEF985337/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 5,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "94cdf6",
"Name": "Card",
"Transform": {
"posX": 21.6145535,
"posY": 4.32329,
"posZ": -56.2882538,
"rotX": 0.131709754,
"rotY": 269.815643,
"rotZ": 2.84077382,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Dark Prophecy (Taboo)",
"Description": "",
"GMNotes": "{\n \"id\": \"04032-t\",\n \"alternate_ids\": [\n \"60417\"\n ],\n \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Augury.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"agilityIcons\": 1,\n \"cycle\": \"The Forgotten Age\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 558210,
"SidewaysCard": false,
"CustomDeck": {
"5582": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1802024937476547660/8E52B0347047884A4B88B0A66190525BEF985337/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 5,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "7a73c4",
"Name": "Card",
"Transform": {
"posX": 21.61775,
"posY": 4.3253355,
"posZ": -57.27647,
"rotX": 0.09370085,
"rotY": 269.8138,
"rotZ": 2.73194885,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "David Renfield (Taboo)",
"Description": "Esteemed Eschatologist",
"GMNotes": "{\n \"id\": \"03112-t\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Ally. Patron.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"cycle\": \"The Path to Carcosa\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"Asset",
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 558200,
"SidewaysCard": false,
"CustomDeck": {
"5582": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1802024937476547660/8E52B0347047884A4B88B0A66190525BEF985337/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 5,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "95fb5e",
"Name": "Card",
"Transform": {
"posX": 16.4942112,
"posY": 2.20862651,
"posZ": 52.5799561,
"rotX": 0.0167742018,
"rotY": 180.008087,
"rotZ": 359.9792,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Charlie Kane",
"Description": "The Politician",
"GMNotes": "{\n \"id\": \"09018\",\n \"type\": \"Investigator\",\n \"class\": \"Neutral\",\n \"traits\": \"Civic. Socialite.\",\n \"willpowerIcons\": 1,\n \"intellectIcons\": 1,\n \"combatIcons\": 1,\n \"agilityIcons\": 1,\n \"cycle\": \"The Scarlet Keys\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 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": 843405,
"SidewaysCard": true,
"CustomDeck": {
"8434": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1814412497119606067/D4B307834101CF1589A9A9AEEC4CE2F65E7DF02F/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1814412497119606436/4C276FC15C46EEB0C65BAE449E7D94445B3E1B57/",
"NumWidth": 4,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "55be9c",
"Name": "Card",
"Transform": {
"posX": 91.98802,
"posY": 1.89937472,
"posZ": 4.66007376,
"rotX": -1.85379054E-06,
"rotY": 269.991272,
"rotZ": -3.89146453E-06,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Crisis of Identity (Taboo)",
"Description": "Weakness",
"GMNotes": "{\n \"id\": \"03019-t\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Madness.\",\n \"permanent\": false,\n \"weakness\": true,\n \"cycle\": \"The Path to Carcosa\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 558209,
"SidewaysCard": false,
"CustomDeck": {
"5582": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1802024937476547660/8E52B0347047884A4B88B0A66190525BEF985337/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 5,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "d3d7fb",
"Name": "Card",
"Transform": {
"posX": 14.2018194,
"posY": 2.20883775,
"posZ": 57.0155258,
"rotX": 0.0208089072,
"rotY": 270.000366,
"rotZ": 0.0167711843,
"scaleX": 0.6,
"scaleY": 1.0,
"scaleZ": 0.6
},
"Nickname": "Kymani Jones",
"Description": "",
"GMNotes": "{\n \"id\": \"09008-m\",\n \"type\": \"Minicard\",\n \"traits\": \"\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 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": 846102,
"SidewaysCard": false,
"CustomDeck": {
"8461": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1814412497119653462/E5CB5A50E22021314BB8963E47516DBE8092D8EF/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1814412497119653683/60799F36ADCEBB9027393DBB518B4025D1953FA0/",
"NumWidth": 4,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "d187dd",
"Name": "CardCustom",
"Transform": {
"posX": 16.9768867,
"posY": 2.20928812,
"posZ": 55.087307,
"rotX": 0.0208091922,
"rotY": 270.000366,
"rotZ": 0.0167714,
"scaleX": 0.6,
"scaleY": 1.0,
"scaleZ": 0.6
},
"Nickname": "Summoned Servitor",
"Description": "",
"GMNotes": "{\n \"id\": \"09080-m\",\n \"type\": \"Minicard\",\n \"traits\": \"\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"player_card",
"PlayerCard",
"SC_memory_object"
],
"LayoutGroupSortIndex": 0,
"Value": 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,
"CardID": 803600,
"SidewaysCard": false,
"CustomDeck": {
"8036": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1933751217706145663/52AB04A39EC93A7F5EB6EB83F55071BFFCC85FAE/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1924744375825905078/AE93F97210BEF54AFA8F50166565A19225AF8ADB/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "43ad8a",
"Name": "Card",
"Transform": {
"posX": 15.3013153,
"posY": 2.20850182,
"posZ": 54.4957848,
"rotX": 0.0208087526,
"rotY": 270.000366,
"rotZ": 0.01677132,
"scaleX": 0.6,
"scaleY": 1.0,
"scaleZ": 0.6
},
"Nickname": "Vincent Lee",
"Description": "",
"GMNotes": "{\n \"id\": \"09004-m\",\n \"type\": \"Minicard\",\n \"traits\": \"\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 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": 846101,
"SidewaysCard": false,
"CustomDeck": {
"8461": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1814412497119653462/E5CB5A50E22021314BB8963E47516DBE8092D8EF/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1814412497119653683/60799F36ADCEBB9027393DBB518B4025D1953FA0/",
"NumWidth": 4,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "c0f76c",
"Name": "Card",
"Transform": {
"posX": 16.3557072,
"posY": 2.20905542,
"posZ": 55.066906,
"rotX": 0.0208088085,
"rotY": 270.000366,
"rotZ": 0.01677062,
"scaleX": 0.6,
"scaleY": 1.0,
"scaleZ": 0.6
},
"Nickname": "Carson Sinclair",
"Description": "",
"GMNotes": "{\n \"id\": \"09001-m\",\n \"type\": \"Minicard\",\n \"traits\": \"\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 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": 846200,
"SidewaysCard": false,
"CustomDeck": {
"8462": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1814412497119653462/E5CB5A50E22021314BB8963E47516DBE8092D8EF/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1814412497119653683/60799F36ADCEBB9027393DBB518B4025D1953FA0/",
"NumWidth": 4,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "ac3502",
"Name": "Card",
"Transform": {
"posX": 15.80354,
"posY": 2.21060038,
"posZ": 59.6349754,
"rotX": 0.02081501,
"rotY": 270.004242,
"rotZ": 0.016778389,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "On the Mend",
"Description": "",
"GMNotes": "{\n \"id\": \"09006\",\n \"type\": \"Skill\",\n \"traits\": \"Innate.\",\n \"permanent\": false,\n \"weakness\": false,\n \"wildIcons\": 2,\n \"cycle\": \"The Scarlet Keys\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 587703,
"SidewaysCard": false,
"CustomDeck": {
"5877": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1814412497119438903/90145E036353C9A97F52096A369A70BF7073BFB6/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "4b371d",
"Name": "Card",
"Transform": {
"posX": 17.4325428,
"posY": 2.21112871,
"posZ": 59.48487,
"rotX": 0.0208157338,
"rotY": 270.004242,
"rotZ": 0.01677721,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Bonesaw",
"Description": "",
"GMNotes": "{\n \"id\": \"09005\",\n \"type\": \"Asset\",\n \"cost\": 3,\n \"traits\": \"Item. Tool. Melee.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"combatIcons\": 1,\n \"wildIcons\": 1,\n \"cycle\": \"The Scarlet Keys\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"Asset",
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 587702,
"SidewaysCard": false,
"CustomDeck": {
"5877": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1814412497119438903/90145E036353C9A97F52096A369A70BF7073BFB6/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "c431f3",
"Name": "Card",
"Transform": {
"posX": 20.9361038,
"posY": 2.210088,
"posZ": 51.7561455,
"rotX": 0.0167744253,
"rotY": 180.008072,
"rotZ": 359.9792,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Vincent Lee",
"Description": "The Doctor",
"GMNotes": "{\n \"id\": \"09004\",\n \"type\": \"Investigator\",\n \"class\": \"Seeker\",\n \"traits\": \"Medic.\",\n \"willpowerIcons\": 3,\n \"intellectIcons\": 4,\n \"combatIcons\": 3,\n \"agilityIcons\": 1,\n \"cycle\": \"The Scarlet Keys\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 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": 843401,
"SidewaysCard": true,
"CustomDeck": {
"8434": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1814412497119606067/D4B307834101CF1589A9A9AEEC4CE2F65E7DF02F/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1814412497119606436/4C276FC15C46EEB0C65BAE449E7D94445B3E1B57/",
"NumWidth": 4,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "3b3b7a",
"Name": "Card",
"Transform": {
"posX": 14.9235725,
"posY": 2.20917,
"posZ": 57.244915,
"rotX": 0.0208101571,
"rotY": 270.000366,
"rotZ": 0.0167756658,
"scaleX": 0.6,
"scaleY": 1.0,
"scaleZ": 0.6
},
"Nickname": "Darrell Simmons",
"Description": "",
"GMNotes": "{\n \"id\": \"09015-m\",\n \"type\": \"Minicard\",\n \"traits\": \"\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 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": 846104,
"SidewaysCard": false,
"CustomDeck": {
"8461": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1814412497119653462/E5CB5A50E22021314BB8963E47516DBE8092D8EF/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1814412497119653683/60799F36ADCEBB9027393DBB518B4025D1953FA0/",
"NumWidth": 4,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "bb7174",
"Name": "Card",
"Transform": {
"posX": 15.0606833,
"posY": 2.2103188,
"posZ": 59.70902,
"rotX": 0.0208147448,
"rotY": 270.004272,
"rotZ": 0.0167775583,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Word of Woe",
"Description": "",
"GMNotes": "{\n \"id\": \"09012\",\n \"type\": \"Event\",\n \"cost\": 2,\n \"traits\": \"Pact.\",\n \"permanent\": false,\n \"weakness\": false,\n \"cycle\": \"The Scarlet Keys\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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/1814412497119438903/90145E036353C9A97F52096A369A70BF7073BFB6/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "5edfc2",
"Name": "Card",
"Transform": {
"posX": 15.3430872,
"posY": 2.21035242,
"posZ": 59.43911,
"rotX": 0.0208152384,
"rotY": 270.004272,
"rotZ": 0.0167783182,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Word of Weal",
"Description": "",
"GMNotes": "{\n \"id\": \"09013\",\n \"type\": \"Event\",\n \"cost\": 0,\n \"traits\": \"Pact.\",\n \"permanent\": false,\n \"weakness\": false,\n \"cycle\": \"The Scarlet Keys\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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/1814412497119438903/90145E036353C9A97F52096A369A70BF7073BFB6/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "0821d4",
"Name": "Card",
"Transform": {
"posX": 10.6896505,
"posY": 2.4391582,
"posZ": 43.875824,
"rotX": 0.0208144151,
"rotY": 270.004242,
"rotZ": 0.0167782139,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Deafening Silence",
"Description": "",
"GMNotes": "{\n \"id\": \"09014\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Omen.\",\n \"permanent\": false,\n \"weakness\": true,\n \"cycle\": \"The Scarlet Keys\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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/1814412497119438903/90145E036353C9A97F52096A369A70BF7073BFB6/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "caa382",
"Name": "Card",
"Transform": {
"posX": 10.2182808,
"posY": 2.20102644,
"posZ": 44.9814148,
"rotX": 0.0208143424,
"rotY": 270.004242,
"rotZ": 0.016776897,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Darrell's Kodak",
"Description": "Proof in the Pudding",
"GMNotes": "{\n \"id\": \"09016\",\n \"type\": \"Asset\",\n \"startsInPlay\": true,\n \"cost\": 2,\n \"traits\": \"Item. Tool.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"agilityIcons\": 1,\n \"wildIcons\": 1,\n \"cycle\": \"The Scarlet Keys\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"Asset",
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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/1814412497119438903/90145E036353C9A97F52096A369A70BF7073BFB6/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "6d2eae",
"Name": "Card",
"Transform": {
"posX": 10.4408131,
"posY": 2.201515,
"posZ": 46.33414,
"rotX": 0.0208149962,
"rotY": 270.004242,
"rotZ": 0.01677657,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Ruined Film",
"Description": "",
"GMNotes": "{\n \"id\": \"09017\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Blunder.\",\n \"permanent\": false,\n \"weakness\": true,\n \"cycle\": \"The Scarlet Keys\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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/1814412497119438903/90145E036353C9A97F52096A369A70BF7073BFB6/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "634e9e",
"Name": "Card",
"Transform": {
"posX": 10.405241,
"posY": 2.20143,
"posZ": 46.1794128,
"rotX": 0.0208141282,
"rotY": 270.004272,
"rotZ": 0.0167762488,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Bonnie Walsh",
"Description": "Loyal Assistant",
"GMNotes": "{\n \"id\": \"09019\",\n \"type\": \"Asset\",\n \"cost\": 3,\n \"traits\": \"Ally. Civic. Assistant.\",\n \"permanent\": false,\n \"weakness\": false,\n \"wildIcons\": 2,\n \"cycle\": \"The Scarlet Keys\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"Asset",
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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/1814412497119438903/90145E036353C9A97F52096A369A70BF7073BFB6/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "22e624",
"Name": "Card",
"Transform": {
"posX": 11.2892857,
"posY": 2.20142841,
"posZ": 45.06383,
"rotX": 0.0208142716,
"rotY": 270.004272,
"rotZ": 0.01677723,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Burden of Leadership",
"Description": "",
"GMNotes": "{\n \"id\": \"09020\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Flaw.\",\n \"permanent\": false,\n \"weakness\": true,\n \"cycle\": \"The Scarlet Keys\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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/1814412497119438903/90145E036353C9A97F52096A369A70BF7073BFB6/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "d4b254",
"Name": "Card",
"Transform": {
"posX": 11.7722664,
"posY": 2.20290375,
"posZ": 49.5201073,
"rotX": 0.020812748,
"rotY": 270.0043,
"rotZ": 0.0167761482,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Bolas",
"Description": "",
"GMNotes": "{\n \"id\": \"09025\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Tactic.\",\n \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"agilityIcons\": 1\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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/1814412497119438903/90145E036353C9A97F52096A369A70BF7073BFB6/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "74969c",
"Name": "Card",
"Transform": {
"posX": 11.5844727,
"posY": 2.20383954,
"posZ": 52.949913,
"rotX": 0.020812951,
"rotY": 270.004333,
"rotZ": 0.0167754367,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Breach the Door",
"Description": "",
"GMNotes": "{\n \"id\": \"09026\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Insight. Tactic. Police.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"combatIcons\": 1\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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/1814412497119438903/90145E036353C9A97F52096A369A70BF7073BFB6/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "d7c63c",
"Name": "Card",
"Transform": {
"posX": 13.0194159,
"posY": 2.207206,
"posZ": 51.6273232,
"rotX": 0.020812463,
"rotY": 270.0043,
"rotZ": 0.0167746749,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Grievous Wound",
"Description": "",
"GMNotes": "{\n \"id\": \"09027\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Tactic.\",\n \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 2,\n \"cycle\": \"The Scarlet Keys\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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/1814412497119438903/90145E036353C9A97F52096A369A70BF7073BFB6/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "a85f1d",
"Name": "Card",
"Transform": {
"posX": 10.3836613,
"posY": 2.20125127,
"posZ": 45.50483,
"rotX": 0.020814836,
"rotY": 270.004272,
"rotZ": 0.0167765152,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Hunter's Armor",
"Description": "",
"GMNotes": "{\n \"id\": \"09021\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"cost\": 4,\n \"level\": 0,\n \"traits\": \"Item. Armor.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"customizations\": [\n {\n \"name\": \"Enchanted\",\n \"xp\": 1,\n \"text\": \"Hunter�€�s Armor gains the Relic trait and takes up an arcane slot instead of a body slot.\",\n \"replaces\": {\n \"traits\": \"Item. Armor. Relic.\"\n }\n },\n {\n \"name\": \"Protective Runes\",\n \"xp\": 2,\n \"text\": \"Hunter�€�s Armor may be assigned damage and/or horror dealt to other investigators at your location.\"\n },\n {\n \"name\": \"Durable\",\n \"xp\": 2,\n \"text\": \"Hunter�€�s Armor gets +2 health.\"\n },\n {\n \"name\": \"Hallowed\",\n \"xp\": 2,\n \"text\": \"Hunter�€�s Armor gets +2 sanity.\"\n },\n {\n \"name\": \"Lightweight\",\n \"xp\": 2,\n \"text\": \"Hunter�€�s Armor gets �€“1 cost and playing it does not provoke attacks of opportunity.\",\n \"replaces\": {\n \"cost\": 3\n }\n },\n {\n \"name\": \"Hexdrinker\",\n \"xp\": 3,\n \"text\": \"After 1 or more damage or horror is assigned to Hunter�€�s Armor from a treachery effect, you may exhaust it to draw 1 card.\"\n },\n {\n \"name\": \"Armor of Thorns\",\n \"xp\": 3,\n \"text\": \"After 1 or more damage or horror is assigned to Hunter�€�s Armor from an enemy attack, you may exhaust it to deal 1 damage to that enemy.\"\n }\n ],\n \"cycle\": \"The Scarlet Keys\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"Asset",
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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/1814412497119438903/90145E036353C9A97F52096A369A70BF7073BFB6/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "95b0cf",
"Name": "Card",
"Transform": {
"posX": 17.4770966,
"posY": 2.211332,
"posZ": 60.19171,
"rotX": 0.02081453,
"rotY": 270.004272,
"rotZ": 0.016778646,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Agent Fletcher",
"Description": "",
"GMNotes": "{\n \"id\": \"09010\",\n \"type\": \"Enemy\",\n \"class\": \"Neutral\",\n \"traits\": \"Humanoid. Coterie. Detective.\",\n \"permanent\": false,\n \"weakness\": true,\n \"cycle\": \"The Scarlet Keys\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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/1814412497119438903/90145E036353C9A97F52096A369A70BF7073BFB6/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "972250",
"Name": "Card",
"Transform": {
"posX": 13.24364,
"posY": 2.2067318,
"posZ": 49.728035,
"rotX": 0.0208137967,
"rotY": 270.0043,
"rotZ": 0.0167776328,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Obsidian Bracelet",
"Description": "",
"GMNotes": "{\n \"id\": \"09024\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"cost\": 3,\n \"level\": 0,\n \"traits\": \"Item. Charm.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"Asset",
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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/1814412497119438903/90145E036353C9A97F52096A369A70BF7073BFB6/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "7cdb0a",
"Name": "Card",
"Transform": {
"posX": 9.923275,
"posY": 2.201669,
"posZ": 47.49274,
"rotX": 0.0208138339,
"rotY": 270.0043,
"rotZ": 0.0167759545,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Runic Axe",
"Description": "",
"GMNotes": "{\n \"id\": \"09022\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"cost\": 4,\n \"level\": 0,\n \"traits\": \"Item. Weapon. Melee.\",\n \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"uses\": [\n {\n \"count\": 4,\n \"replenish\": 1,\n \"type\": \"Charge\",\n \"token\": \"resource\"\n }\n ],\n \"customizations\": [\n {\n \"name\": \"Heirloom\",\n \"xp\": 1,\n \"text\": \"This asset gets -1 cost and gains the Relic trait.\",\n \"replaces\": {\n \"cost\": 3,\n \"traits\": \"Item. Relic. Weapon. Melee.\"\n }\n },\n {\n \"name\": \"Inscription of Glory\",\n \"xp\": 1,\n \"text\": \"Add this inscription: �€�? Glory - If this attack defeats an enemy, choose one: draw 1 card, heal 1 damage, or heal 1 horror.�€?\"\n },\n {\n \"name\": \"Inscription of the Elders\",\n \"xp\": 1,\n \"text\": \"Add this inscription: �€�? Elders - If this attack succeeds by an amount equal to or grather than your location\\u0027s shroud, discover 1 clue at your location.�€?\"\n },\n {\n \"name\": \"Inscription of the Hunt\",\n \"xp\": 1,\n \"text\": \"Add this inscription: �€�? Hunt - Immediately move to a connecting location or engage an enemy at your location.�€?\"\n },\n {\n \"name\": \"Inscription of Fury\",\n \"xp\": 1,\n \"text\": \"Add this inscription: �€�? Fury - If this attack is successful, in addition to its standard damage, deal 1 damage to each other enemy engaged with you.�€?\"\n },\n {\n \"name\": \"Ancient Power\",\n \"xp\": 3,\n \"text\": \"You may imbue the same inscription up to three times.\"\n },\n {\n \"name\": \"Saga\",\n \"xp\": 3,\n \"text\": \"Replenish 2 of Runic Axe\\u0027s charges at the start of each round, instead of only one\",\n \"replaces\": {\n \"uses\": [\n {\n \"count\": 4,\n \"replenish\": 2,\n \"type\": \"Charge\",\n \"token\": \"resource\"\n }\n ]\n }\n },\n {\n \"name\": \"Scriptweaver\",\n \"xp\": 4,\n \"text\": \"For every charge spent, you may imbue the axe with up to two different inscriptions.\"\n }\n ],\n \"cycle\": \"The Scarlet Keys\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"Asset",
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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/1814412497119438903/90145E036353C9A97F52096A369A70BF7073BFB6/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "d2252d",
"Name": "Card",
"Transform": {
"posX": 10.5140152,
"posY": 2.20171928,
"posZ": 47.0365067,
"rotX": 0.0208139364,
"rotY": 270.0043,
"rotZ": 0.0167759154,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Custom Modifications",
"Description": "",
"GMNotes": "{\n \"id\": \"09023\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"cost\": 3,\n \"level\": 0,\n \"traits\": \"Upgrade. Supply.\",\n \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"agilityIcons\": 1,\n \"customizations\": [\n {\n \"name\": \"Notched Sight\",\n \"xp\": 1,\n \"text\": \"If you perform an attack with attached asset against an enemy engaged with another investigator and fail, you deal no damage.\"\n },\n {\n \"name\": \"Extended Stock\",\n \"xp\": 2,\n \"text\": \"You get +2 Fight while attacking with attached asset.\"\n },\n {\n \"name\": \"Counterbalance\",\n \"xp\": 2,\n \"text\": \"After you attach an Upgrade card other than Custom Modifications to attached asset, draw 1 card.\"\n },\n {\n \"name\": \"Leather Grip\",\n \"xp\": 3,\n \"text\": \"Custom Modifications gets �€“1 cost and gains �€�Fast. Play only during your turn.�€?\",\n \"replaces\": {\n \"cost\": 2\n }\n },\n {\n \"name\": \"Extended Magazine\",\n \"xp\": 3,\n \"text\": \"After ammo is spent from or placed on attached asset by another event, place 1 ammo on attached asset.\"\n },\n {\n \"name\": \"Quicksilver Bullets\",\n \"xp\": 4,\n \"text\": \"If you succeed by 3 or more while attacking with attached asset, this attack deals +1 damage.\"\n }\n ]\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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/1814412497119438903/90145E036353C9A97F52096A369A70BF7073BFB6/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "4b891d",
"Name": "Card",
"Transform": {
"posX": 19.0793,
"posY": 2.211718,
"posZ": 59.5231476,
"rotX": 0.0208147243,
"rotY": 270.0042,
"rotZ": 0.0167784225,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "\"As you wish\"",
"Description": "",
"GMNotes": "{\n \"id\": \"09002\",\n \"type\": \"Skill\",\n \"class\": \"Neutral\",\n \"traits\": \"Practiced. Expert.\",\n \"permanent\": false,\n \"weakness\": false,\n \"wildIcons\": 3,\n \"cycle\": \"The Scarlet Keys\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 587700,
"SidewaysCard": false,
"CustomDeck": {
"5877": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1814412497119438903/90145E036353C9A97F52096A369A70BF7073BFB6/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "07dd55",
"Name": "Card",
"Transform": {
"posX": 17.743021,
"posY": 2.211303,
"posZ": 59.7622566,
"rotX": 0.02081548,
"rotY": 270.004242,
"rotZ": 0.0167781115,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Selfless to a Fault",
"Description": "",
"GMNotes": "{\n \"id\": \"09003\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Flaw.\",\n \"permanent\": false,\n \"weakness\": true,\n \"cycle\": \"The Scarlet Keys\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 587701,
"SidewaysCard": false,
"CustomDeck": {
"5877": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1814412497119438903/90145E036353C9A97F52096A369A70BF7073BFB6/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "fb54d3",
"Name": "Card",
"Transform": {
"posX": 18.8989086,
"posY": 2.2116797,
"posZ": 59.61459,
"rotX": 0.0208155848,
"rotY": 270.004242,
"rotZ": 0.0167771243,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Wounded Bystander",
"Description": "On Death's Doorstep",
"GMNotes": "{\n \"id\": \"09007\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Bystander.\",\n \"permanent\": false,\n \"weakness\": true,\n \"uses\": [\n {\n \"count\": 3,\n \"type\": \"Damage\",\n \"token\": \"Damage\"\n }\n ],\n \"cycle\": \"The Scarlet Keys\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"Asset",
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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/1814412497119438903/90145E036353C9A97F52096A369A70BF7073BFB6/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "09f1a2",
"Name": "Card",
"Transform": {
"posX": 17.9826374,
"posY": 2.21128368,
"posZ": 59.359684,
"rotX": 0.0208149627,
"rotY": 270.004272,
"rotZ": 0.01677676,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Grappling Hook",
"Description": "",
"GMNotes": "{\n \"id\": \"09009\",\n \"type\": \"Asset\",\n \"cost\": 3,\n \"traits\": \"Item. Tool.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"agilityIcons\": 1,\n \"wildIcons\": 1,\n \"cycle\": \"The Scarlet Keys\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"Asset",
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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/1814412497119438903/90145E036353C9A97F52096A369A70BF7073BFB6/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "7fe728",
"Name": "Card",
"Transform": {
"posX": 21.6241779,
"posY": 4.331943,
"posZ": -59.2529259,
"rotX": 0.062772654,
"rotY": 269.813049,
"rotZ": 2.67958379,
"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 \"cost\": 3,\n \"level\": 0,\n \"traits\": \"Ally.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"uses\": [\n {\n \"count\": 3,\n \"type\": \"Secret\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Circle Undone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"Asset",
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 558212,
"SidewaysCard": false,
"CustomDeck": {
"5582": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1802024937476547660/8E52B0347047884A4B88B0A66190525BEF985337/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 5,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "5d3d67",
"Name": "Card",
"Transform": {
"posX": 18.596426,
"posY": 2.20942616,
"posZ": 52.3941269,
"rotX": 0.0167745613,
"rotY": 180.008087,
"rotZ": 359.9792,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Darrell Simmons",
"Description": "The Photographer",
"GMNotes": "{\n \"id\": \"09015\",\n \"type\": \"Investigator\",\n \"class\": \"Survivor\",\n \"traits\": \"Reporter.\",\n \"willpowerIcons\": 2,\n \"intellectIcons\": 5,\n \"combatIcons\": 2,\n \"agilityIcons\": 3,\n \"cycle\": \"The Scarlet Keys\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 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": 843404,
"SidewaysCard": true,
"CustomDeck": {
"8434": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1814412497119606067/D4B307834101CF1589A9A9AEEC4CE2F65E7DF02F/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1814412497119606436/4C276FC15C46EEB0C65BAE449E7D94445B3E1B57/",
"NumWidth": 4,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "9a9830",
"Name": "Card",
"Transform": {
"posX": 17.828846,
"posY": 2.20962024,
"posZ": 54.01269,
"rotX": 0.016774701,
"rotY": 180.008087,
"rotZ": 359.9792,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Kymani Jones",
"Description": "The Security Consultant",
"GMNotes": "{\n \"id\": \"09008\",\n \"type\": \"Investigator\",\n \"class\": \"Rogue\",\n \"traits\": \"Criminal.\",\n \"willpowerIcons\": 3,\n \"intellectIcons\": 2,\n \"combatIcons\": 2,\n \"agilityIcons\": 5,\n \"cycle\": \"The Scarlet Keys\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 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": 843402,
"SidewaysCard": true,
"CustomDeck": {
"8434": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1814412497119606067/D4B307834101CF1589A9A9AEEC4CE2F65E7DF02F/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1814412497119606436/4C276FC15C46EEB0C65BAE449E7D94445B3E1B57/",
"NumWidth": 4,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "3c2561",
"Name": "Card",
"Transform": {
"posX": 21.6273975,
"posY": 4.335746,
"posZ": -60.2411652,
"rotX": 0.06263317,
"rotY": 269.81604,
"rotZ": 2.67958784,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Prophesiae Profana (5) (Taboo)",
"Description": "Atlas of the Unknowable",
"GMNotes": "{\n \"id\": \"08045-t\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"cost\": 4,\n \"level\": 5,\n \"traits\": \"Item. Relic. Tome.\",\n \"permanent\": false,\n \"weakness\": false,\n \"wildIcons\": 2,\n \"cycle\": \"Edge of the Earth\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"Asset",
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 558214,
"SidewaysCard": false,
"CustomDeck": {
"5582": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1802024937476547660/8E52B0347047884A4B88B0A66190525BEF985337/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 5,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "dc96d1",
"Name": "Card",
"Transform": {
"posX": 22.9001751,
"posY": 2.21087933,
"posZ": 52.023037,
"rotX": 0.0167745221,
"rotY": 180.008072,
"rotZ": 359.9792,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Carson Sinclair",
"Description": "The Butler",
"GMNotes": "{\n \"id\": \"09001\",\n \"type\": \"Investigator\",\n \"class\": \"Guardian\",\n \"traits\": \"\",\n \"willpowerIcons\": 2,\n \"intellectIcons\": 2,\n \"combatIcons\": 2,\n \"agilityIcons\": 2\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 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": 843400,
"SidewaysCard": true,
"CustomDeck": {
"8434": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1814412497119606067/D4B307834101CF1589A9A9AEEC4CE2F65E7DF02F/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1814412497119606436/4C276FC15C46EEB0C65BAE449E7D94445B3E1B57/",
"NumWidth": 4,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "475460",
"Name": "Card",
"Transform": {
"posX": 99.06664,
"posY": 1.90135026,
"posZ": 4.602899,
"rotX": 0.0168736465,
"rotY": 179.99855,
"rotZ": 0.0798790753,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Lola Hayes (Taboo)",
"Description": "The Actress",
"GMNotes": "{\n \"id\": \"03006-t\",\n \"type\": \"Investigator\",\n \"class\": \"Neutral\",\n \"traits\": \"Performer.\",\n \"willpowerIcons\": 3,\n \"intellectIcons\": 3,\n \"combatIcons\": 3,\n \"agilityIcons\": 3,\n \"cycle\": \"The Path to Carcosa\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 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": 558300,
"SidewaysCard": true,
"CustomDeck": {
"5583": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1802024937476550198/99699EB95501C488B55445D304315BF231CB63F7/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1802024937476550359/A275A59476B12F2C38F9863D8AB889DCB382D1D1/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "754b0a",
"Name": "Card",
"Transform": {
"posX": 98.63814,
"posY": 1.94957423,
"posZ": 13.5490131,
"rotX": 1.87883031,
"rotY": 180.0077,
"rotZ": 0.0002260601,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Mandy Thompson (Taboo)",
"Description": "The Researcher",
"GMNotes": "{\n \"id\": \"06002-t\",\n \"type\": \"Investigator\",\n \"class\": \"Seeker\",\n \"traits\": \"Assistant. Scholar.\",\n \"willpowerIcons\": 3,\n \"intellectIcons\": 5,\n \"combatIcons\": 1,\n \"agilityIcons\": 3,\n \"cycle\": \"The Dream-Eaters\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 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": 558301,
"SidewaysCard": true,
"CustomDeck": {
"5583": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1802024937476550198/99699EB95501C488B55445D304315BF231CB63F7/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1802024937476550359/A275A59476B12F2C38F9863D8AB889DCB382D1D1/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "709a54",
"Name": "Card",
"Transform": {
"posX": 16.7097435,
"posY": 3.37114763,
"posZ": 65.64211,
"rotX": 359.841675,
"rotY": 270.003937,
"rotZ": 0.20393458,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Underprepared",
"Description": "Basic Weakness",
"GMNotes": "{\n \"id\": \"09128\",\n \"type\": \"Event\",\n \"class\": \"Neutral\",\n \"cost\": 1,\n \"traits\": \"Blunder.\",\n \"permanent\": false,\n \"weakness\": true,\n \"basicWeaknessCount\": 1,\n \"cycle\": \"The Scarlet Keys\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 379152,
"SidewaysCard": false,
"CustomDeck": {
"3791": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1814412497119474921/33ED44071C8BCA7379B0E8031F47169B73639E37/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 9,
"NumHeight": 6,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "379582",
"Name": "Card",
"Transform": {
"posX": 16.7157154,
"posY": 3.373595,
"posZ": 65.637886,
"rotX": 359.815857,
"rotY": 270.003845,
"rotZ": 0.23232536,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Ectoplasmic Horror",
"Description": "Basic Weakness",
"GMNotes": "{\n \"id\": \"09127\",\n \"type\": \"Enemy\",\n \"class\": \"Neutral\",\n \"traits\": \"Monster. Geist.\",\n \"permanent\": false,\n \"weakness\": true,\n \"basicWeaknessCount\": 1,\n \"cycle\": \"The Scarlet Keys\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 379151,
"SidewaysCard": false,
"CustomDeck": {
"3791": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1814412497119474921/33ED44071C8BCA7379B0E8031F47169B73639E37/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 9,
"NumHeight": 6,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "5b6c9f",
"Name": "Card",
"Transform": {
"posX": 16.7163563,
"posY": 3.35705423,
"posZ": 65.63728,
"rotX": 358.9502,
"rotY": 269.9901,
"rotZ": 1.14153647,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Pay Your Due",
"Description": "Basic Weakness",
"GMNotes": "{\n \"id\": \"09126\",\n \"type\": \"Event\",\n \"class\": \"Neutral\",\n \"cost\": 10,\n \"traits\": \"Pact.\",\n \"permanent\": false,\n \"weakness\": true,\n \"basicWeaknessCount\": 1,\n \"cycle\": \"The Scarlet Keys\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 379150,
"SidewaysCard": false,
"CustomDeck": {
"3791": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1814412497119474921/33ED44071C8BCA7379B0E8031F47169B73639E37/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 9,
"NumHeight": 6,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "0e4c07",
"Name": "Card",
"Transform": {
"posX": 16.7157173,
"posY": 3.37864757,
"posZ": 65.637886,
"rotX": 359.911,
"rotY": 270.00415,
"rotZ": 0.1322382,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Quantum Paradox",
"Description": "Basic Weakness",
"GMNotes": "{\n \"id\": \"09125\",\n \"type\": \"Event\",\n \"class\": \"Neutral\",\n \"cost\": 0,\n \"traits\": \"Paradox.\",\n \"permanent\": false,\n \"weakness\": true,\n \"basicWeaknessCount\": 1,\n \"cycle\": \"The Scarlet Keys\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 379149,
"SidewaysCard": false,
"CustomDeck": {
"3791": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1814412497119474921/33ED44071C8BCA7379B0E8031F47169B73639E37/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 9,
"NumHeight": 6,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "79cc11",
"Name": "Card",
"Transform": {
"posX": 16.7157173,
"posY": 3.37785888,
"posZ": 65.637886,
"rotX": 359.943665,
"rotY": 270.0042,
"rotZ": 0.09789661,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Lurker in the Dark",
"Description": "Basic Weakness",
"GMNotes": "{\n \"id\": \"09124\",\n \"type\": \"Enemy\",\n \"traits\": \"Monster. Shoggoth.\",\n \"permanent\": false,\n \"weakness\": false\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 379148,
"SidewaysCard": false,
"CustomDeck": {
"3791": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1814412497119474921/33ED44071C8BCA7379B0E8031F47169B73639E37/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 9,
"NumHeight": 6,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "52f6d6",
"Name": "Card",
"Transform": {
"posX": 16.7157173,
"posY": 3.3765583,
"posZ": 65.637886,
"rotX": 359.918152,
"rotY": 270.00415,
"rotZ": 0.12472602,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Soul Sanctification (3)",
"Description": "",
"GMNotes": "{\n \"id\": \"09123\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"level\": 3,\n \"traits\": \"Ritual.\",\n \"permanent\": true,\n \"weakness\": false,\n \"cycle\": \"The Scarlet Keys\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"Asset",
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 379147,
"SidewaysCard": false,
"CustomDeck": {
"3791": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1814412497119474921/33ED44071C8BCA7379B0E8031F47169B73639E37/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 9,
"NumHeight": 6,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "2b3301",
"Name": "Card",
"Transform": {
"posX": 16.7157116,
"posY": 3.36861658,
"posZ": 65.63788,
"rotX": 359.516479,
"rotY": 270.001831,
"rotZ": 0.547218561,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Flashlight (3)",
"Description": "",
"GMNotes": "{\n \"id\": \"09122\",\n \"type\": \"Asset\",\n \"cost\": 2,\n \"level\": 3,\n \"traits\": \"Item. Tool.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"agilityIcons\": 1,\n \"uses\": [\n {\n \"count\": 4,\n \"type\": \"Supply\",\n \"token\": \"resource\"\n }\n ]\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"Asset",
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 379146,
"SidewaysCard": false,
"CustomDeck": {
"3791": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1814412497119474921/33ED44071C8BCA7379B0E8031F47169B73639E37/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 9,
"NumHeight": 6,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "482b10",
"Name": "Card",
"Transform": {
"posX": 16.7157059,
"posY": 3.36238074,
"posZ": 65.63788,
"rotX": 359.262878,
"rotY": 269.998779,
"rotZ": 0.81400615,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Refine",
"Description": "",
"GMNotes": "{\n \"id\": \"09121\",\n \"type\": \"Event\",\n \"class\": \"Neutral\",\n \"cost\": 3,\n \"level\": 0,\n \"traits\": \"Supply. Double.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"agilityIcons\": 1\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 379145,
"SidewaysCard": false,
"CustomDeck": {
"3791": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1814412497119474921/33ED44071C8BCA7379B0E8031F47169B73639E37/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 9,
"NumHeight": 6,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "769a3e",
"Name": "Card",
"Transform": {
"posX": 16.7162437,
"posY": 3.35361433,
"posZ": 65.63738,
"rotX": 358.8251,
"rotY": 269.9881,
"rotZ": 1.27387512,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Tool Belt",
"Description": "",
"GMNotes": "{\n \"id\": \"09120\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Item. Clothing.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"cycle\": \"The Scarlet Keys\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"Asset",
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 379144,
"SidewaysCard": false,
"CustomDeck": {
"3791": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1814412497119474921/33ED44071C8BCA7379B0E8031F47169B73639E37/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 9,
"NumHeight": 6,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "2a6e0d",
"Name": "Card",
"Transform": {
"posX": 16.7157059,
"posY": 3.36204743,
"posZ": 65.63788,
"rotX": 359.2129,
"rotY": 269.998047,
"rotZ": 0.8666189,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Hyperphysical Shotcaster",
"Description": "Theoretical Device",
"GMNotes": "{\n \"id\": \"09119\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"cost\": 4,\n \"level\": 0,\n \"traits\": \"Item. Relic. Weapon. Firearm.\",\n \"permanent\": false,\n \"weakness\": false,\n \"wildIcons\": 1,\n \"uses\": [\n {\n \"count\": 4,\n \"type\": \"Aether\",\n \"token\": \"resource\"\n }\n ],\n \"customizations\": [\n {\n \"name\": \"Railshooter\",\n \"xp\": 2,\n \"text\": \"Hyperphysical Shotcaster has this form: �€�Manifest �€“ Fight. Fight with any skill. This attack deals +1 damage.�€?\"\n },\n {\n \"name\": \"Telescanner\",\n \"xp\": 2,\n \"text\": \"Hyperphysical Shotcaster has this form: �€�Manifest �€“ Investigate. Investigate with any skill. If you succeed, discover a clue at any revealed location instead of your location.\"\n },\n {\n \"name\": \"Translocator\",\n \"xp\": 2,\n \"text\": \"Hyperphysical Shotcaster has this form: �€�Manifest �€“ Evade. Attempt to evade with any skill. Before or after this attempt, you may move an investigator or a non-Elite enemy at your location to a connecting location, or vice versa.�€?\"\n },\n {\n \"name\": \"Realitycollapser\",\n \"xp\": 2,\n \"text\": \"Hyperphysical Shotcaster has this form: �€�Manifest �€“ Test any skill (3). If you succeed, discard from play a non�€‘weakness treachery that is not attached to an Elite enemy.�€?\"\n },\n {\n \"name\": \"Matterweaver\",\n \"xp\": 2,\n \"text\": \"Hyperphysical Shotcaster has this form: �€�Manifest �€“ Choose an asset in your hand and test any skill (X), where X is that asset�€�s cost. If you succeed, play that asset at no cost.�€?\"\n },\n {\n \"name\": \"Aetheric Link\",\n \"xp\": 4,\n \"text\": \"Hyperphysical Shotcaster enters play with 2 additional aether.\",\n \"replaces\": {\n \"uses\": [\n {\n \"count\": 6,\n \"type\": \"Aether\",\n \"token\": \"resource\"\n }\n ]\n }\n },\n {\n \"name\": \"Empowered Configuration\",\n \"xp\": 4,\n \"text\": \"While using a Manifest ability, you get +2 skill value.\"\n }\n ]\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"Asset",
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 379143,
"SidewaysCard": false,
"CustomDeck": {
"3791": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1814412497119474921/33ED44071C8BCA7379B0E8031F47169B73639E37/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 9,
"NumHeight": 6,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "1b4684",
"Name": "Card",
"Transform": {
"posX": 16.7157116,
"posY": 3.36778855,
"posZ": 65.63788,
"rotX": 359.5475,
"rotY": 270.002075,
"rotZ": 0.514633954,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Fickle Fortune (3)",
"Description": "",
"GMNotes": "{\n \"id\": \"09118\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"level\": 3,\n \"traits\": \"Dilemma. Fortune.\",\n \"permanent\": false,\n \"weakness\": false\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 379142,
"SidewaysCard": false,
"CustomDeck": {
"3791": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1814412497119474921/33ED44071C8BCA7379B0E8031F47169B73639E37/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 9,
"NumHeight": 6,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "e7d988",
"Name": "Card",
"Transform": {
"posX": 16.7157173,
"posY": 3.37459946,
"posZ": 65.637886,
"rotX": 359.862274,
"rotY": 270.004028,
"rotZ": 0.18350099,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Old Keyring (3)",
"Description": "",
"GMNotes": "{\n \"id\": \"09117\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"cost\": 1,\n \"level\": 3,\n \"traits\": \"Item. Tool.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 2,\n \"uses\": [\n {\n \"count\": 3,\n \"type\": \"Key\",\n \"token\": \"resource\"\n }\n ]\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"Asset",
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 379141,
"SidewaysCard": false,
"CustomDeck": {
"3791": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1814412497119474921/33ED44071C8BCA7379B0E8031F47169B73639E37/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 9,
"NumHeight": 6,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "f2e87d",
"Name": "Card",
"Transform": {
"posX": 16.7162647,
"posY": 3.35890055,
"posZ": 65.6373749,
"rotX": 359.138977,
"rotY": 269.994049,
"rotZ": 0.943066537,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Salvage (2)",
"Description": "",
"GMNotes": "{\n \"id\": \"09116\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"cost\": 0,\n \"level\": 2,\n \"traits\": \"Insight.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"cycle\": \"The Scarlet Keys\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 379140,
"SidewaysCard": false,
"CustomDeck": {
"3791": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1814412497119474921/33ED44071C8BCA7379B0E8031F47169B73639E37/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 9,
"NumHeight": 6,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "3b7419",
"Name": "Card",
"Transform": {
"posX": 16.7157078,
"posY": 3.36386418,
"posZ": 65.63788,
"rotX": 359.3661,
"rotY": 270.000183,
"rotZ": 0.705419838,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Heed the Dream (2)",
"Description": "",
"GMNotes": "{\n \"id\": \"09115\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"level\": 2,\n \"traits\": \"Augury. Dilemma.\",\n \"permanent\": false,\n \"weakness\": false,\n \"cycle\": \"The Scarlet Keys\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 379139,
"SidewaysCard": false,
"CustomDeck": {
"3791": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1814412497119474921/33ED44071C8BCA7379B0E8031F47169B73639E37/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 9,
"NumHeight": 6,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "2f100c",
"Name": "Card",
"Transform": {
"posX": 16.71571,
"posY": 3.366823,
"posZ": 65.63788,
"rotX": 359.4682,
"rotY": 270.0013,
"rotZ": 0.5980018,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Katja Eastbank (2)",
"Description": "Keeper of Esoteric Lore",
"GMNotes": "{\n \"id\": \"09114\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"cost\": 3,\n \"level\": 2,\n \"traits\": \"Ally. Scholar.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"intellectIcons\": 1\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"Asset",
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 379138,
"SidewaysCard": false,
"CustomDeck": {
"3791": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1814412497119474921/33ED44071C8BCA7379B0E8031F47169B73639E37/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 9,
"NumHeight": 6,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "567525",
"Name": "Card",
"Transform": {
"posX": 16.7162685,
"posY": 3.359796,
"posZ": 65.63737,
"rotX": 359.18045,
"rotY": 269.9947,
"rotZ": 0.899367332,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Baseball Bat (2)",
"Description": "",
"GMNotes": "{\n \"id\": \"09113\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"cost\": 2,\n \"level\": 2,\n \"traits\": \"Item. Weapon. Melee.\",\n \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 2\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"Asset",
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 379137,
"SidewaysCard": false,
"CustomDeck": {
"3791": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1814412497119474921/33ED44071C8BCA7379B0E8031F47169B73639E37/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 9,
"NumHeight": 6,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "4cb0c9",
"Name": "Card",
"Transform": {
"posX": 16.7157116,
"posY": 3.368734,
"posZ": 65.63788,
"rotX": 359.556519,
"rotY": 270.002167,
"rotZ": 0.505106747,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Gumption (1)",
"Description": "",
"GMNotes": "{\n \"id\": \"09112\",\n \"type\": \"Skill\",\n \"class\": \"Survivor\",\n \"level\": 1,\n \"traits\": \"Innate.\",\n \"permanent\": false,\n \"weakness\": false\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 379136,
"SidewaysCard": false,
"CustomDeck": {
"3791": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1814412497119474921/33ED44071C8BCA7379B0E8031F47169B73639E37/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 9,
"NumHeight": 6,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "9c4015",
"Name": "Card",
"Transform": {
"posX": 16.7157059,
"posY": 3.36218262,
"posZ": 65.63788,
"rotX": 359.219116,
"rotY": 269.998169,
"rotZ": 0.860049546,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Nature of the Beast (1)",
"Description": "",
"GMNotes": "{\n \"id\": \"09111\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"level\": 1,\n \"traits\": \"Dilemma. Insight.\",\n \"permanent\": false,\n \"weakness\": false,\n \"cycle\": \"The Scarlet Keys\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 379135,
"SidewaysCard": false,
"CustomDeck": {
"3791": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1814412497119474921/33ED44071C8BCA7379B0E8031F47169B73639E37/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 9,
"NumHeight": 6,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "895047",
"Name": "Card",
"Transform": {
"posX": 16.7157135,
"posY": 3.37079167,
"posZ": 65.63788,
"rotX": 359.6516,
"rotY": 270.00293,
"rotZ": 0.4050546,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Lifeline (1)",
"Description": "",
"GMNotes": "{\n \"id\": \"09110\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"cost\": 1,\n \"level\": 1,\n \"traits\": \"Fortune.\",\n \"permanent\": false,\n \"weakness\": false,\n \"wildIcons\": 1\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 379134,
"SidewaysCard": false,
"CustomDeck": {
"3791": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1814412497119474921/33ED44071C8BCA7379B0E8031F47169B73639E37/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 9,
"NumHeight": 6,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "48e90b",
"Name": "Card",
"Transform": {
"posX": 16.7157059,
"posY": 3.36131549,
"posZ": 65.63788,
"rotX": 359.213684,
"rotY": 269.998077,
"rotZ": 0.8658317,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "At a Crossroads (1)",
"Description": "",
"GMNotes": "{\n \"id\": \"09109\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"level\": 1,\n \"traits\": \"Dilemma. Insight.\",\n \"permanent\": false,\n \"weakness\": false,\n \"cycle\": \"The Scarlet Keys\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 379133,
"SidewaysCard": false,
"CustomDeck": {
"3791": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1814412497119474921/33ED44071C8BCA7379B0E8031F47169B73639E37/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 9,
"NumHeight": 6,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "2c165a",
"Name": "Card",
"Transform": {
"posX": 16.71572,
"posY": 3.377083,
"posZ": 65.637886,
"rotX": 359.977081,
"rotY": 270.004272,
"rotZ": 0.06277434,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Shed a Light",
"Description": "",
"GMNotes": "{\n \"id\": \"09108\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Insight. Trick.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"agilityIcons\": 1\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 379132,
"SidewaysCard": false,
"CustomDeck": {
"3791": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1814412497119474921/33ED44071C8BCA7379B0E8031F47169B73639E37/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 9,
"NumHeight": 6,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "6c726b",
"Name": "Card",
"Transform": {
"posX": 16.71571,
"posY": 3.365345,
"posZ": 65.63788,
"rotX": 359.43454,
"rotY": 270.000977,
"rotZ": 0.6334282,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Predator or Prey",
"Description": "",
"GMNotes": "{\n \"id\": \"09107\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"level\": 0,\n \"traits\": \"Dilemma. Tactic.\",\n \"permanent\": false,\n \"weakness\": false,\n \"cycle\": \"The Scarlet Keys\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 379131,
"SidewaysCard": false,
"CustomDeck": {
"3791": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1814412497119474921/33ED44071C8BCA7379B0E8031F47169B73639E37/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 9,
"NumHeight": 6,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "18247d",
"Name": "Card",
"Transform": {
"posX": 16.7157059,
"posY": 3.36107683,
"posZ": 65.63788,
"rotX": 359.271973,
"rotY": 269.998932,
"rotZ": 0.80447495,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Making Preparations",
"Description": "",
"GMNotes": "{\n \"id\": \"09106\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"level\": 0,\n \"traits\": \"Dilemma. Tactic.\",\n \"permanent\": false,\n \"weakness\": false,\n \"cycle\": \"The Scarlet Keys\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 379130,
"SidewaysCard": false,
"CustomDeck": {
"3791": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1814412497119474921/33ED44071C8BCA7379B0E8031F47169B73639E37/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 9,
"NumHeight": 6,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "b6857b",
"Name": "Card",
"Transform": {
"posX": 16.7157135,
"posY": 3.36925054,
"posZ": 65.63788,
"rotX": 359.649719,
"rotY": 270.00293,
"rotZ": 0.407057762,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Exploit Weakness",
"Description": "",
"GMNotes": "{\n \"id\": \"09105\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Tactic. Trick.\",\n \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"agilityIcons\": 1,\n \"cycle\": \"The Scarlet Keys\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 379129,
"SidewaysCard": false,
"CustomDeck": {
"3791": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1814412497119474921/33ED44071C8BCA7379B0E8031F47169B73639E37/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 9,
"NumHeight": 6,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "a3d041",
"Name": "Card",
"Transform": {
"posX": 16.7161732,
"posY": 3.35698223,
"posZ": 65.63746,
"rotX": 359.1192,
"rotY": 269.9942,
"rotZ": 0.964373,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "End of the Road",
"Description": "",
"GMNotes": "{\n \"id\": \"09104\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"cost\": 0,\n \"level\": 0,\n \"traits\": \"Insight. Spirit.\",\n \"permanent\": false,\n \"weakness\": false\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 379128,
"SidewaysCard": false,
"CustomDeck": {
"3791": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1814412497119474921/33ED44071C8BCA7379B0E8031F47169B73639E37/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 9,
"NumHeight": 6,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "616c43",
"Name": "Card",
"Transform": {
"posX": 16.71572,
"posY": 3.37469387,
"posZ": 65.637886,
"rotX": 359.970825,
"rotY": 270.004242,
"rotZ": 0.0693515763,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Improvised Shield",
"Description": "",
"GMNotes": "{\n \"id\": \"09103\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Item. Armor. Improvised.\",\n \"permanent\": false,\n \"weakness\": false,\n \"cycle\": \"The Scarlet Keys\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"Asset",
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 379127,
"SidewaysCard": false,
"CustomDeck": {
"3791": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1814412497119474921/33ED44071C8BCA7379B0E8031F47169B73639E37/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 9,
"NumHeight": 6,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "8f6f39",
"Name": "Card",
"Transform": {
"posX": 16.71572,
"posY": 3.37520742,
"posZ": 65.637886,
"rotX": -0.00544294529,
"rotY": 270.004272,
"rotZ": 0.04438796,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Idol of Xanatos",
"Description": "Watcher Beyond Time",
"GMNotes": "{\n \"id\": \"09102\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"cost\": 3,\n \"level\": 0,\n \"traits\": \"Item. Relic.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"cycle\": \"The Scarlet Keys\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"Asset",
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 379126,
"SidewaysCard": false,
"CustomDeck": {
"3791": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1814412497119474921/33ED44071C8BCA7379B0E8031F47169B73639E37/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 9,
"NumHeight": 6,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "9417a7",
"Name": "Card",
"Transform": {
"posX": 16.716198,
"posY": 3.36083674,
"posZ": 65.6374359,
"rotX": 359.297638,
"rotY": 269.9968,
"rotZ": 0.776200056,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Grizzled",
"Description": "",
"GMNotes": "{\n \"id\": \"09101\",\n \"type\": \"Skill\",\n \"class\": \"Survivor\",\n \"level\": 0,\n \"traits\": \"Innate. Developed.\",\n \"permanent\": false,\n \"weakness\": false,\n \"wildIcons\": 1,\n \"customizations\": [\n {\n \"name\": \"Specialist\",\n \"xp\": 1,\n \"text\": \"Choose another trait.\"\n },\n {\n \"name\": \"Specialist\",\n \"xp\": 2,\n \"text\": \"Choose another trait.\"\n },\n {\n \"name\": \"Nemesis\",\n \"xp\": 3,\n \"text\": \"If this is a skill test on or against an enemy with a chosen trait and the test is successful, you may attach Grizzled to that enemy. Reduce the difficulty of tests on or against the attached enemy by 1.\"\n },\n {\n \"name\": \"Mythos-Hardened\",\n \"xp\": 4,\n \"text\": \"If this skill test is on a treachery with a chosen trait and the test is successful, you may add both Grizzled and that treachery to the victory display.\"\n },\n {\n \"name\": \"Always Prepared\",\n \"xp\": 5,\n \"text\": \"After you draw an encounter card with a chosen trait, return one copy of Grizzled from your discard pile to your hand. (Max once per round.)\"\n }\n ],\n \"cycle\": \"The Scarlet Keys\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 379125,
"SidewaysCard": false,
"CustomDeck": {
"3791": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1814412497119474921/33ED44071C8BCA7379B0E8031F47169B73639E37/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 9,
"NumHeight": 6,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "aa897f",
"Name": "Card",
"Transform": {
"posX": 16.7157154,
"posY": 3.37131357,
"posZ": 65.637886,
"rotX": 359.814575,
"rotY": 270.003845,
"rotZ": 0.2336838,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Makeshift Trap",
"Description": "",
"GMNotes": "{\n \"id\": \"09100\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Improvised. Trap.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"agilityIcons\": 1,\n \"uses\": [\n {\n \"count\": 2,\n \"type\": \"Time\",\n \"token\": \"resource\"\n }\n ],\n \"customizations\": [\n {\n \"name\": \"Improved Timer\",\n \"xp\": 1,\n \"text\": \"When you play Makeshift Trap, you may increase or decrease its uses by 1.\"\n },\n {\n \"name\": \"Tripwire\",\n \"xp\": 1,\n \"text\": \"Only trigger Makeshift Trap�€�s forced ability if there are 1 or more enemies at attached location.\"\n },\n {\n \"name\": \"Simple\",\n \"xp\": 2,\n \"text\": \"Makeshift Trap gains fast and �€�play during any ? window.�€?\"\n },\n {\n \"name\": \"Poisonous\",\n \"xp\": 2,\n \"text\": \"When you remove 1 or more time from Makeshift Trap, deal 1 damage to an enemy at attached location.\"\n },\n {\n \"name\": \"Remote Configuration\",\n \"xp\": 2,\n \"text\": \"When you play Makeshift Trap, you may attach it to a revealed connecting location.\"\n },\n {\n \"name\": \"Net\",\n \"xp\": 3,\n \"text\": \"Non-Elite enemies at attached location cannot move or make attacks of opportunity.\"\n },\n {\n \"name\": \"Explosive Device\",\n \"xp\": 4,\n \"text\": \"When Makeshift Trap has no time and is discarded, deal 3 damage to each enemy and investigator at attached location.\"\n }\n ]\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 379124,
"SidewaysCard": false,
"CustomDeck": {
"3791": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1814412497119474921/33ED44071C8BCA7379B0E8031F47169B73639E37/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 9,
"NumHeight": 6,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "7421ed",
"Name": "Card",
"Transform": {
"posX": 16.77389,
"posY": 3.37119317,
"posZ": 65.70188,
"rotX": 359.810944,
"rotY": 270.0041,
"rotZ": 0.126268908,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Pocket Multi Tool",
"Description": "",
"GMNotes": "{\n \"id\": \"09099\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"cost\": 3,\n \"level\": 0,\n \"traits\": \"Item. Tool.\",\n \"permanent\": false,\n \"weakness\": false,\n \"wildIcons\": 1,\n \"customizations\": [\n {\n \"name\": \"Detachable\",\n \"xp\": 1,\n \"text\": \"Other investigators at your location may use the ability on Pocket Multi-Tool.\"\n },\n {\n \"name\": \"Pry Bar\",\n \"xp\": 1,\n \"text\": \"You get an additional +1 skill value if this is during a skill test on a treachery.\"\n },\n {\n \"name\": \"Sharpened Knife\",\n \"xp\": 2,\n \"text\": \"You get an additional +1 skill value if this is during an attack.\"\n },\n {\n \"name\": \"Signal Mirror\",\n \"xp\": 2,\n \"text\": \"You get an additional +1 skill value if this is during an evasion attempt.\"\n },\n {\n \"name\": \"Magnifying Lens\",\n \"xp\": 2,\n \"text\": \"You get an additional +1 skill value if this is during an investigation.\"\n },\n {\n \"name\": \"Lucky Charm\",\n \"xp\": 3,\n \"text\": \"After you fail a skill test, ready Pocket Multi Tool.\"\n },\n {\n \"name\": \"Spring-Loaded\",\n \"xp\": 4,\n \"text\": \"Pocket Multi Tool�€�s ability is now a ? ability with the trigger: �€�When you would fail a skill test you are performing, exhaust Pocket Multi Tool�€��€?\"\n }\n ],\n \"cycle\": \"The Scarlet Keys\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"Asset",
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 379123,
"SidewaysCard": false,
"CustomDeck": {
"3791": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1814412497119474921/33ED44071C8BCA7379B0E8031F47169B73639E37/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 9,
"NumHeight": 6,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "647c62",
"Name": "Card",
"Transform": {
"posX": 16.73936,
"posY": 3.346793,
"posZ": 65.49325,
"rotX": 359.0052,
"rotY": 269.983429,
"rotZ": 1.90973973,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Onyx Pentacle (4)",
"Description": "",
"GMNotes": "{\n \"id\": \"09098\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"cost\": 3,\n \"level\": 4,\n \"traits\": \"Item. Charm.\",\n \"permanent\": false,\n \"weakness\": false,\n \"agilityIcons\": 2\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"Asset",
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 379122,
"SidewaysCard": false,
"CustomDeck": {
"3791": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1814412497119474921/33ED44071C8BCA7379B0E8031F47169B73639E37/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 9,
"NumHeight": 6,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "bcb13d",
"Name": "Card",
"Transform": {
"posX": 16.7389374,
"posY": 3.37393,
"posZ": 65.49386,
"rotX": 359.885071,
"rotY": 270.004,
"rotZ": 0.26984334,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Dowsing Rod (4)",
"Description": "",
"GMNotes": "{\n \"id\": \"09097\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"cost\": 4,\n \"level\": 4,\n \"traits\": \"Item. Charm.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 2\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"Asset",
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 379121,
"SidewaysCard": false,
"CustomDeck": {
"3791": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1814412497119474921/33ED44071C8BCA7379B0E8031F47169B73639E37/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 9,
"NumHeight": 6,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "4a6a9f",
"Name": "Card",
"Transform": {
"posX": 16.73893,
"posY": 3.36242461,
"posZ": 65.49385,
"rotX": 359.376068,
"rotY": 269.9974,
"rotZ": 1.21901464,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Ceremonial Sickle (4)",
"Description": "",
"GMNotes": "{\n \"id\": \"09096\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"cost\": 3,\n \"level\": 4,\n \"traits\": \"Item. Charm. Weapon. Melee.\",\n \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 2,\n \"cycle\": \"The Scarlet Keys\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"Asset",
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 379120,
"SidewaysCard": false,
"CustomDeck": {
"3791": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1814412497119474921/33ED44071C8BCA7379B0E8031F47169B73639E37/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 9,
"NumHeight": 6,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "343f3a",
"Name": "Card",
"Transform": {
"posX": 16.7396011,
"posY": 3.34544587,
"posZ": 65.49251,
"rotX": 358.787445,
"rotY": 269.97287,
"rotZ": 2.317461,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Uncage the Soul (3)",
"Description": "",
"GMNotes": "{\n \"id\": \"09095\",\n \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"cost\": 0,\n \"level\": 3,\n \"traits\": \"Spirit.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"wildIcons\": 1\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 379119,
"SidewaysCard": false,
"CustomDeck": {
"3791": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1814412497119474921/33ED44071C8BCA7379B0E8031F47169B73639E37/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 9,
"NumHeight": 6,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "0c77d6",
"Name": "Card",
"Transform": {
"posX": 16.7396278,
"posY": 3.34280944,
"posZ": 65.49246,
"rotX": 358.65,
"rotY": 269.966736,
"rotZ": 2.574416,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Sin-Eater (3)",
"Description": "",
"GMNotes": "{\n \"id\": \"09094\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"level\": 3,\n \"traits\": \"Ritual.\",\n \"permanent\": true,\n \"weakness\": false,\n \"cycle\": \"The Scarlet Keys\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"Asset",
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 379118,
"SidewaysCard": false,
"CustomDeck": {
"3791": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1814412497119474921/33ED44071C8BCA7379B0E8031F47169B73639E37/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 9,
"NumHeight": 6,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "ad3efc",
"Name": "Card",
"Transform": {
"posX": 16.739624,
"posY": 3.339527,
"posZ": 65.49247,
"rotX": 358.4911,
"rotY": 269.959229,
"rotZ": 2.87192941,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Moonlight Ritual (2)",
"Description": "",
"GMNotes": "{\n \"id\": \"09093\",\n \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"cost\": 0,\n \"level\": 2,\n \"traits\": \"\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"agilityIcons\": 1,\n \"wildIcons\": 1\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 379117,
"SidewaysCard": false,
"CustomDeck": {
"3791": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1814412497119474921/33ED44071C8BCA7379B0E8031F47169B73639E37/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 9,
"NumHeight": 6,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "43c3e0",
"Name": "Card",
"Transform": {
"posX": 16.7389259,
"posY": 3.36090231,
"posZ": 65.493576,
"rotX": 359.2017,
"rotY": 269.9932,
"rotZ": 1.54561126,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Elle Rubash (2)",
"Description": "Purifying Purpose",
"GMNotes": "{\n \"id\": \"09092\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"cost\": 3,\n \"level\": 2,\n \"traits\": \"Ally. Witch.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"agilityIcons\": 1,\n \"cycle\": \"The Scarlet Keys\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"Asset",
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 379116,
"SidewaysCard": false,
"CustomDeck": {
"3791": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1814412497119474921/33ED44071C8BCA7379B0E8031F47169B73639E37/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 9,
"NumHeight": 6,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "b5d894",
"Name": "Card",
"Transform": {
"posX": 16.73988,
"posY": 3.345019,
"posZ": 65.49206,
"rotX": 358.625732,
"rotY": 269.963165,
"rotZ": 2.61789584,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Astral Mirror (2)",
"Description": "",
"GMNotes": "{\n \"id\": \"09091\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"cost\": 3,\n \"level\": 2,\n \"traits\": \"Ritual.\",\n \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"cycle\": \"The Scarlet Keys\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"Asset",
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 379115,
"SidewaysCard": false,
"CustomDeck": {
"3791": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1814412497119474921/33ED44071C8BCA7379B0E8031F47169B73639E37/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 9,
"NumHeight": 6,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "63282f",
"Name": "Card",
"Transform": {
"posX": 16.6988811,
"posY": 3.35343242,
"posZ": 65.71134,
"rotX": 358.375244,
"rotY": 269.988037,
"rotZ": 0.9959151,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Ghastly Possession",
"Description": "",
"GMNotes": "{\n \"id\": \"09090\",\n \"type\": \"Skill\",\n \"class\": \"Mystic\",\n \"level\": 1,\n \"traits\": \"Innate. Spell.\",\n \"permanent\": false,\n \"weakness\": false,\n \"wildIcons\": 1\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 379114,
"SidewaysCard": false,
"CustomDeck": {
"3791": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1814412497119474921/33ED44071C8BCA7379B0E8031F47169B73639E37/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 9,
"NumHeight": 6,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "c72750",
"Name": "Card",
"Transform": {
"posX": 16.6679382,
"posY": 3.3708353,
"posZ": 65.93114,
"rotX": 359.3309,
"rotY": 270.0086,
"rotZ": 359.272644,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Binder's Jar (1)",
"Description": "Interdimensional Prison",
"GMNotes": "{\n \"id\": \"09089\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"cost\": 2,\n \"level\": 1,\n \"traits\": \"Item. Relic.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"Asset",
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 379113,
"SidewaysCard": false,
"CustomDeck": {
"3791": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1814412497119474921/33ED44071C8BCA7379B0E8031F47169B73639E37/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 9,
"NumHeight": 6,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "046b16",
"Name": "Card",
"Transform": {
"posX": 16.66792,
"posY": 3.35877562,
"posZ": 65.93123,
"rotX": 358.7602,
"rotY": 270.018951,
"rotZ": 358.655762,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "String of Curses",
"Description": "",
"GMNotes": "{\n \"id\": \"09088\",\n \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Spell.\",\n \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"agilityIcons\": 1,\n \"cycle\": \"The Scarlet Keys\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 379112,
"SidewaysCard": false,
"CustomDeck": {
"3791": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1814412497119474921/33ED44071C8BCA7379B0E8031F47169B73639E37/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 9,
"NumHeight": 6,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "f86c67",
"Name": "Card",
"Transform": {
"posX": 16.6688137,
"posY": 3.35657215,
"posZ": 65.93216,
"rotX": 358.598755,
"rotY": 270.028137,
"rotZ": 358.484436,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Explosive Ward",
"Description": "",
"GMNotes": "{\n \"id\": \"09087\",\n \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"cost\": 0,\n \"level\": 0,\n \"traits\": \"Spell.\",\n \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 2\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 379111,
"SidewaysCard": false,
"CustomDeck": {
"3791": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1814412497119474921/33ED44071C8BCA7379B0E8031F47169B73639E37/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 9,
"NumHeight": 6,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "223eb2",
"Name": "Card",
"Transform": {
"posX": 16.6688919,
"posY": 3.3564527,
"posZ": 65.9322357,
"rotX": 358.527924,
"rotY": 270.030518,
"rotZ": 358.4083,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Eldritch Initiation",
"Description": "",
"GMNotes": "{\n \"id\": \"09086\",\n \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Ritual.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"intellectIcons\": 1,\n \"cycle\": \"The Scarlet Keys\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 379110,
"SidewaysCard": false,
"CustomDeck": {
"3791": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1814412497119474921/33ED44071C8BCA7379B0E8031F47169B73639E37/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 9,
"NumHeight": 6,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "95f4b0",
"Name": "Card",
"Transform": {
"posX": 16.6679153,
"posY": 3.358567,
"posZ": 65.93123,
"rotX": 358.553467,
"rotY": 270.0242,
"rotZ": 358.432556,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Onyx Pentacle",
"Description": "",
"GMNotes": "{\n \"id\": \"09085\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"cost\": 3,\n \"level\": 0,\n \"traits\": \"Item. Charm.\",\n \"permanent\": false,\n \"weakness\": false,\n \"agilityIcons\": 1\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"Asset",
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 379109,
"SidewaysCard": false,
"CustomDeck": {
"3791": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1814412497119474921/33ED44071C8BCA7379B0E8031F47169B73639E37/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 9,
"NumHeight": 6,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "3fa5b8",
"Name": "Card",
"Transform": {
"posX": 16.6679287,
"posY": 3.37479138,
"posZ": 65.93124,
"rotX": 359.244324,
"rotY": 270.0098,
"rotZ": 359.178558,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Hallowed Chalice",
"Description": "",
"GMNotes": "{\n \"id\": \"09084\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"cost\": 3,\n \"level\": 0,\n \"traits\": \"Item. Charm.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"cycle\": \"The Scarlet Keys\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"Asset",
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 379108,
"SidewaysCard": false,
"CustomDeck": {
"3791": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1814412497119474921/33ED44071C8BCA7379B0E8031F47169B73639E37/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 9,
"NumHeight": 6,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "851e3a",
"Name": "Card",
"Transform": {
"posX": 16.667923,
"posY": 3.37057328,
"posZ": 65.93124,
"rotX": 359.023438,
"rotY": 270.013428,
"rotZ": 358.940033,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Dowsing Rod",
"Description": "",
"GMNotes": "{\n \"id\": \"09083\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"cost\": 4,\n \"level\": 0,\n \"traits\": \"Item. Charm.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"cycle\": \"The Scarlet Keys\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"Asset",
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 379107,
"SidewaysCard": false,
"CustomDeck": {
"3791": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1814412497119474921/33ED44071C8BCA7379B0E8031F47169B73639E37/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 9,
"NumHeight": 6,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "b5e78c",
"Name": "Card",
"Transform": {
"posX": 16.6679325,
"posY": 3.38173866,
"posZ": 65.9312439,
"rotX": 359.48877,
"rotY": 270.006836,
"rotZ": 359.4424,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Ceremonial Sickle",
"Description": "",
"GMNotes": "{\n \"id\": \"09082\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"cost\": 3,\n \"level\": 0,\n \"traits\": \"Item. Charm. Weapon. Melee.\",\n \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"cycle\": \"The Scarlet Keys\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"Asset",
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 379106,
"SidewaysCard": false,
"CustomDeck": {
"3791": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1814412497119474921/33ED44071C8BCA7379B0E8031F47169B73639E37/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 9,
"NumHeight": 6,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "c91c1d",
"Name": "Card",
"Transform": {
"posX": 16.6679325,
"posY": 3.381494,
"posZ": 65.9312439,
"rotX": 359.412537,
"rotY": 270.00766,
"rotZ": 359.360168,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Power Word",
"Description": "",
"GMNotes": "{\n \"id\": \"09081\",\n \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"cost\": 3,\n \"level\": 0,\n \"traits\": \"Spell.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"customizations\": [\n {\n \"name\": \"Betray\",\n \"xp\": 1,\n \"text\": \"Add the command: �€�? �€�Betray.�€� Deal 1 damage to any enemy at this enemy�€�s location with an equal or lower fight value than this enemy.�€?\"\n },\n {\n \"name\": \"Mercy\",\n \"xp\": 1,\n \"text\": \"Add the command: �€�? �€�Mercy.�€� An investigator at this enemy�€�s location heals damage or horror equal to this enemy�€�s respective damage/horror value.�€?\"\n },\n {\n \"name\": \"Confess\",\n \"xp\": 1,\n \"text\": \"Add the command: �€�? �€�Confess.�€� Discover 1 clue at this enemy�€�s location if its health is equal to or higher than its location�€�s shroud.�€?\"\n },\n {\n \"name\": \"Distract\",\n \"xp\": 1,\n \"text\": \"Add the command: �€�? �€�Distract.�€� Automatically evade any enemy at this enemy�€�s location with an equal or lower evade value than this enemy.�€?\"\n },\n {\n \"name\": \"Greater Control\",\n \"xp\": 2,\n \"text\": \"Power Word gains �€�?: Return Power Word to your hand.�€?\"\n },\n {\n \"name\": \"Bonded\",\n \"xp\": 3,\n \"text\": \"You may activate the parley ability on Power Word from up to one location away from the attached enemy.\"\n },\n {\n \"name\": \"Tonguetwister\",\n \"xp\": 3,\n \"text\": \"When you parley with Power Word, you may give up to two different commands.\"\n },\n {\n \"name\": \"Thrice Spoken\",\n \"xp\": 3,\n \"text\": \"You may include three copies of Power Word in your deck. When you give a command using one copy, also give that command to each other enemy with one of your copies of Power Word attached.\"\n }\n ],\n \"cycle\": \"The Scarlet Keys\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 379105,
"SidewaysCard": false,
"CustomDeck": {
"3791": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1814412497119474921/33ED44071C8BCA7379B0E8031F47169B73639E37/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 9,
"NumHeight": 6,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "73b311",
"Name": "Card",
"Transform": {
"posX": 16.66793,
"posY": 3.38111544,
"posZ": 65.9312439,
"rotX": 359.363068,
"rotY": 270.00824,
"rotZ": 359.306732,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Summoned Servitor",
"Description": "",
"GMNotes": "{\n \"id\": \"09080\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Summon.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"customizations\": [\n {\n \"name\": \"Armored Carapace\",\n \"xp\": 1,\n \"text\": \"Summoned Servitor gains a health value of 3. It can be assigned damage dealt to any investigator at its location.\"\n },\n {\n \"name\": \"Claws that Catch\",\n \"xp\": 1,\n \"text\": \"Add this action: �€�? Fight. You fight any enemy at this location with a base Combat of 4. Ignore the aloof and retaliate keywords for this attack.�€?\"\n },\n {\n \"name\": \"Jaws that Snatch\",\n \"xp\": 1,\n \"text\": \"Add this action: �€�? Evade. You attempt to evade any enemy at this location with a base Agility of 4. Ignore the alert keyword for this evasion attempt.�€?\"\n },\n {\n \"name\": \"Eyes of Flame\",\n \"xp\": 1,\n \"text\": \"Add this action: �€�? Investigate. You investigate this location with a base Intellect of 4.�€?\"\n },\n {\n \"name\": \"Wings of Night\",\n \"xp\": 1,\n \"text\": \"After Summoned Servitor moves from your location to a connecting location, you may move to that location, as well.\"\n },\n {\n \"name\": \"Dominance\",\n \"xp\": 2,\n \"text\": \"Summoned Servitor no longer takes up an (select one): arcane / ally slot.\"\n },\n {\n \"name\": \"Dreaming Call\",\n \"xp\": 3,\n \"text\": \"Instead of discarding another asset you control in order to play Summoned Servitor, you may return that asset to its owner�€�s hand.\"\n },\n {\n \"name\": \"D�monic Influence\",\n \"xp\": 5,\n \"text\": \"Summoned Servitor can take 2 different actions instead of 1 during each of your turns.\"\n }\n ],\n \"cycle\": \"The Scarlet Keys\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"Asset",
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 379104,
"SidewaysCard": false,
"CustomDeck": {
"3791": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1814412497119474921/33ED44071C8BCA7379B0E8031F47169B73639E37/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 9,
"NumHeight": 6,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "42b36d",
"Name": "Card",
"Transform": {
"posX": 16.6690559,
"posY": 3.35035658,
"posZ": 65.93241,
"rotX": 357.897156,
"rotY": 270.052856,
"rotZ": 357.726257,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Living Ink",
"Description": "",
"GMNotes": "{\n \"id\": \"09079\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"cost\": 0,\n \"level\": 0,\n \"traits\": \"Ritual.\",\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": [\n {\n \"count\": 3,\n \"type\": \"Charge\",\n \"token\": \"resource\"\n }\n ],\n \"customizations\": [\n {\n \"name\": \"Shifting Ink\",\n \"xp\": 1,\n \"text\": \"You may play Living Ink under the control of another investigator at your location.\"\n },\n {\n \"name\": \"Subtle Depiction\",\n \"xp\": 1,\n \"text\": \"At the start of your turn, you may choose not to remove 1 charge from Living Ink and ignore its ability for the remainder of the round.\"\n },\n {\n \"name\": \"Imbued Ink\",\n \"xp\": 2,\n \"text\": \"Living Ink enters play with 2 additional charges and takes up an arcane slot instead of a body slot.\",\n \"replaces\": {\n \"uses\": [\n {\n \"count\": 5,\n \"type\": \"Charge\",\n \"token\": \"resource\"\n }\n ]\n }\n },\n {\n \"name\": \"Eldritch Ink\",\n \"xp\": 3,\n \"text\": \"Circle another skill.\"\n },\n {\n \"name\": \"Eldritch Ink\",\n \"xp\": 3,\n \"text\": \"Circle another skill.\"\n },\n {\n \"name\": \"Macabre Depiction\",\n \"xp\": 3,\n \"text\": \"Living Ink gains: �€�? After you reveal a chaos token with a symbol, exhaust Living Ink: Place 1 charge on it.�€?\"\n },\n {\n \"name\": \"Vibrancy\",\n \"xp\": 3,\n \"text\": \"Living Ink grants an additional +1 to the circled skill(s) and �€“1 to each other skill.\"\n }\n ]\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"Asset",
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 379103,
"SidewaysCard": false,
"CustomDeck": {
"3791": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1814412497119474921/33ED44071C8BCA7379B0E8031F47169B73639E37/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 9,
"NumHeight": 6,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "537171",
"Name": "Card",
"Transform": {
"posX": 16.66792,
"posY": 3.37180471,
"posZ": 65.93123,
"rotX": 358.81778,
"rotY": 270.017639,
"rotZ": 358.718,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Clean Sneak (4)",
"Description": "",
"GMNotes": "{\n \"id\": \"09078\",\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"cost\": 0,\n \"level\": 4,\n \"traits\": \"Gambit. Trick.\",\n \"permanent\": false,\n \"weakness\": false,\n \"agilityIcons\": 2\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 379102,
"SidewaysCard": false,
"CustomDeck": {
"3791": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1814412497119474921/33ED44071C8BCA7379B0E8031F47169B73639E37/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 9,
"NumHeight": 6,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "bba889",
"Name": "Card",
"Transform": {
"posX": 16.66791,
"posY": 3.36157513,
"posZ": 65.93122,
"rotX": 358.296844,
"rotY": 270.03186,
"rotZ": 358.1552,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Underworld Market (2)",
"Description": "",
"GMNotes": "{\n \"id\": \"09077\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"level\": 2,\n \"traits\": \"Connection. Illicit.\",\n \"permanent\": true,\n \"weakness\": false,\n \"cycle\": \"The Scarlet Keys\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"Asset",
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 379101,
"SidewaysCard": false,
"CustomDeck": {
"3791": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1814412497119474921/33ED44071C8BCA7379B0E8031F47169B73639E37/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 9,
"NumHeight": 6,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "11d7ad",
"Name": "Card",
"Transform": {
"posX": 16.6679363,
"posY": 3.39145184,
"posZ": 65.9312439,
"rotX": 359.629364,
"rotY": 270.005676,
"rotZ": 359.5942,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Trigger Man (3)",
"Description": "",
"GMNotes": "{\n \"id\": \"09076\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"cost\": 4,\n \"level\": 3,\n \"traits\": \"Ally. Criminal.\",\n \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 1\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"Asset",
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 379100,
"SidewaysCard": false,
"CustomDeck": {
"3791": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1814412497119474921/33ED44071C8BCA7379B0E8031F47169B73639E37/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 9,
"NumHeight": 6,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "be8d1f",
"Name": "Card",
"Transform": {
"posX": 16.66791,
"posY": 3.36414385,
"posZ": 65.93122,
"rotX": 358.346771,
"rotY": 270.030273,
"rotZ": 358.209137,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Thieves' Kit (3)",
"Description": "",
"GMNotes": "{\n \"id\": \"09075\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"cost\": 3,\n \"level\": 3,\n \"traits\": \"Item. Tool. Illicit.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"agilityIcons\": 1,\n \"uses\": [\n {\n \"count\": 6,\n \"type\": \"Supply\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Scarlet Keys\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"Asset",
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 379068,
"SidewaysCard": false,
"CustomDeck": {
"3790": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1814412497119438903/90145E036353C9A97F52096A369A70BF7073BFB6/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "3411dd",
"Name": "Card",
"Transform": {
"posX": 16.6679344,
"posY": 3.390661,
"posZ": 65.9312439,
"rotX": 359.529419,
"rotY": 270.00647,
"rotZ": 359.4863,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Breaking and Entering (2)",
"Description": "",
"GMNotes": "{\n \"id\": \"09074\",\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"cost\": 2,\n \"level\": 2,\n \"traits\": \"Trick.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"agilityIcons\": 1,\n \"cycle\": \"The Scarlet Keys\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 379067,
"SidewaysCard": false,
"CustomDeck": {
"3790": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1814412497119438903/90145E036353C9A97F52096A369A70BF7073BFB6/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "fa1be0",
"Name": "Card",
"Transform": {
"posX": 16.6679287,
"posY": 3.3851037,
"posZ": 65.93124,
"rotX": 359.249268,
"rotY": 270.009735,
"rotZ": 359.183838,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Dirty Fighting (2)",
"Description": "",
"GMNotes": "{\n \"id\": \"09073\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"cost\": 3,\n \"level\": 2,\n \"traits\": \"Talent. Trick. Illicit.\",\n \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 1\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"Asset",
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 379066,
"SidewaysCard": false,
"CustomDeck": {
"3790": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1814412497119438903/90145E036353C9A97F52096A369A70BF7073BFB6/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "ea31c2",
"Name": "Card",
"Transform": {
"posX": 16.6679287,
"posY": 3.38725019,
"posZ": 65.93124,
"rotX": 359.280579,
"rotY": 270.009277,
"rotZ": 359.217682,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Chuck Fergus (2)",
"Description": "O'Bannion Driver",
"GMNotes": "{\n \"id\": \"09072\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"cost\": 4,\n \"level\": 2,\n \"traits\": \"Ally. Criminal.\",\n \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"agilityIcons\": 1\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"Asset",
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 379065,
"SidewaysCard": false,
"CustomDeck": {
"3790": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1814412497119438903/90145E036353C9A97F52096A369A70BF7073BFB6/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "0a1b3a",
"Name": "Card",
"Transform": {
"posX": 16.66915,
"posY": 3.34607339,
"posZ": 65.93251,
"rotX": 357.4159,
"rotY": 270.074768,
"rotZ": 357.205078,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Stylish Coat (1)",
"Description": "",
"GMNotes": "{\n \"id\": \"09071\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"cost\": 2,\n \"level\": 1,\n \"traits\": \"Item. Clothing.\",\n \"permanent\": false,\n \"weakness\": false,\n \"agilityIcons\": 1\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"Asset",
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 379064,
"SidewaysCard": false,
"CustomDeck": {
"3790": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1814412497119438903/90145E036353C9A97F52096A369A70BF7073BFB6/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "dfbed9",
"Name": "Card",
"Transform": {
"posX": 16.667923,
"posY": 3.38223,
"posZ": 65.93124,
"rotX": 359.0245,
"rotY": 270.013428,
"rotZ": 358.941132,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Calculated Risk",
"Description": "",
"GMNotes": "{\n \"id\": \"09070\",\n \"type\": \"Skill\",\n \"class\": \"Rogue\",\n \"level\": 0,\n \"traits\": \"Gambit. Fated.\",\n \"permanent\": false,\n \"weakness\": false,\n \"dynamicIcons\": true,\n \"cycle\": \"The Scarlet Keys\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 379063,
"SidewaysCard": false,
"CustomDeck": {
"3790": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1814412497119438903/90145E036353C9A97F52096A369A70BF7073BFB6/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "5cc3d2",
"Name": "Card",
"Transform": {
"posX": 16.6678982,
"posY": 3.35365844,
"posZ": 65.93121,
"rotX": 357.7185,
"rotY": 270.05365,
"rotZ": 357.529663,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Quick Getaway",
"Description": "",
"GMNotes": "{\n \"id\": \"09069\",\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Trick.\",\n \"permanent\": false,\n \"weakness\": false,\n \"agilityIcons\": 2,\n \"cycle\": \"The Scarlet Keys\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 379062,
"SidewaysCard": false,
"CustomDeck": {
"3790": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1814412497119438903/90145E036353C9A97F52096A369A70BF7073BFB6/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "4d6da5",
"Name": "Card",
"Transform": {
"posX": 16.6679344,
"posY": 3.39543629,
"posZ": 65.9312439,
"rotX": 359.581421,
"rotY": 270.006042,
"rotZ": 359.54248,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Kicking the Hornet's Nest",
"Description": "",
"GMNotes": "{\n \"id\": \"09068\",\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"traits\": \"Gambit. Tactic.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"combatIcons\": 1\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 379061,
"SidewaysCard": false,
"CustomDeck": {
"3790": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1814412497119438903/90145E036353C9A97F52096A369A70BF7073BFB6/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "691652",
"Name": "Card",
"Transform": {
"posX": 16.6678944,
"posY": 3.35069156,
"posZ": 65.93121,
"rotX": 357.5222,
"rotY": 270.0625,
"rotZ": 357.3172,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "\"I'll take that!\"",
"Description": "",
"GMNotes": "{\n \"id\": \"09067\",\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"cost\": 0,\n \"level\": 0,\n \"traits\": \"Trick. Upgrade. Illicit.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"agilityIcons\": 1,\n \"cycle\": \"The Scarlet Keys\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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/1814412497119438903/90145E036353C9A97F52096A369A70BF7073BFB6/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "408bce",
"Name": "Card",
"Transform": {
"posX": 16.6679,
"posY": 3.35811138,
"posZ": 65.93121,
"rotX": 357.820831,
"rotY": 270.049347,
"rotZ": 357.6405,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Hit and Run",
"Description": "",
"GMNotes": "{\n \"id\": \"09066\",\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Tactic. Trick.\",\n \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"agilityIcons\": 1,\n \"cycle\": \"The Scarlet Keys\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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/1814412497119438903/90145E036353C9A97F52096A369A70BF7073BFB6/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "9bef61",
"Name": "Card",
"Transform": {
"posX": 16.6679039,
"posY": 3.362779,
"posZ": 65.93122,
"rotX": 357.996918,
"rotY": 270.042358,
"rotZ": 357.830933,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Hidden Pocket",
"Description": "",
"GMNotes": "{\n \"id\": \"09065\",\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Upgrade. Illicit.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"agilityIcons\": 1,\n \"cycle\": \"The Scarlet Keys\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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/1814412497119438903/90145E036353C9A97F52096A369A70BF7073BFB6/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "857b53",
"Name": "Card",
"Transform": {
"posX": 16.6678963,
"posY": 3.35751534,
"posZ": 65.93146,
"rotX": 357.7635,
"rotY": 270.051819,
"rotZ": 357.574036,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Thieves' Kit",
"Description": "",
"GMNotes": "{\n \"id\": \"09064\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"cost\": 3,\n \"level\": 0,\n \"traits\": \"Item. Tool. Illicit.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"uses\": [\n {\n \"count\": 6,\n \"type\": \"Supply\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Scarlet Keys\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"Asset",
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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/1814412497119438903/90145E036353C9A97F52096A369A70BF7073BFB6/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "8fd043",
"Name": "Card",
"Transform": {
"posX": 16.66948,
"posY": 3.34623575,
"posZ": 65.933136,
"rotX": 357.2342,
"rotY": 270.08606,
"rotZ": 357.003571,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Embezzled Treasure",
"Description": "",
"GMNotes": "{\n \"id\": \"09063\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"cost\": 0,\n \"level\": 0,\n \"traits\": \"Item. Illicit.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"cycle\": \"The Scarlet Keys\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"Asset",
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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/1814412497119438903/90145E036353C9A97F52096A369A70BF7073BFB6/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "f170fc",
"Name": "Card",
"Transform": {
"posX": 16.6679287,
"posY": 3.39343023,
"posZ": 65.9315262,
"rotX": 359.332245,
"rotY": 270.0086,
"rotZ": 359.271881,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Disguise",
"Description": "",
"GMNotes": "{\n \"id\": \"09062\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"cost\": 3,\n \"level\": 0,\n \"traits\": \"Talent. Trick. Illicit.\",\n \"permanent\": false,\n \"weakness\": false,\n \"agilityIcons\": 1,\n \"uses\": [\n {\n \"count\": 4,\n \"type\": \"Supply\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Scarlet Keys\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"Asset",
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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/1814412497119438903/90145E036353C9A97F52096A369A70BF7073BFB6/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "1cde62",
"Name": "Card",
"Transform": {
"posX": 16.6679134,
"posY": 3.378289,
"posZ": 65.93151,
"rotX": 358.625458,
"rotY": 270.022339,
"rotZ": 358.50705,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Honed Instinct",
"Description": "",
"GMNotes": "{\n \"id\": \"09061\",\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"cost\": 1,\n \"level\": 0,\n \"traits\": \"\",\n \"permanent\": false,\n \"weakness\": false,\n \"agilityIcons\": 1,\n \"customizations\": [\n {\n \"name\": \"Reflex Response\",\n \"xp\": 1,\n \"text\": \"Add the following play condition: �€�\\u003d You take damage or horror.�€?\"\n },\n {\n \"name\": \"Situational Awareness\",\n \"xp\": 1,\n \"text\": \"Add the following play condition: �€�\\u003d A location enters play or is revealed.�€?\"\n },\n {\n \"name\": \"Killer Instinct\",\n \"xp\": 1,\n \"text\": \"Add the following play condition: �€�\\u003d An enemy engages you.�€?\"\n },\n {\n \"name\": \"Gut Reaction\",\n \"xp\": 1,\n \"text\": \"Add the following play condition: �€�\\u003d A treachery enters your threat area .�€?\"\n },\n {\n \"name\": \"Muscle Memory\",\n \"xp\": 1,\n \"text\": \"Add the following play condition: �€�\\u003d You play an asset.�€?\"\n },\n {\n \"name\": \"Sharpened Talent\",\n \"xp\": 2,\n \"text\": \"During the action granted by Honed Instinct, you get +2 to each of your skills.\"\n },\n {\n \"name\": \"Impulse Control\",\n \"xp\": 3,\n \"text\": \"You may include up to three copies of Honed Instinct in your deck. Honed Instinct gets �€“1 cost.\",\n \"replaces\": {\n \"cost\": 0\n }\n },\n {\n \"name\": \"Force of Habit\",\n \"xp\": 5,\n \"text\": \"When you play Honed Instinct, you may take 2 actions instead of 1 (one at a time). Then, remove it from the game.\"\n }\n ]\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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/1814412497119438903/90145E036353C9A97F52096A369A70BF7073BFB6/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "c332af",
"Name": "Card",
"Transform": {
"posX": 16.6679211,
"posY": 3.38769722,
"posZ": 65.93152,
"rotX": 359.012939,
"rotY": 270.013641,
"rotZ": 358.926361,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Friends in Low Places",
"Description": "",
"GMNotes": "{\n \"id\": \"09060\",\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"cost\": 0,\n \"level\": 0,\n \"traits\": \"Favor.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"agilityIcons\": 1,\n \"customizations\": [\n {\n \"name\": \"Helpful\",\n \"xp\": 1,\n \"text\": \"When you play Friends in Low Places, you may choose another investigator at your location to resolve its effects.\"\n },\n {\n \"name\": \"Versatile\",\n \"xp\": 2,\n \"text\": \"Choose another Trait. When you play Friends in Low Places, you may choose one of the looked-at cards with both chosen Traits to add to your hand without spending 1 resource.\"\n },\n {\n \"name\": \"Bolstering\",\n \"xp\": 2,\n \"text\": \"Each card added to your hand by Friends in Low Places gains a ? icon until the end of the phase.\"\n },\n {\n \"name\": \"Clever\",\n \"xp\": 2,\n \"text\": \"Instead of shuffling the remaining cards into your deck, you may place each of them on the top of your deck, in any order.\"\n },\n {\n \"name\": \"Prompt\",\n \"xp\": 2,\n \"text\": \"Friends in Low Places gains fast and �€�play during any ? window.�€?\"\n },\n {\n \"name\": \"Experienced\",\n \"xp\": 3,\n \"text\": \"Increase the number of cards looked at by 3.\"\n },\n {\n \"name\": \"Swift\",\n \"xp\": 3,\n \"text\": \"You may play one of the cards added to your hand (paying its cost).\"\n }\n ],\n \"cycle\": \"The Scarlet Keys\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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/1814412497119438903/90145E036353C9A97F52096A369A70BF7073BFB6/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "3369a5",
"Name": "Card",
"Transform": {
"posX": 16.6679249,
"posY": 3.392203,
"posZ": 65.93152,
"rotX": 359.213776,
"rotY": 270.010254,
"rotZ": 359.143738,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Damning Testimony",
"Description": "",
"GMNotes": "{\n \"id\": \"09059\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"cost\": 4,\n \"level\": 0,\n \"traits\": \"Item. Illicit.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"uses\": [\n {\n \"count\": 3,\n \"type\": \"Evidence\",\n \"token\": \"resource\"\n }\n ],\n \"customizations\": [\n {\n \"name\": \"Search Warrant\",\n \"xp\": 1,\n \"text\": \"While investigating using Damning Testimony, you may ignore any effect or keyword on the investigated location that would trigger.\"\n },\n {\n \"name\": \"Fabricated Evidence\",\n \"xp\": 2,\n \"text\": \"Damning Testimony enters play with 2 additional evidence on it.\",\n \"replaces\": {\n \"uses\": [\n {\n \"count\": 5,\n \"type\": \"Evidence\",\n \"token\": \"resource\"\n }\n ]\n }\n },\n {\n \"name\": \"Blackmail\",\n \"xp\": 2,\n \"text\": \"You get +2 Intellect while investigating using Damning Testimony.\"\n },\n {\n \"name\": \"Extort\",\n \"xp\": 3,\n \"text\": \"When you successfully investigate using Damning Testimony, you may spend 1 evidence to automatically evade the chosen enemy.\"\n },\n {\n \"name\": \"Surveil\",\n \"xp\": 3,\n \"text\": \"You may use Damning Testimony�€�s ability to investigate the chosen enemy�€�s location instead of your location.\"\n },\n {\n \"name\": \"Expose\",\n \"xp\": 4,\n \"text\": \"When you successfully investigate using Damning Testimony, you may spend X evidence to discard the chosen enemy if it is non-Elite. X is that enemy�€�s remaining health.\"\n }\n ],\n \"cycle\": \"The Scarlet Keys\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"Asset",
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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/1814412497119438903/90145E036353C9A97F52096A369A70BF7073BFB6/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "f4e7f3",
"Name": "Card",
"Transform": {
"posX": 16.6679211,
"posY": 3.38723969,
"posZ": 65.93152,
"rotX": 358.960724,
"rotY": 270.014648,
"rotZ": 358.869934,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Gray's Anatomy (5)",
"Description": "The Doctors' Bible",
"GMNotes": "{\n \"id\": \"09058\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"cost\": 3,\n \"level\": 5,\n \"traits\": \"Item. Tome.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"intellectIcons\": 1,\n \"wildIcons\": 1,\n \"cycle\": \"The Scarlet Keys\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"Asset",
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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/1814412497119438903/90145E036353C9A97F52096A369A70BF7073BFB6/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "33b09e",
"Name": "Card",
"Transform": {
"posX": 16.66789,
"posY": 3.35526657,
"posZ": 65.9314957,
"rotX": 357.504364,
"rotY": 270.063477,
"rotZ": 357.292328,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Fingerprint Kit (4)",
"Description": "",
"GMNotes": "{\n \"id\": \"09057\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"cost\": 5,\n \"level\": 4,\n \"traits\": \"Item. Tool.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 2,\n \"uses\": [\n {\n \"count\": 3,\n \"type\": \"Supply\",\n \"token\": \"resource\"\n }\n ]\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"Asset",
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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/1814412497119438903/90145E036353C9A97F52096A369A70BF7073BFB6/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "c8ecf2",
"Name": "Card",
"Transform": {
"posX": 16.6679077,
"posY": 3.37290788,
"posZ": 65.9315,
"rotX": 358.2902,
"rotY": 270.032135,
"rotZ": 358.144043,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Surgical Kit (3)",
"Description": "",
"GMNotes": "{\n \"id\": \"09056\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"cost\": 2,\n \"level\": 3,\n \"traits\": \"Item. Tool. Science.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 2,\n \"uses\": [\n {\n \"count\": 4,\n \"type\": \"Supply\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Scarlet Keys\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"Asset",
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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/1814412497119438903/90145E036353C9A97F52096A369A70BF7073BFB6/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "a6c839",
"Name": "Card",
"Transform": {
"posX": 16.6679134,
"posY": 3.380555,
"posZ": 65.93151,
"rotX": 358.599243,
"rotY": 270.023,
"rotZ": 358.4786,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Press Pass (2)",
"Description": "",
"GMNotes": "{\n \"id\": \"09055\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"cost\": 4,\n \"level\": 2,\n \"traits\": \"Item. Charm.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"agilityIcons\": 1\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"Asset",
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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/1814412497119438903/90145E036353C9A97F52096A369A70BF7073BFB6/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "3ee7a5",
"Name": "Card",
"Transform": {
"posX": 16.6679268,
"posY": 3.394565,
"posZ": 65.93152,
"rotX": 359.223724,
"rotY": 270.0101,
"rotZ": 359.15448,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Dr. William T. Maleson (2)",
"Description": "Working on Something Bigger",
"GMNotes": "{\n \"id\": \"09054\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"cost\": 1,\n \"level\": 2,\n \"traits\": \"Ally. Miskatonic.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"intellectIcons\": 1\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"Asset",
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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/1814412497119438903/90145E036353C9A97F52096A369A70BF7073BFB6/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "425841",
"Name": "Card",
"Transform": {
"posX": 16.6679268,
"posY": 3.395898,
"posZ": 65.93152,
"rotX": 359.283142,
"rotY": 270.009277,
"rotZ": 359.21875,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Guidance (1)",
"Description": "",
"GMNotes": "{\n \"id\": \"09053\",\n \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"cost\": 0,\n \"level\": 1,\n \"traits\": \"\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"wildIcons\": 1\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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/1814412497119438903/90145E036353C9A97F52096A369A70BF7073BFB6/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "38a30a",
"Name": "Card",
"Transform": {
"posX": 16.66791,
"posY": 3.37561345,
"posZ": 65.93151,
"rotX": 358.379059,
"rotY": 270.029327,
"rotZ": 358.240143,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Existential Riddle (1)",
"Description": "",
"GMNotes": "{\n \"id\": \"09052\",\n \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"cost\": 1,\n \"level\": 1,\n \"traits\": \"Insight. Paradox.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"intellectIcons\": 1,\n \"cycle\": \"The Scarlet Keys\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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/1814412497119438903/90145E036353C9A97F52096A369A70BF7073BFB6/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "d084d7",
"Name": "Card",
"Transform": {
"posX": 16.667923,
"posY": 3.390235,
"posZ": 65.93152,
"rotX": 359.0307,
"rotY": 270.0133,
"rotZ": 358.9456,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Orphic Theory (1)",
"Description": "",
"GMNotes": "{\n \"id\": \"09051\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"cost\": 2,\n \"level\": 1,\n \"traits\": \"Spell.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"uses\": [\n {\n \"count\": 4,\n \"type\": \"Secret\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Scarlet Keys\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"Asset",
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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/1814412497119438903/90145E036353C9A97F52096A369A70BF7073BFB6/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "a825ad",
"Name": "Card",
"Transform": {
"posX": 16.6678963,
"posY": 3.362355,
"posZ": 65.9314957,
"rotX": 357.756653,
"rotY": 270.052124,
"rotZ": 357.5659,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Lab Coat (1)",
"Description": "",
"GMNotes": "{\n \"id\": \"09050\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"cost\": 2,\n \"level\": 1,\n \"traits\": \"Item. Clothing. Science.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"Asset",
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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/1814412497119438903/90145E036353C9A97F52096A369A70BF7073BFB6/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "80285f",
"Name": "Card",
"Transform": {
"posX": 16.6679173,
"posY": 3.38524485,
"posZ": 65.93151,
"rotX": 358.77655,
"rotY": 270.0186,
"rotZ": 358.6706,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Analysis",
"Description": "",
"GMNotes": "{\n \"id\": \"09049\",\n \"type\": \"Skill\",\n \"class\": \"Seeker\",\n \"level\": 0,\n \"traits\": \"Practiced.\",\n \"permanent\": false,\n \"weakness\": false,\n \"wildIcons\": 1\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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/1814412497119438903/90145E036353C9A97F52096A369A70BF7073BFB6/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "1760be",
"Name": "Card",
"Transform": {
"posX": 16.66793,
"posY": 3.4003346,
"posZ": 65.9315262,
"rotX": 359.449219,
"rotY": 270.007263,
"rotZ": 359.398438,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Map the Area",
"Description": "",
"GMNotes": "{\n \"id\": \"09048\",\n \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Insight. Tactic.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"agilityIcons\": 1,\n \"cycle\": \"The Scarlet Keys\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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/1814412497119438903/90145E036353C9A97F52096A369A70BF7073BFB6/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "498bc8",
"Name": "Card",
"Transform": {
"posX": 16.6679249,
"posY": 3.39397717,
"posZ": 65.93152,
"rotX": 359.134125,
"rotY": 270.0115,
"rotZ": 359.0575,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Captivating Discovery",
"Description": "",
"GMNotes": "{\n \"id\": \"09047\",\n \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Insight.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"agilityIcons\": 1,\n \"cycle\": \"The Scarlet Keys\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 379400,
"SidewaysCard": false,
"CustomDeck": {
"3794": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1814412497119525055/928CCA871D837CB4FB8E847957747E1E56F14449/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "2423d4",
"Name": "Card",
"Transform": {
"posX": 16.6678944,
"posY": 3.35992122,
"posZ": 65.9314957,
"rotX": 357.616577,
"rotY": 270.0583,
"rotZ": 357.414032,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Bizarre Diagnosis",
"Description": "",
"GMNotes": "{\n \"id\": \"09046\",\n \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"cost\": 0,\n \"level\": 0,\n \"traits\": \"Insight. Science.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 2\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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/1814412497119438903/90145E036353C9A97F52096A369A70BF7073BFB6/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "a37bd4",
"Name": "Card",
"Transform": {
"posX": 16.6678925,
"posY": 3.35964084,
"posZ": 65.9314957,
"rotX": 357.6041,
"rotY": 270.058838,
"rotZ": 357.400482,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Research Notes",
"Description": "",
"GMNotes": "{\n \"id\": \"09045\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Item. Tome. Science.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"cycle\": \"The Scarlet Keys\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"Asset",
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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/1814412497119438903/90145E036353C9A97F52096A369A70BF7073BFB6/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "d1f1d9",
"Name": "Card",
"Transform": {
"posX": 16.6679268,
"posY": 3.397809,
"posZ": 65.93152,
"rotX": 359.304932,
"rotY": 270.008972,
"rotZ": 359.24234,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Grim Memoir",
"Description": "",
"GMNotes": "{\n \"id\": \"09044\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"cost\": 3,\n \"level\": 0,\n \"traits\": \"\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"uses\": [\n {\n \"count\": 4,\n \"type\": \"Secret\",\n \"token\": \"resource\"\n }\n ]\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"Asset",
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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/1814412497119438903/90145E036353C9A97F52096A369A70BF7073BFB6/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "95ca5d",
"Name": "Card",
"Transform": {
"posX": 16.6679173,
"posY": 3.38599372,
"posZ": 65.93151,
"rotX": 358.7466,
"rotY": 270.0193,
"rotZ": 358.638184,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Dissection Tools",
"Description": "",
"GMNotes": "{\n \"id\": \"09043\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"cost\": 2,\n \"level\": 0,\n \"traits\": \"\",\n \"permanent\": false,\n \"weakness\": false,\n \"agilityIcons\": 1\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"Asset",
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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/1814412497119438903/90145E036353C9A97F52096A369A70BF7073BFB6/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "b81037",
"Name": "Card",
"Transform": {
"posX": 16.6679287,
"posY": 3.399737,
"posZ": 65.9315262,
"rotX": 359.359222,
"rotY": 270.0083,
"rotZ": 359.3011,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "The Raven Quill",
"Description": "",
"GMNotes": "{\n \"id\": \"09042\",\n \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"cost\": 3,\n \"level\": 0,\n \"traits\": \"Item. Relic. Upgrade.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 2,\n \"customizations\": [\n {\n \"name\": \"Living Quill\",\n \"xp\": 1,\n \"text\": \"Using attached asset�€�s ? abilities does not provoke attacks of opportunity.\"\n },\n {\n \"name\": \"Spectral Binding\",\n \"xp\": 1,\n \"text\": \"Attached asset does not take up any slots.\"\n },\n {\n \"name\": \"Mystic Vane\",\n \"xp\": 2,\n \"text\": \"You get +2 skill value while performing skill tests on attached asset.\"\n },\n {\n \"name\": \"Endless Inkwell\",\n \"xp\": 2,\n \"text\": \"Name two more Tome or Spell assets.\"\n },\n {\n \"name\": \"Energy Sap\",\n \"xp\": 2,\n \"text\": \"The Raven Quill gains: �€�? Exhaust The Raven Quill: Move 1 secret or charge from an asset you control to attached asset.�€?\"\n },\n {\n \"name\": \"Interwoven Ink\",\n \"xp\": 3,\n \"text\": \"After you resolve an ? ability on attached asset, you may exhaust The Raven Quill to ready another asset you control.\"\n },\n {\n \"name\": \"Supernatural Record\",\n \"xp\": 4,\n \"text\": \"When you play The Raven Quill, instead of attaching it to a named asset you control, you may search your deck, discard pile, and hand for a copy of a named asset and play it (paying its cost). Then, attach The Raven Quill to it.\"\n }\n ],\n \"cycle\": \"The Scarlet Keys\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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/1814412497119438903/90145E036353C9A97F52096A369A70BF7073BFB6/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "62c67d",
"Name": "Card",
"Transform": {
"posX": 16.6679325,
"posY": 3.40341616,
"posZ": 65.9315262,
"rotX": 359.523254,
"rotY": 270.006531,
"rotZ": 359.478516,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Empirical Hypothesis",
"Description": "",
"GMNotes": "{\n \"id\": \"09041\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Talent. Science.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"customizations\": [\n {\n \"name\": \"Pessimistic Outlook\",\n \"xp\": 1,\n \"text\": \"Add the following criteria: �€�you run out of cards in your hand.�€?\"\n },\n {\n \"name\": \"Trial and Error\",\n \"xp\": 1,\n \"text\": \"Add the following criteria: �€�you are dealt damage or horror.�€?\"\n },\n {\n \"name\": \"Independent Variable\",\n \"xp\": 1,\n \"text\": \"Add the following criteria: �€�you discard a treachery or enemy from play.�€?\"\n },\n {\n \"name\": \"Field Research\",\n \"xp\": 1,\n \"text\": \"Add the following criteria: �€�you enter a location with 3 or more shroud.�€?\"\n },\n {\n \"name\": \"Peer Review\",\n \"xp\": 2,\n \"text\": \"The chosen criteria is met if any investigator at your location meets it, instead of only you. Other investigators at your location may trigger ? abilities on Empirical Hypothesis.\"\n },\n {\n \"name\": \"Research Grant\",\n \"xp\": 2,\n \"text\": \"Empirical Hypothesis gains: �€�? Spend 2 evidence: Reduce the cost of the next card you play this phase by 3.�€?\"\n },\n {\n \"name\": \"Irrefutable Proof\",\n \"xp\": 3,\n \"text\": \"Empirical Hypothesis gains: �€�? Spend 3 evidence: Discover 1 clue at your location.�€?\"\n },\n {\n \"name\": \"Alternative Hypothesis\",\n \"xp\": 4,\n \"text\": \"After you exhaust Empirical Hypothesis, you may resolve its forced effect, choosing a criteria you have not chosen this round. Then, ready it.\"\n }\n ],\n \"cycle\": \"The Scarlet Keys\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"Asset",
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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/1814412497119438903/90145E036353C9A97F52096A369A70BF7073BFB6/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "502a4d",
"Name": "Card",
"Transform": {
"posX": 16.6694851,
"posY": 3.3414948,
"posZ": 65.93314,
"rotX": 356.737457,
"rotY": 270.114563,
"rotZ": 356.463135,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Alchemical Distillation",
"Description": "",
"GMNotes": "{\n \"id\": \"09040\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Item. Science.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"uses\": [\n {\n \"count\": 3,\n \"type\": \"Supply\",\n \"token\": \"resource\"\n }\n ],\n \"customizations\": [\n {\n \"name\": \"Mending Distillate\",\n \"xp\": 1,\n \"text\": \"Add this option: �€�? Heal 2 damage.�€?\"\n },\n {\n \"name\": \"Calming Distillate\",\n \"xp\": 1,\n \"text\": \"Add this option: �€�? Heal 2 horror.�€?\"\n },\n {\n \"name\": \"Enlightening Distillate\",\n \"xp\": 1,\n \"text\": \"Add this option: �€�? Place 1 charge or secret on an asset you control.�€?\"\n },\n {\n \"name\": \"Quickening Distillate\",\n \"xp\": 1,\n \"text\": \"Add this option: �€�? Move up to 2 times.�€?\"\n },\n {\n \"name\": \"Refined\",\n \"xp\": 2,\n \"text\": \"Alchemical Distillation enters play with 2 additional supplies on it.\",\n \"replaces\": {\n \"uses\": [\n {\n \"count\": 5,\n \"type\": \"Supply\",\n \"token\": \"resource\"\n }\n ]\n }\n },\n {\n \"name\": \"Empowered\",\n \"xp\": 4,\n \"text\": \"When you initiate this skill test, you may increase its difficulty by 2. If you do, increase the value of the effect granted by each option by 1 for this test.\"\n },\n {\n \"name\": \"Perfected\",\n \"xp\": 5,\n \"text\": \"If you succeed by 2 or more, the chosen investigator may perform two different options instead of one.\"\n }\n ],\n \"cycle\": \"The Scarlet Keys\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"Asset",
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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/1814412497119438903/90145E036353C9A97F52096A369A70BF7073BFB6/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "ac910a",
"Name": "Card",
"Transform": {
"posX": 16.6678982,
"posY": 3.36569071,
"posZ": 65.9314957,
"rotX": 357.8104,
"rotY": 270.049866,
"rotZ": 357.6241,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Ever Vigilant (4)",
"Description": "",
"GMNotes": "{\n \"id\": \"09039\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"cost\": 0,\n \"level\": 4,\n \"traits\": \"Tactic.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"intellectIcons\": 2\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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/1814412497119438903/90145E036353C9A97F52096A369A70BF7073BFB6/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "bdd70d",
"Name": "Card",
"Transform": {
"posX": 16.6699333,
"posY": 3.34553456,
"posZ": 65.93361,
"rotX": 356.919647,
"rotY": 270.106079,
"rotZ": 356.664429,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Girish Kadakia (4)",
"Description": "ICPC Punjab Detective",
"GMNotes": "{\n \"id\": \"09038\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"cost\": 4,\n \"level\": 4,\n \"traits\": \"Ally. Police.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"wildIcons\": 1,\n \"cycle\": \"The Scarlet Keys\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"Asset",
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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/1814412497119438903/90145E036353C9A97F52096A369A70BF7073BFB6/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "c795c8",
"Name": "Card",
"Transform": {
"posX": 17.0227737,
"posY": 3.36979461,
"posZ": 66.0149841,
"rotX": 359.775452,
"rotY": 270.004578,
"rotZ": 359.841278,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Martyr's Vambrace (3)",
"Description": "Remnant of the Unknown",
"GMNotes": "{\n \"id\": \"09037\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"cost\": 2,\n \"level\": 3,\n \"traits\": \"Item. Charm. Armor.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"wildIcons\": 1,\n \"cycle\": \"The Scarlet Keys\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"Asset",
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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/1814412497119438903/90145E036353C9A97F52096A369A70BF7073BFB6/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "a4f62a",
"Name": "Card",
"Transform": {
"posX": 17.0250359,
"posY": 3.35418844,
"posZ": 65.97843,
"rotX": 358.814667,
"rotY": 270.011475,
"rotZ": 359.300385,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Prepared for the Worst (2)",
"Description": "",
"GMNotes": "{\n \"id\": \"09036\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"cost\": 0,\n \"level\": 2,\n \"traits\": \"Tactic.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"combatIcons\": 1,\n \"agilityIcons\": 1\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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/1814412497119438903/90145E036353C9A97F52096A369A70BF7073BFB6/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "07c480",
"Name": "Card",
"Transform": {
"posX": 17.0250435,
"posY": 3.37958765,
"posZ": 65.97844,
"rotX": 359.8375,
"rotY": 270.0044,
"rotZ": 359.9079,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Handcuffs (2)",
"Description": "",
"GMNotes": "{\n \"id\": \"09035\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"cost\": 1,\n \"level\": 2,\n \"traits\": \"Item. Police.\",\n \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"agilityIcons\": 1\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"Asset",
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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/1814412497119438903/90145E036353C9A97F52096A369A70BF7073BFB6/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "9009db",
"Name": "Card",
"Transform": {
"posX": 17.0262527,
"posY": 3.32872963,
"posZ": 65.9790649,
"rotX": 357.229553,
"rotY": 270.05188,
"rotZ": 358.358856,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Guard Dog (2)",
"Description": "",
"GMNotes": "{\n \"id\": \"09034\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"cost\": 3,\n \"level\": 2,\n \"traits\": \"Ally. Creature.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"combatIcons\": 1\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"Asset",
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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/1814412497119438903/90145E036353C9A97F52096A369A70BF7073BFB6/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "babfb6",
"Name": "Card",
"Transform": {
"posX": 17.0250263,
"posY": 3.341102,
"posZ": 65.9784241,
"rotX": 357.6715,
"rotY": 270.032227,
"rotZ": 358.6208,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Field Agent (2)",
"Description": "",
"GMNotes": "{\n \"id\": \"09033\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"cost\": 4,\n \"level\": 2,\n \"traits\": \"Ally. Agency.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"agilityIcons\": 1,\n \"cycle\": \"The Scarlet Keys\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"Asset",
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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/1814412497119438903/90145E036353C9A97F52096A369A70BF7073BFB6/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "39e14a",
"Name": "Card",
"Transform": {
"posX": 17.0250263,
"posY": 3.34642482,
"posZ": 65.9784241,
"rotX": 357.784149,
"rotY": 270.029572,
"rotZ": 358.687744,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Bestow Resolve (2)",
"Description": "",
"GMNotes": "{\n \"id\": \"09032\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"cost\": 2,\n \"level\": 2,\n \"traits\": \"Ritual.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"uses\": [\n {\n \"count\": 4,\n \"type\": \"Charge\",\n \"token\": \"resource\"\n }\n ]\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"Asset",
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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/1814412497119438903/90145E036353C9A97F52096A369A70BF7073BFB6/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "7d93b4",
"Name": "Card",
"Transform": {
"posX": 17.0267715,
"posY": 3.31734443,
"posZ": 65.97934,
"rotX": 356.2779,
"rotY": 270.0873,
"rotZ": 357.792084,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Helping Hand",
"Description": "",
"GMNotes": "{\n \"id\": \"09031\",\n \"type\": \"Skill\",\n \"class\": \"Guardian\",\n \"level\": 0,\n \"traits\": \"Innate.\",\n \"permanent\": false,\n \"weakness\": false,\n \"cycle\": \"The Scarlet Keys\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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/1814412497119438903/90145E036353C9A97F52096A369A70BF7073BFB6/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "fc2432",
"Name": "Card",
"Transform": {
"posX": 17.025032,
"posY": 3.36371326,
"posZ": 65.97843,
"rotX": 358.359,
"rotY": 270.018127,
"rotZ": 359.029541,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Fighting Lessons",
"Description": "",
"GMNotes": "{\n \"id\": \"09030\",\n \"type\": \"Skill\",\n \"class\": \"Guardian\",\n \"level\": 0,\n \"traits\": \"Practiced.\",\n \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"agilityIcons\": 1,\n \"wildIcons\": 1,\n \"cycle\": \"The Scarlet Keys\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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/1814412497119438903/90145E036353C9A97F52096A369A70BF7073BFB6/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "919856",
"Name": "Card",
"Transform": {
"posX": 17.0250149,
"posY": 3.32532549,
"posZ": 65.97842,
"rotX": 356.410522,
"rotY": 270.070923,
"rotZ": 357.869568,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "One in the Chamber",
"Description": "",
"GMNotes": "{\n \"id\": \"09029\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Fortune. Tactic.\",\n \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"agilityIcons\": 1,\n \"uses\": [\n {\n \"count\": 1,\n \"type\": \"Ammo\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Scarlet Keys\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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/1814412497119438903/90145E036353C9A97F52096A369A70BF7073BFB6/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "1b2331",
"Name": "Card",
"Transform": {
"posX": 16.92512,
"posY": 3.36540246,
"posZ": 65.8870544,
"rotX": 359.346222,
"rotY": 270.001221,
"rotZ": 359.77298,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Motivational Speech",
"Description": "",
"GMNotes": "{\n \"id\": \"09028\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"cost\": 0,\n \"level\": 0,\n \"traits\": \"Spirit.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"intellectIcons\": 1,\n \"cycle\": \"The Scarlet Keys\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 379600,
"SidewaysCard": false,
"CustomDeck": {
"3796": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1814412497119534890/F45F9E6F67C91566D8CC5EC783E4372B264A349D/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "4cfcc7",
"Name": "Card",
"Transform": {
"posX": 78.51081,
"posY": 1.05928326,
"posZ": 27.14333,
"rotX": 359.920227,
"rotY": 269.795776,
"rotZ": 0.0169871151,
"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 \"cost\": 1,\n \"level\": 1,\n \"traits\": \"Spirit.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"cycle\": \"The Path to Carcosa\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "71a760",
"Name": "Card",
"Transform": {
"posX": 78.51081,
"posY": 1.05905867,
"posZ": 27.14333,
"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 \"cost\": 0,\n \"level\": 2,\n \"traits\": \"Spirit.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"cycle\": \"Investigator Packs\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "48e516",
"Name": "Card",
"Transform": {
"posX": 78.51081,
"posY": 1.05928242,
"posZ": 27.14333,
"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 \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Spirit.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"cycle\": \"Investigator Packs\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "5397a6",
"Name": "CardCustom",
"Transform": {
"posX": 76.59394,
"posY": 15.1847515,
"posZ": 23.9922981,
"rotX": 5.89073323E-08,
"rotY": 270.000183,
"rotZ": 4.91028959E-06,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Summoned Servitor Upgrade Sheet",
"Description": "",
"GMNotes": "{\n \"id\": \"09080-c\",\n \"traits\": \"\",\n \"permanent\": false,\n \"weakness\": false\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 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,
"CardID": 847400,
"SidewaysCard": false,
"CustomDeck": {
"8474": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1829048801001663439/1504B1E5063D0E6E29B25BD4BCBF58314F28C723/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1814412497119682452/BD224FCE1980DBA38E5A687FABFD146AA1A30D0E/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "-- Customizable Cards: Summoned Servitor\r\n-- by Chr1Z\r\ninformation = {\r\n version = \"1.7\",\r\n last_updated = \"12.10.2022\"\r\n}\r\n\r\n-- Color information for buttons\r\nboxSize = 35\r\n\r\n-- static values\r\nx_1 = -0.935\r\nx_offset = 0.068\r\ny_visible = 0.25\r\ny_invisible = -0.5\r\n\r\n-- z-values (lines on the sheet)\r\nposZ = {\r\n -0.92,\r\n -0.625,\r\n -0.33,\r\n 0.055,\r\n 0.26,\r\n 0.56,\r\n 0.765,\r\n 1.06\r\n}\r\n\r\n-- box setup (amount of boxes per line and amount of marked boxes in that line)\r\nexistingBoxes = { 1, 1, 1, 1, 1, 2, 3, 5 }\r\n\r\ninputBoxes = {}\r\n\r\n-- override 'marked boxes' for debugging ('all' or 'none')\r\nmarkDEBUG = \"\"\r\n\r\n-- save state when going into bags / decks\r\nfunction onDestroy() self.script_state = onSave() end\r\n\r\nfunction onSave() return JSON.encode({ markedBoxes, inputValues }) end\r\n\r\n-- Startup procedure\r\nfunction onLoad(saved_data)\r\n if saved_data ~= \"\" and markDEBUG == \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n markedBoxes = loaded_data[1]\r\n inputValues = loaded_data[2]\r\n else\r\n markedBoxes = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }\r\n inputValues = { \"\", \"\", \"\", \"\", \"\" }\r\n end\r\n\r\n makeData()\r\n createButtonsAndBoxes()\r\n\r\n self.addContextMenuItem(\"Reset Inputs\", function() updateState() end)\r\n self.addContextMenuItem(\"Scale: normal\", function() self.setScale({ 1, 1, 1 }) end)\r\n self.addContextMenuItem(\"Scale: double\", function() self.setScale({ 2, 1, 2 }) end)\r\n self.addContextMenuItem(\"Scale: triple\", function() self.setScale({ 3, 1, 3 }) end)\r\nend\r\n\r\nfunction updateState(markedBoxesNew)\r\n if markedBoxesNew then markedBoxes = markedBoxesNew end\r\n makeData()\r\n createButtonsAndBoxes()\r\nend\r\n\r\n-- create Data\r\nfunction makeData()\r\n Data = {}\r\n Data.checkbox = {}\r\n Data.textbox = {}\r\n\r\n -- repeat this for each entry (= line) in existingBoxes\r\n local totalCount = 0\r\n for i = 1, #existingBoxes do\r\n -- repeat this for each checkbox per line\r\n for j = 1, existingBoxes[i] do\r\n totalCount = totalCount + 1\r\n Data.checkbox[totalCount] = {}\r\n Data.checkbox[totalCount].pos = {}\r\n Data.checkbox[totalCount].pos.x = x_1 + j * x_offset\r\n Data.checkbox[totalCount].pos.z = posZ[i]\r\n Data.checkbox[totalCount].row = i\r\n\r\n if (markDEBUG == \"all\") or (markedBoxes[i] >= j and markDEBUG ~= \"none\") then\r\n Data.checkbox[totalCount].pos.y = y_visible\r\n Data.checkbox[totalCount].state = true\r\n else\r\n Data.checkbox[totalCount].pos.y = y_invisible\r\n Data.checkbox[totalCount].state = false\r\n end\r\n end\r\n end\r\n\r\n -- repeat this for each entry (= line) in inputBoxes\r\n local totalCount = 0\r\n for i = 1, #inputBoxes do\r\n -- repeat this for each textbox per line\r\n for j = 1, inputBoxes[i] do\r\n totalCount = totalCount + 1\r\n Data.textbox[totalCount] = {}\r\n Data.textbox[totalCount].pos = inputPos[totalCount]\r\n Data.textbox[totalCount].width = inputWidth[totalCount]\r\n Data.textbox[totalCount].value = inputValues[totalCount]\r\n end\r\n end\r\nend\r\n\r\n-- checks or unchecks the given box\r\nfunction click_checkbox(tableIndex)\r\n local row = Data.checkbox[tableIndex].row\r\n\r\n if Data.checkbox[tableIndex].state == true then\r\n Data.checkbox[tableIndex].pos.y = y_invisible\r\n Data.checkbox[tableIndex].state = false\r\n\r\n markedBoxes[row] = markedBoxes[row] - 1\r\n else\r\n Data.checkbox[tableIndex].pos.y = y_visible\r\n Data.checkbox[tableIndex].state = true\r\n\r\n markedBoxes[row] = markedBoxes[row] + 1\r\n end\r\n\r\n self.editButton({\r\n index = tableIndex - 1,\r\n position = Data.checkbox[tableIndex].pos\r\n })\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 inputValues[i] = value\r\n end\r\nend\r\n\r\nfunction createButtonsAndBoxes()\r\n self.clearButtons()\r\n self.clearInputs()\r\n\r\n for i, box_data in ipairs(Data.checkbox) do\r\n local funcName = \"checkbox\" .. i\r\n local func = function() click_checkbox(i) end\r\n self.setVar(funcName, func)\r\n\r\n self.createButton({\r\n click_function = funcName,\r\n function_owner = self,\r\n position = box_data.pos,\r\n height = boxSize,\r\n width = boxSize,\r\n font_size = box_data.size,\r\n scale = { 1, 1, 1 },\r\n color = { 0, 0, 0 },\r\n font_color = { 0, 0, 0 }\r\n })\r\n end\r\n\r\n for i, box_data in ipairs(Data.textbox) do\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 = \"Click to type\",\r\n alignment = 2,\r\n position = box_data.pos,\r\n scale = buttonScale,\r\n width = box_data.width,\r\n height = (inputFontsize * 1) + 24,\r\n font_size = inputFontsize,\r\n color = \"White\",\r\n font_color = buttonFontColor,\r\n value = box_data.value\r\n })\r\n end\r\nend\r\n",
"LuaScriptState": "[[0,0,0,0,0,0,0,0,0,0],[\"\",\"\",\"\",\"\",\"\"]]",
"XmlUI": ""
},
{
"GUID": "be427d",
"Name": "CardCustom",
"Transform": {
"posX": 77.2100449,
"posY": 15.1858444,
"posZ": 23.1221752,
"rotX": 359.920135,
"rotY": 270.0014,
"rotZ": 0.0168713145,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Runic Axe Upgrade Sheet",
"Description": "",
"GMNotes": "{\n \"id\": \"09022-c\",\n \"traits\": \"\",\n \"permanent\": false,\n \"weakness\": false\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 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,
"CardID": 846500,
"SidewaysCard": false,
"CustomDeck": {
"8465": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1829048801001661165/2E6E5A47269C0532815EC1A5B571135EAEAB9BE2/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1814412497119682452/BD224FCE1980DBA38E5A687FABFD146AA1A30D0E/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "-- Customizable Cards: Runic Axe\r\n-- by Chr1Z\r\ninformation = {\r\n version = \"1.7\",\r\n last_updated = \"12.10.2022\"\r\n}\r\n\r\n-- Color information for buttons\r\nboxSize = 38\r\n\r\n-- static values\r\nx_1 = -0.935\r\nx_offset = 0.0705\r\ny_visible = 0.25\r\ny_invisible = -0.5\r\n\r\n-- z-values (lines on the sheet)\r\nposZ = {\r\n -0.92,\r\n -0.715,\r\n -0.415,\r\n -0.018,\r\n 0.265,\r\n 0.66,\r\n 0.86,\r\n 1.065\r\n}\r\n\r\n-- box setup (amount of boxes per line and amount of marked boxes in that line)\r\nexistingBoxes = { 1, 1, 1, 1, 1, 3, 3, 4 }\r\n\r\ninputBoxes = {}\r\n\r\n-- override 'marked boxes' for debugging ('all' or 'none')\r\nmarkDEBUG = \"\"\r\n\r\n-- save state when going into bags / decks\r\nfunction onDestroy() self.script_state = onSave() end\r\n\r\nfunction onSave() return JSON.encode({ markedBoxes, inputValues }) end\r\n\r\n-- Startup procedure\r\nfunction onLoad(saved_data)\r\n if saved_data ~= \"\" and markDEBUG == \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n markedBoxes = loaded_data[1]\r\n inputValues = loaded_data[2]\r\n else\r\n markedBoxes = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }\r\n inputValues = { \"\", \"\", \"\", \"\", \"\" }\r\n end\r\n\r\n makeData()\r\n createButtonsAndBoxes()\r\n\r\n self.addContextMenuItem(\"Reset Inputs\", function() updateState() end)\r\n self.addContextMenuItem(\"Scale: normal\", function() self.setScale({ 1, 1, 1 }) end)\r\n self.addContextMenuItem(\"Scale: double\", function() self.setScale({ 2, 1, 2 }) end)\r\n self.addContextMenuItem(\"Scale: triple\", function() self.setScale({ 3, 1, 3 }) end)\r\nend\r\n\r\nfunction updateState(markedBoxesNew)\r\n if markedBoxesNew then markedBoxes = markedBoxesNew end\r\n makeData()\r\n createButtonsAndBoxes()\r\nend\r\n\r\n-- create Data\r\nfunction makeData()\r\n Data = {}\r\n Data.checkbox = {}\r\n Data.textbox = {}\r\n\r\n -- repeat this for each entry (= line) in existingBoxes\r\n local totalCount = 0\r\n for i = 1, #existingBoxes do\r\n -- repeat this for each checkbox per line\r\n for j = 1, existingBoxes[i] do\r\n totalCount = totalCount + 1\r\n Data.checkbox[totalCount] = {}\r\n Data.checkbox[totalCount].pos = {}\r\n Data.checkbox[totalCount].pos.x = x_1 + j * x_offset\r\n Data.checkbox[totalCount].pos.z = posZ[i]\r\n Data.checkbox[totalCount].row = i\r\n\r\n if (markDEBUG == \"all\") or (markedBoxes[i] >= j and markDEBUG ~= \"none\") then\r\n Data.checkbox[totalCount].pos.y = y_visible\r\n Data.checkbox[totalCount].state = true\r\n else\r\n Data.checkbox[totalCount].pos.y = y_invisible\r\n Data.checkbox[totalCount].state = false\r\n end\r\n end\r\n end\r\n\r\n -- repeat this for each entry (= line) in inputBoxes\r\n local totalCount = 0\r\n for i = 1, #inputBoxes do\r\n -- repeat this for each textbox per line\r\n for j = 1, inputBoxes[i] do\r\n totalCount = totalCount + 1\r\n Data.textbox[totalCount] = {}\r\n Data.textbox[totalCount].pos = inputPos[totalCount]\r\n Data.textbox[totalCount].width = inputWidth[totalCount]\r\n Data.textbox[totalCount].value = inputValues[totalCount]\r\n end\r\n end\r\nend\r\n\r\n-- checks or unchecks the given box\r\nfunction click_checkbox(tableIndex)\r\n local row = Data.checkbox[tableIndex].row\r\n\r\n if Data.checkbox[tableIndex].state == true then\r\n Data.checkbox[tableIndex].pos.y = y_invisible\r\n Data.checkbox[tableIndex].state = false\r\n\r\n markedBoxes[row] = markedBoxes[row] - 1\r\n else\r\n Data.checkbox[tableIndex].pos.y = y_visible\r\n Data.checkbox[tableIndex].state = true\r\n\r\n markedBoxes[row] = markedBoxes[row] + 1\r\n end\r\n\r\n self.editButton({\r\n index = tableIndex - 1,\r\n position = Data.checkbox[tableIndex].pos\r\n })\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 inputValues[i] = value\r\n end\r\nend\r\n\r\nfunction createButtonsAndBoxes()\r\n self.clearButtons()\r\n self.clearInputs()\r\n\r\n for i, box_data in ipairs(Data.checkbox) do\r\n local funcName = \"checkbox\" .. i\r\n local func = function() click_checkbox(i) end\r\n self.setVar(funcName, func)\r\n\r\n self.createButton({\r\n click_function = funcName,\r\n function_owner = self,\r\n position = box_data.pos,\r\n height = boxSize,\r\n width = boxSize,\r\n font_size = box_data.size,\r\n scale = { 1, 1, 1 },\r\n color = { 0, 0, 0 },\r\n font_color = { 0, 0, 0 }\r\n })\r\n end\r\n\r\n for i, box_data in ipairs(Data.textbox) do\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 = \"Click to type\",\r\n alignment = 2,\r\n position = box_data.pos,\r\n scale = buttonScale,\r\n width = box_data.width,\r\n height = (inputFontsize * 1) + 24,\r\n font_size = inputFontsize,\r\n color = \"White\",\r\n font_color = buttonFontColor,\r\n value = box_data.value\r\n })\r\n end\r\nend\r\n",
"LuaScriptState": "[[0,0,0,0,0,0,0,0,0,0],[\"\",\"\",\"\",\"\",\"\"]]",
"XmlUI": ""
},
{
"GUID": "0d9481",
"Name": "CardCustom",
"Transform": {
"posX": 75.62651,
"posY": 9.194226,
"posZ": 15.56066,
"rotX": 6.781077E-07,
"rotY": 270.006317,
"rotZ": 1.69161431E-05,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Power Word Upgrade Sheet",
"Description": "",
"GMNotes": "{\n \"id\": \"09081-c\",\n \"traits\": \"\",\n \"permanent\": false,\n \"weakness\": false\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 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,
"CardID": 847500,
"SidewaysCard": false,
"CustomDeck": {
"8475": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1829048801001657918/0FE90FDD749B634CA350D339CDF347C37D0F2938/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1814412497119682452/BD224FCE1980DBA38E5A687FABFD146AA1A30D0E/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "-- Customizable Cards: Power Word\r\n-- by Chr1Z\r\ninformation = {\r\n version = \"1.7\",\r\n last_updated = \"12.10.2022\"\r\n}\r\n\r\n-- Color information for buttons\r\nboxSize = 38\r\n\r\n-- static values\r\nx_1 = -0.933\r\nx_offset = 0.069\r\ny_visible = 0.25\r\ny_invisible = -0.5\r\n\r\n-- z-values (lines on the sheet)\r\nposZ = {\r\n -0.905,\r\n -0.6,\r\n -0.32,\r\n -0.02,\r\n 0.28,\r\n 0.48,\r\n 0.775,\r\n 0.975\r\n}\r\n\r\n-- box setup (amount of boxes per line and amount of marked boxes in that line)\r\nexistingBoxes = { 1, 1, 1, 1, 2, 3, 3, 3 }\r\n\r\ninputBoxes = {}\r\n\r\n-- override 'marked boxes' for debugging ('all' or 'none')\r\nmarkDEBUG = \"\"\r\n\r\n-- save state when going into bags / decks\r\nfunction onDestroy() self.script_state = onSave() end\r\n\r\nfunction onSave() return JSON.encode({ markedBoxes, inputValues }) end\r\n\r\n-- Startup procedure\r\nfunction onLoad(saved_data)\r\n if saved_data ~= \"\" and markDEBUG == \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n markedBoxes = loaded_data[1]\r\n inputValues = loaded_data[2]\r\n else\r\n markedBoxes = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }\r\n inputValues = { \"\", \"\", \"\", \"\", \"\" }\r\n end\r\n\r\n makeData()\r\n createButtonsAndBoxes()\r\n\r\n self.addContextMenuItem(\"Reset Inputs\", function() updateState() end)\r\n self.addContextMenuItem(\"Scale: normal\", function() self.setScale({ 1, 1, 1 }) end)\r\n self.addContextMenuItem(\"Scale: double\", function() self.setScale({ 2, 1, 2 }) end)\r\n self.addContextMenuItem(\"Scale: triple\", function() self.setScale({ 3, 1, 3 }) end)\r\nend\r\n\r\nfunction updateState(markedBoxesNew)\r\n if markedBoxesNew then markedBoxes = markedBoxesNew end\r\n makeData()\r\n createButtonsAndBoxes()\r\nend\r\n\r\n-- create Data\r\nfunction makeData()\r\n Data = {}\r\n Data.checkbox = {}\r\n Data.textbox = {}\r\n\r\n -- repeat this for each entry (= line) in existingBoxes\r\n local totalCount = 0\r\n for i = 1, #existingBoxes do\r\n -- repeat this for each checkbox per line\r\n for j = 1, existingBoxes[i] do\r\n totalCount = totalCount + 1\r\n Data.checkbox[totalCount] = {}\r\n Data.checkbox[totalCount].pos = {}\r\n Data.checkbox[totalCount].pos.x = x_1 + j * x_offset\r\n Data.checkbox[totalCount].pos.z = posZ[i]\r\n Data.checkbox[totalCount].row = i\r\n\r\n if (markDEBUG == \"all\") or (markedBoxes[i] >= j and markDEBUG ~= \"none\") then\r\n Data.checkbox[totalCount].pos.y = y_visible\r\n Data.checkbox[totalCount].state = true\r\n else\r\n Data.checkbox[totalCount].pos.y = y_invisible\r\n Data.checkbox[totalCount].state = false\r\n end\r\n end\r\n end\r\n\r\n -- repeat this for each entry (= line) in inputBoxes\r\n local totalCount = 0\r\n for i = 1, #inputBoxes do\r\n -- repeat this for each textbox per line\r\n for j = 1, inputBoxes[i] do\r\n totalCount = totalCount + 1\r\n Data.textbox[totalCount] = {}\r\n Data.textbox[totalCount].pos = inputPos[totalCount]\r\n Data.textbox[totalCount].width = inputWidth[totalCount]\r\n Data.textbox[totalCount].value = inputValues[totalCount]\r\n end\r\n end\r\nend\r\n\r\n-- checks or unchecks the given box\r\nfunction click_checkbox(tableIndex)\r\n local row = Data.checkbox[tableIndex].row\r\n\r\n if Data.checkbox[tableIndex].state == true then\r\n Data.checkbox[tableIndex].pos.y = y_invisible\r\n Data.checkbox[tableIndex].state = false\r\n\r\n markedBoxes[row] = markedBoxes[row] - 1\r\n else\r\n Data.checkbox[tableIndex].pos.y = y_visible\r\n Data.checkbox[tableIndex].state = true\r\n\r\n markedBoxes[row] = markedBoxes[row] + 1\r\n end\r\n\r\n self.editButton({\r\n index = tableIndex - 1,\r\n position = Data.checkbox[tableIndex].pos\r\n })\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 inputValues[i] = value\r\n end\r\nend\r\n\r\nfunction createButtonsAndBoxes()\r\n self.clearButtons()\r\n self.clearInputs()\r\n\r\n for i, box_data in ipairs(Data.checkbox) do\r\n local funcName = \"checkbox\" .. i\r\n local func = function() click_checkbox(i) end\r\n self.setVar(funcName, func)\r\n\r\n self.createButton({\r\n click_function = funcName,\r\n function_owner = self,\r\n position = box_data.pos,\r\n height = boxSize,\r\n width = boxSize,\r\n font_size = box_data.size,\r\n scale = { 1, 1, 1 },\r\n color = { 0, 0, 0 },\r\n font_color = { 0, 0, 0 }\r\n })\r\n end\r\n\r\n for i, box_data in ipairs(Data.textbox) do\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 = \"Click to type\",\r\n alignment = 2,\r\n position = box_data.pos,\r\n scale = buttonScale,\r\n width = box_data.width,\r\n height = (inputFontsize * 1) + 24,\r\n font_size = inputFontsize,\r\n color = \"White\",\r\n font_color = buttonFontColor,\r\n value = box_data.value\r\n })\r\n end\r\nend\r\n",
"LuaScriptState": "[[0,0,0,0,0,0,0,0,0,0],[\"\",\"\",\"\",\"\",\"\"]]",
"XmlUI": ""
},
{
"GUID": "d706e7",
"Name": "CardCustom",
"Transform": {
"posX": 76.2017059,
"posY": 9.187118,
"posZ": 17.3581123,
"rotX": -5.439461E-08,
"rotY": 270.000732,
"rotZ": -1.83431825E-06,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Pocket Multi Tool Upgrade Sheet",
"Description": "",
"GMNotes": "{\n \"id\": \"09099-c\",\n \"traits\": \"\",\n \"permanent\": false,\n \"weakness\": false\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 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,
"CardID": 847600,
"SidewaysCard": false,
"CustomDeck": {
"8476": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1829048801001655658/A12951A03B25D88571DC040186DFE4D87E029E54/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1814412497119682452/BD224FCE1980DBA38E5A687FABFD146AA1A30D0E/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "-- Customizable Cards: Pocket Multi Tool\r\n-- by Chr1Z\r\ninformation = {\r\n version = \"1.7\",\r\n last_updated = \"12.10.2022\"\r\n}\r\n\r\n-- Color information for buttons\r\nboxSize = 40\r\n\r\n-- static values\r\nx_1 = -0.933\r\nx_offset = 0.075\r\ny_visible = 0.25\r\ny_invisible = -0.5\r\n\r\n-- z-values (lines on the sheet)\r\nposZ = {\r\n -0.892,\r\n -0.560,\r\n -0.326,\r\n -0.092,\r\n 0.142,\r\n 0.376,\r\n 0.610\r\n}\r\n\r\n-- box setup (amount of boxes per line and amount of marked boxes in that line)\r\nexistingBoxes = { 1, 1, 2, 2, 2, 3, 4 }\r\n\r\ninputBoxes = {}\r\n\r\n-- override 'marked boxes' for debugging ('all' or 'none')\r\nmarkDEBUG = \"\"\r\n\r\n-- save state when going into bags / decks\r\nfunction onDestroy() self.script_state = onSave() end\r\n\r\nfunction onSave() return JSON.encode({ markedBoxes, inputValues }) end\r\n\r\n-- Startup procedure\r\nfunction onLoad(saved_data)\r\n if saved_data ~= \"\" and markDEBUG == \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n markedBoxes = loaded_data[1]\r\n inputValues = loaded_data[2]\r\n else\r\n markedBoxes = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }\r\n inputValues = { \"\", \"\", \"\", \"\", \"\" }\r\n end\r\n\r\n makeData()\r\n createButtonsAndBoxes()\r\n\r\n self.addContextMenuItem(\"Reset Inputs\", function() updateState() end)\r\n self.addContextMenuItem(\"Scale: normal\", function() self.setScale({ 1, 1, 1 }) end)\r\n self.addContextMenuItem(\"Scale: double\", function() self.setScale({ 2, 1, 2 }) end)\r\n self.addContextMenuItem(\"Scale: triple\", function() self.setScale({ 3, 1, 3 }) end)\r\nend\r\n\r\nfunction updateState(markedBoxesNew)\r\n if markedBoxesNew then markedBoxes = markedBoxesNew end\r\n makeData()\r\n createButtonsAndBoxes()\r\nend\r\n\r\n-- create Data\r\nfunction makeData()\r\n Data = {}\r\n Data.checkbox = {}\r\n Data.textbox = {}\r\n\r\n -- repeat this for each entry (= line) in existingBoxes\r\n local totalCount = 0\r\n for i = 1, #existingBoxes do\r\n -- repeat this for each checkbox per line\r\n for j = 1, existingBoxes[i] do\r\n totalCount = totalCount + 1\r\n Data.checkbox[totalCount] = {}\r\n Data.checkbox[totalCount].pos = {}\r\n Data.checkbox[totalCount].pos.x = x_1 + j * x_offset\r\n Data.checkbox[totalCount].pos.z = posZ[i]\r\n Data.checkbox[totalCount].row = i\r\n\r\n if (markDEBUG == \"all\") or (markedBoxes[i] >= j and markDEBUG ~= \"none\") then\r\n Data.checkbox[totalCount].pos.y = y_visible\r\n Data.checkbox[totalCount].state = true\r\n else\r\n Data.checkbox[totalCount].pos.y = y_invisible\r\n Data.checkbox[totalCount].state = false\r\n end\r\n end\r\n end\r\n\r\n -- repeat this for each entry (= line) in inputBoxes\r\n local totalCount = 0\r\n for i = 1, #inputBoxes do\r\n -- repeat this for each textbox per line\r\n for j = 1, inputBoxes[i] do\r\n totalCount = totalCount + 1\r\n Data.textbox[totalCount] = {}\r\n Data.textbox[totalCount].pos = inputPos[totalCount]\r\n Data.textbox[totalCount].width = inputWidth[totalCount]\r\n Data.textbox[totalCount].value = inputValues[totalCount]\r\n end\r\n end\r\nend\r\n\r\n-- checks or unchecks the given box\r\nfunction click_checkbox(tableIndex)\r\n local row = Data.checkbox[tableIndex].row\r\n\r\n if Data.checkbox[tableIndex].state == true then\r\n Data.checkbox[tableIndex].pos.y = y_invisible\r\n Data.checkbox[tableIndex].state = false\r\n\r\n markedBoxes[row] = markedBoxes[row] - 1\r\n else\r\n Data.checkbox[tableIndex].pos.y = y_visible\r\n Data.checkbox[tableIndex].state = true\r\n\r\n markedBoxes[row] = markedBoxes[row] + 1\r\n end\r\n\r\n self.editButton({\r\n index = tableIndex - 1,\r\n position = Data.checkbox[tableIndex].pos\r\n })\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 inputValues[i] = value\r\n end\r\nend\r\n\r\nfunction createButtonsAndBoxes()\r\n self.clearButtons()\r\n self.clearInputs()\r\n\r\n for i, box_data in ipairs(Data.checkbox) do\r\n local funcName = \"checkbox\" .. i\r\n local func = function() click_checkbox(i) end\r\n self.setVar(funcName, func)\r\n\r\n self.createButton({\r\n click_function = funcName,\r\n function_owner = self,\r\n position = box_data.pos,\r\n height = boxSize,\r\n width = boxSize,\r\n font_size = box_data.size,\r\n scale = { 1, 1, 1 },\r\n color = { 0, 0, 0 },\r\n font_color = { 0, 0, 0 }\r\n })\r\n end\r\n\r\n for i, box_data in ipairs(Data.textbox) do\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 = \"Click to type\",\r\n alignment = 2,\r\n position = box_data.pos,\r\n scale = buttonScale,\r\n width = box_data.width,\r\n height = (inputFontsize * 1) + 24,\r\n font_size = inputFontsize,\r\n color = \"White\",\r\n font_color = buttonFontColor,\r\n value = box_data.value\r\n })\r\n end\r\nend\r\n",
"LuaScriptState": "[[0,0,0,0,0,0,0,0,0,0],[\"\",\"\",\"\",\"\",\"\"]]",
"XmlUI": ""
},
{
"GUID": "64dfce",
"Name": "CardCustom",
"Transform": {
"posX": 74.02037,
"posY": 2.54877782,
"posZ": 18.185112,
"rotX": 0.02080794,
"rotY": 270.001953,
"rotZ": 0.0167718288,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Makeshift Trap Upgrade Sheet",
"Description": "",
"GMNotes": "{\n \"id\": \"09100-c\",\n \"traits\": \"\",\n \"permanent\": false,\n \"weakness\": false\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 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,
"CardID": 847700,
"SidewaysCard": false,
"CustomDeck": {
"8477": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1829048801001652536/C0175E8B1C56AE41CCC96263BC7FB7D3A13B4F8F/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1814412497119682452/BD224FCE1980DBA38E5A687FABFD146AA1A30D0E/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "-- Customizable Cards: Makeshift Trap\r\n-- by Chr1Z\r\ninformation = {\r\n version = \"1.7\",\r\n last_updated = \"12.10.2022\"\r\n}\r\n\r\n-- Color information for buttons\r\nboxSize = 39\r\n\r\n-- static values\r\nx_1 = -0.935\r\nx_offset = 0.0735\r\ny_visible = 0.25\r\ny_invisible = -0.5\r\n\r\n-- z-values (lines on the sheet)\r\nposZ = {\r\n -0.889,\r\n -0.655,\r\n -0.325,\r\n -0.085,\r\n 0.252,\r\n 0.585,\r\n 0.927\r\n}\r\n\r\n-- box setup (amount of boxes per line and amount of marked boxes in that line)\r\nexistingBoxes = { 1, 1, 2, 2, 2, 3, 4 }\r\n\r\ninputBoxes = {}\r\n\r\n-- override 'marked boxes' for debugging ('all' or 'none')\r\nmarkDEBUG = \"\"\r\n\r\n-- save state when going into bags / decks\r\nfunction onDestroy() self.script_state = onSave() end\r\n\r\nfunction onSave() return JSON.encode({ markedBoxes, inputValues }) end\r\n\r\n-- Startup procedure\r\nfunction onLoad(saved_data)\r\n if saved_data ~= \"\" and markDEBUG == \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n markedBoxes = loaded_data[1]\r\n inputValues = loaded_data[2]\r\n else\r\n markedBoxes = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }\r\n inputValues = { \"\", \"\", \"\", \"\", \"\" }\r\n end\r\n\r\n makeData()\r\n createButtonsAndBoxes()\r\n\r\n self.addContextMenuItem(\"Reset Inputs\", function() updateState() end)\r\n self.addContextMenuItem(\"Scale: normal\", function() self.setScale({ 1, 1, 1 }) end)\r\n self.addContextMenuItem(\"Scale: double\", function() self.setScale({ 2, 1, 2 }) end)\r\n self.addContextMenuItem(\"Scale: triple\", function() self.setScale({ 3, 1, 3 }) end)\r\nend\r\n\r\nfunction updateState(markedBoxesNew)\r\n if markedBoxesNew then markedBoxes = markedBoxesNew end\r\n makeData()\r\n createButtonsAndBoxes()\r\nend\r\n\r\n-- create Data\r\nfunction makeData()\r\n Data = {}\r\n Data.checkbox = {}\r\n Data.textbox = {}\r\n\r\n -- repeat this for each entry (= line) in existingBoxes\r\n local totalCount = 0\r\n for i = 1, #existingBoxes do\r\n -- repeat this for each checkbox per line\r\n for j = 1, existingBoxes[i] do\r\n totalCount = totalCount + 1\r\n Data.checkbox[totalCount] = {}\r\n Data.checkbox[totalCount].pos = {}\r\n Data.checkbox[totalCount].pos.x = x_1 + j * x_offset\r\n Data.checkbox[totalCount].pos.z = posZ[i]\r\n Data.checkbox[totalCount].row = i\r\n\r\n if (markDEBUG == \"all\") or (markedBoxes[i] >= j and markDEBUG ~= \"none\") then\r\n Data.checkbox[totalCount].pos.y = y_visible\r\n Data.checkbox[totalCount].state = true\r\n else\r\n Data.checkbox[totalCount].pos.y = y_invisible\r\n Data.checkbox[totalCount].state = false\r\n end\r\n end\r\n end\r\n\r\n -- repeat this for each entry (= line) in inputBoxes\r\n local totalCount = 0\r\n for i = 1, #inputBoxes do\r\n -- repeat this for each textbox per line\r\n for j = 1, inputBoxes[i] do\r\n totalCount = totalCount + 1\r\n Data.textbox[totalCount] = {}\r\n Data.textbox[totalCount].pos = inputPos[totalCount]\r\n Data.textbox[totalCount].width = inputWidth[totalCount]\r\n Data.textbox[totalCount].value = inputValues[totalCount]\r\n end\r\n end\r\nend\r\n\r\n-- checks or unchecks the given box\r\nfunction click_checkbox(tableIndex)\r\n local row = Data.checkbox[tableIndex].row\r\n\r\n if Data.checkbox[tableIndex].state == true then\r\n Data.checkbox[tableIndex].pos.y = y_invisible\r\n Data.checkbox[tableIndex].state = false\r\n\r\n markedBoxes[row] = markedBoxes[row] - 1\r\n else\r\n Data.checkbox[tableIndex].pos.y = y_visible\r\n Data.checkbox[tableIndex].state = true\r\n\r\n markedBoxes[row] = markedBoxes[row] + 1\r\n end\r\n\r\n self.editButton({\r\n index = tableIndex - 1,\r\n position = Data.checkbox[tableIndex].pos\r\n })\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 inputValues[i] = value\r\n end\r\nend\r\n\r\nfunction createButtonsAndBoxes()\r\n self.clearButtons()\r\n self.clearInputs()\r\n\r\n for i, box_data in ipairs(Data.checkbox) do\r\n local funcName = \"checkbox\" .. i\r\n local func = function() click_checkbox(i) end\r\n self.setVar(funcName, func)\r\n\r\n self.createButton({\r\n click_function = funcName,\r\n function_owner = self,\r\n position = box_data.pos,\r\n height = boxSize,\r\n width = boxSize,\r\n font_size = box_data.size,\r\n scale = { 1, 1, 1 },\r\n color = { 0, 0, 0 },\r\n font_color = { 0, 0, 0 }\r\n })\r\n end\r\n\r\n for i, box_data in ipairs(Data.textbox) do\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 = \"Click to type\",\r\n alignment = 2,\r\n position = box_data.pos,\r\n scale = buttonScale,\r\n width = box_data.width,\r\n height = (inputFontsize * 1) + 24,\r\n font_size = inputFontsize,\r\n color = \"White\",\r\n font_color = buttonFontColor,\r\n value = box_data.value\r\n })\r\n end\r\nend\r\n",
"LuaScriptState": "[[0,0,0,0,0,0,0,0,0,0],[\"\",\"\",\"\",\"\",\"\"]]",
"XmlUI": ""
},
{
"GUID": "19a05b",
"Name": "CardCustom",
"Transform": {
"posX": -36.4071274,
"posY": 2.29570436,
"posZ": 52.083992,
"rotX": 0.0208096765,
"rotY": 269.997772,
"rotZ": 0.0167703852,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Living Link Upgrade Sheet",
"Description": "",
"GMNotes": "{\n \"id\": \"09079-c\",\n \"traits\": \"\",\n \"permanent\": false,\n \"weakness\": false\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 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,
"CardID": 847300,
"SidewaysCard": false,
"CustomDeck": {
"8473": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1829048801001650323/4356445C44C1DEECFE3F70986569B6149E87FBB7/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1814412497119682452/BD224FCE1980DBA38E5A687FABFD146AA1A30D0E/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "-- Customizable Cards: Living Ink\r\n-- by Chr1Z\r\ninformation = {\r\n version = \"1.7\",\r\n last_updated = \"12.10.2022\"\r\n}\r\n\r\n-- Color information for buttons\r\nboxSize = 40\r\n\r\n-- static values\r\nx_1 = -0.935\r\nx_offset = 0.075\r\ny_visible = 0.25\r\ny_invisible = -0.5\r\n\r\n-- z-values (lines on the sheet)\r\nposZ = {\r\n -0.69,\r\n -0.355,\r\n 0.0855,\r\n 0.425,\r\n 0.555,\r\n 0.685,\r\n 1.02\r\n}\r\n\r\n-- box setup (amount of boxes per line and amount of marked boxes in that line)\r\nexistingBoxes = { 1, 1, 2, 2, 3, 3, 3 }\r\n\r\ninputBoxes = {}\r\n\r\n-- override 'marked boxes' for debugging ('all' or 'none')\r\nmarkDEBUG = \"\"\r\n\r\n-- save state when going into bags / decks\r\nfunction onDestroy() self.script_state = onSave() end\r\n\r\nfunction onSave() return JSON.encode({ markedBoxes, inputValues }) end\r\n\r\n-- Startup procedure\r\nfunction onLoad(saved_data)\r\n if saved_data ~= \"\" and markDEBUG == \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n markedBoxes = loaded_data[1]\r\n inputValues = loaded_data[2]\r\n else\r\n markedBoxes = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }\r\n inputValues = { \"\", \"\", \"\", \"\", \"\" }\r\n end\r\n\r\n makeData()\r\n createButtonsAndBoxes()\r\n\r\n self.addContextMenuItem(\"Reset Inputs\", function() updateState() end)\r\n self.addContextMenuItem(\"Scale: normal\", function() self.setScale({ 1, 1, 1 }) end)\r\n self.addContextMenuItem(\"Scale: double\", function() self.setScale({ 2, 1, 2 }) end)\r\n self.addContextMenuItem(\"Scale: triple\", function() self.setScale({ 3, 1, 3 }) end)\r\nend\r\n\r\nfunction updateState(markedBoxesNew)\r\n if markedBoxesNew then markedBoxes = markedBoxesNew end\r\n makeData()\r\n createButtonsAndBoxes()\r\nend\r\n\r\n-- create Data\r\nfunction makeData()\r\n Data = {}\r\n Data.checkbox = {}\r\n Data.textbox = {}\r\n\r\n -- repeat this for each entry (= line) in existingBoxes\r\n local totalCount = 0\r\n for i = 1, #existingBoxes do\r\n -- repeat this for each checkbox per line\r\n for j = 1, existingBoxes[i] do\r\n totalCount = totalCount + 1\r\n Data.checkbox[totalCount] = {}\r\n Data.checkbox[totalCount].pos = {}\r\n Data.checkbox[totalCount].pos.x = x_1 + j * x_offset\r\n Data.checkbox[totalCount].pos.z = posZ[i]\r\n Data.checkbox[totalCount].row = i\r\n\r\n if (markDEBUG == \"all\") or (markedBoxes[i] >= j and markDEBUG ~= \"none\") then\r\n Data.checkbox[totalCount].pos.y = y_visible\r\n Data.checkbox[totalCount].state = true\r\n else\r\n Data.checkbox[totalCount].pos.y = y_invisible\r\n Data.checkbox[totalCount].state = false\r\n end\r\n end\r\n end\r\n\r\n -- repeat this for each entry (= line) in inputBoxes\r\n local totalCount = 0\r\n for i = 1, #inputBoxes do\r\n -- repeat this for each textbox per line\r\n for j = 1, inputBoxes[i] do\r\n totalCount = totalCount + 1\r\n Data.textbox[totalCount] = {}\r\n Data.textbox[totalCount].pos = inputPos[totalCount]\r\n Data.textbox[totalCount].width = inputWidth[totalCount]\r\n Data.textbox[totalCount].value = inputValues[totalCount]\r\n end\r\n end\r\nend\r\n\r\n-- checks or unchecks the given box\r\nfunction click_checkbox(tableIndex)\r\n local row = Data.checkbox[tableIndex].row\r\n\r\n if Data.checkbox[tableIndex].state == true then\r\n Data.checkbox[tableIndex].pos.y = y_invisible\r\n Data.checkbox[tableIndex].state = false\r\n\r\n markedBoxes[row] = markedBoxes[row] - 1\r\n else\r\n Data.checkbox[tableIndex].pos.y = y_visible\r\n Data.checkbox[tableIndex].state = true\r\n\r\n markedBoxes[row] = markedBoxes[row] + 1\r\n end\r\n\r\n self.editButton({\r\n index = tableIndex - 1,\r\n position = Data.checkbox[tableIndex].pos\r\n })\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 inputValues[i] = value\r\n end\r\nend\r\n\r\nfunction createButtonsAndBoxes()\r\n self.clearButtons()\r\n self.clearInputs()\r\n\r\n for i, box_data in ipairs(Data.checkbox) do\r\n local funcName = \"checkbox\" .. i\r\n local func = function() click_checkbox(i) end\r\n self.setVar(funcName, func)\r\n\r\n self.createButton({\r\n click_function = funcName,\r\n function_owner = self,\r\n position = box_data.pos,\r\n height = boxSize,\r\n width = boxSize,\r\n font_size = box_data.size,\r\n scale = { 1, 1, 1 },\r\n color = { 0, 0, 0 },\r\n font_color = { 0, 0, 0 }\r\n })\r\n end\r\n\r\n for i, box_data in ipairs(Data.textbox) do\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 = \"Click to type\",\r\n alignment = 2,\r\n position = box_data.pos,\r\n scale = buttonScale,\r\n width = box_data.width,\r\n height = (inputFontsize * 1) + 24,\r\n font_size = inputFontsize,\r\n color = \"White\",\r\n font_color = buttonFontColor,\r\n value = box_data.value\r\n })\r\n end\r\nend\r\n",
"LuaScriptState": "[[0,0,0,0,0,0,0,0,0,0],[\"\",\"\",\"\",\"\",\"\"]]",
"XmlUI": ""
},
{
"GUID": "a4eec2",
"Name": "CardCustom",
"Transform": {
"posX": 76.50161,
"posY": 9.187765,
"posZ": 17.4749126,
"rotX": 359.920135,
"rotY": 270.000916,
"rotZ": 0.0168716963,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Hyperphysical Shotcaster Upgrade Sheet",
"Description": "",
"GMNotes": "{\n \"id\": \"09119-c\",\n \"traits\": \"\",\n \"permanent\": false,\n \"weakness\": false\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 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,
"CardID": 847900,
"SidewaysCard": false,
"CustomDeck": {
"8479": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1829048801001647291/D1741C8E39E302A3326199AF12767BBFABBFA52F/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1814412497119682452/BD224FCE1980DBA38E5A687FABFD146AA1A30D0E/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "-- Customizable Cards: Hyperphysical Shotcaster\r\n-- by Chr1Z\r\ninformation = {\r\n version = \"1.7\",\r\n last_updated = \"12.10.2022\"\r\n}\r\n\r\n-- Color information for buttons\r\nboxSize = 38\r\n\r\n-- static values\r\nx_1 = -0.935\r\nx_offset = 0.069\r\ny_visible = 0.25\r\ny_invisible = -0.5\r\n\r\n-- z-values (lines on the sheet)\r\nposZ = {\r\n -0.9,\r\n -0.615,\r\n -0.237,\r\n 0.232,\r\n 0.61,\r\n 0.988,\r\n 1.185\r\n}\r\n\r\n-- box setup (amount of boxes per line and amount of marked boxes in that line)\r\nexistingBoxes = { 2, 2, 2, 2, 2, 4, 4 }\r\n\r\ninputBoxes = {}\r\n\r\n-- override 'marked boxes' for debugging ('all' or 'none')\r\nmarkDEBUG = \"\"\r\n\r\n-- save state when going into bags / decks\r\nfunction onDestroy() self.script_state = onSave() end\r\n\r\nfunction onSave() return JSON.encode({ markedBoxes, inputValues }) end\r\n\r\n-- Startup procedure\r\nfunction onLoad(saved_data)\r\n if saved_data ~= \"\" and markDEBUG == \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n markedBoxes = loaded_data[1]\r\n inputValues = loaded_data[2]\r\n else\r\n markedBoxes = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }\r\n inputValues = { \"\", \"\", \"\", \"\", \"\" }\r\n end\r\n\r\n makeData()\r\n createButtonsAndBoxes()\r\n\r\n self.addContextMenuItem(\"Reset Inputs\", function() updateState() end)\r\n self.addContextMenuItem(\"Scale: normal\", function() self.setScale({ 1, 1, 1 }) end)\r\n self.addContextMenuItem(\"Scale: double\", function() self.setScale({ 2, 1, 2 }) end)\r\n self.addContextMenuItem(\"Scale: triple\", function() self.setScale({ 3, 1, 3 }) end)\r\nend\r\n\r\nfunction updateState(markedBoxesNew)\r\n if markedBoxesNew then markedBoxes = markedBoxesNew end\r\n makeData()\r\n createButtonsAndBoxes()\r\nend\r\n\r\n-- create Data\r\nfunction makeData()\r\n Data = {}\r\n Data.checkbox = {}\r\n Data.textbox = {}\r\n\r\n -- repeat this for each entry (= line) in existingBoxes\r\n local totalCount = 0\r\n for i = 1, #existingBoxes do\r\n -- repeat this for each checkbox per line\r\n for j = 1, existingBoxes[i] do\r\n totalCount = totalCount + 1\r\n Data.checkbox[totalCount] = {}\r\n Data.checkbox[totalCount].pos = {}\r\n Data.checkbox[totalCount].pos.x = x_1 + j * x_offset\r\n Data.checkbox[totalCount].pos.z = posZ[i]\r\n Data.checkbox[totalCount].row = i\r\n\r\n if (markDEBUG == \"all\") or (markedBoxes[i] >= j and markDEBUG ~= \"none\") then\r\n Data.checkbox[totalCount].pos.y = y_visible\r\n Data.checkbox[totalCount].state = true\r\n else\r\n Data.checkbox[totalCount].pos.y = y_invisible\r\n Data.checkbox[totalCount].state = false\r\n end\r\n end\r\n end\r\n\r\n -- repeat this for each entry (= line) in inputBoxes\r\n local totalCount = 0\r\n for i = 1, #inputBoxes do\r\n -- repeat this for each textbox per line\r\n for j = 1, inputBoxes[i] do\r\n totalCount = totalCount + 1\r\n Data.textbox[totalCount] = {}\r\n Data.textbox[totalCount].pos = inputPos[totalCount]\r\n Data.textbox[totalCount].width = inputWidth[totalCount]\r\n Data.textbox[totalCount].value = inputValues[totalCount]\r\n end\r\n end\r\nend\r\n\r\n-- checks or unchecks the given box\r\nfunction click_checkbox(tableIndex)\r\n local row = Data.checkbox[tableIndex].row\r\n\r\n if Data.checkbox[tableIndex].state == true then\r\n Data.checkbox[tableIndex].pos.y = y_invisible\r\n Data.checkbox[tableIndex].state = false\r\n\r\n markedBoxes[row] = markedBoxes[row] - 1\r\n else\r\n Data.checkbox[tableIndex].pos.y = y_visible\r\n Data.checkbox[tableIndex].state = true\r\n\r\n markedBoxes[row] = markedBoxes[row] + 1\r\n end\r\n\r\n self.editButton({\r\n index = tableIndex - 1,\r\n position = Data.checkbox[tableIndex].pos\r\n })\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 inputValues[i] = value\r\n end\r\nend\r\n\r\nfunction createButtonsAndBoxes()\r\n self.clearButtons()\r\n self.clearInputs()\r\n\r\n for i, box_data in ipairs(Data.checkbox) do\r\n local funcName = \"checkbox\" .. i\r\n local func = function() click_checkbox(i) end\r\n self.setVar(funcName, func)\r\n\r\n self.createButton({\r\n click_function = funcName,\r\n function_owner = self,\r\n position = box_data.pos,\r\n height = boxSize,\r\n width = boxSize,\r\n font_size = box_data.size,\r\n scale = { 1, 1, 1 },\r\n color = { 0, 0, 0 },\r\n font_color = { 0, 0, 0 }\r\n })\r\n end\r\n\r\n for i, box_data in ipairs(Data.textbox) do\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 = \"Click to type\",\r\n alignment = 2,\r\n position = box_data.pos,\r\n scale = buttonScale,\r\n width = box_data.width,\r\n height = (inputFontsize * 1) + 24,\r\n font_size = inputFontsize,\r\n color = \"White\",\r\n font_color = buttonFontColor,\r\n value = box_data.value\r\n })\r\n end\r\nend\r\n",
"LuaScriptState": "[[0,0,0,0,0,0,0,0,0,0],[\"\",\"\",\"\",\"\",\"\"]]",
"XmlUI": ""
},
{
"GUID": "d2d01b",
"Name": "CardCustom",
"Transform": {
"posX": 75.359436,
"posY": 15.1854124,
"posZ": 24.4615059,
"rotX": 359.920135,
"rotY": 269.9984,
"rotZ": 0.0168741178,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Hunter's Armor Upgrade Sheet",
"Description": "",
"GMNotes": "{\n \"id\": \"09021-c\",\n \"traits\": \"\",\n \"permanent\": false,\n \"weakness\": false\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 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,
"CardID": 846400,
"SidewaysCard": false,
"CustomDeck": {
"8464": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1829048801001644550/5928FAE339AFD5204EE2F03C2AD68F8F29599810/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1814412497119682452/BD224FCE1980DBA38E5A687FABFD146AA1A30D0E/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "-- Customizable Cards: Hunter's Armor\r\n-- by Chr1Z\r\ninformation = {\r\n version = \"1.7\",\r\n last_updated = \"12.10.2022\"\r\n}\r\n\r\n-- Color information for buttons\r\nboxSize = 40\r\n\r\n-- static values\r\nx_1 = -0.933\r\nx_offset = 0.075\r\ny_visible = 0.25\r\ny_invisible = -0.5\r\n\r\n-- z-values (lines on the sheet)\r\nposZ = {\r\n -0.892,\r\n -0.560,\r\n -0.220,\r\n -0.092,\r\n 0.047,\r\n 0.376,\r\n 0.820\r\n}\r\n\r\n-- box setup (amount of boxes per line and amount of marked boxes in that line)\r\nexistingBoxes = { 1, 2, 2, 2, 2, 3, 3 }\r\n\r\ninputBoxes = {}\r\n\r\n-- override 'marked boxes' for debugging ('all' or 'none')\r\nmarkDEBUG = \"\"\r\n\r\n-- save state when going into bags / decks\r\nfunction onDestroy() self.script_state = onSave() end\r\n\r\nfunction onSave() return JSON.encode({ markedBoxes, inputValues }) end\r\n\r\n-- Startup procedure\r\nfunction onLoad(saved_data)\r\n if saved_data ~= \"\" and markDEBUG == \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n markedBoxes = loaded_data[1]\r\n inputValues = loaded_data[2]\r\n else\r\n markedBoxes = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }\r\n inputValues = { \"\", \"\", \"\", \"\", \"\" }\r\n end\r\n\r\n makeData()\r\n createButtonsAndBoxes()\r\n\r\n self.addContextMenuItem(\"Reset Inputs\", function() updateState() end)\r\n self.addContextMenuItem(\"Scale: normal\", function() self.setScale({ 1, 1, 1 }) end)\r\n self.addContextMenuItem(\"Scale: double\", function() self.setScale({ 2, 1, 2 }) end)\r\n self.addContextMenuItem(\"Scale: triple\", function() self.setScale({ 3, 1, 3 }) end)\r\nend\r\n\r\nfunction updateState(markedBoxesNew)\r\n if markedBoxesNew then markedBoxes = markedBoxesNew end\r\n makeData()\r\n createButtonsAndBoxes()\r\nend\r\n\r\n-- create Data\r\nfunction makeData()\r\n Data = {}\r\n Data.checkbox = {}\r\n Data.textbox = {}\r\n\r\n -- repeat this for each entry (= line) in existingBoxes\r\n local totalCount = 0\r\n for i = 1, #existingBoxes do\r\n -- repeat this for each checkbox per line\r\n for j = 1, existingBoxes[i] do\r\n totalCount = totalCount + 1\r\n Data.checkbox[totalCount] = {}\r\n Data.checkbox[totalCount].pos = {}\r\n Data.checkbox[totalCount].pos.x = x_1 + j * x_offset\r\n Data.checkbox[totalCount].pos.z = posZ[i]\r\n Data.checkbox[totalCount].row = i\r\n\r\n if (markDEBUG == \"all\") or (markedBoxes[i] >= j and markDEBUG ~= \"none\") then\r\n Data.checkbox[totalCount].pos.y = y_visible\r\n Data.checkbox[totalCount].state = true\r\n else\r\n Data.checkbox[totalCount].pos.y = y_invisible\r\n Data.checkbox[totalCount].state = false\r\n end\r\n end\r\n end\r\n\r\n -- repeat this for each entry (= line) in inputBoxes\r\n local totalCount = 0\r\n for i = 1, #inputBoxes do\r\n -- repeat this for each textbox per line\r\n for j = 1, inputBoxes[i] do\r\n totalCount = totalCount + 1\r\n Data.textbox[totalCount] = {}\r\n Data.textbox[totalCount].pos = inputPos[totalCount]\r\n Data.textbox[totalCount].width = inputWidth[totalCount]\r\n Data.textbox[totalCount].value = inputValues[totalCount]\r\n end\r\n end\r\nend\r\n\r\n-- checks or unchecks the given box\r\nfunction click_checkbox(tableIndex)\r\n local row = Data.checkbox[tableIndex].row\r\n\r\n if Data.checkbox[tableIndex].state == true then\r\n Data.checkbox[tableIndex].pos.y = y_invisible\r\n Data.checkbox[tableIndex].state = false\r\n\r\n markedBoxes[row] = markedBoxes[row] - 1\r\n else\r\n Data.checkbox[tableIndex].pos.y = y_visible\r\n Data.checkbox[tableIndex].state = true\r\n\r\n markedBoxes[row] = markedBoxes[row] + 1\r\n end\r\n\r\n self.editButton({\r\n index = tableIndex - 1,\r\n position = Data.checkbox[tableIndex].pos\r\n })\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 inputValues[i] = value\r\n end\r\nend\r\n\r\nfunction createButtonsAndBoxes()\r\n self.clearButtons()\r\n self.clearInputs()\r\n\r\n for i, box_data in ipairs(Data.checkbox) do\r\n local funcName = \"checkbox\" .. i\r\n local func = function() click_checkbox(i) end\r\n self.setVar(funcName, func)\r\n\r\n self.createButton({\r\n click_function = funcName,\r\n function_owner = self,\r\n position = box_data.pos,\r\n height = boxSize,\r\n width = boxSize,\r\n font_size = box_data.size,\r\n scale = { 1, 1, 1 },\r\n color = { 0, 0, 0 },\r\n font_color = { 0, 0, 0 }\r\n })\r\n end\r\n\r\n for i, box_data in ipairs(Data.textbox) do\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 = \"Click to type\",\r\n alignment = 2,\r\n position = box_data.pos,\r\n scale = buttonScale,\r\n width = box_data.width,\r\n height = (inputFontsize * 1) + 24,\r\n font_size = inputFontsize,\r\n color = \"White\",\r\n font_color = buttonFontColor,\r\n value = box_data.value\r\n })\r\n end\r\nend\r\n",
"LuaScriptState": "[[0,0,0,0,0,0,0,0,0,0],[\"\",\"\",\"\",\"\",\"\"]]",
"XmlUI": ""
},
{
"GUID": "ba0e34",
"Name": "CardCustom",
"Transform": {
"posX": 72.99308,
"posY": 2.54590321,
"posZ": 16.19192,
"rotX": 0.02080843,
"rotY": 270.0003,
"rotZ": 0.016771486,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Honed Instinct Upgrade Sheet",
"Description": "",
"GMNotes": "{\n \"id\": \"09061-c\",\n \"traits\": \"\",\n \"permanent\": false,\n \"weakness\": false\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 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,
"CardID": 847200,
"SidewaysCard": false,
"CustomDeck": {
"8472": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1829048801001641646/883834FFB64057188FF52146B30DC6DA36FCDF71/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1814412497119682452/BD224FCE1980DBA38E5A687FABFD146AA1A30D0E/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "-- Customizable Cards: Honed Instinct\r\n-- by Chr1Z\r\ninformation = {\r\n version = \"1.7\",\r\n last_updated = \"12.10.2022\"\r\n}\r\n\r\n-- Color information for buttons\r\nboxSize = 38\r\n\r\n-- static values\r\nx_1 = -0.935\r\nx_offset = 0.069\r\ny_visible = 0.25\r\ny_invisible = -0.5\r\n\r\n-- z-values (lines on the sheet)\r\nposZ = {\r\n -0.905,\r\n -0.705,\r\n -0.5,\r\n -0.29,\r\n -0.09,\r\n 0.12,\r\n 0.325,\r\n 0.62\r\n}\r\n\r\n-- box setup (amount of boxes per line and amount of marked boxes in that line)\r\nexistingBoxes = { 1, 1, 1, 1, 1, 2, 3, 5 }\r\n\r\ninputBoxes = {}\r\n\r\n-- override 'marked boxes' for debugging ('all' or 'none')\r\nmarkDEBUG = \"\"\r\n\r\n-- save state when going into bags / decks\r\nfunction onDestroy() self.script_state = onSave() end\r\n\r\nfunction onSave() return JSON.encode({ markedBoxes, inputValues }) end\r\n\r\n-- Startup procedure\r\nfunction onLoad(saved_data)\r\n if saved_data ~= \"\" and markDEBUG == \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n markedBoxes = loaded_data[1]\r\n inputValues = loaded_data[2]\r\n else\r\n markedBoxes = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }\r\n inputValues = { \"\", \"\", \"\", \"\", \"\" }\r\n end\r\n\r\n makeData()\r\n createButtonsAndBoxes()\r\n\r\n self.addContextMenuItem(\"Reset Inputs\", function() updateState() end)\r\n self.addContextMenuItem(\"Scale: normal\", function() self.setScale({ 1, 1, 1 }) end)\r\n self.addContextMenuItem(\"Scale: double\", function() self.setScale({ 2, 1, 2 }) end)\r\n self.addContextMenuItem(\"Scale: triple\", function() self.setScale({ 3, 1, 3 }) end)\r\nend\r\n\r\nfunction updateState(markedBoxesNew)\r\n if markedBoxesNew then markedBoxes = markedBoxesNew end\r\n makeData()\r\n createButtonsAndBoxes()\r\nend\r\n\r\n-- create Data\r\nfunction makeData()\r\n Data = {}\r\n Data.checkbox = {}\r\n Data.textbox = {}\r\n\r\n -- repeat this for each entry (= line) in existingBoxes\r\n local totalCount = 0\r\n for i = 1, #existingBoxes do\r\n -- repeat this for each checkbox per line\r\n for j = 1, existingBoxes[i] do\r\n totalCount = totalCount + 1\r\n Data.checkbox[totalCount] = {}\r\n Data.checkbox[totalCount].pos = {}\r\n Data.checkbox[totalCount].pos.x = x_1 + j * x_offset\r\n Data.checkbox[totalCount].pos.z = posZ[i]\r\n Data.checkbox[totalCount].row = i\r\n\r\n if (markDEBUG == \"all\") or (markedBoxes[i] >= j and markDEBUG ~= \"none\") then\r\n Data.checkbox[totalCount].pos.y = y_visible\r\n Data.checkbox[totalCount].state = true\r\n else\r\n Data.checkbox[totalCount].pos.y = y_invisible\r\n Data.checkbox[totalCount].state = false\r\n end\r\n end\r\n end\r\n\r\n -- repeat this for each entry (= line) in inputBoxes\r\n local totalCount = 0\r\n for i = 1, #inputBoxes do\r\n -- repeat this for each textbox per line\r\n for j = 1, inputBoxes[i] do\r\n totalCount = totalCount + 1\r\n Data.textbox[totalCount] = {}\r\n Data.textbox[totalCount].pos = inputPos[totalCount]\r\n Data.textbox[totalCount].width = inputWidth[totalCount]\r\n Data.textbox[totalCount].value = inputValues[totalCount]\r\n end\r\n end\r\nend\r\n\r\n-- checks or unchecks the given box\r\nfunction click_checkbox(tableIndex)\r\n local row = Data.checkbox[tableIndex].row\r\n\r\n if Data.checkbox[tableIndex].state == true then\r\n Data.checkbox[tableIndex].pos.y = y_invisible\r\n Data.checkbox[tableIndex].state = false\r\n\r\n markedBoxes[row] = markedBoxes[row] - 1\r\n else\r\n Data.checkbox[tableIndex].pos.y = y_visible\r\n Data.checkbox[tableIndex].state = true\r\n\r\n markedBoxes[row] = markedBoxes[row] + 1\r\n end\r\n\r\n self.editButton({\r\n index = tableIndex - 1,\r\n position = Data.checkbox[tableIndex].pos\r\n })\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 inputValues[i] = value\r\n end\r\nend\r\n\r\nfunction createButtonsAndBoxes()\r\n self.clearButtons()\r\n self.clearInputs()\r\n\r\n for i, box_data in ipairs(Data.checkbox) do\r\n local funcName = \"checkbox\" .. i\r\n local func = function() click_checkbox(i) end\r\n self.setVar(funcName, func)\r\n\r\n self.createButton({\r\n click_function = funcName,\r\n function_owner = self,\r\n position = box_data.pos,\r\n height = boxSize,\r\n width = boxSize,\r\n font_size = box_data.size,\r\n scale = { 1, 1, 1 },\r\n color = { 0, 0, 0 },\r\n font_color = { 0, 0, 0 }\r\n })\r\n end\r\n\r\n for i, box_data in ipairs(Data.textbox) do\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 = \"Click to type\",\r\n alignment = 2,\r\n position = box_data.pos,\r\n scale = buttonScale,\r\n width = box_data.width,\r\n height = (inputFontsize * 1) + 24,\r\n font_size = inputFontsize,\r\n color = \"White\",\r\n font_color = buttonFontColor,\r\n value = box_data.value\r\n })\r\n end\r\nend\r\n",
"LuaScriptState": "[[0,0,0,0,0,0,0,0,0,0],[\"\",\"\",\"\",\"\",\"\"]]",
"XmlUI": ""
},
{
"GUID": "ef8f08",
"Name": "CardCustom",
"Transform": {
"posX": 75.73033,
"posY": 9.192045,
"posZ": 15.5583553,
"rotX": -2.453019E-07,
"rotY": 270.000519,
"rotZ": 9.45180454E-06,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Grizzled Upgrade Sheet",
"Description": "",
"GMNotes": "{\n \"id\": \"09101-c\",\n \"traits\": \"\",\n \"permanent\": false,\n \"weakness\": false\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 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,
"CardID": 847800,
"SidewaysCard": false,
"CustomDeck": {
"8478": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1829048801001639376/3AB82488B75B16FBFC07722963E64E1532572CBD/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1814412497119682452/BD224FCE1980DBA38E5A687FABFD146AA1A30D0E/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "-- Customizable Cards: Grizzled\r\n-- by Chr1Z\r\ninformation = {\r\n version = \"1.7\",\r\n last_updated = \"12.10.2022\"\r\n}\r\n\r\n-- Color information for buttons and input boxes\r\nboxSize = 40\r\ninputFontsize = 50\r\n\r\n-- static values\r\nx_1 = -0.933\r\nx_offset = 0.075\r\ny_visible = 0.25\r\ny_invisible = -0.5\r\n\r\n-- z-values (lines on the sheet)\r\nposZ = {\r\n -0.71,\r\n -0.458,\r\n -0.205,\r\n 0.362,\r\n 0.82\r\n}\r\n\r\n-- box setup (amount of boxes per line and amount of marked boxes in that line)\r\nexistingBoxes = { 1, 2, 3, 4, 5 }\r\n\r\ninputBoxes = { 1, 1, 1 }\r\ninputWidth = { 600, 875, 875 }\r\ninputPos = { { 0.3, 0.25, -0.91 }, { 0.005, 0.25, -0.58 }, { 0.005, 0.25, -0.32 } }\r\n\r\n-- override 'marked boxes' for debugging ('all' or 'none')\r\nmarkDEBUG = \"\"\r\n\r\n-- save state when going into bags / decks\r\nfunction onDestroy() self.script_state = onSave() end\r\n\r\nfunction onSave() return JSON.encode({ markedBoxes, inputValues }) end\r\n\r\n-- Startup procedure\r\nfunction onLoad(saved_data)\r\n if saved_data ~= \"\" and markDEBUG == \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n markedBoxes = loaded_data[1]\r\n inputValues = loaded_data[2]\r\n else\r\n markedBoxes = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }\r\n inputValues = { \"\", \"\", \"\", \"\", \"\" }\r\n end\r\n\r\n makeData()\r\n createButtonsAndBoxes()\r\n\r\n self.addContextMenuItem(\"Reset Inputs\", function() updateState() end)\r\n self.addContextMenuItem(\"Scale: normal\", function() self.setScale({ 1, 1, 1 }) end)\r\n self.addContextMenuItem(\"Scale: double\", function() self.setScale({ 2, 1, 2 }) end)\r\n self.addContextMenuItem(\"Scale: triple\", function() self.setScale({ 3, 1, 3 }) end)\r\nend\r\n\r\nfunction updateState(markedBoxesNew)\r\n if markedBoxesNew then markedBoxes = markedBoxesNew end\r\n makeData()\r\n createButtonsAndBoxes()\r\nend\r\n\r\n-- create Data\r\nfunction makeData()\r\n Data = {}\r\n Data.checkbox = {}\r\n Data.textbox = {}\r\n\r\n -- repeat this for each entry (= line) in existingBoxes\r\n local totalCount = 0\r\n for i = 1, #existingBoxes do\r\n -- repeat this for each checkbox per line\r\n for j = 1, existingBoxes[i] do\r\n totalCount = totalCount + 1\r\n Data.checkbox[totalCount] = {}\r\n Data.checkbox[totalCount].pos = {}\r\n Data.checkbox[totalCount].pos.x = x_1 + j * x_offset\r\n Data.checkbox[totalCount].pos.z = posZ[i]\r\n Data.checkbox[totalCount].row = i\r\n\r\n if (markDEBUG == \"all\") or (markedBoxes[i] >= j and markDEBUG ~= \"none\") then\r\n Data.checkbox[totalCount].pos.y = y_visible\r\n Data.checkbox[totalCount].state = true\r\n else\r\n Data.checkbox[totalCount].pos.y = y_invisible\r\n Data.checkbox[totalCount].state = false\r\n end\r\n end\r\n end\r\n\r\n -- repeat this for each entry (= line) in inputBoxes\r\n local totalCount = 0\r\n for i = 1, #inputBoxes do\r\n -- repeat this for each textbox per line\r\n for j = 1, inputBoxes[i] do\r\n totalCount = totalCount + 1\r\n Data.textbox[totalCount] = {}\r\n Data.textbox[totalCount].pos = inputPos[totalCount]\r\n Data.textbox[totalCount].width = inputWidth[totalCount]\r\n Data.textbox[totalCount].value = inputValues[totalCount]\r\n end\r\n end\r\nend\r\n\r\n-- checks or unchecks the given box\r\nfunction click_checkbox(tableIndex)\r\n local row = Data.checkbox[tableIndex].row\r\n\r\n if Data.checkbox[tableIndex].state == true then\r\n Data.checkbox[tableIndex].pos.y = y_invisible\r\n Data.checkbox[tableIndex].state = false\r\n\r\n markedBoxes[row] = markedBoxes[row] - 1\r\n else\r\n Data.checkbox[tableIndex].pos.y = y_visible\r\n Data.checkbox[tableIndex].state = true\r\n\r\n markedBoxes[row] = markedBoxes[row] + 1\r\n end\r\n\r\n self.editButton({\r\n index = tableIndex - 1,\r\n position = Data.checkbox[tableIndex].pos\r\n })\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 inputValues[i] = value\r\n end\r\nend\r\n\r\nfunction createButtonsAndBoxes()\r\n self.clearButtons()\r\n self.clearInputs()\r\n\r\n for i, box_data in ipairs(Data.checkbox) do\r\n local funcName = \"checkbox\" .. i\r\n local func = function() click_checkbox(i) end\r\n self.setVar(funcName, func)\r\n\r\n self.createButton({\r\n click_function = funcName,\r\n function_owner = self,\r\n position = box_data.pos,\r\n height = boxSize,\r\n width = boxSize,\r\n font_size = box_data.size,\r\n scale = { 1, 1, 1 },\r\n color = { 0, 0, 0 },\r\n font_color = { 0, 0, 0 }\r\n })\r\n end\r\n\r\n for i, box_data in ipairs(Data.textbox) do\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 = \"Click to type\",\r\n alignment = 2,\r\n position = box_data.pos,\r\n scale = buttonScale,\r\n width = box_data.width,\r\n height = (inputFontsize * 1) + 24,\r\n font_size = inputFontsize,\r\n color = \"White\",\r\n font_color = buttonFontColor,\r\n value = box_data.value\r\n })\r\n end\r\nend\r\n",
"LuaScriptState": "[[0,0,0,0,0,0,0,0,0,0],[\"\",\"\",\"\",\"\",\"\"]]",
"XmlUI": ""
},
{
"GUID": "9fb3b9",
"Name": "CardCustom",
"Transform": {
"posX": 76.25444,
"posY": 15.1854143,
"posZ": 23.114336,
"rotX": 359.920135,
"rotY": 270.0025,
"rotZ": 0.0168688055,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Friends in Low Places Upgrade Sheet",
"Description": "",
"GMNotes": "{\n \"id\": \"09060-c\",\n \"traits\": \"\",\n \"permanent\": false,\n \"weakness\": false\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 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,
"CardID": 847100,
"SidewaysCard": false,
"CustomDeck": {
"8471": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1829048801001637087/1946EC3599E69417BEBD1376023DE45C5E696FC9/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1814412497119682452/BD224FCE1980DBA38E5A687FABFD146AA1A30D0E/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "-- Customizable Cards: Friends in Low Places\r\n-- by Chr1Z\r\ninformation = {\r\n version = \"1.7\",\r\n last_updated = \"12.10.2022\"\r\n}\r\n\r\n-- Color information for buttons and input boxes\r\nboxSize = 36\r\ninputFontsize = 50\r\n\r\n-- static values\r\nx_1 = -0.935\r\nx_offset = 0.0685\r\ny_visible = 0.25\r\ny_invisible = -0.5\r\n\r\n-- z-values (lines on the sheet)\r\nposZ = {\r\n -0.725,\r\n -0.44,\r\n -0.05,\r\n 0.25,\r\n 0.545,\r\n 0.75,\r\n 0.95\r\n}\r\n\r\n-- box setup (amount of boxes per line and amount of marked boxes in that line)\r\nexistingBoxes = { 1, 2, 2, 2, 2, 3, 3 }\r\n\r\ninputBoxes = { 1, 1 }\r\ninputWidth = { 640, 290 }\r\ninputPos = { { 0.275, 0.25, -0.91 }, { 0.6295, 0.25, -0.44 } }\r\n\r\n-- override 'marked boxes' for debugging ('all' or 'none')\r\nmarkDEBUG = \"\"\r\n\r\n-- save state when going into bags / decks\r\nfunction onDestroy() self.script_state = onSave() end\r\n\r\nfunction onSave() return JSON.encode({ markedBoxes, inputValues }) end\r\n\r\n-- Startup procedure\r\nfunction onLoad(saved_data)\r\n if saved_data ~= \"\" and markDEBUG == \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n markedBoxes = loaded_data[1]\r\n inputValues = loaded_data[2]\r\n else\r\n markedBoxes = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }\r\n inputValues = { \"\", \"\", \"\", \"\", \"\" }\r\n end\r\n\r\n makeData()\r\n createButtonsAndBoxes()\r\n\r\n self.addContextMenuItem(\"Reset Inputs\", function() updateState() end)\r\n self.addContextMenuItem(\"Scale: normal\", function() self.setScale({ 1, 1, 1 }) end)\r\n self.addContextMenuItem(\"Scale: double\", function() self.setScale({ 2, 1, 2 }) end)\r\n self.addContextMenuItem(\"Scale: triple\", function() self.setScale({ 3, 1, 3 }) end)\r\nend\r\n\r\nfunction updateState(markedBoxesNew)\r\n if markedBoxesNew then markedBoxes = markedBoxesNew end\r\n makeData()\r\n createButtonsAndBoxes()\r\nend\r\n\r\n-- create Data\r\nfunction makeData()\r\n Data = {}\r\n Data.checkbox = {}\r\n Data.textbox = {}\r\n\r\n -- repeat this for each entry (= line) in existingBoxes\r\n local totalCount = 0\r\n for i = 1, #existingBoxes do\r\n -- repeat this for each checkbox per line\r\n for j = 1, existingBoxes[i] do\r\n totalCount = totalCount + 1\r\n Data.checkbox[totalCount] = {}\r\n Data.checkbox[totalCount].pos = {}\r\n Data.checkbox[totalCount].pos.x = x_1 + j * x_offset\r\n Data.checkbox[totalCount].pos.z = posZ[i]\r\n Data.checkbox[totalCount].row = i\r\n\r\n if (markDEBUG == \"all\") or (markedBoxes[i] >= j and markDEBUG ~= \"none\") then\r\n Data.checkbox[totalCount].pos.y = y_visible\r\n Data.checkbox[totalCount].state = true\r\n else\r\n Data.checkbox[totalCount].pos.y = y_invisible\r\n Data.checkbox[totalCount].state = false\r\n end\r\n end\r\n end\r\n\r\n -- repeat this for each entry (= line) in inputBoxes\r\n local totalCount = 0\r\n for i = 1, #inputBoxes do\r\n -- repeat this for each textbox per line\r\n for j = 1, inputBoxes[i] do\r\n totalCount = totalCount + 1\r\n Data.textbox[totalCount] = {}\r\n Data.textbox[totalCount].pos = inputPos[totalCount]\r\n Data.textbox[totalCount].width = inputWidth[totalCount]\r\n Data.textbox[totalCount].value = inputValues[totalCount]\r\n end\r\n end\r\nend\r\n\r\n-- checks or unchecks the given box\r\nfunction click_checkbox(tableIndex)\r\n local row = Data.checkbox[tableIndex].row\r\n\r\n if Data.checkbox[tableIndex].state == true then\r\n Data.checkbox[tableIndex].pos.y = y_invisible\r\n Data.checkbox[tableIndex].state = false\r\n\r\n markedBoxes[row] = markedBoxes[row] - 1\r\n else\r\n Data.checkbox[tableIndex].pos.y = y_visible\r\n Data.checkbox[tableIndex].state = true\r\n\r\n markedBoxes[row] = markedBoxes[row] + 1\r\n end\r\n\r\n self.editButton({\r\n index = tableIndex - 1,\r\n position = Data.checkbox[tableIndex].pos\r\n })\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 inputValues[i] = value\r\n end\r\nend\r\n\r\nfunction createButtonsAndBoxes()\r\n self.clearButtons()\r\n self.clearInputs()\r\n\r\n for i, box_data in ipairs(Data.checkbox) do\r\n local funcName = \"checkbox\" .. i\r\n local func = function() click_checkbox(i) end\r\n self.setVar(funcName, func)\r\n\r\n self.createButton({\r\n click_function = funcName,\r\n function_owner = self,\r\n position = box_data.pos,\r\n height = boxSize,\r\n width = boxSize,\r\n font_size = box_data.size,\r\n scale = { 1, 1, 1 },\r\n color = { 0, 0, 0 },\r\n font_color = { 0, 0, 0 }\r\n })\r\n end\r\n\r\n for i, box_data in ipairs(Data.textbox) do\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 = \"Click to type\",\r\n alignment = 2,\r\n position = box_data.pos,\r\n scale = buttonScale,\r\n width = box_data.width,\r\n height = (inputFontsize * 1) + 24,\r\n font_size = inputFontsize,\r\n color = \"White\",\r\n font_color = buttonFontColor,\r\n value = box_data.value\r\n })\r\n end\r\nend\r\n",
"LuaScriptState": "[[0,0,0,0,0,0,0,0,0,0],[\"\",\"\",\"\",\"\",\"\"]]",
"XmlUI": ""
},
{
"GUID": "0c46a7",
"Name": "CardCustom",
"Transform": {
"posX": 76.0014,
"posY": 15.184679,
"posZ": 23.87293,
"rotX": 1.31849822E-06,
"rotY": 269.9971,
"rotZ": -8.357369E-06,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Empirical Hypothesis Upgrade Sheet",
"Description": "",
"GMNotes": "{\n \"id\": \"09041-c\",\n \"traits\": \"\",\n \"permanent\": false,\n \"weakness\": false\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 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,
"CardID": 846800,
"SidewaysCard": false,
"CustomDeck": {
"8468": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1829048801001678003/AE285518E8833C6E5B3239A8B2ABF49D021F01FC/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1814412497119682452/BD224FCE1980DBA38E5A687FABFD146AA1A30D0E/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "-- Customizable Cards: Empirical Hypothesis\r\n-- by Chr1Z\r\ninformation = {\r\n version = \"1.7\",\r\n last_updated = \"12.10.2022\"\r\n}\r\n\r\n-- Color information for buttons\r\nboxSize = 37\r\n\r\n-- static values\r\nx_1 = -0.935\r\nx_offset = 0.069\r\ny_visible = 0.25\r\ny_invisible = -0.5\r\n\r\n-- z-values (lines on the sheet)\r\nposZ = {\r\n -0.905,\r\n -0.7,\r\n -0.505,\r\n -0.3,\r\n -0.09,\r\n 0.3,\r\n 0.592,\r\n 0.888\r\n}\r\n\r\n-- box setup (amount of boxes per line and amount of marked boxes in that line)\r\nexistingBoxes = { 1, 1, 1, 1, 2, 2, 3, 4 }\r\n\r\ninputBoxes = {}\r\n\r\n-- override 'marked boxes' for debugging ('all' or 'none')\r\nmarkDEBUG = \"\"\r\n\r\n-- save state when going into bags / decks\r\nfunction onDestroy() self.script_state = onSave() end\r\n\r\nfunction onSave() return JSON.encode({ markedBoxes, inputValues }) end\r\n\r\n-- Startup procedure\r\nfunction onLoad(saved_data)\r\n if saved_data ~= \"\" and markDEBUG == \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n markedBoxes = loaded_data[1]\r\n inputValues = loaded_data[2]\r\n else\r\n markedBoxes = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }\r\n inputValues = { \"\", \"\", \"\", \"\", \"\" }\r\n end\r\n\r\n makeData()\r\n createButtonsAndBoxes()\r\n\r\n self.addContextMenuItem(\"Reset Inputs\", function() updateState() end)\r\n self.addContextMenuItem(\"Scale: normal\", function() self.setScale({ 1, 1, 1 }) end)\r\n self.addContextMenuItem(\"Scale: double\", function() self.setScale({ 2, 1, 2 }) end)\r\n self.addContextMenuItem(\"Scale: triple\", function() self.setScale({ 3, 1, 3 }) end)\r\nend\r\n\r\nfunction updateState(markedBoxesNew)\r\n if markedBoxesNew then markedBoxes = markedBoxesNew end\r\n makeData()\r\n createButtonsAndBoxes()\r\nend\r\n\r\n-- create Data\r\nfunction makeData()\r\n Data = {}\r\n Data.checkbox = {}\r\n Data.textbox = {}\r\n\r\n -- repeat this for each entry (= line) in existingBoxes\r\n local totalCount = 0\r\n for i = 1, #existingBoxes do\r\n -- repeat this for each checkbox per line\r\n for j = 1, existingBoxes[i] do\r\n totalCount = totalCount + 1\r\n Data.checkbox[totalCount] = {}\r\n Data.checkbox[totalCount].pos = {}\r\n Data.checkbox[totalCount].pos.x = x_1 + j * x_offset\r\n Data.checkbox[totalCount].pos.z = posZ[i]\r\n Data.checkbox[totalCount].row = i\r\n\r\n if (markDEBUG == \"all\") or (markedBoxes[i] >= j and markDEBUG ~= \"none\") then\r\n Data.checkbox[totalCount].pos.y = y_visible\r\n Data.checkbox[totalCount].state = true\r\n else\r\n Data.checkbox[totalCount].pos.y = y_invisible\r\n Data.checkbox[totalCount].state = false\r\n end\r\n end\r\n end\r\n\r\n -- repeat this for each entry (= line) in inputBoxes\r\n local totalCount = 0\r\n for i = 1, #inputBoxes do\r\n -- repeat this for each textbox per line\r\n for j = 1, inputBoxes[i] do\r\n totalCount = totalCount + 1\r\n Data.textbox[totalCount] = {}\r\n Data.textbox[totalCount].pos = inputPos[totalCount]\r\n Data.textbox[totalCount].width = inputWidth[totalCount]\r\n Data.textbox[totalCount].value = inputValues[totalCount]\r\n end\r\n end\r\nend\r\n\r\n-- checks or unchecks the given box\r\nfunction click_checkbox(tableIndex)\r\n local row = Data.checkbox[tableIndex].row\r\n\r\n if Data.checkbox[tableIndex].state == true then\r\n Data.checkbox[tableIndex].pos.y = y_invisible\r\n Data.checkbox[tableIndex].state = false\r\n\r\n markedBoxes[row] = markedBoxes[row] - 1\r\n else\r\n Data.checkbox[tableIndex].pos.y = y_visible\r\n Data.checkbox[tableIndex].state = true\r\n\r\n markedBoxes[row] = markedBoxes[row] + 1\r\n end\r\n\r\n self.editButton({\r\n index = tableIndex - 1,\r\n position = Data.checkbox[tableIndex].pos\r\n })\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 inputValues[i] = value\r\n end\r\nend\r\n\r\nfunction createButtonsAndBoxes()\r\n self.clearButtons()\r\n self.clearInputs()\r\n\r\n for i, box_data in ipairs(Data.checkbox) do\r\n local funcName = \"checkbox\" .. i\r\n local func = function() click_checkbox(i) end\r\n self.setVar(funcName, func)\r\n\r\n self.createButton({\r\n click_function = funcName,\r\n function_owner = self,\r\n position = box_data.pos,\r\n height = boxSize,\r\n width = boxSize,\r\n font_size = box_data.size,\r\n scale = { 1, 1, 1 },\r\n color = { 0, 0, 0 },\r\n font_color = { 0, 0, 0 }\r\n })\r\n end\r\n\r\n for i, box_data in ipairs(Data.textbox) do\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 = \"Click to type\",\r\n alignment = 2,\r\n position = box_data.pos,\r\n scale = buttonScale,\r\n width = box_data.width,\r\n height = (inputFontsize * 1) + 24,\r\n font_size = inputFontsize,\r\n color = \"White\",\r\n font_color = buttonFontColor,\r\n value = box_data.value\r\n })\r\n end\r\nend\r\n",
"LuaScriptState": "[[0,0,0,0,0,0,0,0,0,0],[\"\",\"\",\"\",\"\",\"\"]]",
"XmlUI": ""
},
{
"GUID": "dc4a62",
"Name": "CardCustom",
"Transform": {
"posX": 74.1988754,
"posY": 2.54863048,
"posZ": 15.61844,
"rotX": 0.02080828,
"rotY": 270.000519,
"rotZ": 0.0167714674,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Damning Testimony Upgrade Sheet",
"Description": "",
"GMNotes": "{\n \"id\": \"09059-c\",\n \"traits\": \"\",\n \"permanent\": false,\n \"weakness\": false\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 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,
"CardID": 847000,
"SidewaysCard": false,
"CustomDeck": {
"8470": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1829048801001633028/26CBF360B209B69F66C0875118727E742B7D16CD/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1814412497119682452/BD224FCE1980DBA38E5A687FABFD146AA1A30D0E/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "-- Customizable Cards: Damning Testimony\r\n-- by Chr1Z\r\ninformation = {\r\n version = \"1.7\",\r\n last_updated = \"12.10.2022\"\r\n}\r\n\r\n-- Color information for buttons\r\nboxSize = 40\r\n\r\n-- static values\r\nx_1 = -0.935\r\nx_offset = 0.075\r\ny_visible = 0.25\r\ny_invisible = -0.5\r\n\r\n-- z-values (lines on the sheet)\r\nposZ = {\r\n -0.925,\r\n -0.475,\r\n -0.25,\r\n -0.01,\r\n 0.428,\r\n 0.772\r\n}\r\n\r\n-- box setup (amount of boxes per line and amount of marked boxes in that line)\r\nexistingBoxes = { 1, 2, 2, 3, 3, 4 }\r\n\r\ninputBoxes = {}\r\n\r\n-- override 'marked boxes' for debugging ('all' or 'none')\r\nmarkDEBUG = \"\"\r\n\r\n-- save state when going into bags / decks\r\nfunction onDestroy() self.script_state = onSave() end\r\n\r\nfunction onSave() return JSON.encode({ markedBoxes, inputValues }) end\r\n\r\n-- Startup procedure\r\nfunction onLoad(saved_data)\r\n if saved_data ~= \"\" and markDEBUG == \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n markedBoxes = loaded_data[1]\r\n inputValues = loaded_data[2]\r\n else\r\n markedBoxes = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }\r\n inputValues = { \"\", \"\", \"\", \"\", \"\" }\r\n end\r\n\r\n makeData()\r\n createButtonsAndBoxes()\r\n\r\n self.addContextMenuItem(\"Reset Inputs\", function() updateState() end)\r\n self.addContextMenuItem(\"Scale: normal\", function() self.setScale({ 1, 1, 1 }) end)\r\n self.addContextMenuItem(\"Scale: double\", function() self.setScale({ 2, 1, 2 }) end)\r\n self.addContextMenuItem(\"Scale: triple\", function() self.setScale({ 3, 1, 3 }) end)\r\nend\r\n\r\nfunction updateState(markedBoxesNew)\r\n if markedBoxesNew then markedBoxes = markedBoxesNew end\r\n makeData()\r\n createButtonsAndBoxes()\r\nend\r\n\r\n-- create Data\r\nfunction makeData()\r\n Data = {}\r\n Data.checkbox = {}\r\n Data.textbox = {}\r\n\r\n -- repeat this for each entry (= line) in existingBoxes\r\n local totalCount = 0\r\n for i = 1, #existingBoxes do\r\n -- repeat this for each checkbox per line\r\n for j = 1, existingBoxes[i] do\r\n totalCount = totalCount + 1\r\n Data.checkbox[totalCount] = {}\r\n Data.checkbox[totalCount].pos = {}\r\n Data.checkbox[totalCount].pos.x = x_1 + j * x_offset\r\n Data.checkbox[totalCount].pos.z = posZ[i]\r\n Data.checkbox[totalCount].row = i\r\n\r\n if (markDEBUG == \"all\") or (markedBoxes[i] >= j and markDEBUG ~= \"none\") then\r\n Data.checkbox[totalCount].pos.y = y_visible\r\n Data.checkbox[totalCount].state = true\r\n else\r\n Data.checkbox[totalCount].pos.y = y_invisible\r\n Data.checkbox[totalCount].state = false\r\n end\r\n end\r\n end\r\n\r\n -- repeat this for each entry (= line) in inputBoxes\r\n local totalCount = 0\r\n for i = 1, #inputBoxes do\r\n -- repeat this for each textbox per line\r\n for j = 1, inputBoxes[i] do\r\n totalCount = totalCount + 1\r\n Data.textbox[totalCount] = {}\r\n Data.textbox[totalCount].pos = inputPos[totalCount]\r\n Data.textbox[totalCount].width = inputWidth[totalCount]\r\n Data.textbox[totalCount].value = inputValues[totalCount]\r\n end\r\n end\r\nend\r\n\r\n-- checks or unchecks the given box\r\nfunction click_checkbox(tableIndex)\r\n local row = Data.checkbox[tableIndex].row\r\n\r\n if Data.checkbox[tableIndex].state == true then\r\n Data.checkbox[tableIndex].pos.y = y_invisible\r\n Data.checkbox[tableIndex].state = false\r\n\r\n markedBoxes[row] = markedBoxes[row] - 1\r\n else\r\n Data.checkbox[tableIndex].pos.y = y_visible\r\n Data.checkbox[tableIndex].state = true\r\n\r\n markedBoxes[row] = markedBoxes[row] + 1\r\n end\r\n\r\n self.editButton({\r\n index = tableIndex - 1,\r\n position = Data.checkbox[tableIndex].pos\r\n })\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 inputValues[i] = value\r\n end\r\nend\r\n\r\nfunction createButtonsAndBoxes()\r\n self.clearButtons()\r\n self.clearInputs()\r\n\r\n for i, box_data in ipairs(Data.checkbox) do\r\n local funcName = \"checkbox\" .. i\r\n local func = function() click_checkbox(i) end\r\n self.setVar(funcName, func)\r\n\r\n self.createButton({\r\n click_function = funcName,\r\n function_owner = self,\r\n position = box_data.pos,\r\n height = boxSize,\r\n width = boxSize,\r\n font_size = box_data.size,\r\n scale = { 1, 1, 1 },\r\n color = { 0, 0, 0 },\r\n font_color = { 0, 0, 0 }\r\n })\r\n end\r\n\r\n for i, box_data in ipairs(Data.textbox) do\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 = \"Click to type\",\r\n alignment = 2,\r\n position = box_data.pos,\r\n scale = buttonScale,\r\n width = box_data.width,\r\n height = (inputFontsize * 1) + 24,\r\n font_size = inputFontsize,\r\n color = \"White\",\r\n font_color = buttonFontColor,\r\n value = box_data.value\r\n })\r\n end\r\nend\r\n",
"LuaScriptState": "[[0,0,0,0,0,0,0,0,0,0],[\"\",\"\",\"\",\"\",\"\"]]",
"XmlUI": ""
},
{
"GUID": "4104bf",
"Name": "CardCustom",
"Transform": {
"posX": 76.65759,
"posY": 9.186746,
"posZ": 17.5807972,
"rotX": 3.81479231E-06,
"rotY": 270.005859,
"rotZ": 2.67784571E-06,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Custom Modifications Upgrade Sheet",
"Description": "",
"GMNotes": "{\n \"id\": \"09023-c\",\n \"traits\": \"\",\n \"permanent\": false,\n \"weakness\": false\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 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,
"CardID": 846600,
"SidewaysCard": false,
"CustomDeck": {
"8466": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1829048801001629811/23FCEFC53D1F2E5A44F6E4B9467C6362459914AA/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1814412497119682452/BD224FCE1980DBA38E5A687FABFD146AA1A30D0E/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "-- Customizable Cards: Custom Modifications\r\n-- by Chr1Z\r\ninformation = {\r\n version = \"1.7\",\r\n last_updated = \"12.10.2022\"\r\n}\r\n\r\n-- Color information for buttons\r\nboxSize = 38\r\n\r\n-- static values\r\nx_1 = -0.935\r\nx_offset = 0.0735\r\ny_visible = 0.25\r\ny_invisible = -0.5\r\n\r\n-- z-values (lines on the sheet)\r\nposZ = {\r\n -0.895,\r\n -0.455,\r\n -0.215,\r\n 0.115,\r\n 0.453,\r\n 0.794\r\n}\r\n\r\n-- box setup (amount of boxes per line and amount of marked boxes in that line)\r\nexistingBoxes = { 1, 2, 2, 3, 3, 4 }\r\n\r\ninputBoxes = {}\r\n\r\n-- override 'marked boxes' for debugging ('all' or 'none')\r\nmarkDEBUG = \"\"\r\n\r\n-- save state when going into bags / decks\r\nfunction onDestroy() self.script_state = onSave() end\r\n\r\nfunction onSave() return JSON.encode({ markedBoxes, inputValues }) end\r\n\r\n-- Startup procedure\r\nfunction onLoad(saved_data)\r\n if saved_data ~= \"\" and markDEBUG == \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n markedBoxes = loaded_data[1]\r\n inputValues = loaded_data[2]\r\n else\r\n markedBoxes = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }\r\n inputValues = { \"\", \"\", \"\", \"\", \"\" }\r\n end\r\n\r\n makeData()\r\n createButtonsAndBoxes()\r\n\r\n self.addContextMenuItem(\"Reset Inputs\", function() updateState() end)\r\n self.addContextMenuItem(\"Scale: normal\", function() self.setScale({ 1, 1, 1 }) end)\r\n self.addContextMenuItem(\"Scale: double\", function() self.setScale({ 2, 1, 2 }) end)\r\n self.addContextMenuItem(\"Scale: triple\", function() self.setScale({ 3, 1, 3 }) end)\r\nend\r\n\r\nfunction updateState(markedBoxesNew)\r\n if markedBoxesNew then markedBoxes = markedBoxesNew end\r\n makeData()\r\n createButtonsAndBoxes()\r\nend\r\n\r\n-- create Data\r\nfunction makeData()\r\n Data = {}\r\n Data.checkbox = {}\r\n Data.textbox = {}\r\n\r\n -- repeat this for each entry (= line) in existingBoxes\r\n local totalCount = 0\r\n for i = 1, #existingBoxes do\r\n -- repeat this for each checkbox per line\r\n for j = 1, existingBoxes[i] do\r\n totalCount = totalCount + 1\r\n Data.checkbox[totalCount] = {}\r\n Data.checkbox[totalCount].pos = {}\r\n Data.checkbox[totalCount].pos.x = x_1 + j * x_offset\r\n Data.checkbox[totalCount].pos.z = posZ[i]\r\n Data.checkbox[totalCount].row = i\r\n\r\n if (markDEBUG == \"all\") or (markedBoxes[i] >= j and markDEBUG ~= \"none\") then\r\n Data.checkbox[totalCount].pos.y = y_visible\r\n Data.checkbox[totalCount].state = true\r\n else\r\n Data.checkbox[totalCount].pos.y = y_invisible\r\n Data.checkbox[totalCount].state = false\r\n end\r\n end\r\n end\r\n\r\n -- repeat this for each entry (= line) in inputBoxes\r\n local totalCount = 0\r\n for i = 1, #inputBoxes do\r\n -- repeat this for each textbox per line\r\n for j = 1, inputBoxes[i] do\r\n totalCount = totalCount + 1\r\n Data.textbox[totalCount] = {}\r\n Data.textbox[totalCount].pos = inputPos[totalCount]\r\n Data.textbox[totalCount].width = inputWidth[totalCount]\r\n Data.textbox[totalCount].value = inputValues[totalCount]\r\n end\r\n end\r\nend\r\n\r\n-- checks or unchecks the given box\r\nfunction click_checkbox(tableIndex)\r\n local row = Data.checkbox[tableIndex].row\r\n\r\n if Data.checkbox[tableIndex].state == true then\r\n Data.checkbox[tableIndex].pos.y = y_invisible\r\n Data.checkbox[tableIndex].state = false\r\n\r\n markedBoxes[row] = markedBoxes[row] - 1\r\n else\r\n Data.checkbox[tableIndex].pos.y = y_visible\r\n Data.checkbox[tableIndex].state = true\r\n\r\n markedBoxes[row] = markedBoxes[row] + 1\r\n end\r\n\r\n self.editButton({\r\n index = tableIndex - 1,\r\n position = Data.checkbox[tableIndex].pos\r\n })\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 inputValues[i] = value\r\n end\r\nend\r\n\r\nfunction createButtonsAndBoxes()\r\n self.clearButtons()\r\n self.clearInputs()\r\n\r\n for i, box_data in ipairs(Data.checkbox) do\r\n local funcName = \"checkbox\" .. i\r\n local func = function() click_checkbox(i) end\r\n self.setVar(funcName, func)\r\n\r\n self.createButton({\r\n click_function = funcName,\r\n function_owner = self,\r\n position = box_data.pos,\r\n height = boxSize,\r\n width = boxSize,\r\n font_size = box_data.size,\r\n scale = { 1, 1, 1 },\r\n color = { 0, 0, 0 },\r\n font_color = { 0, 0, 0 }\r\n })\r\n end\r\n\r\n for i, box_data in ipairs(Data.textbox) do\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 = \"Click to type\",\r\n alignment = 2,\r\n position = box_data.pos,\r\n scale = buttonScale,\r\n width = box_data.width,\r\n height = (inputFontsize * 1) + 24,\r\n font_size = inputFontsize,\r\n color = \"White\",\r\n font_color = buttonFontColor,\r\n value = box_data.value\r\n })\r\n end\r\nend\r\n",
"LuaScriptState": "[[0,0,0,0,0,0,0,0,0,0],[\"\",\"\",\"\",\"\",\"\"]]",
"XmlUI": ""
},
{
"GUID": "156166",
"Name": "CardCustom",
"Transform": {
"posX": 76.131485,
"posY": 9.1889,
"posZ": 19.2674179,
"rotX": 359.920135,
"rotY": 270.003448,
"rotZ": 0.0168669764,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Alchemical Distillation Upgrade Sheet",
"Description": "",
"GMNotes": "{\n \"id\": \"09040-c\",\n \"traits\": \"\",\n \"permanent\": false,\n \"weakness\": false\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 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,
"CardID": 846700,
"SidewaysCard": false,
"CustomDeck": {
"8467": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1829048801001675240/93B59C1A3D29C3B34A9184C0C67F485777F913CB/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1814412497119682452/BD224FCE1980DBA38E5A687FABFD146AA1A30D0E/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "-- Customizable Cards: Alchemical Distillation\r\n-- by Chr1Z\r\ninformation = {\r\n version = \"1.7\",\r\n last_updated = \"12.10.2022\"\r\n}\r\n\r\n\r\n-- Color information for buttons\r\nboxSize = 40\r\n\r\n-- static values\r\nx_1 = -0.933\r\nx_offset = 0.075\r\ny_visible = 0.25\r\ny_invisible = -0.5\r\n\r\n-- z-values (lines on the sheet)\r\nposZ = {\r\n -0.892,\r\n -0.665,\r\n -0.430,\r\n -0.092,\r\n 0.142,\r\n 0.376,\r\n 0.815\r\n}\r\n\r\n-- box setup (amount of boxes per line and amount of marked boxes in that line)\r\nexistingBoxes = { 1, 1, 1, 1, 2, 4, 5 }\r\n\r\ninputBoxes = {}\r\n\r\n-- override 'marked boxes' for debugging ('all' or 'none')\r\nmarkDEBUG = \"\"\r\n\r\n-- save state when going into bags / decks\r\nfunction onDestroy() self.script_state = onSave() end\r\n\r\nfunction onSave() return JSON.encode({ markedBoxes, inputValues }) end\r\n\r\n-- Startup procedure\r\nfunction onLoad(saved_data)\r\n if saved_data ~= \"\" and markDEBUG == \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n markedBoxes = loaded_data[1]\r\n inputValues = loaded_data[2]\r\n else\r\n markedBoxes = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }\r\n inputValues = { \"\", \"\", \"\", \"\", \"\" }\r\n end\r\n\r\n makeData()\r\n createButtonsAndBoxes()\r\n\r\n self.addContextMenuItem(\"Reset Inputs\", function() updateState() end)\r\n self.addContextMenuItem(\"Scale: normal\", function() self.setScale({ 1, 1, 1 }) end)\r\n self.addContextMenuItem(\"Scale: double\", function() self.setScale({ 2, 1, 2 }) end)\r\n self.addContextMenuItem(\"Scale: triple\", function() self.setScale({ 3, 1, 3 }) end)\r\nend\r\n\r\nfunction updateState(markedBoxesNew)\r\n if markedBoxesNew then markedBoxes = markedBoxesNew end\r\n makeData()\r\n createButtonsAndBoxes()\r\nend\r\n\r\n-- create Data\r\nfunction makeData()\r\n Data = {}\r\n Data.checkbox = {}\r\n Data.textbox = {}\r\n\r\n -- repeat this for each entry (= line) in existingBoxes\r\n local totalCount = 0\r\n for i = 1, #existingBoxes do\r\n -- repeat this for each checkbox per line\r\n for j = 1, existingBoxes[i] do\r\n totalCount = totalCount + 1\r\n Data.checkbox[totalCount] = {}\r\n Data.checkbox[totalCount].pos = {}\r\n Data.checkbox[totalCount].pos.x = x_1 + j * x_offset\r\n Data.checkbox[totalCount].pos.z = posZ[i]\r\n Data.checkbox[totalCount].row = i\r\n\r\n if (markDEBUG == \"all\") or (markedBoxes[i] >= j and markDEBUG ~= \"none\") then\r\n Data.checkbox[totalCount].pos.y = y_visible\r\n Data.checkbox[totalCount].state = true\r\n else\r\n Data.checkbox[totalCount].pos.y = y_invisible\r\n Data.checkbox[totalCount].state = false\r\n end\r\n end\r\n end\r\n\r\n -- repeat this for each entry (= line) in inputBoxes\r\n local totalCount = 0\r\n for i = 1, #inputBoxes do\r\n -- repeat this for each textbox per line\r\n for j = 1, inputBoxes[i] do\r\n totalCount = totalCount + 1\r\n Data.textbox[totalCount] = {}\r\n Data.textbox[totalCount].pos = inputPos[totalCount]\r\n Data.textbox[totalCount].width = inputWidth[totalCount]\r\n Data.textbox[totalCount].value = inputValues[totalCount]\r\n end\r\n end\r\nend\r\n\r\n-- checks or unchecks the given box\r\nfunction click_checkbox(tableIndex)\r\n local row = Data.checkbox[tableIndex].row\r\n\r\n if Data.checkbox[tableIndex].state == true then\r\n Data.checkbox[tableIndex].pos.y = y_invisible\r\n Data.checkbox[tableIndex].state = false\r\n\r\n markedBoxes[row] = markedBoxes[row] - 1\r\n else\r\n Data.checkbox[tableIndex].pos.y = y_visible\r\n Data.checkbox[tableIndex].state = true\r\n\r\n markedBoxes[row] = markedBoxes[row] + 1\r\n end\r\n\r\n self.editButton({\r\n index = tableIndex - 1,\r\n position = Data.checkbox[tableIndex].pos\r\n })\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 inputValues[i] = value\r\n end\r\nend\r\n\r\nfunction createButtonsAndBoxes()\r\n self.clearButtons()\r\n self.clearInputs()\r\n\r\n for i, box_data in ipairs(Data.checkbox) do\r\n local funcName = \"checkbox\" .. i\r\n local func = function() click_checkbox(i) end\r\n self.setVar(funcName, func)\r\n\r\n self.createButton({\r\n click_function = funcName,\r\n function_owner = self,\r\n position = box_data.pos,\r\n height = boxSize,\r\n width = boxSize,\r\n font_size = box_data.size,\r\n scale = { 1, 1, 1 },\r\n color = { 0, 0, 0 },\r\n font_color = { 0, 0, 0 }\r\n })\r\n end\r\n\r\n for i, box_data in ipairs(Data.textbox) do\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 = \"Click to type\",\r\n alignment = 2,\r\n position = box_data.pos,\r\n scale = buttonScale,\r\n width = box_data.width,\r\n height = (inputFontsize * 1) + 24,\r\n font_size = inputFontsize,\r\n color = \"White\",\r\n font_color = buttonFontColor,\r\n value = box_data.value\r\n })\r\n end\r\nend\r\n",
"LuaScriptState": "[[0,0,0,0,0,0,0,0,0,0],[\"\",\"\",\"\",\"\",\"\"]]",
"XmlUI": ""
},
{
"GUID": "342311",
"Name": "Card",
"Transform": {
"posX": 78.51081,
"posY": 1.05775523,
"posZ": 27.14333,
"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 \"willpowerIcons\": 4,\n \"intellectIcons\": 2,\n \"combatIcons\": 2,\n \"agilityIcons\": 4,\n \"cycle\": \"The Path to Carcosa\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 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": "804397",
"Name": "Card",
"Transform": {
"posX": 78.51081,
"posY": 1.06352925,
"posZ": 27.14333,
"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 \"cost\": 3,\n \"level\": 3,\n \"traits\": \"Item. Tome.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"intellectIcons\": 2,\n \"cycle\": \"Edge of the Earth\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"Asset",
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "7b7d14",
"Name": "Card",
"Transform": {
"posX": 78.51081,
"posY": 1.05925858,
"posZ": 27.14333,
"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 \"level\": 3,\n \"traits\": \"Talent.\",\n \"permanent\": true,\n \"weakness\": false,\n \"cycle\": \"The Innsmouth Conspiracy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"Asset",
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "4271cb",
"Name": "Card",
"Transform": {
"posX": 78.51081,
"posY": 1.05941164,
"posZ": 27.14333,
"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 \"willpowerIcons\": 3,\n \"intellectIcons\": 4,\n \"combatIcons\": 2,\n \"agilityIcons\": 3,\n \"cycle\": \"The Dunwich Legacy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 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": "9724b7",
"Name": "Card",
"Transform": {
"posX": 78.51081,
"posY": 1.0706867,
"posZ": 27.14333,
"rotX": 0.3813652,
"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 \"willpowerIcons\": 3,\n \"intellectIcons\": 4,\n \"combatIcons\": 2,\n \"agilityIcons\": 3,\n \"cycle\": \"The Dunwich Legacy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 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": "9ba3f0",
"Name": "Card",
"Transform": {
"posX": 78.51081,
"posY": 1.07413018,
"posZ": 27.14333,
"rotX": 359.018829,
"rotY": 270.0011,
"rotZ": 359.860443,
"scaleX": 0.6,
"scaleY": 1.0,
"scaleZ": 0.6
},
"Nickname": "Rex Murphy",
"Description": "",
"GMNotes": "{\n \"id\": \"02002-m\",\n \"type\": \"Minicard\",\n \"traits\": \"\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"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": "876557",
"Name": "Card",
"Transform": {
"posX": 78.2718658,
"posY": 1.06062484,
"posZ": 26.8077126,
"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 \"startsInPlay\": true,\n \"cost\": 2,\n \"traits\": \"Ally. Creature.\",\n \"permanent\": false,\n \"weakness\": false,\n \"cycle\": \"The Dunwich Legacy\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"Asset",
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "4f46ad",
"Name": "Card",
"Transform": {
"posX": 78.2718658,
"posY": 1.18897367,
"posZ": 26.8077126,
"rotX": 0.0196094736,
"rotY": 270.020142,
"rotZ": 352.9484,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Sophie",
"Description": "",
"GMNotes": "{\n \"id\": \"03009\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"startsInPlay\": true,\n \"traits\": \"Item. Spirit.\",\n \"permanent\": false,\n \"weakness\": false,\n \"cycle\": \"The Path to Carcosa\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"Asset",
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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": "458edc",
"Name": "Card",
"Transform": {
"posX": 78.2718658,
"posY": 1.05748856,
"posZ": 26.8077126,
"rotX": 0.0208103973,
"rotY": 270.000366,
"rotZ": 0.0167762339,
"scaleX": 0.6,
"scaleY": 1.0,
"scaleZ": 0.6
},
"Nickname": "Amina Zidane",
"Description": "",
"GMNotes": "{\n \"id\": \"09011-m\",\n \"type\": \"Minicard\",\n \"traits\": \"\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 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": 846103,
"SidewaysCard": false,
"CustomDeck": {
"8461": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1814412497119653462/E5CB5A50E22021314BB8963E47516DBE8092D8EF/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1814412497119653683/60799F36ADCEBB9027393DBB518B4025D1953FA0/",
"NumWidth": 4,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "4c2a3d",
"Name": "Card",
"Transform": {
"posX": 78.65377,
"posY": 3.32294583,
"posZ": 36.17464,
"rotX": 0.280802727,
"rotY": 180.007629,
"rotZ": 359.823242,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Amina Zidane",
"Description": "The Operator",
"GMNotes": "{\n \"id\": \"09011\",\n \"type\": \"Investigator\",\n \"class\": \"Mystic\",\n \"traits\": \"Chosen. Cursed.\",\n \"willpowerIcons\": 3,\n \"intellectIcons\": 3,\n \"combatIcons\": 3,\n \"agilityIcons\": 3\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 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": 843403,
"SidewaysCard": true,
"CustomDeck": {
"8434": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1814412497119606067/D4B307834101CF1589A9A9AEEC4CE2F65E7DF02F/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1814412497119606436/4C276FC15C46EEB0C65BAE449E7D94445B3E1B57/",
"NumWidth": 4,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "23b96a",
"Name": "CardCustom",
"Transform": {
"posX": 78.8039,
"posY": 3.32680345,
"posZ": 36.47682,
"rotX": 359.9212,
"rotY": 270.0009,
"rotZ": 359.783234,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "The Raven Quill Upgrade Sheet",
"Description": "",
"GMNotes": "{\n \"id\": \"09042-c\",\n \"traits\": \"\",\n \"permanent\": false,\n \"weakness\": false\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 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,
"CardID": 847000,
"SidewaysCard": false,
"CustomDeck": {
"8470": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1829048801001665853/B6505FEB706A5E9F2C181C30EA48A606D2B950A5/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1814412497119682452/BD224FCE1980DBA38E5A687FABFD146AA1A30D0E/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "-- Customizable Cards: The Raven Quill\r\n-- by Chr1Z\r\ninformation = {\r\n version = \"1.7\",\r\n last_updated = \"12.10.2022\"\r\n}\r\n\r\n-- Color information for buttons and input boxes\r\nboxSize = 37\r\ninputFontsize = 38\r\n\r\n-- static values\r\nx_1 = -0.935\r\nx_offset = 0.0705\r\ny_visible = 0.25\r\ny_invisible = -0.5\r\n\r\n-- z-values (lines on the sheet)\r\nposZ = {\r\n -0.72,\r\n -0.52,\r\n -0.305,\r\n -0.105,\r\n 0.1,\r\n 0.4,\r\n 0.695\r\n}\r\n\r\n-- box setup (amount of boxes per line and amount of marked boxes in that line)\r\nexistingBoxes = { 1, 1, 2, 2, 2, 3, 4 }\r\n\r\ninputBoxes = { 1, 1 }\r\ninputWidth = { 425, 775 }\r\ninputPos = { { 0.5, 0.25, -0.905 }, { 0.125, 0.25, 0 } }\r\n\r\n-- override 'marked boxes' for debugging ('all' or 'none')\r\nmarkDEBUG = \"\"\r\n\r\n-- save state when going into bags / decks\r\nfunction onDestroy() self.script_state = onSave() end\r\n\r\nfunction onSave() return JSON.encode({ markedBoxes, inputValues }) end\r\n\r\n-- Startup procedure\r\nfunction onLoad(saved_data)\r\n if saved_data ~= \"\" and markDEBUG == \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n markedBoxes = loaded_data[1]\r\n inputValues = loaded_data[2]\r\n else\r\n markedBoxes = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }\r\n inputValues = { \"\", \"\", \"\", \"\", \"\" }\r\n end\r\n\r\n makeData()\r\n createButtonsAndBoxes()\r\n\r\n self.addContextMenuItem(\"Reset Inputs\", function() updateState() end)\r\n self.addContextMenuItem(\"Scale: normal\", function() self.setScale({ 1, 1, 1 }) end)\r\n self.addContextMenuItem(\"Scale: double\", function() self.setScale({ 2, 1, 2 }) end)\r\n self.addContextMenuItem(\"Scale: triple\", function() self.setScale({ 3, 1, 3 }) end)\r\nend\r\n\r\nfunction updateState(markedBoxesNew)\r\n if markedBoxesNew then markedBoxes = markedBoxesNew end\r\n makeData()\r\n createButtonsAndBoxes()\r\nend\r\n\r\n-- create Data\r\nfunction makeData()\r\n Data = {}\r\n Data.checkbox = {}\r\n Data.textbox = {}\r\n\r\n -- repeat this for each entry (= line) in existingBoxes\r\n local totalCount = 0\r\n for i = 1, #existingBoxes do\r\n -- repeat this for each checkbox per line\r\n for j = 1, existingBoxes[i] do\r\n totalCount = totalCount + 1\r\n Data.checkbox[totalCount] = {}\r\n Data.checkbox[totalCount].pos = {}\r\n Data.checkbox[totalCount].pos.x = x_1 + j * x_offset\r\n Data.checkbox[totalCount].pos.z = posZ[i]\r\n Data.checkbox[totalCount].row = i\r\n\r\n if (markDEBUG == \"all\") or (markedBoxes[i] >= j and markDEBUG ~= \"none\") then\r\n Data.checkbox[totalCount].pos.y = y_visible\r\n Data.checkbox[totalCount].state = true\r\n else\r\n Data.checkbox[totalCount].pos.y = y_invisible\r\n Data.checkbox[totalCount].state = false\r\n end\r\n end\r\n end\r\n\r\n -- repeat this for each entry (= line) in inputBoxes\r\n local totalCount = 0\r\n for i = 1, #inputBoxes do\r\n -- repeat this for each textbox per line\r\n for j = 1, inputBoxes[i] do\r\n totalCount = totalCount + 1\r\n Data.textbox[totalCount] = {}\r\n Data.textbox[totalCount].pos = inputPos[totalCount]\r\n Data.textbox[totalCount].width = inputWidth[totalCount]\r\n Data.textbox[totalCount].value = inputValues[totalCount]\r\n end\r\n end\r\nend\r\n\r\n-- checks or unchecks the given box\r\nfunction click_checkbox(tableIndex)\r\n local row = Data.checkbox[tableIndex].row\r\n\r\n if Data.checkbox[tableIndex].state == true then\r\n Data.checkbox[tableIndex].pos.y = y_invisible\r\n Data.checkbox[tableIndex].state = false\r\n\r\n markedBoxes[row] = markedBoxes[row] - 1\r\n else\r\n Data.checkbox[tableIndex].pos.y = y_visible\r\n Data.checkbox[tableIndex].state = true\r\n\r\n markedBoxes[row] = markedBoxes[row] + 1\r\n end\r\n\r\n self.editButton({\r\n index = tableIndex - 1,\r\n position = Data.checkbox[tableIndex].pos\r\n })\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 inputValues[i] = value\r\n end\r\nend\r\n\r\nfunction createButtonsAndBoxes()\r\n self.clearButtons()\r\n self.clearInputs()\r\n\r\n for i, box_data in ipairs(Data.checkbox) do\r\n local funcName = \"checkbox\" .. i\r\n local func = function() click_checkbox(i) end\r\n self.setVar(funcName, func)\r\n\r\n self.createButton({\r\n click_function = funcName,\r\n function_owner = self,\r\n position = box_data.pos,\r\n height = boxSize,\r\n width = boxSize,\r\n font_size = box_data.size,\r\n scale = { 1, 1, 1 },\r\n color = { 0, 0, 0 },\r\n font_color = { 0, 0, 0 }\r\n })\r\n end\r\n\r\n for i, box_data in ipairs(Data.textbox) do\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 = \"Click to type\",\r\n alignment = 2,\r\n position = box_data.pos,\r\n scale = buttonScale,\r\n width = box_data.width,\r\n height = (inputFontsize * 1) + 24,\r\n font_size = inputFontsize,\r\n color = \"White\",\r\n font_color = buttonFontColor,\r\n value = box_data.value\r\n })\r\n end\r\nend\r\n",
"LuaScriptState": "[[0,0,0,0,0,0,0,0,0,0],[\"\",\"\",\"\",\"\",\"\"]]",
"XmlUI": ""
}
]
},
{
"GUID": "24051a",
"Name": "Custom_Token",
"Transform": {
"posX": 44.8423538,
"posY": 1.46535778,
"posZ": -12.3498249,
"rotX": 359.983124,
"rotY": -2.5377205E-05,
"rotZ": 359.920135,
"scaleX": 1.25,
"scaleY": 1.0,
"scaleZ": 1.35
},
"Nickname": "Search-A-Card",
"Description": "Allows searching for card(s) by name. Use the buttons to toggle the spawn / search mode.\n\nSee context menu for additional information.",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1857193769888710611/7DFDDFD0F0AFB7A31F29843D196BE9E36D89A60F/",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "-- Search-A-Card\r\n-- made by: Chr1Z\r\n-- description: spawns the card with the specified name\r\ninformation = {\r\n version = \"1.1\",\r\n last_updated = \"10.10.2022\"\r\n}\r\n\r\nlocal BUTTON_PARAMETERS = {}\r\nBUTTON_PARAMETERS.function_owner = self\r\nBUTTON_PARAMETERS.height = 200\r\nBUTTON_PARAMETERS.width = 1200\r\nBUTTON_PARAMETERS.font_size = 75\r\n\r\n-- save selected options\r\nfunction onSave() return JSON.encode({ spawnAll, searchExact }) end\r\n\r\nfunction onLoad(saved_data)\r\n -- loading saved data\r\n local loaded_data = JSON.decode(saved_data)\r\n spawnAll = loaded_data[1] or false\r\n searchExact = loaded_data[2] or false\r\n\r\n allCardsBag = getObjectFromGUID(\"15bb07\")\r\n INPUT_BOX = \"\"\r\n\r\n self.createInput({\r\n input_function = \"input_func\",\r\n function_owner = self,\r\n label = \"Click to enter card name\",\r\n alignment = 2,\r\n position = { x = 0, y = 0.05, z = -1.6 },\r\n width = 1200,\r\n height = 130,\r\n font_size = 107\r\n })\r\n\r\n -- index 0: button for spawn mode\r\n BUTTON_PARAMETERS.click_function = \"search\"\r\n BUTTON_PARAMETERS.label = \"Spawn matching card(s)!\"\r\n BUTTON_PARAMETERS.position = { x = 0, y = 0.05, z = 1.15 }\r\n self.createButton(BUTTON_PARAMETERS)\r\n\r\n -- index 1: button for spawn mode\r\n if spawnAll then\r\n BUTTON_PARAMETERS.label = \"Mode: Spawn all matching cards \"\r\n else\r\n BUTTON_PARAMETERS.label = \"Mode: Spawn first matching card\"\r\n end\r\n\r\n BUTTON_PARAMETERS.click_function = \"spawnMode\"\r\n BUTTON_PARAMETERS.position.z = 1.55\r\n self.createButton(BUTTON_PARAMETERS)\r\n\r\n -- index 2: button for search mode\r\n if searchExact then\r\n BUTTON_PARAMETERS.label = \"Mode: Name matches search term\"\r\n else\r\n BUTTON_PARAMETERS.label = \"Mode: Name contains search term\"\r\n end\r\n\r\n BUTTON_PARAMETERS.click_function = \"searchMode\"\r\n BUTTON_PARAMETERS.position.z = 1.95\r\n self.createButton(BUTTON_PARAMETERS)\r\n\r\n self.addContextMenuItem(\"More Information\", function()\r\n printToAll(\"------------------------------\", \"White\")\r\n printToAll(\"Search-A-Card v\" .. information[\"version\"] .. \" by Chr1Z\", \"Orange\")\r\n printToAll(\"last updated: \" .. information[\"last_updated\"], \"White\")\r\n end)\r\nend\r\n\r\n-- main function\r\nfunction search()\r\n if INPUT_BOX == nil or string.len(INPUT_BOX) == 0 then\r\n printToAll(\"Please enter a search string.\", \"Yellow\")\r\n return\r\n end\r\n\r\n if string.len(INPUT_BOX) < 4 then\r\n printToAll(\"Please enter a longer search string.\", \"Yellow\")\r\n return\r\n end\r\n\r\n if allCardsBag == nil then\r\n printToAll(\"Player card bag couldn't be found.\", \"Red\")\r\n return\r\n end\r\n\r\n local cardList = allCardsBag.call(\"getCardsByName\", { name = INPUT_BOX, exact = searchExact })\r\n if cardList == nil or #cardList == 0 then\r\n printToAll(\"No match found.\", \"Red\")\r\n return\r\n end\r\n\r\n -- search all objects in bag\r\n local spawnCount = 0\r\n for i, card in ipairs(cardList) do\r\n local pos = self.positionToWorld(Vector(0, 0.5 + spawnCount * 0.15, -0.225))\r\n local rot = self.getRotation()\r\n spawnObjectData({\r\n data = card.data,\r\n position = pos,\r\n rotation = rot,\r\n })\r\n if not spawnAll then\r\n return\r\n end\r\n end\r\nend\r\n\r\nfunction input_func(_, _, input, stillEditing)\r\n if not stillEditing then INPUT_BOX = input end\r\nend\r\n\r\n-- toggle spawn mode\r\nfunction spawnMode()\r\n spawnAll = not spawnAll\r\n\r\n if spawnAll then\r\n self.editButton({ index = 1, label = \"Mode: Spawn all matching cards \" })\r\n else\r\n self.editButton({ index = 1, label = \"Mode: Spawn first matching card\" })\r\n end\r\nend\r\n\r\n-- toggle search mode\r\nfunction searchMode()\r\n searchExact = not searchExact\r\n\r\n if searchExact then\r\n self.editButton({ index = 2, label = \"Mode: Name matches search term\" })\r\n else\r\n self.editButton({ index = 2, label = \"Mode: Name contains search term\" })\r\n end\r\nend",
"LuaScriptState": "[true,false]",
"XmlUI": ""
},
{
"GUID": "268764",
"Name": "Notecard",
"Transform": {
"posX": 21.26498,
"posY": 1.71381092,
"posZ": -16.508667,
"rotX": 357.9968,
"rotY": 45.03544,
"rotZ": 357.88623,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "2.3.1 Notes - 10/15/2022",
"Description": "- Fixed issues with TSK cards having the wrong images when imported.\n- Fixed bonded cards appearing in imported decks.\n- Fixed green player board being too high.\n- Fixed \"Uses: 0\" cards from displaying errors.\n- The mythos state of the phase tracker is now locked.",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
}